diff --git a/SOURCES/0001-try-to-adapt-to-poppler-0.58.patch b/SOURCES/0001-try-to-adapt-to-poppler-0.58.patch new file mode 100644 index 0000000..21e600a --- /dev/null +++ b/SOURCES/0001-try-to-adapt-to-poppler-0.58.patch @@ -0,0 +1,1093 @@ +From 50a6171b4d01c296b7d634fdef0679da5c258d7c Mon Sep 17 00:00:00 2001 +From: David Tardon +Date: Thu, 7 Sep 2017 17:02:51 +0200 +Subject: [PATCH] try to adapt to poppler 0.58 + +--- + texk/web2c/luatexdir/image/pdftoepdf.w | 53 ++++----- + texk/web2c/luatexdir/lua/lepdflib.cc | 114 ++++++++------------ + texk/web2c/luatexdir/lua/lpdfscannerlib.cc | 2 +- + texk/web2c/pdftexdir/pdftoepdf.cc | 168 ++++++++++++----------------- + texk/web2c/pdftexdir/pdftosrc.cc | 31 ++---- + 7 files changed, 162 insertions(+), 259 deletions(-) + +diff --git a/source/texk/web2c/luatexdir/image/pdftoepdf.w b/source/texk/web2c/luatexdir/image/pdftoepdf.w +index d86504f..885ca47 100644 +--- a/source/texk/web2c/luatexdir/image/pdftoepdf.w ++++ b/source/texk/web2c/luatexdir/image/pdftoepdf.w +@@ -224,7 +224,7 @@ PdfDocument *refMemStreamPdfDocument(char *docstream, unsigned long long streams + free(checksum); + } + if (pdf_doc->doc == NULL) { +- docmemstream = new MemStream( docstream,0,streamsize, obj.initNull() ); ++ docmemstream = new MemStream( docstream,0,streamsize, Object(objNull)); + doc = new PDFDoc(docmemstream); /* takes ownership of docmemstream */ + pdf_doc->pc++; + if (!doc->isOk() || !doc->okToPrint()) { +@@ -408,9 +408,8 @@ static void copyArray(PDF pdf, PdfDocument * pdf_doc, Array * array) + Object obj1; + pdf_begin_array(pdf); + for (i = 0, l = array->getLength(); i < l; ++i) { +- array->getNF(i, &obj1); ++ obj1 = array->getNF(i); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); + } + pdf_end_array(pdf); + } +@@ -422,9 +421,8 @@ static void copyDict(PDF pdf, PdfDocument * pdf_doc, Dict * dict) + pdf_begin_dict(pdf); + for (i = 0, l = dict->getLength(); i < l; ++i) { + copyName(pdf, dict->getKey(i)); +- dict->getValNF(i, &obj1); ++ obj1 = dict->getValNF(i); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); + } + pdf_end_dict(pdf); + } +@@ -510,13 +508,12 @@ static void writeRefs(PDF pdf, PdfDocument * pdf_doc) + PDFDoc *doc = pdf_doc->doc; + xref = doc->getXRef(); + for (r = pdf_doc->inObjList; r != NULL;) { +- xref->fetch(r->ref.num, r->ref.gen, &obj1); ++ obj1 = xref->fetch(r->ref.num, r->ref.gen); + if (obj1.isStream()) + pdf_begin_obj(pdf, r->num, OBJSTM_NEVER); + else + pdf_begin_obj(pdf, r->num, 2); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); + pdf_end_obj(pdf); + n = r->next; + delete r; +@@ -736,7 +733,7 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + catalog = doc->getCatalog(); + page = catalog->getPage(img_pagenum(idict)); + pageref = catalog->getPageRef(img_pagenum(idict)); +- doc->getXRef()->fetch(pageref->num, pageref->gen, &pageobj); ++ pageobj = doc->getXRef()->fetch(pageref->num, pageref->gen); + pageDict = pageobj.getDict(); + /* write the Page header */ + pdf_begin_obj(pdf, img_objnum(idict), OBJSTM_NEVER); +@@ -753,12 +750,11 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + pdf_dict_add_int(pdf, "PTEX.PageNumber", (int) img_pagenum(idict)); + } + if ((suppress_optional_info & 8) == 0) { +- doc->getDocInfoNF(&obj1); ++ obj1 = doc->getDocInfoNF(); + if (obj1.isRef()) { + /* the info dict must be indirect (PDF Ref p. 61) */ + pdf_dict_add_ref(pdf, "PTEX.InfoDict", addInObj(pdf, pdf_doc, obj1.getRef())); + } +- obj1.free(); + } + if (img_is_bbox(idict)) { + bbox[0] = sp2bp(img_bbox(idict)[0]); +@@ -784,19 +780,17 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + Now all relevant parts of the Page dictionary are copied. Metadata validity + check is needed(as a stream it must be indirect). + */ +- pageDict->lookupNF("Metadata", &obj1); ++ obj1 = pageDict->lookupNF("Metadata"); + if (!obj1.isNull() && !obj1.isRef()) + formatted_warning("pdf inclusion","/Metadata must be indirect object"); +- obj1.free(); + /* copy selected items in Page dictionary */ + for (i = 0; pagedictkeys[i] != NULL; i++) { +- pageDict->lookupNF(pagedictkeys[i], &obj1); ++ obj1 = pageDict->lookupNF(pagedictkeys[i]); + if (!obj1.isNull()) { + pdf_add_name(pdf, pagedictkeys[i]); + /* preserves indirection */ + copyObject(pdf, pdf_doc, &obj1); + } +- obj1.free(); + } + /* + If there are no Resources in the Page dict of the embedded page, +@@ -804,32 +798,28 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + PDF file, climbing up the tree until the Resources are found. + (This fixes a problem with Scribus 1.3.3.14.) + */ +- pageDict->lookupNF("Resources", &obj1); ++ obj1 = pageDict->lookupNF("Resources"); + if (obj1.isNull()) { + op1 = &pagesobj1; + op2 = &pagesobj2; +- pageDict->lookup("Parent", op1); ++ *op1 = pageDict->lookup("Parent"); + while (op1->isDict()) { +- obj1.free(); +- op1->dictLookupNF("Resources", &obj1); ++ obj1 = op1->dictLookupNF("Resources"); + if (!obj1.isNull()) { + pdf_add_name(pdf, "Resources"); + copyObject(pdf, pdf_doc, &obj1); + break; + } +- op1->dictLookup("Parent", op2); ++ *op2 = op1->dictLookup("Parent"); + optmp = op1; + op1 = op2; + op2 = optmp; +- op2->free(); + }; + if (!op1->isDict()) + formatted_warning("pdf inclusion","Page /Resources missing"); +- op1->free(); + } +- obj1.free(); + /* Write the Page contents. */ +- page->getContents(&contents); ++ contents = page->getContents(); + if (contents.isStream()) { + /* + Variant A: get stream and recompress under control of \pdfcompresslevel +@@ -840,27 +830,23 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + + Variant B: copy stream without recompressing + */ +- contents.streamGetDict()->lookup("F", &obj1); ++ obj1 = contents.streamGetDict()->lookup("F"); + if (!obj1.isNull()) { + normal_error("pdf inclusion","unsupported external stream"); + } +- obj1.free(); +- contents.streamGetDict()->lookup("Length", &obj1); ++ obj1 = contents.streamGetDict()->lookup("Length"); + pdf_add_name(pdf, "Length"); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); +- contents.streamGetDict()->lookup("Filter", &obj1); ++ obj1 = contents.streamGetDict()->lookup("Filter"); + if (!obj1.isNull()) { + pdf_add_name(pdf, "Filter"); + copyObject(pdf, pdf_doc, &obj1); +- obj1.free(); +- contents.streamGetDict()->lookup("DecodeParms", &obj1); ++ obj1 = contents.streamGetDict()->lookup("DecodeParms"); + if (!obj1.isNull()) { + pdf_add_name(pdf, "DecodeParms"); + copyObject(pdf, pdf_doc, &obj1); + } + } +- obj1.free(); + pdf_end_dict(pdf); + pdf_begin_stream(pdf); + copyStreamStream(pdf, contents.getStream()->getUndecodedStream()); +@@ -871,8 +857,7 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + pdf_end_dict(pdf); + pdf_begin_stream(pdf); + for (i = 0, l = contents.arrayGetLength(); i < l; ++i) { +- copyStreamStream(pdf, (contents.arrayGet(i, &obj1))->getStream()); +- obj1.free(); ++ copyStreamStream(pdf, (obj1 = contents.arrayGet(i)).getStream()); + if (i < (l - 1)) { + /* + Put a space between streams to be on the safe side (streams +@@ -893,8 +878,6 @@ void write_epdf(PDF pdf, image_dict * idict, int suppress_optional_info) + } + /* write out all indirect objects */ + writeRefs(pdf, pdf_doc); +- contents.free(); +- pageobj.free(); + /* + unrefPdfDocument() must come after contents.free() and pageobj.free()! + TH: The next line makes repeated pdf inclusion unacceptably slow +diff --git a/source/texk/web2c/luatexdir/lua/lepdflib.cc b/source/texk/web2c/luatexdir/lua/lepdflib.cc +index 00e2786..8d7005b 100644 +--- a/source/texk/web2c/luatexdir/lua/lepdflib.cc ++++ b/source/texk/web2c/luatexdir/lua/lepdflib.cc +@@ -538,7 +538,7 @@ static int m_##in##_##function(lua_State * L) \ + pdfdoc_changed_error(L); \ + uout = new_Object_userdata(L); \ + uout->d = new Object(); \ +- ((in *) uin->d)->function((Object *) uout->d); \ ++ *((Object *) uout->d) = ((in *) uin->d)->function(); \ + uout->atype = ALLOC_LEPDF; \ + uout->pc = uin->pc; \ + uout->pd = uin->pd; \ +@@ -668,25 +668,13 @@ static const struct luaL_Reg Annots_m[] = { + + static int m_Array_incRef(lua_State * L) + { +- int i; +- udstruct *uin; +- uin = (udstruct *) luaL_checkudata(L, 1, M_Array); +- if (uin->pd != NULL && uin->pd->pc != uin->pc) +- pdfdoc_changed_error(L); +- i = ((Array *) uin->d)->incRef(); +- lua_pushinteger(L, i); ++ lua_pushinteger(L, 1); + return 1; + } + + static int m_Array_decRef(lua_State * L) + { +- int i; +- udstruct *uin; +- uin = (udstruct *) luaL_checkudata(L, 1, M_Array); +- if (uin->pd != NULL && uin->pd->pc != uin->pc) +- pdfdoc_changed_error(L); +- i = ((Array *) uin->d)->decRef(); +- lua_pushinteger(L, i); ++ lua_pushinteger(L, 1); + return 1; + } + +@@ -702,7 +690,7 @@ static int m_Array_add(lua_State * L) + if ((uin->pd != NULL && uin->pd->pc != uin->pc) + || (uobj->pd != NULL && uobj->pd->pc != uobj->pc)) + pdfdoc_changed_error(L); +- ((Array *) uin->d)->add(((Object *) uobj->d)); ++ ((Array *) uin->d)->add(std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -718,7 +706,7 @@ static int m_Array_get(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Array *) uin->d)->get(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Array *) uin->d)->get(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -739,7 +727,7 @@ static int m_Array_getNF(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Array *) uin->d)->getNF(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Array *) uin->d)->getNF(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -953,25 +941,13 @@ static const struct luaL_Reg Catalog_m[] = { + + static int m_Dict_incRef(lua_State * L) + { +- int i; +- udstruct *uin; +- uin = (udstruct *) luaL_checkudata(L, 1, M_Dict); +- if (uin->pd != NULL && uin->pd->pc != uin->pc) +- pdfdoc_changed_error(L); +- i = ((Dict *) uin->d)->incRef(); +- lua_pushinteger(L, i); ++ lua_pushinteger(L, 1); + return 1; + } + + static int m_Dict_decRef(lua_State * L) + { +- int i; +- udstruct *uin; +- uin = (udstruct *) luaL_checkudata(L, 1, M_Dict); +- if (uin->pd != NULL && uin->pd->pc != uin->pc) +- pdfdoc_changed_error(L); +- i = ((Dict *) uin->d)->decRef(); +- lua_pushinteger(L, i); ++ lua_pushinteger(L, 1); + return 1; + } + +@@ -986,7 +962,7 @@ static int m_Dict_add(lua_State * L) + pdfdoc_changed_error(L); + s = copyString(luaL_checkstring(L, 2)); + uobj = (udstruct *) luaL_checkudata(L, 3, M_Object); +- ((Dict *) uin->d)->add(s, ((Object *) uobj->d)); ++ ((Dict *) uin->d)->add(s, std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -999,7 +975,7 @@ static int m_Dict_set(lua_State * L) + pdfdoc_changed_error(L); + s = luaL_checkstring(L, 2); + uobj = (udstruct *) luaL_checkudata(L, 3, M_Object); +- ((Dict *) uin->d)->set(s, ((Object *) uobj->d)); ++ ((Dict *) uin->d)->set(s, std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -1027,7 +1003,7 @@ static int m_Dict_lookup(lua_State * L) + s = luaL_checkstring(L, 2); + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Dict *) uin->d)->lookup(s, (Object *) uout->d); ++ *((Object *) uout->d) = ((Dict *) uin->d)->lookup(s); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1044,7 +1020,7 @@ static int m_Dict_lookupNF(lua_State * L) + s = luaL_checkstring(L, 2); + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Dict *) uin->d)->lookupNF(s, (Object *) uout->d); ++ *((Object *) uout->d) = ((Dict *) uin->d)->lookupNF(s); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1096,7 +1072,7 @@ static int m_Dict_getVal(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Dict *) uin->d)->getVal(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Dict *) uin->d)->getVal(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1117,7 +1093,7 @@ static int m_Dict_getValNF(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Dict *) uin->d)->getValNF(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Dict *) uin->d)->getValNF(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1381,9 +1357,9 @@ static int m_Object_initBool(lua_State * L) + pdfdoc_changed_error(L); + luaL_checktype(L, 2, LUA_TBOOLEAN); + if (lua_toboolean(L, 2) != 0) +- ((Object *) uin->d)->initBool(gTrue); ++ *((Object *) uin->d) = Object(gTrue); + else +- ((Object *) uin->d)->initBool(gFalse); ++ *((Object *) uin->d) = Object(gFalse); + return 0; + } + +@@ -1395,7 +1371,7 @@ static int m_Object_initInt(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + i = luaL_checkint(L, 2); +- ((Object *) uin->d)->initInt(i); ++ *((Object *) uin->d) = Object(i); + return 0; + } + +@@ -1407,7 +1383,7 @@ static int m_Object_initReal(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + d = luaL_checknumber(L, 2); +- ((Object *) uin->d)->initReal(d); ++ *((Object *) uin->d) = Object(d); + return 0; + } + +@@ -1422,7 +1398,7 @@ static int m_Object_initString(lua_State * L) + pdfdoc_changed_error(L); + s = luaL_checklstring(L, 2, &len); + gs = new GooString(s, len); +- ((Object *) uin->d)->initString(gs); ++ *((Object *) uin->d) = Object(gs); + return 0; + } + +@@ -1434,7 +1410,7 @@ static int m_Object_initName(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + s = luaL_checkstring(L, 2); +- ((Object *) uin->d)->initName(s); ++ *((Object *) uin->d) = Object(objName, s); + return 0; + } + +@@ -1444,7 +1420,7 @@ static int m_Object_initNull(lua_State * L) + uin = (udstruct *) luaL_checkudata(L, 1, M_Object); + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initNull(); ++ *((Object *) uin->d) = Object(); + return 0; + } + +@@ -1458,7 +1434,7 @@ static int m_Object_initArray(lua_State * L) + if ((uin->pd != NULL && uin->pd->pc != uin->pc) + || (uxref->pd != NULL && uxref->pd->pc != uxref->pc)) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initArray((XRef *) uxref->d); ++ *((Object *) uin->d) = Object(new Array((XRef *) uxref->d)); + return 0; + } + +@@ -1476,7 +1452,7 @@ static int m_Object_initDict(lua_State * L) + if ((uin->pd != NULL && uin->pd->pc != uin->pc) + || (uxref->pd != NULL && uxref->pd->pc != uxref->pc)) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initDict((XRef *) uxref->d); ++ *((Object *) uin->d) = Object(new Dict((XRef *) uxref->d)); + return 0; + } + +@@ -1490,7 +1466,7 @@ static int m_Object_initStream(lua_State * L) + if ((uin->pd != NULL && uin->pd->pc != uin->pc) + || (ustream->pd != NULL && ustream->pd->pc != ustream->pc)) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initStream((Stream *) ustream->d); ++ *((Object *) uin->d) = Object((Stream *) ustream->d); + return 0; + } + +@@ -1503,7 +1479,7 @@ static int m_Object_initRef(lua_State * L) + pdfdoc_changed_error(L); + num = luaL_checkint(L, 2); + gen = luaL_checkint(L, 3); +- ((Object *) uin->d)->initRef(num, gen); ++ *((Object *) uin->d) = Object(num, gen); + return 0; + } + +@@ -1515,7 +1491,7 @@ static int m_Object_initCmd(lua_State * L) + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); + s = luaL_checkstring(L, 2); +- ((Object *) uin->d)->initCmd(CHARP_CAST s); ++ *((Object *) uin->d) = Object(objCmd, CHARP_CAST s); + return 0; + } + +@@ -1525,7 +1501,7 @@ static int m_Object_initError(lua_State * L) + uin = (udstruct *) luaL_checkudata(L, 1, M_Object); + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initError(); ++ *((Object *) uin->d) = Object(objError); + return 0; + } + +@@ -1535,7 +1511,7 @@ static int m_Object_initEOF(lua_State * L) + uin = (udstruct *) luaL_checkudata(L, 1, M_Object); + if (uin->pd != NULL && uin->pd->pc != uin->pc) + pdfdoc_changed_error(L); +- ((Object *) uin->d)->initEOF(); ++ *((Object *) uin->d) = Object(objEOF); + return 0; + } + +@@ -1551,7 +1527,7 @@ static int m_Object_fetch(lua_State * L) + pdfdoc_changed_error(L); + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->fetch((XRef *) uxref->d, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->fetch((XRef *) uxref->d); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1816,7 +1792,7 @@ static int m_Object_arrayAdd(lua_State * L) + pdfdoc_changed_error(L); + if (!((Object *) uin->d)->isArray()) + luaL_error(L, "Object is not an Array"); +- ((Object *) uin->d)->arrayAdd((Object *) uobj->d); ++ ((Object *) uin->d)->arrayAdd(std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -1833,7 +1809,7 @@ static int m_Object_arrayGet(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->arrayGet(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->arrayGet(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1857,7 +1833,7 @@ static int m_Object_arrayGetNF(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->arrayGetNF(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->arrayGetNF(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1897,7 +1873,7 @@ static int m_Object_dictAdd(lua_State * L) + pdfdoc_changed_error(L); + if (!((Object *) uin->d)->isDict()) + luaL_error(L, "Object is not a Dict"); +- ((Object *) uin->d)->dictAdd(copyString(s), (Object *) uobj->d); ++ ((Object *) uin->d)->dictAdd(copyString(s), std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -1915,7 +1891,7 @@ static int m_Object_dictSet(lua_State * L) + pdfdoc_changed_error(L); + if (!((Object *) uin->d)->isDict()) + luaL_error(L, "Object is not a Dict"); +- ((Object *) uin->d)->dictSet(s, (Object *) uobj->d); ++ ((Object *) uin->d)->dictSet(s, std::move(*((Object *) uobj->d))); + return 0; + } + +@@ -1930,7 +1906,7 @@ static int m_Object_dictLookup(lua_State * L) + if (((Object *) uin->d)->isDict()) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->dictLookup(s, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->dictLookup(s); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1950,7 +1926,7 @@ static int m_Object_dictLookupNF(lua_State * L) + if (((Object *) uin->d)->isDict()) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->dictLookupNF(s, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->dictLookupNF(s); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -1991,7 +1967,7 @@ static int m_Object_dictGetVal(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->dictGetVal(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->dictGetVal(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -2015,7 +1991,7 @@ static int m_Object_dictGetValNF(lua_State * L) + if (i > 0 && i <= len) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((Object *) uin->d)->dictGetValNF(i - 1, (Object *) uout->d); ++ *((Object *) uout->d) = ((Object *) uin->d)->dictGetValNF(i - 1); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -2243,7 +2219,7 @@ m_poppler_get_poppler(Page, Stream, getMetadata); + m_poppler_get_poppler(Page, Dict, getPieceInfo); + m_poppler_get_poppler(Page, Dict, getSeparationInfo); + m_poppler_get_poppler(Page, Dict, getResourceDict); +-m_poppler_get_OBJECT(Page, getAnnots); ++m_poppler_get_OBJECT(Page, getAnnotsObject); + + m_poppler_get_OBJECT(Page, getContents); + +@@ -2270,7 +2246,7 @@ static const struct luaL_Reg Page_m[] = { + {"getPieceInfo", m_Page_getPieceInfo}, + {"getSeparationInfo", m_Page_getSeparationInfo}, + {"getResourceDict", m_Page_getResourceDict}, +- {"getAnnots", m_Page_getAnnots}, ++ {"getAnnots", m_Page_getAnnotsObject}, + {"getContents", m_Page_getContents}, + {"__tostring", m_Page__tostring}, + {NULL, NULL} // sentinel +@@ -2520,7 +2496,7 @@ static int m_PDFDoc_getDocInfo(lua_State * L) + if (((PdfDocument *) uin->d)->doc->getXRef()->isOk()) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((PdfDocument *) uin->d)->doc->getDocInfo((Object *) uout->d); ++ *((Object *) uout->d) = ((PdfDocument *) uin->d)->doc->getDocInfo(); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -2538,7 +2514,7 @@ static int m_PDFDoc_getDocInfoNF(lua_State * L) + if (((PdfDocument *) uin->d)->doc->getXRef()->isOk()) { + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((PdfDocument *) uin->d)->doc->getDocInfoNF((Object *) uout->d); ++ *((Object *) uout->d) = ((PdfDocument *) uin->d)->doc->getDocInfoNF(); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -2841,7 +2817,7 @@ static int m_Attribute_getValue(lua_State * L) + uout = new_Object_userdata(L); + uout->d = new Object(); + origin = (Object *) (((Attribute *) uin->d)->getValue()); +- origin->copy ( ((Object *)uout->d) ); ++ *((Object *)uout->d) = origin->copy(); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -3320,7 +3296,7 @@ static int m_StructTreeRoot_findParentElement(lua_State * L) + parent = root->findParentElement(i-1); + if (parent != NULL) { + uout = new_StructElement_userdata(L); +- uout->d = new StructElement( *parent ); ++ uout->d = (StructElement *) parent; + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +@@ -3370,7 +3346,7 @@ static int m_XRef_fetch(lua_State * L) + gen = luaL_checkint(L, 3); + uout = new_Object_userdata(L); + uout->d = new Object(); +- ((XRef *) uin->d)->fetch(num, gen, (Object *) uout->d); ++ *((Object *) uout->d) = ((XRef *) uin->d)->fetch(num, gen); + uout->atype = ALLOC_LEPDF; + uout->pc = uin->pc; + uout->pd = uin->pd; +diff --git a/source/texk/web2c/luatexdir/lua/lpdfscannerlib.cc b/source/texk/web2c/luatexdir/lua/lpdfscannerlib.cc +index cc311da..f36c556 100644 +--- a/source/texk/web2c/luatexdir/lua/lpdfscannerlib.cc ++++ b/source/texk/web2c/luatexdir/lua/lpdfscannerlib.cc +@@ -634,7 +634,7 @@ static int scanner_scan(lua_State * L) + int i; + for (i=0;iget(i, val); ++ *val = arrayref->get(i); + if (val->isStream()) { + ObjectList *rover = self->_streams; + ObjectList *item = (ObjectList *)xmalloc (sizeof(ObjectList)); +diff --git a/source/texk/web2c/pdftexdir/pdftoepdf.cc b/source/texk/web2c/pdftexdir/pdftoepdf.cc +index 253024f..5b3d7b4 100644 +--- a/source/texk/web2c/pdftexdir/pdftoepdf.cc ++++ b/source/texk/web2c/pdftexdir/pdftoepdf.cc +@@ -83,31 +83,6 @@ extern integer getpdfsuppressptexinfo(void); + #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 +@@ -214,12 +189,12 @@ static void delete_document(PdfDocument * pdf_doc) + // Replacement for + // Object *initDict(Dict *dict1){ initObj(objDict); dict = dict1; return this; } + +-static void initDictFromDict(PdfObject & obj, Dict * dict) ++static void initDictFromDict(Object & obj, Dict * dict) + { +- obj->initDict(xref); ++ obj = Object(new Dict(xref)); + for (int i = 0, l = dict->getLength(); i < l; i++) { + Object obj1; +- obj->dictAdd(copyString(dict->getKey(i)), dict->getValNF(i, &obj1)); ++ obj.dictAdd(copyString(dict->getKey(i)), dict->getValNF(i)); + } + } + +@@ -319,10 +294,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"); + } +@@ -375,17 +350,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"); +@@ -395,7 +370,7 @@ static void copyProcSet(Object * obj) + + static void copyFont(char *tag, Object * fontRef) + { +- PdfObject fontdict, subtype, basefont, fontdescRef, fontdesc, charset, ++ Object fontdict, subtype, basefont, fontdescRef, fontdesc, charset, + fontfile, ffsubtype, stemV; + GfxFont *gfont; + fd_entry *fd; +@@ -412,31 +387,30 @@ static void copyFont(char *tag, Object * fontRef) + } + // 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() ++ if (!fixedinclusioncopyfont && (fontdict = fontRef->fetch(xref)).isDict() ++ && (subtype = fontdict.dictLookup("Subtype")).isName() ++ && !strcmp(subtype.getName(), "Type1") ++ && (basefont = fontdict.dictLookup("BaseFont")).isName() ++ && (fontdescRef = fontdict.dictLookupNF("FontDescriptor")).isRef() ++ && (fontdesc = fontdescRef.fetch(xref)).isDict() ++ && ((fontfile = fontdesc.dictLookup("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) { ++ && (fontfile = fontdesc.dictLookup("FontFile3")).isStream() ++ && (ffsubtype = fontfile.streamGetDict()->lookup("Subtype")).isName() ++ && !strcmp(ffsubtype.getName(), "Type1C"))) ++ && (fontmap = lookup_fontmap(basefont.getName())) != NULL) { + // copy the value of /StemV +- fontdesc->dictLookup("StemV", &stemV); +- fd = epdf_create_fontdescriptor(fontmap, stemV->getInt()); +- 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, stemV.getInt()); ++ if (!(charset = fontdesc.dictLookup("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 { +@@ -448,24 +422,24 @@ static void copyFont(char *tag, Object * fontRef) + + 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"); + } +@@ -554,7 +528,7 @@ static char *convertNumToPDF(double n) + + static void copyObject(Object * obj) + { +- PdfObject obj1; ++ Object obj1; + int i, l, c; + Ref ref; + char *p; +@@ -598,8 +572,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); + } +@@ -637,7 +611,7 @@ static void writeRefs() + if (!r->written) { + Object obj1; + r->written = 1; +- xref->fetch(r->ref.num, r->ref.gen, &obj1); ++ 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 +@@ -653,7 +627,6 @@ static void writeRefs() + pdf_puts("\n"); + pdfendobj(); + } +- obj1.free(); + } + } + } +@@ -836,8 +809,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; +@@ -864,8 +837,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 +@@ -883,7 +856,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); +@@ -939,14 +912,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 +@@ -954,8 +927,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 +@@ -969,8 +942,8 @@ 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()); +@@ -987,14 +960,14 @@ void write_epdf(void) + ("PDF inclusion: /Resources missing. 'This practice is not recommended' (PDF Ref)"); + } else { + initDictFromDict(obj1, page->getResourceDict()); +- if (!obj1->isDict()) ++ if (!obj1.isDict()) + pdftex_fail("PDF inclusion: invalid resources dict type <%s>", +- obj1->getTypeName()); ++ obj1.getTypeName()); + pdf_newline(); + pdf_puts("/Resources <<\n"); +- for (i = 0, l = obj1->dictGetLength(); i < l; ++i) { +- obj1->dictGetVal(i, &obj2); +- key = obj1->dictGetKey(i); ++ for (i = 0, l = obj1.dictGetLength(); i < l; ++i) { ++ obj2 = obj1.dictGetVal(i); ++ key = obj1.dictGetKey(i); + if (strcmp("Font", key) == 0) + copyFontResources(&obj2); + else if (strcmp("ProcSet", key) == 0) +@@ -1006,8 +979,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 +@@ -1018,36 +991,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) { ++ for (i = 0, l = contents.arrayGetLength(); i < l; ++i) { + Object contentsobj; +- copyStream((contents->arrayGet(i, &contentsobj))->getStream()); +- contentsobj.free(); ++ copyStream((contentsobj = contents.arrayGet(i)).getStream()); + if (i < l - 1) + pdf_newline(); // add a newline after each stream except the last + } +diff --git a/source/texk/web2c/pdftexdir/pdftosrc.cc b/source/texk/web2c/pdftexdir/pdftosrc.cc +index 42b9e06..010b1d0 100644 +--- a/source/texk/web2c/pdftexdir/pdftosrc.cc ++++ b/source/texk/web2c/pdftexdir/pdftosrc.cc +@@ -86,22 +86,19 @@ 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(); + 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 +107,7 @@ int main(int argc, char *argv[]) + // We cannot free srcName, as objname shares its string. + // srcName.free(); + } else if (objnum > 0) { +- xref->fetch(objnum, objgen, &srcStream); ++ srcStream = xref->fetch(objnum, objgen); + if (!srcStream.isStream()) { + fprintf(stderr, "Not a Stream object\n"); + exit(1); +@@ -159,29 +156,23 @@ 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(); ++ assert((objStr = xref->fetch(e->offset, 0)).isStream()); ++ nObjects = (obj1 = objStr.streamGetDict()->lookup("N")).getInt(); ++ first = (obj1 = objStr.streamGetDict()->lookup("First")).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(), gTrue, first); + parser = new Parser(xref, new Lexer(xref, str), 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(); + } + while (str->getChar() != EOF) ; + delete parser; +- objStr.free(); + + fprintf(outfile, "%.10lu 00000 n\n", + (long unsigned)(firstOffset + localOffset)); +@@ -192,7 +183,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); +@@ -201,7 +191,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; + } +-- +2.13.5 + diff --git a/SOURCES/b_one_srpm b/SOURCES/b_one_srpm new file mode 100755 index 0000000..95b3955 --- /dev/null +++ b/SOURCES/b_one_srpm @@ -0,0 +1,46 @@ +#!/bin/sh +# +# This script creates texlive.spec from generated specs by tl2rpm +# and generates local testing repository from built packages. +# Written by Jindrich Novy (novyjindrich@gmail.com). +# +gcc tl2rpm.c -o tl2rpm -O2 -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=native -march=native +[ "$?" != "0" ] && exit 1 +rm -f _mkdirs.spec _unpack.spec _sources.spec _remove.spec _packages.spec _font.spec _files.spec _dirs.spec +touch _mkdirs.spec +./tl2rpm +mv _mkdirs.spec _mkdirs.spec.tmp +sort _mkdirs.spec.tmp > _mkdirs.spec +rm -f _mkdirs.spec.tmp +mv _dirs.spec _dirs.spec.tmp +sort _dirs.spec.tmp > _dirs.spec +rm -f _dirs.spec.tmp +mv _sources.spec _sources.spec.tmp +sort _sources.spec.tmp > _sources.spec +rm -f _sources.spec.tmp +while read LINE; do + if [ "${LINE%% *}" = "%include" ]; then + cat ${LINE:9} + else + echo "$LINE" + fi +done < texlive.spec.template > texlive.spec +#exit 0 +RPMBUILDDIR=`rpm --eval "%_topdir"` +rm -f $RPMBUILDDIR/RPMS/noarch/texlive* +rm -f $RPMBUILDDIR/RPMS/x86_64/texlive* +for i in `ls texlive/archive`; do + rm -f $RPMBUILDDIR/SOURCES/$i +done +ACTDIR=`pwd` +for i in `ls texlive/archive`; do + ln -s $ACTDIR/texlive/archive/$i $RPMBUILDDIR/SOURCES/$i +done +LANG=C time rpmbuild -bb texlive.spec > buildlog-srpm 2>&1 +[ "$?" != "0" ] && exit 1 +mv buildlog-srpm buildlog-srpm.full +rm -rf packages +mkdir packages +mv RPMS/noarch/texlive* packages +mv RPMS/x86_64/texlive* packages +createrepo packages diff --git a/SOURCES/co_archive b/SOURCES/co_archive new file mode 100755 index 0000000..c22adfd --- /dev/null +++ b/SOURCES/co_archive @@ -0,0 +1,123 @@ +#!/bin/sh +# +# This script checks out upstream archives from CTAN, removes unneeded files, +# expands files required for dependency resolution by tl2rpm. +# Written by Jindrich Novy (novyjindrich@gmail.com). +# +echo "Syncing with remote server..." +[ -e texlive/archive/asana-math.tar.xz ] && mv texlive/archive/asana-math.tar.xz texlive/archive/Asana-Math.tar.xz +[ -e texlive/archive/asana-math.doc.tar.xz ] && mv texlive/archive/asana-math.doc.tar.xz texlive/archive/Asana-Math.doc.tar.xz +[ -e texlive/archive/lineara.tar.xz ] && mv texlive/archive/lineara.tar.xz texlive/archive/linearA.tar.xz +[ -e texlive/archive/lineara.doc.tar.xz ] && mv texlive/archive/lineara.doc.tar.xz texlive/archive/linearA.doc.tar.xz +[ -e texlive/archive/lineara.source.tar.xz ] && mv texlive/archive/lineara.source.tar.xz texlive/archive/linearA.source.tar.xz +[ -e texlive/archive/musixtex-fnts.tar.xz ] && mv texlive/archive/musixtex-fnts.tar.xz texlive/archive/musixtex-fonts.tar.xz +[ -e texlive/archive/musixtex-fnts.doc.tar.xz ] && mv texlive/archive/musixtex-fnts.doc.tar.xz texlive/archive/musixtex-fonts.doc.tar.xz +#rsync -av --delete ftp.cstug.cz::pub/tex/local/tlpretest/archive texlive --delete-excluded \ +#rsync -av --delete rsync://ftp.ctex.org/mirrors/texlive/tlpretest/ texlive --delete-excluded \ +#rsync -av --delete ftp.cstug.cz::pub/tex/local/tlpretest/archive texlive --delete-excluded \ +#rsync -av --delete rsync://ftp.fernuni-hagen.de/ctan/systems/texlive/tlnet/archive texlive --delete-excluded \ +rsync -av --delete rsync://rsync.dante.ctan.org/CTAN/systems/texlive/tlnet/archive texlive --delete-excluded \ +--exclude '*mactex*' \ +--exclude '*.win32*' \ +--exclude '*.i386-freebsd*' \ +--exclude '*.i386-cygwin*' \ +--exclude '*.i386-solaris*' \ +--exclude '*.i386-netbsd*' \ +--exclude '*.i386-kfreebsd*' \ +--exclude '*.armel-linux*' \ +--exclude '*.mipsel-linux*' \ +--exclude '*.mips-irix*' \ +--exclude '*.powerpc-*' \ +--exclude '*.sparc-*' \ +--exclude '*.amd64-*' \ +--exclude '*.alpha-*' \ +--exclude '*.x86_64-*' \ +--exclude '*.universal-darwin*' \ +--exclude '*.armhf-linux*' \ +--exclude '*.exe.*' \ +--exclude '*.exe' \ +--exclude 'install-tl*' \ +--exclude 'breakcites*' \ +--exclude 'psutils*' \ +--exclude 'rst.*' \ +--exclude 't1utils*' \ +--exclude 'xindy*' \ +--exclude 'asymptote*' \ +--exclude 'tlpkg/*' \ +--exclude 'update-tlmgr*' | tee /tmp/rsynclogCTAN +EXIT=$? +[ -e texlive/archive/Asana-Math.tar.xz ] && mv texlive/archive/Asana-Math.tar.xz texlive/archive/asana-math.tar.xz +[ -e texlive/archive/Asana-Math.doc.tar.xz ] && mv texlive/archive/Asana-Math.doc.tar.xz texlive/archive/asana-math.doc.tar.xz +[ -e texlive/archive/linearA.tar.xz ] && mv texlive/archive/linearA.tar.xz texlive/archive/lineara.tar.xz +[ -e texlive/archive/linearA.doc.tar.xz ] && mv texlive/archive/linearA.doc.tar.xz texlive/archive/lineara.doc.tar.xz +[ -e texlive/archive/linearA.source.tar.xz ] && mv texlive/archive/linearA.source.tar.xz texlive/archive/lineara.source.tar.xz +[ -e texlive/archive/musixtex-fonts.tar.xz ] && mv texlive/archive/musixtex-fonts.tar.xz texlive/archive/musixtex-fnts.tar.xz +[ -e texlive/archive/musixtex-fonts.doc.tar.xz ] && mv texlive/archive/musixtex-fonts.doc.tar.xz texlive/archive/musixtex-fnts.doc.tar.xz +UPDATES=`grep 'tar.xz$' /tmp/rsynclogCTAN` +if [ "$UPDATES" == "" ]; then + rm -f /tmp/rsynclogCTAN + exit 0 +else + UPDATES=`grep 'tar.xz$' /tmp/rsynclogCTAN | grep -v 'deleting'` + for i in $UPDATES; do + echo "+ $i" + done +fi +rm -f /tmp/rsynclogCTAN +[ $EXIT != 0 ] && exit 1 + +echo "Creating symlinks..." +for i in `ls texlive/archive`; do + rm -f ~/rpmbuild/SOURCES/$i +done +RPMBUILDDIR=`rpm --eval "%_topdir"` +ACTDIR=`pwd` +for i in `ls texlive/archive`; do + ln -s $ACTDIR/texlive/archive/$i $RPMBUILDDIR/SOURCES/$i +done + +echo "Expanding..." +rm -rf texlive.expanded.old +if [ -d texlive.expanded ]; then + mv texlive.expanded texlive.expanded.old +else + mkdir -p texlive.expanded.old +fi +mkdir texlive.expanded +for i in texlive/archive/*.tar.xz; do + tar xf $i -C texlive.expanded '*.sty' '*.tex' '*.cls' '*.ldf' '*.bbx' '*.cbx' '*.def' '*.tlpobj' '*.clo' '*.bug' '*.bg2' '*i386-linux*' '*texmf/scripts*' '*texmf-dist/scripts*' > /dev/null 2>&1 +done +diff -ru texlive.expanded.old texlive.expanded > archive.diff + +echo "Moving..." +pushd texlive.expanded +cp -pr doc source tex texmf-dist +rm -rf doc source tex +popd + +echo "Generating tlpdb..." +pushd ./texlive.expanded/tlpkg/tlpobj +OUT=../../../texlive.tlpdb +mv $OUT $OUT.bck +for i in `ls *.tlpobj | grep -v '\.i386-linux.tlpobj$' | grep -v '\.doc.tlpobj$' | grep -v '\.source.tlpobj$'`; do + NAME=`echo $i | sed 's/.tlpobj$//g'` + grep -v '^catalogue-' $i >> $OUT + if [ -e $NAME.doc.tlpobj ]; then + grep '^docfiles' $NAME.doc.tlpobj >> $OUT + grep '^ ' $NAME.doc.tlpobj >> $OUT + fi + if [ -e $NAME.source.tlpobj ]; then + grep '^srcfiles' $NAME.source.tlpobj >> $OUT + grep '^ ' $NAME.source.tlpobj >> $OUT + fi + grep '^catalogue-' $i >> $OUT + echo >> $OUT + if [ -e $NAME.i386-linux.tlpobj ]; then + cat $NAME.i386-linux.tlpobj >> $OUT + echo >> $OUT + fi +done +popd +patch texlive.tlpdb < tlpdb.patch +[ "$?" = "1" ] && exit 1 +diff -u texlive.tlpdb.orig texlive.tlpdb > tlpdb.patch diff --git a/SOURCES/co_source b/SOURCES/co_source new file mode 100755 index 0000000..406e244 --- /dev/null +++ b/SOURCES/co_source @@ -0,0 +1,63 @@ +#!/bin/sh +# +# This script checks out TeX Live upstream sources to build binaries, +# removes unneeded files and generates a tarball used to build RPMs. +# Written by Jindrich Novy (novyjindrich@gmail.com) +# +svn co svn://tug.org/texlive/trunk/Build/source | tee /tmp/rsynclog +[ "$?" != "0" ] && exit 1 +UPDATES=`grep -v '^Checked out revision' /tmp/rsynclog` +[ "$UPDATES" == "" ] && exit 0 +cp -R source source.svn +for i in \ +'.svn' \ +'*.exe' \ +'*.dsp' \ +'*.dsw' \ +'*.orig' \ +'*vcproj*' \ +'*vcxproj*' \ +'*.vc' \ +'*vc[678]*' \ +; do + find source -name $i | tee | xargs rm -rf +done +#rm -rf source/utils/biber* +rm -rf \ +source/libs/zlib* \ +source/libs/libpng* \ +source/libs/expat* \ +source/libs/jpeg* \ +source/libs/t1lib* \ +source/libs/teckit* \ +source/libs/gd* \ +source/libs/freetype2* \ +source/libs/zziplib* \ +source/libs/poppler* \ +source/libs/unzip* \ +source/libs/xpdf* \ +source/libs/cairo* \ +source/libs/harfbuzz* \ +source/libs/pixman* \ +source/libs/libpaper* \ +source/libs/icu* \ +source/libs/graphite2* \ +source/libs/potrace* \ +source/libs/freetype/* \ +source/texk/texlive/w32_wrapper \ +source/utils/t1utils* \ +source/utils/xindy* \ +source/utils/asymptote* \ +source/utils/psutils* \ +source/utils/biber* \ +source/utils/xz* \ +source/extra* +#source/utils/asymptote* +DATE=`date +%Y%m%d`_r`grep Checked /tmp/rsynclog | cut -d" " -f4 | sed s/.$//` +sed -i s/global\ source_date.*$/global\ source_date\ $DATE/g texlive.spec.template +rm -f texlive-*-source.tar.xz +echo "Packing..." +time tar Oc source | xz -cv -T0 - > texlive-$DATE-source.tar.xz +rm -rf source +mv source.svn source +mv texlive*-source.tar.xz `rpm --eval "%_topdir"`/SOURCES diff --git a/SOURCES/macros.texlive b/SOURCES/macros.texlive new file mode 100644 index 0000000..2aa1342 --- /dev/null +++ b/SOURCES/macros.texlive @@ -0,0 +1,26 @@ +# macros to keep trees in texlive consistent +%_texmf /usr/share/texlive/texmf-local +%_texmf_main /usr/share/texlive/texmf-dist +%_texmf_vendor /usr/share/texlive/texmf-dist +%_texmf_var /var/lib/texmf +%_texmf_conf /usr/share/texlive/texmf-config + +%texlive_post \ +mkdir -p /var/run/texlive \ +touch /var/run/texlive/run-texhash \ +touch /var/run/texlive/run-mtxrun \ +: + +%texlive_postun \ +if [ $1 == 1 ]; then \ + mkdir -p /var/run/texlive \ + touch /var/run/run-texhash \ +else \ + %{_bindir}/texhash 2> /dev/null \ +fi \ +: + +%texlive_posttrans \ +if [ -e /var/run/texlive/run-texhash ] && [ -e %{_bindir}/texhash ]; then %{_bindir}/texhash 2> /dev/null; rm -f /var/run/texlive/run-texhash; fi \ +if [ -e /var/run/texlive/run-mtxrun ]; then export TEXMF=/usr/share/texlive/texmf-dist; export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; export TEXMFCACHE=/var/lib/texmf; %{_bindir}/mtxrun --generate &> /dev/null; rm -f /var/run/texlive/run-mtxrun; fi \ +: diff --git a/SOURCES/texlive-2016-latexdiff-perl518.patch b/SOURCES/texlive-2016-latexdiff-perl518.patch new file mode 100644 index 0000000..e9b82f8 --- /dev/null +++ b/SOURCES/texlive-2016-latexdiff-perl518.patch @@ -0,0 +1,134 @@ +diff -up ./latexdiff.pl.orig ./latexdiff.pl +--- ./latexdiff.pl.orig 2015-12-28 19:15:33.000000000 -0500 ++++ ./latexdiff.pl 2016-06-22 15:46:24.444571914 -0400 +@@ -1465,7 +1465,7 @@ sub flatten { + $bblfile=~s/\.tex$//; + $bblfile.=".bbl"; + +- if ( ($includeonly) = ($preamble =~ m/\\includeonly{(.*?)}/ ) ) { ++ if ( ($includeonly) = ($preamble =~ m/\\includeonly\{(.*?)}/ ) ) { + $includeonly =~ s/,/|/g; + } else { + $includeonly = '.*?'; +@@ -1474,7 +1474,7 @@ sub flatten { + print STDERR "DEBUG: includeonly $includeonly\n" if $debug; + + # recursively replace \\input and \\include files +- 1 while $text=~s/(^(?:[^%\n]|\\%)*)\\input{(.*?)}|\\include{(${includeonly}(?:\.tex)?)}/{ ++ 1 while $text=~s/(^(?:[^%\n]|\\%)*)\\input\{(.*?)}|\\include\{(${includeonly}(?:\.tex)?)}/{ + $begline=(defined($1)? $1 : "") ; + $fname = $2 if defined($2) ; + $fname = $3 if defined($3) ; +@@ -1491,7 +1491,7 @@ sub flatten { + "$begline$newpage$replacement$newpage"; + }/exgm; + # replace bibliography with bbl file if it exists +- $text=~s/(^(?:[^%\n]|\\%)*)\\bibliography{(.*?)}/{ ++ $text=~s/(^(?:[^%\n]|\\%)*)\\bibliography\{(.*?)}/{ + if ( -f $bblfile ){ + $replacement=read_file_with_encoding(File::Spec->catfile($bblfile), $encoding); + } else { +@@ -1502,7 +1502,7 @@ sub flatten { + "$begline$replacement"; + }/exgm; + # replace subfile with contents (subfile package) +- $text=~s/(^(?:[^%\n]|\\%)*)\\subfile{(.*?)}/{ ++ $text=~s/(^(?:[^%\n]|\\%)*)\\subfile\{(.*?)}/{ + $begline=(defined($1)? $1 : "") ; + $fname = $2; + # # add tex extension unless there is a three letter extension already +@@ -2244,7 +2244,7 @@ sub take_comments_and_enter_from_frac() + sub preprocess { + for (@_) { + # Change \{ to \QLEFTBRACE, \} to \QRIGHTBRACE, and \& to \AMPERSAND +- s/(?uhv_dl_b.ps \ + && diff uhv_dl_b.ps $srcdir/tests/uhv_dl.ps \ + && echo "t1testpage/bin tests OK" \ + || failed="$failed t1testpage/bin" + + $LCDF_TYPETOOLS_TREE/t1reencode/t1reencode -e $srcdir/tests/t2c.enc -a $srcdir/tests/uhvrrc8a.pfb uhv_re.tmp \ + && grep -v 'Created by t1reencode' uhv_re.tmp >uhv_re.pfa \ + && diff uhv_re.pfa $srcdir/tests/uhv_re.pfa \ + && echo "t1reencode/asc tests OK" \ + || failed="$failed t1reencode/asc" + +-$LCDF_TYPETOOLS_TREE/t1rawafm/t1rawafm -o uhv_re_a.afm uhv_re.pfa \ +- && diff uhv_re_a.afm $srcdir/tests/uhv_re.afm \ +- && echo "t1rawafm/asc tests OK" \ +- || failed="$failed t1rawafm/asc" +- + cat $srcdir/tests/uhvrrc8a.pfb | $LCDF_TYPETOOLS_TREE/t1reencode/t1reencode -e $srcdir/tests/t2c.enc -b \ + | $LCDF_TYPETOOLS_TREE/t1rawafm/t1rawafm >uhv_re_b.afm \ + && diff uhv_re_b.afm $srcdir/tests/uhv_re.afm \ diff --git a/SOURCES/texlive-fedora-licenses.h b/SOURCES/texlive-fedora-licenses.h new file mode 100644 index 0000000..b760a70 --- /dev/null +++ b/SOURCES/texlive-fedora-licenses.h @@ -0,0 +1,189 @@ +"cmdtrack", NULL, /* Removed from TeXLive - non-free */ +"fltpage", NULL, /* Removed from TeXLive - non-free */ +"free-math-font-survey", NULL, /* Removed from TeXLive - non-free */ +"kalender", NULL, /* Removed from TeXLive - non-free */ +"latex-tipps-und-tricks", NULL, /* Removed from TeXLive - non-free */ +"russ", NULL, /* Removed from TeXLive - non-free */ +"preview", NULL, /* upstream in Fedora */ +"psutils", NULL, /* in Fedora */ +"floatflt", "LPPL", +"seetexk", "MIT", +"texdraw", "CC-BY", +"ogham", "Public Domain", +"midnight", "midnight", +"ec", "ec", +"setspace", "Copyright only", /* http://www.linux.cz/pipermail/texlive/2011-December/000357.html */ +"authoraftertitle", "Public Domain", /* http://www.linux.cz/pipermail/texlive/2011-December/000359.html */ +"gentle", "CC-BY-SA", /* http://www.linux.cz/pipermail/texlive/2011-December/000375.html */ +"gillcm", "BSD", /* http://www.linux.cz/pipermail/texlive/2011-December/000382.html */ +"doc-pictex", "Copyright only", /* http://www.linux.cz/pipermail/texlive/2011-December/000386.html */ +"abstyles", "Abstyles", /* http://www.linux.cz/pipermail/texlive/2011-December/000343.html */ +"adobemapping", "BSD", +"ANUfinalexam", "GPL+", +"apalike2", "Knuth", +"apa6e", "BSD", +"arpic", "Arpic", +"ar", "LPPL", +"asana-math", "OFL", +"ascii-chart", "LPPL", +"bbm", "Copyright only", +"bbold-type1", "Copyright only", +"bera", "Bitstream vera", +"berenisadf", "GPLv2+ and LPPL", +"bchart", "MIT", +"blacklettert1", "LPPL", +"borceux", "Borceux", +"braille", "LPPL", +"breakcites", "Copyright only", +"calligra", "Copyright only", +"calligra-type1", "Copyright only", +"charter", "Copyright only", +"cherokee", "Copyright only", +"chicago", "Knuth", +"cite", "Copyright only", +"clock", "GPL+", +"cm-unicode", "OFL", +"codepage", "BSD", +"context-filter", "BSD", +"context-mathsets", "BSD", +"context-rst", "BSD", +"context", "GPL+ or LPPL", +"context-vim", "BSD", +"courseoutline", "Copyright only", +"coursepaper", "Copyright only", +"crossword", "Crossword", +"csplain", "GPLv2+", +"dancers", "Copyright only", +"de-macro", "AFL", +"detex", "NCSA", +"din1505", "Bibtex", +"dk-bib", "GPLv2+", +"dosepsbin", "GPLv2 or Artistic", +"dotseqn", "Dotseqn", +"doublestroke", "Doublestroke", +"dvidvi", "Copyright only", +"ecv", "Copyright only", +"eiad", "Public Domain", +"electrum", "GPLv2+ with exceptions and LPPL", +"elvish", "Elvish", +"epstopdf", "BSD", +"eqname", "Copyright only", +"esstix", "OFL", +"etex-pkg", "LPPL", +"eurosym", "Eurosym", +"facture", "CC-BY-SA", +"fancynum", "LPPL", +"fbithesis", "LPPL", +"figflow", "Copyright only", +"finbib", "Bibtex", +"fltpoint", "LPPL", +"fonetika", "GPL+ and LPPL", +"font-change", "CC-BY-SA", +"formlett", "GPL+", +"framed", "Copyright only", +"fundus", "LPPL", +"fwlw", "Copyright only", +"gene-logic", "Crossword", +"gentium", "OFL", +"germbib", "Bibtex", +"getoptk", "CeCILL-B", +"gfsartemisia", "LPPL", +"gfsbaskerville", "LPPL", +"gfsbodoni", "OFL", +"gfscomplutum", "OFL", +"gfsdidot", "LPPL", +"gfsneohellenic", "LPPL", +"gfsporson", "LPPL", +"gfssolomos", "OFL", +"harvmac", "CC-BY", +"hc", "GPLv2+", +"hyphen-basque", "Bahyph", +"hyphenex", "Public Domain", +"hyphen-greek", "LPPL", +"hyphen-turkish", "Copyright only", +"hyph-utf8", "Copyright only", +"ifsym", "LPPL", +"inconsolata", "OFL", +"index", "LPPL", +"ipaex", "IPA", +"itrans", "BSD", +"jadetex", "MIT", +"jamtimes", "BSD", +"japanese-otf", "BSD", +"jlabels", "Bibtex or LPPL", +"kixfont", "Copyright only", +"latex2e-help-texinfo", "Latex2e", +"lhcyr", "Lhcyr", +"localloc", "Bibtex", +"lshort-german", "GFDL", +"lshort-spanish", "GPLv2+", +"lshort-ukr", "GPLv2+", +"lua-alt-getopt", "MIT", +"magaz", "Copyright only", +"makeindex", "MakeIndex", +"mdputu", "BSD", +"menu", "LPPL", +"metapost-examples", "GPL+", +"mhequ", "Public Domain", +"mil3", "Copyright only", +"minutes", "LPPL", +"mkgrkindex", "LPPL", +"mkjobtexmf", "GPLv2 or Artistic", +"mpman-ru", "MIT", +"mp3d", "LPPL", +"mslapa", "Public Domain", +"mxedruli", "LPPL", +"nature", "LPPL", +"newsletr", "Newsletr", +"ocr-b-outline", "Copyright only", +"ocr-b", "Copyright only", +"oldstandard", "OFL", +"oubraces", "Copyright only", +"passivetex", "MIT", +"path", "Bibtex", +"pax", "GPLv2+", +"pb-diagram", "GPLv2+", +"persian-modern", "OFL", +"philokalia", "OFL", +"plain-doc", "Public Domain", +"plweb", "Copyright only", +"pnas2009", "Bibtex", +"prodint", "OFL", +"productbox", "Copyright only", +"psfrag", "psfrag", +"pst-bspline", "LPPL", +"ps2pkm", "MIT", +"ptex", "BSD", +"punknova", "Punknova", +"rccol", "LPPL", +"rsfs", "rsfs", +"r_und_s", "BSD", +"shapepar", "Dotseqn", +"showhyphens", "MIT", +"slideshow", "Copyright only", +"sphack", "Bibtex", +"stix", "OFL", +"subsupscripts", "LPPL", +"tabls", "Dotseqn", +"tds", "Latex2e", +"tetex", "GPL+ and GPLv2+ and LPPL", +"texdiff", "GPL+ or Artistic", +"texdirflatten", "GPL+ or Artistic", +"texloganalyser", "BSD", +"tex-refs", "GFDL", +"threeparttable", "Threeparttable", +"tie", "Latex2e", +"tikz-dependency", "(GPLv2 or LPPL) and (GFDL or LPPL)", +"tucv", "CC-BY-SA", +"tugboat-plain", "Bibtex", +"ulem", "Copyright only", +"umtypewriter", "OFL", +"utopia", "Utopia", +"venturisadf", "Utopia", +"version", "Copyright only", +"vntex", "Utopia", +"wadalab", "Wadalab", +"webguide", "Utopia", +"wsuipa", "Utopia", +"xdvi", "MIT", +"zed-csp", "Zed", diff --git a/SOURCES/texlive-latexpand-perl518.patch b/SOURCES/texlive-latexpand-perl518.patch new file mode 100644 index 0000000..5c6cda7 --- /dev/null +++ b/SOURCES/texlive-latexpand-perl518.patch @@ -0,0 +1,48 @@ +--- latexpand.old 2015-12-14 14:23:11.624505410 -0500 ++++ latexpand 2015-12-14 14:37:45.196569657 -0500 +@@ -123,7 +123,7 @@ sub process_file + # ignored by LaTeX, but we don't allow anything before + # to avoid e.g. \verb|\end{document}| from terminating + # the file. +- if (!$keep_comments && $line =~ /^[ \t]*\\end{document}/) { ++ if (!$keep_comments && $line =~ /^[ \t]*\\end\{document}/) { + last; + } + } +@@ -133,7 +133,8 @@ sub process_file + + sub process_line + { +- my ($_, $prefix, $file) = @_; ++ my ($line, $prefix, $file) = @_; ++ $_ = $line; + # Consider \makeatletter only in preamble, because we do want + # to warn on \someCommand{\makeatletter\command@with@arobase}. + if ($in_preamble && /^[^%]*\\makeatletter/) { +@@ -203,7 +204,7 @@ sub process_line + if ($expand_usepackage) { + # Don't bother with before and after text, we just require the + # usepackage to be alone on its line. +- if (my ($package_name) = /^\s*\\usepackage{([^}]*)}\s*(%.*)?$/) { ++ if (my ($package_name) = /^\s*\\usepackage\{([^}]*)}\s*(%.*)?$/) { + my $full = find_file($package_name . ".sty", $TEXINPUTS); + if ($full) { + say $prefix . "Found package file: $full\n"; +@@ -216,7 +217,7 @@ sub process_line + } + if ($expand_bbl) { + if (my ($before, $bib_name, $after) +- = /^(.*)\\bibliography{([^}]*)}(.*)$/) { ++ = /^(.*)\\bibliography\{([^}]*)}(.*)$/) { + # The BBL file is not necessarily $bib_name. + # Take it from the command-line. + print $before . $nl; +@@ -233,7 +234,7 @@ sub process_line + print STDERR "$full\n"; + } + } +- if (/^[ \t]*\\begin{document}/) { ++ if (/^[ \t]*\\begin\{document}/) { + $in_preamble = 0; + if ($makeatletter) { + print '\makeatletter' . $nl; diff --git a/SOURCES/texlive.spec.template b/SOURCES/texlive.spec.template new file mode 100644 index 0000000..6a86cf5 --- /dev/null +++ b/SOURCES/texlive.spec.template @@ -0,0 +1,919 @@ +%global source_date 20150728_r37987 +%global tl_version 2015 +%global tl_rel 27 +%global tl_release %{tl_rel}.%{source_date}%{?dist} +%global tl_noarch_release %{tl_rel}%{?dist} +%global source_name texlive-%{source_date}-source + +%{!?_texdir: %global _texdir %{_datadir}/%{name}} +%{!?_texmf_var: %global _texmf_var %{_var}/lib/texmf} + +%if 0%{?fedora} <= 19 +# don't figure any perl dependencies +%global __perl_requires %{nil} +%else +# 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)\\\\) +%endif + +%global __os_install_post /usr/lib/rpm/brp-compress %{nil} +%global __arch_install_post %{nil} + +%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d) + +Name: texlive +Version: %{tl_version} +Release: %{tl_release} +Epoch: 5 +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 libXaw-devel libXi-devel ncurses-devel bison flex file perl(Digest::MD5) texinfo gcc-c++ +BuildRequires: gd-devel teckit-devel freetype-devel libpng-devel t1lib-devel zlib-devel poppler-devel t1utils +BuildRequires: zziplib-devel libicu-devel cairo-devel harfbuzz-devel perl-generators pixman-devel graphite2-devel ghostscript-devel +BuildRequires: libpaper-devel potrace-devel autoconf automake libtool +BuildRequires: gmp-devel mpfr-devel +Requires: texlive-scheme-basic +Requires: texlive-collection-latexrecommended +Requires: tex-kpathsea, tex-tetex +Obsoletes: texlive < %{tl_version}, texlive-texmf < %{tl_version} +Obsoletes: texlive-afm < %{tl_version} +Obsoletes: texlive-doc < %{tl_version} +Obsoletes: texlive-east-asian < %{tl_version} +Obsoletes: texlive-texmf-afm < %{tl_version}, texlive-texmf-context < %{tl_version} +Obsoletes: texlive-texmf-doc < %{tl_version}, texlive-texmf-dvips < %{tl_version} +Obsoletes: texlive-texmf-east-asian < %{tl_version}, texlive-texmf-fonts < %{tl_version} +Obsoletes: texlive-texmf-latex < %{tl_version}, texlive-texmf-xetex < %{tl_version} +Obsoletes: texlive-texmf-errata < %{tl_version} +Obsoletes: texlive-texmf-errata-afm < %{tl_version}, texlive-texmf-errata-context < %{tl_version} +Obsoletes: texlive-texmf-errata-doc < %{tl_version}, texlive-texmf-errata-dvips < %{tl_version} +Obsoletes: texlive-texmf-errata-east-asian < %{tl_version}, texlive-texmf-errata-fonts < %{tl_version} +Obsoletes: texlive-texmf-errata-latex < %{tl_version}, texlive-texmf-errata-xetex < %{tl_version} +Conflicts: texlive-dvips = 2007 +Patch1: tl-kpfix.patch +Patch2: tl-format.patch +Patch3: texlive-20150728-selinux-context.patch +Patch4: texlive-fix-system-teckit.patch +Patch100: texlive-bz979176.patch +Patch101: etex-addlanguage-fix-bz1215257.patch +Source0: %{source_name}.tar.xz +Source1: tl2rpm.c +Source2: texlive.tlpdb +Source3: texlive-licenses.tar.xz +Source4: tlpdb.patch +Source5: texlive-fedora-licenses.h +Source6: texlive.spec.template +Source7: co_source +Source8: co_archive +Source9: b_one_srpm +Source10: macros.texlive +%include _sources.spec + +%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 base +Summary: TeX Live filesystem, metadata and licenses shipped in text form +BuildArch: noarch +Version: %{tl_version} +Requires(pre): coreutils + +%description base +TeX Live licenses shipped in text form. + +%package lib +Summary: Shared libraries for TeX-related files +Provides: texlive-kpathsea-lib = %{epoch}:%{version}-%{release} +Provides: texlive-kpathsea-lib%{_isa} = %{epoch}:%{version}-%{release} +Obsoletes: texlive-kpathsea-lib < %{version} +%include _obsoletes.spec + +%description lib +TeX specific shared libraries. + +%package lib-devel +Summary: Development files for TeX specific shared libraries +Requires: %{name}-lib%{?_isa} +Provides: kpathsea-devel = %{epoch}:%{version} +Obsoletes: kpathsea-devel < %{version} +Provides: texlive-kpathsea-lib-devel = %{epoch}:%{version}-%{release} +Provides: texlive-kpathsea-lib-devel%{_isa} = %{epoch}:%{version}-%{release} +Obsoletes: texlive-kpathsea-lib-devel < %{version} + +%description lib-devel +Development files for TeX specific shared libraries. + +%include _packages.spec + +%prep +%setup -q -c -T +xz -dc %{SOURCE0} | tar x +[ -e %{source_name} ] && mv %{source_name} source +%patch1 -p0 +%patch2 -p0 +%patch3 -p0 +%patch4 -p0 +# security fix for bz#979176 +%patch100 -p0 +for l in `unxz -c %{SOURCE3} | tar t`; do + ln -s %{_texdir}/licenses/$l $l +done +pushd source +./reautoconf +popd + +%build +export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing -Werror=format-security" +export CXXFLAGS="$RPM_OPT_FLAGS -std=c++03 -fno-strict-aliasing -Werror=format-security" +cd source +PREF=`pwd`/inst +mkdir -p work +cd work +../configure \ +--prefix=$PREF \ +--datadir=$PREF \ +--libdir=$PREF/lib \ +--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 \ +--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-psutils \ +--disable-biber \ +--disable-ptexenc \ +--disable-largefile \ +%ifarch %{power64} s390 s390x aarch64 +--disable-luajittex --disable-mfluajit \ +%endif +--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 +rm -rf %{buildroot} + +# 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 +pushd %{buildroot}%{_texdir}/texmf-local +ln -s ../../texmf texmf-compat +popd +%include _mkdirs.spec +%include _unpack.spec +# nuke useless tlmgr packaging stuff and doc droppings +rm -rf %{buildroot}%{_texdir}/tlpkg/tlpobj/ +rm -rf %{buildroot}%{_texdir}/texmf-dist/tlpkg/tlpobj/ +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 + +mkdir -p %{buildroot}%{_bindir} +mv %{buildroot}/bin/i386-linux/* %{buildroot}%{_bindir} +for i in `find %{buildroot}%{_bindir} -type f`; do + [ "`file $i | grep ELF | wc -l`" == "1" ] && rm -f $i +done +rm -rf %{buildroot}/tlpkg + +# install texlive.tlpdb +cp %{SOURCE2} %{buildroot}%{_texdir} + +# install licenses +mkdir -p %{buildroot}%{_texdir}/licenses +pushd %{buildroot}%{_texdir}/licenses +xz -dc %{SOURCE3} | tar x +popd + +# install binaries +rm -rf %{buildroot}%{_texdir}/bin/ +mkdir -p %{buildroot}%{_bindir} +rm -f source/inst/bin/man +pushd source/inst/bin/ +for i in *; do + if [ -x %{buildroot}%{_bindir}/$i ]; then + if [ -h $i ]; then + [ ! -h %{buildroot}%{_bindir}/$i ] && continue; + fi + fi + mv $i %{buildroot}%{_bindir} +done +popd + +# install shared libs, nuke static ones +rm -rf %{buildroot}%{_libdir} +mkdir -p %{buildroot}%{_libdir} +cp -d source/inst/lib/*.so* %{buildroot}%{_libdir} +cp -a source/inst/lib/pkgconfig %{buildroot}%{_libdir} +rm -f %{buildroot}%{_libdir}/*.a +rm -f %{buildroot}%{_libdir}/*.la + +# install includes +rm -rf %{buildroot}%{_includedir} +mkdir -p %{buildroot}%{_includedir} +cp -r source/inst/include/* %{buildroot}%{_includedir} + +# 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 + +# sync built/distro binaries +pushd %{buildroot}%{_bindir} +rm -f man +[ ! -e mfplain ] && ln -s mpost mfplain +[ ! -e texlua ] && ln -s luatex texlua +[ ! -e texluac ] && ln -s luatex texluac +# remove binaries we don't ship +for i in physe phyzzx installfont-tl pdfthumb ppower4 tcdialog latexmk texdiff songidx inimflua inimfluajit mflua mflua-nowin mfluajit mfluajit-nowin \ +paperconf; do + rm -f $i + rm -f %{buildroot}%{_datadir}/texlive/texmf-dist/doc/man/man1/$i.* +done +rm -rf %{buildroot}%{_includedir}/ptexenc +popd + +# fix symlinks +pushd %{buildroot}%{_bindir} +for i in allcm allneeded fontinst kpsetool updmap-sys ps2frag pslatex rubibtex rumakeindex dvi2fax dvired kpsewhere; do + rm -f $i + ln -s /usr/share/texlive/texmf-dist/scripts/texlive/$i.sh $i +done +for i in updmap e2pall; do + rm -f $i + ln -s /usr/share/texlive/texmf-dist/scripts/texlive/$i.pl $i +done +for i in fmtutil-sys texconfig texconfig-sys texconfig-dialog texlinks; do + rm -f $i + ln -s /usr/share/texlive/texmf-dist/scripts/texlive/$i.sh $i +done + +rm -f fmtutil +ln -s /usr/share/texlive/texmf-dist/scripts/texlive/fmtutil.pl fmtutil +rm -f texmfstart +ln -s /usr/share/texlive/texmf-dist/scripts/context/ruby/texmfstart.rb texmfstart +rm -f texdoctk +ln -s /usr/share/texlive/texmf-dist/scripts/texdoctk/texdoctk.pl texdoctk +rm -f deweb +ln -s /usr/share/texlive/texmf-dist/scripts/chktex/deweb.pl deweb +rm -f ps2eps +ln -s /usr/share/texlive/texmf-dist/scripts/ps2eps/ps2eps.pl ps2eps +rm -f mkjobtexmf +ln -s /usr/share/texlive/texmf-dist/scripts/mkjobtexmf/mkjobtexmf.pl mkjobtexmf +rm -f rungs +ln -s /usr/share/texlive/texmf-dist/scripts/texlive/rungs.tlu rungs +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=/var/lib/texmf; +%{_bindir}/mtxrun --script context "\\$@" +EOF +chmod 0755 context +popd + +# remove all unshipped stuff +%include _remove.spec +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}/ + +# nuke useless tlmgr packaging stuff +rm -rf %{buildroot}%{_texdir}/tlpkg/tlpobj/ +rm -rf %{buildroot}%{_texdir}/texmf-dist/tlpkg/tlpobj/ + +# link config dir to the main tree and var dir to root +pushd %{buildroot}%{_texdir} +[ ! -h texmf-var ] && ln -s %{_texmf_var} texmf-var +popd +pushd %{buildroot}%{_texdir}/texmf-config/web2c +ln -s ../../texmf-dist/web2c/updmap.cfg updmap.cfg +popd + +# touch ghosts +touch %{buildroot}%{_texdir}/texmf-local/ls-R +touch %{buildroot}%{_texdir}/texmf-dist/ls-R + +# configure ConTeXt +#for i in ctxtools luatools texexec texmfstart; do +# sed -i -e 's|mtxrun|export TEXMF=/usr/share/texlive/texmf-dist; export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; export TEXMFCACHE=/var/lib/texmf; mtxrun|' %{buildroot}%{_bindir}/$i +#done + +# configure texmf-local - make it visible to kpathsea +sed -i -e 's|^TEXMFLOCAL.*|TEXMFLOCAL\ =\ \$TEXMFROOT/texmf-local//|' %{buildroot}/%{_texdir}/texmf-dist/web2c/texmf.cnf + +# create macro file for building texlive +mkdir -p %{buildroot}%{macrosdir} +cp -a %{SOURCE9} %{buildroot}%{macrosdir}/macros.texlive + +%clean +rm -rf %{buildroot} + +%pre base +rm -rf %{_texdir}/texmf-var +rm -rf %{_texmf_var}/* +: + +%posttrans base +if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then + [ -x /sbin/restorecon ] && /sbin/restorecon -R %{_texmf_var}/ +fi +: + +%post lib -p /sbin/ldconfig +%postun lib -p /sbin/ldconfig + +%files +%defattr(-,root,root) + +%files base +%defattr(-,root,root) +%dir %{_texmf_var} +%{_texdir}/texmf-var +%dir %{_texdir}/../texmf +%dir %{_texdir}/licenses +%dir %{_texdir}/texmf-local +%{_texdir}/texmf-local/texmf-compat +%include _dirs.spec +%{_texdir}/licenses/* +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-dist/ls-R +%attr(0644, root, root) %verify(not md5 size mtime) %ghost %{_texdir}/texmf-local/ls-R +%{_texdir}/texlive.tlpdb +%{macrosdir}/macros.texlive + +%include _files.spec + +%files lib +%defattr(-,root,root) +%{_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 lib-devel +%defattr(-,root,root) +%dir %{_includedir}/kpathsea +%{_includedir}/kpathsea/* +%{_includedir}/synctex/ +%{_includedir}/texlua52/ +%{_includedir}/texluajit/ +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + +%changelog +* Mon Jul 18 2016 Marek Kasik - 5:2015-27.20150728_r37987 +- Rebuild for poppler-0.45.0 + +* Tue May 3 2016 Marek Kasik - 5:2015-26.20150728_r37987 +- Rebuild for poppler-0.43.0 + +* Fri Apr 15 2016 David Tardon - 5:2015-25.20150728_r37987 +- rebuild for ICU 57.1 + +* Mon Nov 16 2015 Than Ngo - 5:2015-14.20150728_r37987 +- fix build failure on secondary arch + +* Wed Oct 28 2015 David Tardon - 5:2015-13.20150728_r37987 +- rebuild for ICU 56.1 + +* Thu Oct 08 2015 Than Ngo - 5:2015-12.20150724 +- fix build failure on s390* +- fix to use system gmp and system mpfr + +* Wed Oct 7 2015 Peter Robinson 5:2015-11.20150724 +- Fix lua builds on secondary arches again + +* Thu Oct 1 2015 Tom Callaway - 5:2015-10.20150724 +- fix rpm macros so that the right file is copied + +* Mon Sep 28 2015 Tom Callaway - 5:2015-9.20150724 +- add Requires: tex(titlesec.sty) to savetrees (bz1266801) + +* Fri Sep 25 2015 Tom Callaway - 5:2015-8.20150724 +- add Provides: tex-beamer-FUBerlin and texlive-beamer-FUBerlin to the beamer-FUBerlin-doc package + ... the upstream beamer-FUBerlin tarball is empty of useful content. + +* Wed Sep 16 2015 Tom Callaway - 5:2015-7.20150724 +- fix newline issue in pgf (bz1241458) +- do not require: ghostscript-devel for texlive-pdfcrop-bin (bz1229407) +- do not provide: tex(ifluatex.sty) in texlive-oberdiek (bz1146684) + ... but do require: tex(ifluatex.sty) in texlive-oberdiek to ensure complete bundle +- add Requires: texlive-metafont-bin to texlive-kpathsea-bin (bz1123096) +- add Provides/Obsoletes texlive-tlwg to texlive-fonts-tlwg (bz1100984) +- add Requires: texlive-greek-fontenc and Requires: texlive-cbfonts-fd to textgreek (bz1064051) +- apply patch from Edgar Hoch to fix etex.src to permit \addlanguage to have empty params 4 & 5 (bz1215257) +- replace visible references to oriya to odia, add odia as equiv lang to oriya (bz1040337) +- use macros.texlive file as source10, add and cleanup macros (bz1054317) +- add Requires: biber to texlive-biblatex-apa (bz1048193) +- new subpackage sync +- add scriptlets for -doc subpackages so that texdoc just works +- removed yfonts-t1 subpackage due to non-free license +- fix license tags (no more Freely distributable...) +- add Requires: tex(ltxkeys.sty) to xwatermark (bz1197494) +- add Requires: tex(ifnextok.sty) to titlecaps (bz1186688) +- add Requires: tex(xetex.def) to xetex (bz1155267) +- add Requires: texlive-texconfig-bin to latex-bin-bin (bz995752) +- add Provides/Obsoletes bibexport to texlive-bibexport + add bibexport.sh symlink in /usr/bin (bz979448) +- drop incorrect versioning on Requires: texlive-metafont-bin for texlive-kpathsea-bin + +* Tue Sep 15 2015 Tom Callaway - 5:2015-6.20150724 +- increment epoch to force upgrade (i hate versioning) + +* Wed Sep 9 2015 Tom Callaway - 4:2015-5.20150724 +- fix incorrect Obsoletes: texlive-kpathsea-lib + +* Wed Aug 26 2015 Than Ngo - 4:2015-4.20150724 +- disable luajittex on secondary arch + +* Thu Aug 20 2015 Than Ngo - 4:2015-3.20150724 +- rebuilt to fix some broken dependencies + +* Wed Aug 5 2015 Tom Callaway 4:2015-2.20150724 +- fix fmtutil.pl symlink, for you know, working fmtutil + +* Fri Jul 24 2015 Tom Callaway 4:2015-1.20150724 +- Update to TL2015 + +* Wed Jul 22 2015 Marek Kasik - 4:2014-12.20140525_r34255 +- Rebuild (poppler-0.34.0) + +* Wed Jun 10 2015 Than Ngo - 4:2014-11.20140525_r34255 +- fix wrong selinux context + +* Mon Jun 8 2015 Marek Kasik - 4:2014-10.20140525_r34255 +- Rebuild (poppler-0.33.0) + +* Fri Jun 5 2015 Marek Kasik - 4:2014-9.20140525_r34255 +- Rebuild (poppler-0.33.0) + +* Wed Apr 29 2015 Than Ngo - 4:2014-8.20140525_r34255 +- Resolves: bz#1181169, insecure use of /tmp in mktexlsr + +* Wed Mar 4 2015 Ville Skyttä - 4:2014-7.20140525_r34255 +- Install rpm macros in %%{_rpmconfidir}/macros.d where available (#1074287) + +* Mon Jan 26 2015 David Tardon - 4:2014-6.20140525_r34255 +- rebuild for ICU 54.1 + +* Fri Jan 23 2015 Marek Kasik - 4:2014-5.20140525_r34255 +- Rebuild (poppler-0.30.0) + +* Sat Dec 27 2014 Kevin Fenzi - 4:2014-4.20140525_r34255 +* Drop scriptlet that touches /home. Fixes bugs: #1128240 #1047361 #1073518 #1054338 + +* Thu Nov 27 2014 Marek Kasik - 4:2014-3.20140525_r34255 +- Rebuild (poppler-0.28.1) + +* Tue Aug 26 2014 David Tardon - 4:2014-2.20140525_r34255 +- rebuild for ICU 53.1 + +* Mon Aug 18 2014 Fedora Release Engineering - 4:2014-1.20140525_r34255.1 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Tue Jul 22 2014 Jindrich Novy - 2014-1-20140525 +- Tex Live 2014 is out +- fix package dependencies to make update path smoother + +* Sun Jun 8 2014 Jindrich Novy - 2014-0.1-20140525 +- update to TeX Live 2014 release candidate +- conflict with ht package (#959696) + +* Thu May 15 2014 Petr Pisar - 2013-12-20140512 +- Do not export private perl modules (bug #1085424) +- Build-require libXi-devel for xdvik + +* Wed May 14 2014 Jindrich Novy - 2013-11-20140512 +- remove explicit ghostscript-devel dependency in dvisvgm (#1087847) +- pdftex now depends on pdftex-def (#1096535) + +* Tue May 13 2014 Marek Kasik - 2013-10-20140411 +- Rebuild (poppler-0.26.0) + +* Fri Apr 11 2014 Jindrich Novy - 2013-9-20140411 +- sync with upstream + +* Fri Mar 21 2014 Dan Horák - 2013-8-20140305 +- do not attempt to built luajittex (#1070380) + +* Tue Feb 25 2014 Jindrich Novy - 2013-7-20140224 +- sync with upstream +- fix fmt files removal + +* Sat Feb 22 2014 Jindrich Novy - 2013-6-20140217 +- sync with upstream +- remove only generated fmt files upon update + +* Fri Feb 14 2014 David Tardon - 2013-5-20131226 +- rebuild for new ICU + +* Thu Dec 26 2013 Jindrich Novy - 2013-4-20131226 +- sync with upstream + add BR: libpaper-devel, potrace-devel +- remove generated files upon update to avoid 'I'm stymified', etc. +- update co_source - upstream SVN checkout script +- disable Perl dependencies generation for F19 and older (#1023876) +- always have format in printf() #1037351 +- fixes #921805, #952080, #1020941, #1025679, #1045794 +- Merry Christmas! + +* Fri Oct 25 2013 Jindrich Novy - 2013-3-20131021 +- improve obsoletion automatism (#1022291, #1022746) + +* Tue Oct 15 2013 Jindrich Novy - 2013-2-20131019 +- fix symlinks and dependency generation + +* Tue Oct 15 2013 Jindrich Novy - 2013-1-20131014 +- sync with upstream +- fix bin->noarch package dependencies + +* Fri Oct 11 2013 Jindrich Novy - 2013-0.6.1-20131010 +- sync with upstream - fixes metapost, siunitx, latexdiff, luatex + (#1016074, #1013367, #981390, #975254, #976863) +- modify post scripts (#968573) +- fix kpathsea patch +- fix euler fonts installation (#982887) +- fix license tag OFSFLD -> OFL (#1014052) +- process perl dependencies (#1001434) +- don't ship flash files (#1000265) +- rebuild should fix rawhide poppler deps (#998696) +- fixes build of dbus-java (#993438) +- texexec no more complains about switch.rb (#993255) +- bin packages now require their counterparts (#991699, #988978, #984468) +- bibtex works fine now with spanish (#987534) +- do proper obsoletion - include epoch (#983433) +- fix build time tests + +* Wed Jun 12 2013 Jindrich Novy - 2013-0.1-20130608 +- formally switch to 2013 based on upstream +- call updmap-sys and fmtutil-sys for map and format updates +- bump epoch to be sure all noarch packages get updated + +* Tue Jun 11 2013 Jon Ciesla - 2012-25-20130531 +- Rebuild for new gd. + +* Sun Jun 2 2013 Jindrich Novy - 2012-24-20130531 +- fix luatex breakage (#959625) +- fix updmap-sys calls (#968573, #968573) +- fix broken dependencies for packages only shiping binaries/symlinks and nothing else +- fix update path - obsolete dvipdfm (#968358) +- pdfcrop now requires ghostscript (#964183) + +* Mon May 6 2013 Jindrich Novy - 2012-23-20130506 +- don't conflict with ht package - ht binary is now called t4ht (#959696) +- require coreutils (#928566) +- update build scripts +- update symlink references tetex -> texlive +- handle texmf -> texmf-dist upstream move +- do proper obsoletion again + +* Mon Apr 29 2013 Tom Callaway - 2012-22-20130427 +- obsolete/provide ctan-musixtex-fonts and tex-musixtex + +* Sat Apr 27 2013 Jindrich Novy - 2012-21-20130427 +- add missing shebang to context script +- mark language.dat as config file (#929367) +- add scripts for checking out sources and CTAN archives + +* Wed Mar 27 2013 Jindrich Novy - 2012-20-20130321 +- bring chkweb back to life +- fix context script (#924918) +- prefer scripts installed from sources than from CTAN +- BR: ghostscript-devel because of dvisvgm (#924662) + +* Tue Mar 19 2013 Jindrich Novy - 2012-19-20130318 +- fix wrapper for context, remove chkweb man page (#910952) + +* Mon Mar 11 2013 Ralf Corsépius - 2012-18-20130310 +- Remove %%config from %%{_sysconfdir}/rpm/macros.* + (https://fedorahosted.org/fpc/ticket/259). + +* Fri Mar 8 2013 Jindrich Novy 2012-17-20130310 +- run updmap-sys --syncwithtrees posttrans (#915086) +- don't conflict with other packages (#913678) +- obsolete tex-cm-lgc (#907728) +- obsolete tex-kerkis (#907726) +- fix clashes with xmltex (#877690) +- use fedora latexmk instead of texlive latexmk (#914689) +- fix broken symlinks in /usr/bin (#910952) +- fmtutil doesn't print jadetex errors any more (#875266) +- fix post scriptlets + +* Tue Feb 5 2013 Jindrich Novy 2012-16-20130205 +- fix symlinks pointing to system utilities (#907643) +- add BR: texinfo because of makeinfo + +* Mon Jan 28 2013 Jindrich Novy 2012-15-20130131 +- enlarge tex(latex) dependency set, introduce tex(latex-base) (#904147) +- fix post-scriptlets (#875257) +- ship macros.texlive (#885762) +- depend directly on texlive-kpathsea-lib +- disable rpath + +* Fri Jan 18 2013 Marek Kasik 2012-14-20130102 +- Rebuild (poppler-0.22.0) + +* Fri Jan 11 2013 Jindrich Novy 2012-13-20130102 +- make dvips require latex-fonts (#879661) + +* Mon Jan 7 2013 Jindrich Novy 2012-12-20130102 +- fix dependencies and upgrade path (#892054, #891709) +- do not ship windows and other unneeded files + +* Wed Jan 2 2013 Jindrich Novy 2012-11-20130102 +- sync with CTAN +- added new buildrequires +- don't use texlive's psutils +- don't obsolete latexmk (#868996) + +* Thu Dec 6 2012 Jindrich Novy 2012-10-20121205 +- sync with CTAN +- compile also C++ sources with -fno-strict-aliasing +- ship adhocfilelist +- fix changelog dates + +* Tue Nov 20 2012 Jindrich Novy 2012-9-20121120 +- obsolete metapost-metauml (#573863) +- update BR perl-MD5 to perl(Digest::MD5) - required for updmap +- remove redundant posttrans executions in texlive-base (#865650) +- own ls-R in texmf-local directory + +* Wed Nov 14 2012 Jindrich Novy 2012-8-20121115 +- prevent sed from being verbose in install log when uninstalling +- be sure the old /usr/share/texmf tree is indexed and searched by + kpathsea (#876710) +- drop patch to fix build for dvisvgm, it is now applied upstream +- fix dependencies in texlive and texlive-base subpackages (#875364) + +* Sat Nov 10 2012 Jindrich Novy 2012-7-20121107 +- run mtxrun only once per transaction (#865650), this considerably + speeds up installation time + +* Wed Nov 7 2012 Jindrich Novy 2012-6-20121107 +- use -std=c++11 for all C++ apps in texlive to avoid symbol problems + (thanks to Jakub Jelinek) + +* Sun Nov 4 2012 Jindrich Novy 2012-5-20121024 +- don't conflict with latexmk (#868996) +- unify versioning for both binary and noarch subpackages +- remove lcdf-typetools hack for s390(x) + +* Wed Oct 24 2012 Jindrich Novy 2012-3-20121024 +- sync with upstream - fixes problem lcdf-typetools tests +- disable largefile support to fix pdflatex on 32bit arches (#872231) +- put compatibility TEXMF tree reference into texm-local instead + symlinking it to /usr/share/texmf directly + +* Fri Oct 19 2012 Jindrich Novy 2012-3-20121019 +- sync with upstream sources +- make /usr/share/texmf visible to kpathsea, make texmf-local + pointing to it (#867656, #864875) +- fix versioning of binary packages + +* Tue Oct 9 2012 Jindrich Novy 2012-3-20120926 +- obsolete chktex (#864211) +- make config.ps a config file (#441171) +- fix post/postun scriptlet dependencies +- all subpackages now have %%dist tag + +* Sat Oct 6 2012 Jindrich Novy 2012-2-20120926 +- drop relase subpackage (no more needed as TL is now in Fedora) +- fix -doc dependencies +- remove (not-built) asymtote from source tarball +- undefined catalogue version defaults to 0 +- perform automatic license audit +- include also packages not part of any scheme +- don't strip binaries so that we can generate debuginfo (#863635) +- clean up depsolver + +* Wed Oct 3 2012 Jindrich Novy 2012-1-20120926 +- introduce TeX Live 2012 to Fedora (#488651) +- fixes: #619481, #759534, #814880, #819157 + +* Thu Jun 14 2012 Jindrich Novy 2012-1-20120613 +- update to 2012 final +- obsolete system latexmk +- include dvisvgm back + +* Mon Apr 9 2012 Jindrich Novy 2012-0.1.20120408 +- temporarily disable dvisvgm due to gcc-4.7 compilation problems + +* Tue Jul 26 2011 Jindrich Novy 2011-1.20110726 +- update to the official TeX Live 2011 release + +* Sun Mar 13 2011 Jindrich Novy 2011-0.2.20110313 +- bump version to fix koma-skript versioning problem + +* Mon Feb 28 2011 Jindrich Novy 2011-0.1.20110227 +- fix upgrade path with old TL2007 xetex, context or dvips installed +- fix package generation bug that caused some package might be missing + from the repository + (http://www.linux.cz/pipermail/texlive/2011-February/000086.html) +- fix upstream source URLs + +* Tue Jan 25 2011 Jindrich Novy 2011-0.1.20110120 +- bump release to 2011 (we are using the 2011/dev SVN version) +- add more file virtual provides (TFM, TTF, TTC, PFA, PFB, PCF, OTF, + TEX, CNF, CFG, DEF, DAT, LDF, FD, ENC, MAP, VF, VPL, CLO, BUG, BUG2) + +* Thu Dec 23 2010 Jindrich Novy 2010-14.20110105 +- sync with upstream +- install texlive.tlpdb for autodep finder + +* Wed Dec 15 2010 Jindrich Novy 2010-13.20101215 +- sync with upstream as of 15th Dec +- fix dangling symlink (thanks to Michel Alexandre Salim) + +* Fri Nov 12 2010 Jindrich Novy 2010-13.20101112 +- temporarily disable dvi2tty because of failing test suite +- package /etc/texmf and point texmf-config there + +* Fri Nov 5 2010 Jindrich Novy 2010-13.20101102 +- make release package part of the main build + +* Mon Oct 18 2010 Jindrich Novy 2010-12.20101016 +- texlive-jadetex-bin obsoletes jadetex + +* Fri Oct 8 2010 Jindrich Novy 2010-12.20101007 +- fix symlinks in /usr/bin so that they are not pointing to wrong location + +* Thu Oct 7 2010 Jindrich Novy 2010-11.20101007 +- sync with the latest TL2010 sources +- don't make redundant copies of binaries, symlink them +- fix symlinks to perl utilities + +* Wed Aug 25 2010 Jindrich Novy 2010-10.20100814 +- add obsolete of dvisvgm to allow smooth updates + +* Mon Aug 23 2010 Jindrich Novy 2010-9.20100814 +- fix file attributes and rpmlint warnings +- define libdir when calling configure +- rebuild against new poppler + +* Thu Jul 15 2010 Jindrich Novy 2010-8.20100715 +- move all the licenses and base directory hierarchy to texlive-base + noarch subpackage +- add automatic licensing code + +* Fri Jun 4 2010 Jindrich Novy 2010-7.20100604 +- sync with upstream (introducing mptopdf) +- compile C source with -fno-strict-aliasing + +* Mon May 31 2010 Jindrich Novy 2010-7.20100531 +- switch to "tlpretest" source tree +- add lua and ruby dependencies to packages requiring them +- generate global package database "texlive.tlpdb" directly from + tlpobj files shipped with each package + +* Wed May 19 2010 Jindrich Novy 2010-6.20100521 +- disable chktex so that build passes +- fix dist tags in releases in binary packages + +* Fri Apr 30 2010 Jindrich Novy 2010-5.20100430 +- add dependencies resolution among biblatex files +- another %%postun scriptlets fix + +* Wed Apr 21 2010 Jindrich Novy 2010-4.20100421 +- add Requires(posttrans) to the main package + +* Mon Apr 19 2010 Jindrich Novy 2010-3.20100419 +- bump version of binaries because of the kpathsea soname increase + +* Fri Apr 16 2010 Jindrich Novy 2010-0.1.20100416 +- sync with upstream, remove ptex stuff for now + +* Fri Apr 09 2010 Jindrich Novy 2010-0.1.20100329 +- use 2010 prefix +- do not ship/build asymptote (#548761) + +* Fri Mar 26 2010 Jindrich Novy 2009-3.20100326 +- declare fmutil.cnf, updmap.cfg, context.cnf and texmf.cnf as config files + so that they don't get overwritten with texlive-kpathsea update +- move man and info pages to the main packages, not -doc + +* Fri Feb 19 2010 Jindrich Novy 2009-3.20100219 +- blacklist a4wide.sty because of bad (noinfo) license + +* Tue Nov 10 2009 Jindrich Novy 2009-2 +- install man and info pages into proper locations visible + by man and info +- update scriptlets +- remove xindy bits + +* Mon Nov 09 2009 Jindrich Novy 2009-1 +- update to oficcially released TeX Live 2009 +- enable large file support + +* Sun Nov 01 2009 Jindrich Novy 2009-0.13 +- remove postun scriptlet to avoid accidential removal of texmf bits + when not removing the package + +* Fri Oct 23 2009 Jindrich Novy 2009-0.12 +- tighten kpathsea devel dependency + +* Tue Oct 20 2009 Jindrich Novy 2009-0.11 +- fix generation of packages that ships only documentation +- fix versioning of packages without version but with revision +- fix heuristics for gathering .sty files dependencies +- include packages under GFSL license +- make files in old texmf tree from previous installs visible +- do not obsolete old kpathsea, try to coexist +- remove dvipdfm, dvipdfmx,depend of Fedora ones + +* Sun Oct 18 2009 Jindrich Novy 2009-0.10 +- TL2007 compatibility fixes: + - create /usr/share/texmf symlink + - clean all in post scriptlets + +* Fri Oct 02 2009 Jindrich Novy 2009-0.9 +- fix kpathsea Provides/Obsoletes + +* Tue Sep 29 2009 Jindrich Novy 2009-0.8 +- sync with latest upstream + +* Sat Sep 12 2009 Jindrich Novy 2009-0.7 +- make kpathsea independent on the main texlive package + +* Thu Sep 10 2009 Jindrich Novy 2009-0.6 +- remove packages under GFSL non-free license (tex-gyre) + +* Thu Sep 3 2009 Jindrich Novy 2009-0.5 +- fix dependencies to hyphenation packages +- fix provides/obsoletes + +* Mon Aug 31 2009 Jindrich Novy 2009-0.4 +- require recommended LaTeX bits, the installation of pure + scheme-basic is too minimalistic + +* Tue Aug 25 2009 Jindrich Novy 2009-0.3 +- require system psutils and t1utils and don't build the TL ones +- correctly obsolete old kpathsea +- binaries now have -bin postfix +- support for Fedora fonts + +* Thu Aug 20 2009 Jindrich Novy 2009-0.2 +- add tetex-* virtual provides +- fix unversioned requires +- filter out unwanted libs and utilities from source + +* Wed Aug 12 2009 Jindrich Novy 2009-0.1 +- update to TeX Live 2009 - pretest + +* Mon Jun 29 2009 Jindrich Novy 2008-0.2 +- update to today's svn sources of binaries from upstream +- fix directory -> symlink conversion +- add ly1 (#488651) + +* Thu Aug 14 2008 Jindrich Novy 2008-0.1 +- initial packaging for TeX Live 2008 +- wrote tl2rpm.c to autogenerate packages and post scriptlets + from TeX Live metadata +- fix kpathsea default search path diff --git a/SOURCES/texlive.tlpdb b/SOURCES/texlive.tlpdb new file mode 100644 index 0000000..4e6451a --- /dev/null +++ b/SOURCES/texlive.tlpdb @@ -0,0 +1,186556 @@ +name 12many +category Package +revision 15878 +catalogue one2many +shortdesc Generalising mathematical index sets. +relocated 1 +longdesc In the discrete branches of mathematics and the computer +longdesc sciences, it will only take some seconds before you're faced +longdesc with a set like {1,...,m}. Some people write $1\ldotp\ldotp m$, +longdesc others $\{j:1\leq j\leq m\}$, and the journal you're submitting +longdesc to might want something else entirely. The 12many package +longdesc provides an interface that makes changing from one to another a +longdesc one-line change. +runfiles size=1 + RELOC/tex/latex/12many/12many.sty +docfiles size=98 + RELOC/doc/latex/12many/12many.pdf + RELOC/doc/latex/12many/README +srcfiles size=6 + RELOC/source/latex/12many/12many.dtx + RELOC/source/latex/12many/12many.ins +catalogue-ctan /macros/latex/contrib/12many +catalogue-date 2012-06-16 14:32:26 +0200 +catalogue-license lppl +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 +docfiles size=24 + RELOC/doc/generic/2up/2up-doc.pdf + RELOC/doc/generic/2up/2up-doc.tex + RELOC/doc/generic/2up/Changes + RELOC/doc/generic/2up/Makefile + RELOC/doc/generic/2up/README + +name a0poster +category Package +revision 15878 +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 +docfiles size=47 + RELOC/doc/latex/a0poster/a0.pdf + RELOC/doc/latex/a0poster/a0.tex + RELOC/doc/latex/a0poster/a0_eng.pdf + RELOC/doc/latex/a0poster/a0_eng.tex +catalogue-ctan /macros/latex/contrib/a0poster +catalogue-date 2012-03-17 15:49:05 +0100 +catalogue-license lppl +catalogue-version 1.22b + +name a2ping +category TLCore +revision 29725 +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. +depend a2ping.ARCH +runfiles size=26 + texmf-dist/scripts/a2ping/a2ping.pl +docfiles size=8 + 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 +catalogue-license gpl + +name a2ping.i386-linux +category TLCore +revision 27321 +shortdesc i386-linux files of a2ping +binfiles arch=i386-linux size=1 + bin/i386-linux/a2ping + +name a4wide +category Package +revision 20943 +shortdesc "Wide" a4 layout. +relocated 1 +longdesc This package increases the width of the typeset area of an a4 +longdesc page. This sort of operation is capable of producing +longdesc typographically poor results; the operation itself is better +longdesc provided by the geometry package. The package uses the a4 +longdesc package. +runfiles size=1 + RELOC/tex/latex/a4wide/a4wide.sty +docfiles size=34 + RELOC/doc/latex/a4wide/a4wide.pdf + RELOC/doc/latex/a4wide/a4wide.tex +catalogue-ctan /macros/latex/contrib/a4wide +catalogue-date 2012-03-17 15:49:05 +0100 +catalogue-license lppl1 + +name a5comb +category Package +revision 17020 +shortdesc Support for a5 paper sizes. +relocated 1 +longdesc Superceded by geometry. +runfiles size=1 + RELOC/tex/latex/a5comb/a5comb.sty +docfiles size=25 + RELOC/doc/latex/a5comb/a5comb.pdf + RELOC/doc/latex/a5comb/a5comb.tex +catalogue-ctan /macros/latex/contrib/a5comb +catalogue-date 2012-03-17 15:49:05 +0100 +catalogue-license pd +catalogue-version 4 + +name aastex +category Package +revision 15878 +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 + 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 +catalogue-ctan /macros/latex/contrib/aastex +catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-license lppl +catalogue-version 5.2 + +name abbr +category Package +revision 15878 +shortdesc Simple macros supporting abreviations for Plain and LaTeX. +relocated 1 +longdesc The package provides some simple macros to support +longdesc abbreviations in Plain TeX or LaTeX. It allows writing (e.g.) +longdesc \ instead of \TeX, hence frees users from having to escape +longdesc space after parameterless macros. +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-license pd + +name abc +category Package +revision 38340 +shortdesc Support ABC music notation in LaTeX +relocated 1 +longdesc The abc package lets you include lines of music written in the +longdesc ABC Plus language. The package will then employ the \write18 +longdesc facility to convert your notation to PostScript (using the +longdesc established utility abcm2ps) and hence to the format needed for +longdesc inclusion in your document. +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 + RELOC/doc/latex/abc/example.tex + RELOC/doc/latex/abc/mupexa.tex + RELOC/doc/latex/abc/poll.abc + RELOC/doc/latex/abc/simple.mup +srcfiles size=8 + RELOC/source/latex/abc/abc.dtx + RELOC/source/latex/abc/abc.ins +catalogue-also abc2mtex +catalogue-ctan /macros/latex/contrib/abc +catalogue-date 2015-09-10 18:28:53 +0200 +catalogue-license lppl1.2 +catalogue-topics music foreign-import +catalogue-version 2.0a + +name abntex2 +category Package +revision 37101 +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 + 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.tex + RELOC/doc/latex/abntex2/abntex2cite-alf.pdf + RELOC/doc/latex/abntex2/abntex2cite-alf.tex + RELOC/doc/latex/abntex2/abntex2cite.pdf + RELOC/doc/latex/abntex2/abntex2cite.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-artigo.pdf + 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.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.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-projeto-pesquisa.pdf + 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.tex + RELOC/doc/latex/abntex2/examples/abntex2-modelo-slides.pdf + 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.tex +catalogue-ctan /macros/latex/contrib/abntex2 +catalogue-date 2015-04-28 16:18:50 +0200 +catalogue-license lppl1.3 +catalogue-version 1.9.5 + +name abraces +category Package +revision 27880 +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 +docfiles size=51 + RELOC/doc/latex/abraces/abraces-doc.pdf + RELOC/doc/latex/abraces/abraces-doc.tex +catalogue-ctan /macros/latex/contrib/abraces +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.- + +name abstract +category Package +revision 15878 +shortdesc Control the typesetting of the abstract environment. +relocated 1 +longdesc The abstract package gives you control over the typesetting of +longdesc the abstract environment, and in particular provides for a one +longdesc column abstract in a two column paper. +runfiles size=2 + RELOC/tex/latex/abstract/abstract.sty +docfiles size=43 + RELOC/doc/latex/abstract/README + RELOC/doc/latex/abstract/abstract.pdf +srcfiles size=8 + RELOC/source/latex/abstract/abstract.dtx + RELOC/source/latex/abstract/abstract.ins +catalogue-ctan /macros/latex/contrib/abstract +catalogue-date 2012-03-17 16:23:18 +0100 +catalogue-license lppl +catalogue-version 1.2a + +name abstyles +category Package +revision 15878 +catalogue abstyles-orig +shortdesc Adaptable BibTeX styles. +relocated 1 +longdesc A family of modifications of the standard BibTeX styles whose +longdesc behaviour may be changed by changing the user document, without +longdesc change to the styles themselves. The package is largely used +longdesc nowadays in its adaptation for working with Babel. +runfiles size=33 + RELOC/bibtex/bib/abstyles/acompat.bib + RELOC/bibtex/bib/abstyles/jourabbr.bib + RELOC/bibtex/bib/abstyles/jourfull.bib + RELOC/bibtex/bst/abstyles/aabbrv.bst + RELOC/bibtex/bst/abstyles/aalpha.bst + RELOC/bibtex/bst/abstyles/anotit.bst + RELOC/bibtex/bst/abstyles/aplain.bst + RELOC/bibtex/bst/abstyles/aunsnot.bst + RELOC/bibtex/bst/abstyles/aunsrt.bst + RELOC/tex/generic/abstyles/apreambl.tex +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-license other-free + +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 + 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 +catalogue-ctan /fonts/academicons +catalogue-date 2015-07-22 20:43:07 +0200 +catalogue-license lppl1.3 +catalogue-topics font font-supp-symbol font-symbol font-ttf +catalogue-version 1.5 + +name accanthis +category Package +revision 32089 +shortdesc Accanthis fonts, with LaTeX support. +relocated 1 +longdesc Accanthis No. 3 is designed by Hirwin Harendal and is suitable +longdesc as an alternative to fonts such as Garamond, Galliard, Horley +longdesc old style, Sabon, and Bembo. The support files are suitable for +longdesc use with all LaTeX engines. +execute addMap accanthis.map +runfiles size=204 + RELOC/fonts/enc/dvips/accanthis/acnt_m4gnvn.enc + RELOC/fonts/enc/dvips/accanthis/acnt_qu6a6x.enc + RELOC/fonts/enc/dvips/accanthis/acnt_sjpjw4.enc + RELOC/fonts/enc/dvips/accanthis/acnt_z4e4wk.enc + RELOC/fonts/map/dvips/accanthis/accanthis.map + RELOC/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Bold.otf + RELOC/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic.otf + RELOC/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Italic.otf + RELOC/fonts/opentype/arkandis/accanthis/AccanthisADFStdNo3-Regular.otf + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1.tfm + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Bold.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Italic.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-Regular.pfb + RELOC/fonts/type1/arkandis/accanthis/AccanthisADFStdNo3-RegularLCDFJ.pfb + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/accanthis/AccanthisADFStdNo3-Regular-lf-ts1.vf + RELOC/tex/latex/accanthis/LY1AccanthisADFStdNoThree-LF.fd + RELOC/tex/latex/accanthis/OT1AccanthisADFStdNoThree-LF.fd + RELOC/tex/latex/accanthis/T1AccanthisADFStdNoThree-LF.fd + RELOC/tex/latex/accanthis/TS1AccanthisADFStdNoThree-LF.fd + RELOC/tex/latex/accanthis/accanthis.sty +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-ctan /fonts/accanthis +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl2 + +name accfonts +category Package +revision 18835 +shortdesc Utilities to derive new fonts from existing ones. +longdesc The accfonts package contains three utilities to permit easy +longdesc manipulation of fonts, in particular the creation of unusual +longdesc accented characters. Mkt1font works on Adobe Type 1 fonts, +longdesc vpl2vpl works on TeX virtual fonts and vpl2ovp transforms a TeX +longdesc font to an Omega one. All three programs read in a font (either +longdesc the font itself or a property list), together with a simple +longdesc definition file containing lines such as '128 z acute'; they +longdesc then write out a new version of the font with the requested new +longdesc characters in the numerical slots specified. Great care is +longdesc taken over the positioning of accents, and over the provision +longdesc of kerning information for new characters; mkt1font also +longdesc generates suitable "hints" to enhance quality at small sizes or +longdesc poor resolutions. The programs are written in Perl. +depend accfonts.ARCH +runfiles size=37 + texmf-dist/scripts/accfonts/mkt1font + texmf-dist/scripts/accfonts/vpl2ovp + texmf-dist/scripts/accfonts/vpl2vpl + texmf-dist/tex/latex/accfonts/CSX.def + texmf-dist/tex/latex/accfonts/ISO-Latin1.def + texmf-dist/tex/latex/accfonts/ISO-Latin2.def + texmf-dist/tex/latex/accfonts/IndUni_Omega.def + texmf-dist/tex/latex/accfonts/Norman.def +docfiles size=15 + texmf-dist/doc/fonts/accfonts/CHANGES + texmf-dist/doc/fonts/accfonts/COPYING + texmf-dist/doc/fonts/accfonts/README +catalogue-ctan /fonts/utilities/accfonts +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 0.25 + +name accfonts.i386-linux +category Package +revision 12688 +shortdesc i386-linux files of accfonts +binfiles arch=i386-linux size=3 + bin/i386-linux/mkt1font + bin/i386-linux/vpl2ovp + bin/i386-linux/vpl2vpl + +name achemso +category Package +revision 36733 +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 + RELOC/bibtex/bst/achemso/achemso.bst + RELOC/bibtex/bst/achemso/biochem.bst + 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-license lppl1.3 +catalogue-version 3.10 + +name acmconf +category Package +revision 15878 +shortdesc Class for ACM conference proceedings. +relocated 1 +longdesc This class may be used to typeset articles to be published in +longdesc the proceedings of ACM (Association for Computing Machinery) +longdesc conferences and workshops. The layout produced by the acmconf +longdesc class is based on the ACM's own specification. +runfiles size=4 + RELOC/tex/latex/acmconf/acmconf.cls +docfiles size=50 + RELOC/doc/latex/acmconf/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/body.eps + RELOC/doc/latex/acmconf/error.tex + RELOC/doc/latex/acmconf/prepare.tex + RELOC/doc/latex/acmconf/print.tex + RELOC/doc/latex/acmconf/pubform.bib + RELOC/doc/latex/acmconf/pubform.tex + RELOC/doc/latex/acmconf/publish.tex + RELOC/doc/latex/acmconf/submit.tex +srcfiles size=20 + RELOC/source/latex/acmconf/Makefile + RELOC/source/latex/acmconf/acmconf.dtx + RELOC/source/latex/acmconf/acmconf.ins +catalogue-ctan /macros/latex/contrib/acmconf +catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-license lppl +catalogue-version 1.3 + +name acronym +category Package +revision 36582 +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 +docfiles size=68 + RELOC/doc/latex/acronym/README + RELOC/doc/latex/acronym/acronym.pdf + RELOC/doc/latex/acronym/acrotest.tex +srcfiles size=16 + RELOC/source/latex/acronym/acronym.dtx + RELOC/source/latex/acronym/acronym.ins +catalogue-ctan /macros/latex/contrib/acronym +catalogue-date 2015-03-21 19:02:46 +0100 +catalogue-license lppl1.3 +catalogue-version 1.41 + +name acroterm +category Package +revision 20498 +shortdesc Manage and index acronyms and terms. +relocated 1 +longdesc Yet another package for acronyms: the package offers simple +longdesc markup of acronyms and technical terms in the text, giving an +longdesc index each of terms and acronyms with their expanded form. +runfiles size=1 + RELOC/tex/latex/acroterm/acroterm.sty +docfiles size=44 + RELOC/doc/latex/acroterm/README + RELOC/doc/latex/acroterm/acroterm.pdf +srcfiles size=4 + RELOC/source/latex/acroterm/acroterm.dtx + RELOC/source/latex/acroterm/acroterm.ins +catalogue-ctan /macros/latex/contrib/acroterm +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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. +relocated 1 +longdesc Active-conf is a class for typesetting papers for the Active +longdesc conference on noise and vibration control. It is initially +longdesc intended for the 2006 conference in Adelaide, Australia. The +longdesc class is based on article with more flexible front-matter, and +longdesc can be customised for conferences in future years with a header +longdesc file. +runfiles size=4 + RELOC/tex/latex/active-conf/active-conf.cls +docfiles size=93 + RELOC/doc/latex/active-conf/README + RELOC/doc/latex/active-conf/active-conf.pdf + 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 +srcfiles size=13 + RELOC/source/latex/active-conf/active-conf.dtx + RELOC/source/latex/active-conf/active-conf.ins +catalogue-ctan /macros/latex/contrib/conferences/active-conf +catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-license lppl +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. +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-license pd + +name addlines +category Package +revision 37805 +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 +srcfiles size=4 + RELOC/source/latex/addlines/addlines.dtx + RELOC/source/latex/addlines/addlines.ins +catalogue-ctan /macros/latex/contrib/addlines +catalogue-date 2015-07-08 05:25:27 +0200 +catalogue-license lppl +catalogue-topics geometry +catalogue-version 0.2a + +name adfathesis +category Package +revision 26048 +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 +docfiles size=49 + RELOC/doc/latex/adfathesis/README + RELOC/doc/latex/adfathesis/adfathesis.pdf + RELOC/doc/latex/adfathesis/template.tex +srcfiles size=9 + RELOC/source/latex/adfathesis/adfathesis.dtx + RELOC/source/latex/adfathesis/adfathesis.ins +catalogue-ctan /macros/latex/contrib/adfathesis +catalogue-date 2014-09-13 11:37:30 +0200 +catalogue-license pd +catalogue-version 2.42 + +name adforn +category Package +revision 20019 +shortdesc OrnementsADF font with TeX/LaTeX support +relocated 1 +longdesc The bundle provides the Ornements ADF font in PostScript type 1 +longdesc format with TeX/LaTeX support files. The font is licensed under +longdesc GPL v2 or later with font exception. (See NOTICE, COPYING, +longdesc README.) The TeX/LaTeX support is licensed under LPPL. (See +longdesc README, manifest.txt.) +execute addMap OrnementsADF.map +runfiles size=18 + RELOC/fonts/afm/arkandis/adforn/OrnementsADF.afm + RELOC/fonts/enc/dvips/adforn/OrnementsADF.enc + RELOC/fonts/map/dvips/adforn/OrnementsADF.map + RELOC/fonts/tfm/arkandis/adforn/OrnementsADF.tfm + RELOC/fonts/type1/arkandis/adforn/OrnementsADF.pfb + RELOC/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-license lppl +catalogue-version 1.001-b-2 + +name adfsymbols +category Package +revision 19766 +shortdesc SymbolsADF with TeX/LaTeX support. +relocated 1 +longdesc The package provides Arkandis foundry's ArrowsADF and +longdesc BulletsADF fonts in Adobe Type 1 format, together with +longdesc TeX/LaTeX support files. The fonts are licensed under GPL v2 or +longdesc later with font exception. (See NOTICE, COPYING, README.) The +longdesc TeX/LaTeX support is licensed under LPPL. (See README, +longdesc manifest.txt.) +execute addMap ArrowsADF.map +execute addMap BulletsADF.map +runfiles size=19 + RELOC/fonts/afm/arkandis/adfsymbols/ArrowsADF.afm + RELOC/fonts/afm/arkandis/adfsymbols/BulletsADF.afm + RELOC/fonts/enc/dvips/adfsymbols/SymbolsADF.enc + RELOC/fonts/map/dvips/adfsymbols/ArrowsADF.map + RELOC/fonts/map/dvips/adfsymbols/BulletsADF.map + RELOC/fonts/tfm/arkandis/adfsymbols/ArrowsADF.tfm + RELOC/fonts/tfm/arkandis/adfsymbols/BulletsADF.tfm + RELOC/fonts/type1/arkandis/adfsymbols/ArrowsADF.pfb + RELOC/fonts/type1/arkandis/adfsymbols/BulletsADF.pfb + RELOC/tex/latex/adfsymbols/adfarrows.sty + RELOC/tex/latex/adfsymbols/adfbullets.sty + RELOC/tex/latex/adfsymbols/uarrowsadf.fd + RELOC/tex/latex/adfsymbols/ubulletsadf.fd +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-license lppl +catalogue-version 1.001 + +name adhocfilelist +category Package +revision 29349 +shortdesc '\listfiles' entries from the command line. +longdesc The package provides a Unix shell script to display a list of +longdesc LaTeX \Provides...-command contexts on screen. Provision is +longdesc made for controlling the searches that the package does. The +longdesc package was developed on a Unix-like system, using (among other +longdesc things) the gnu variant of the find command. +depend adhocfilelist.ARCH +runfiles size=5 + texmf-dist/scripts/adhocfilelist/adhocfilelist.sh + texmf-dist/scripts/adhocfilelist/herelist.sh + texmf-dist/tex/support/adhocfilelist/adhocfilelist.RLS +docfiles size=13 + texmf-dist/doc/support/adhocfilelist/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/demo/herelist.txt +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 +catalogue-ctan /support/adhocfilelist +catalogue-date 2015-02-23 19:46:41 +0100 +catalogue-license lppl + +name adhocfilelist.i386-linux +category Package +revision 28038 +shortdesc i386-linux files of adhocfilelist +binfiles arch=i386-linux size=1 + bin/i386-linux/adhocfilelist + +name adjmulticol +category Package +revision 28936 +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 +docfiles size=79 + RELOC/doc/latex/adjmulticol/Makefile + RELOC/doc/latex/adjmulticol/README + RELOC/doc/latex/adjmulticol/adjmulticol.bib + RELOC/doc/latex/adjmulticol/adjmulticol.pdf + RELOC/doc/latex/adjmulticol/sample.pdf + RELOC/doc/latex/adjmulticol/sample.tex +srcfiles size=6 + RELOC/source/latex/adjmulticol/adjmulticol.dtx + RELOC/source/latex/adjmulticol/adjmulticol.ins +catalogue-ctan /macros/latex/contrib/adjmulticol +catalogue-date 2014-04-20 00:59:58 +0200 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name adjustbox +category Package +revision 26555 +shortdesc Graphics package-alike macros for "general" boxes. +relocated 1 +longdesc The package provides several macros to adjust boxed content. +longdesc One purpose is to supplement the standard graphics package, +longdesc which defines the macros \resizebox, \scalebox and \rotatebox , +longdesc with the macros\trimbox and \clipbox. The main feature is the +longdesc general \adjustbox macro which extends the "key=value" +longdesc interface of \includegraphics from the graphics package and +longdesc applies it to general text content. Additional provided box +longdesc macros are \lapbox, \marginbox, \minsizebox, \maxsizebox and +longdesc \phantombox. All macros use the collectbox package to read the +longdesc content as a box and not as a macro argument. This allows for +longdesc all forms of content including special material like verbatim +longdesc content. A special feature of collectbox is used to provide +longdesc matching environments with the identical names as the macros. +runfiles size=17 + RELOC/tex/latex/adjustbox/adjcalc.sty + RELOC/tex/latex/adjustbox/adjustbox.sty + RELOC/tex/latex/adjustbox/tc-dvips.def + RELOC/tex/latex/adjustbox/tc-pdftex.def + RELOC/tex/latex/adjustbox/tc-pgf.def + RELOC/tex/latex/adjustbox/tc-xetex.def + RELOC/tex/latex/adjustbox/trimclip.sty +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-ctan /macros/latex/contrib/adjustbox +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name adobemapping +category Package +revision 28079 +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 + 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 +catalogue-ctan /support/adobemapping +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license bsd + +name adrconv +category Package +revision 17683 +shortdesc BibTeX styles to implement an address database. +relocated 1 +longdesc The bundle provides a collection of BibTeX style files to turn +longdesc an address database stored in the .bib format into files +longdesc suitable for printing as address books or included into letter +longdesc classes like akletter or scrletter2. The data may be sorted +longdesc either by name or birthday and output provides files in various +longdesc formats for address books or time planners. +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 + RELOC/doc/latex/adrconv/2latex.vim + 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.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 +srcfiles size=8 + RELOC/source/latex/adrconv/adrconv.dtx + RELOC/source/latex/adrconv/adrconv.ins +catalogue-ctan /macros/latex/contrib/adrconv +catalogue-date 2012-03-27 22:39:55 +0200 +catalogue-license lppl +catalogue-version 1.3 + +name advdate +category Package +revision 20538 +shortdesc Print a date relative to "today". +relocated 1 +longdesc Provides macros which can add a specified number of days to the +longdesc current date (as specified in \today), to save, set and restore +longdesc the 'current date' and to print it. Intended use is, for +longdesc example, in invoices "payable within 14 days from today", etc. +longdesc The package has only been tested with Czech dates. +runfiles size=2 + RELOC/tex/latex/advdate/advdate.sty +docfiles size=39 + RELOC/doc/latex/advdate/advdate.pdf + RELOC/doc/latex/advdate/advdate.tex + RELOC/doc/latex/advdate/manifest.txt +catalogue-ctan /macros/latex/contrib/advdate +catalogue-date 2012-03-27 22:39:55 +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 + +name ae +category Package +revision 15878 +shortdesc Virtual fonts for T1 encoded CMR-fonts. +relocated 1 +longdesc A set of virtual fonts which emulates T1 coded fonts using the +longdesc standard CM fonts. The package name, AE fonts, supposedly +longdesc stands for "Almost European". The main use of the package was +longdesc to produce PDF files using Adobe Type 1 versions of the CM +longdesc fonts instead of bitmapped EC fonts. Note that direct +longdesc substitutes for the bitmapped EC fonts are now available, via +longdesc the CM-super, Latin Modern and (in a restricted way) CM-LGC +longdesc font sets. +runfiles size=157 + RELOC/fonts/tfm/public/ae/aeb10.tfm + RELOC/fonts/tfm/public/ae/aebx10.tfm + RELOC/fonts/tfm/public/ae/aebx12.tfm + RELOC/fonts/tfm/public/ae/aebx5.tfm + RELOC/fonts/tfm/public/ae/aebx6.tfm + RELOC/fonts/tfm/public/ae/aebx7.tfm + RELOC/fonts/tfm/public/ae/aebx8.tfm + RELOC/fonts/tfm/public/ae/aebx9.tfm + RELOC/fonts/tfm/public/ae/aebxsl10.tfm + RELOC/fonts/tfm/public/ae/aebxti10.tfm + RELOC/fonts/tfm/public/ae/aecsc10.tfm + RELOC/fonts/tfm/public/ae/aeitt10.tfm + RELOC/fonts/tfm/public/ae/aer10.tfm + RELOC/fonts/tfm/public/ae/aer12.tfm + RELOC/fonts/tfm/public/ae/aer17.tfm + RELOC/fonts/tfm/public/ae/aer5.tfm + RELOC/fonts/tfm/public/ae/aer6.tfm + RELOC/fonts/tfm/public/ae/aer7.tfm + RELOC/fonts/tfm/public/ae/aer8.tfm + RELOC/fonts/tfm/public/ae/aer9.tfm + RELOC/fonts/tfm/public/ae/aesl10.tfm + RELOC/fonts/tfm/public/ae/aesl12.tfm + RELOC/fonts/tfm/public/ae/aesl8.tfm + RELOC/fonts/tfm/public/ae/aesl9.tfm + RELOC/fonts/tfm/public/ae/aesltt10.tfm + RELOC/fonts/tfm/public/ae/aess10.tfm + RELOC/fonts/tfm/public/ae/aess12.tfm + RELOC/fonts/tfm/public/ae/aess17.tfm + RELOC/fonts/tfm/public/ae/aess8.tfm + RELOC/fonts/tfm/public/ae/aess9.tfm + RELOC/fonts/tfm/public/ae/aessbx10.tfm + RELOC/fonts/tfm/public/ae/aessdc10.tfm + RELOC/fonts/tfm/public/ae/aessi10.tfm + RELOC/fonts/tfm/public/ae/aessi12.tfm + RELOC/fonts/tfm/public/ae/aessi17.tfm + RELOC/fonts/tfm/public/ae/aessi8.tfm + RELOC/fonts/tfm/public/ae/aessi9.tfm + RELOC/fonts/tfm/public/ae/aetcsc10.tfm + RELOC/fonts/tfm/public/ae/aeti10.tfm + RELOC/fonts/tfm/public/ae/aeti12.tfm + RELOC/fonts/tfm/public/ae/aeti7.tfm + RELOC/fonts/tfm/public/ae/aeti8.tfm + RELOC/fonts/tfm/public/ae/aeti9.tfm + RELOC/fonts/tfm/public/ae/aett10.tfm + RELOC/fonts/tfm/public/ae/aett12.tfm + RELOC/fonts/tfm/public/ae/aett8.tfm + RELOC/fonts/tfm/public/ae/aett9.tfm + RELOC/fonts/tfm/public/ae/laess8.tfm + RELOC/fonts/tfm/public/ae/laessb8.tfm + RELOC/fonts/tfm/public/ae/laessi8.tfm + RELOC/fonts/vf/public/ae/aeb10.vf + RELOC/fonts/vf/public/ae/aebx10.vf + RELOC/fonts/vf/public/ae/aebx12.vf + RELOC/fonts/vf/public/ae/aebx5.vf + RELOC/fonts/vf/public/ae/aebx6.vf + RELOC/fonts/vf/public/ae/aebx7.vf + RELOC/fonts/vf/public/ae/aebx8.vf + RELOC/fonts/vf/public/ae/aebx9.vf + RELOC/fonts/vf/public/ae/aebxsl10.vf + RELOC/fonts/vf/public/ae/aebxti10.vf + RELOC/fonts/vf/public/ae/aecsc10.vf + RELOC/fonts/vf/public/ae/aeitt10.vf + RELOC/fonts/vf/public/ae/aer10.vf + RELOC/fonts/vf/public/ae/aer12.vf + RELOC/fonts/vf/public/ae/aer17.vf + RELOC/fonts/vf/public/ae/aer5.vf + RELOC/fonts/vf/public/ae/aer6.vf + RELOC/fonts/vf/public/ae/aer7.vf + RELOC/fonts/vf/public/ae/aer8.vf + RELOC/fonts/vf/public/ae/aer9.vf + RELOC/fonts/vf/public/ae/aesl10.vf + RELOC/fonts/vf/public/ae/aesl12.vf + RELOC/fonts/vf/public/ae/aesl8.vf + RELOC/fonts/vf/public/ae/aesl9.vf + RELOC/fonts/vf/public/ae/aesltt10.vf + RELOC/fonts/vf/public/ae/aess10.vf + RELOC/fonts/vf/public/ae/aess12.vf + RELOC/fonts/vf/public/ae/aess17.vf + RELOC/fonts/vf/public/ae/aess8.vf + RELOC/fonts/vf/public/ae/aess9.vf + RELOC/fonts/vf/public/ae/aessbx10.vf + RELOC/fonts/vf/public/ae/aessdc10.vf + RELOC/fonts/vf/public/ae/aessi10.vf + RELOC/fonts/vf/public/ae/aessi12.vf + RELOC/fonts/vf/public/ae/aessi17.vf + RELOC/fonts/vf/public/ae/aessi8.vf + RELOC/fonts/vf/public/ae/aessi9.vf + RELOC/fonts/vf/public/ae/aetcsc10.vf + RELOC/fonts/vf/public/ae/aeti10.vf + RELOC/fonts/vf/public/ae/aeti12.vf + RELOC/fonts/vf/public/ae/aeti7.vf + RELOC/fonts/vf/public/ae/aeti8.vf + RELOC/fonts/vf/public/ae/aeti9.vf + RELOC/fonts/vf/public/ae/aett10.vf + RELOC/fonts/vf/public/ae/aett12.vf + RELOC/fonts/vf/public/ae/aett8.vf + RELOC/fonts/vf/public/ae/aett9.vf + RELOC/fonts/vf/public/ae/laess8.vf + RELOC/fonts/vf/public/ae/laessb8.vf + RELOC/fonts/vf/public/ae/laessi8.vf + RELOC/tex/latex/ae/ae.sty + RELOC/tex/latex/ae/aecompl.sty + RELOC/tex/latex/ae/omlaer.fd + RELOC/tex/latex/ae/omsaer.fd + RELOC/tex/latex/ae/ot1aer.fd + RELOC/tex/latex/ae/ot1aess.fd + RELOC/tex/latex/ae/ot1aett.fd + RELOC/tex/latex/ae/ot1laess.fd + RELOC/tex/latex/ae/ot1laett.fd + RELOC/tex/latex/ae/t1aer.fd + RELOC/tex/latex/ae/t1aess.fd + RELOC/tex/latex/ae/t1aett.fd + RELOC/tex/latex/ae/t1laess.fd + RELOC/tex/latex/ae/t1laett.fd +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-ctan /fonts/ae +catalogue-date 2014-04-03 23:09:57 +0200 +catalogue-license lppl +catalogue-version 1.4 + +name afm2pl +category TLCore +revision 37078 +depend afm2pl.ARCH +runfiles size=24 + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-ot1.enc + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-ot1ital.enc + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-ot1tt.enc + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-texnanlc.enc + texmf-dist/fonts/enc/dvips/afm2pl/afm2pl-texnanuc.enc + texmf-dist/fonts/lig/afm2pl/accents.lig + texmf-dist/fonts/lig/afm2pl/bound.lig + texmf-dist/fonts/lig/afm2pl/default.lig + texmf-dist/fonts/lig/afm2pl/defpost.lig + texmf-dist/fonts/lig/afm2pl/defpre.lig + texmf-dist/fonts/lig/afm2pl/forge.lig + texmf-dist/fonts/lig/afm2pl/ligtex.lig + texmf-dist/tex/fontinst/afm2pl/README + texmf-dist/tex/fontinst/afm2pl/ly1.etx + texmf-dist/tex/fontinst/afm2pl/ly1c.etx + texmf-dist/tex/fontinst/afm2pl/makesc8y.tex +docfiles size=9 + texmf-dist/doc/man/man1/afm2pl.1 + texmf-dist/doc/man/man1/afm2pl.man1.pdf + +name afm2pl.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of afm2pl +binfiles arch=i386-linux size=31 + bin/i386-linux/afm2pl + +name afparticle +category Package +revision 35900 +shortdesc Typesetting articles for Archives of Forensic Psychology +relocated 1 +longdesc This package provides a class for typesetting articles for the +longdesc open access journal Archives of Forensic Psychology. +runfiles size=3 + RELOC/tex/latex/afparticle/afparticle.cls +docfiles size=165 + RELOC/doc/latex/afparticle/Makefile + RELOC/doc/latex/afparticle/README + RELOC/doc/latex/afparticle/afparticle.pdf + RELOC/doc/latex/afparticle/afpsample.bib + RELOC/doc/latex/afparticle/afpsample.pdf + RELOC/doc/latex/afparticle/afpsample.tex + RELOC/doc/latex/afparticle/vitruvian.jpg +srcfiles size=9 + RELOC/source/latex/afparticle/afparticle.dtx + RELOC/source/latex/afparticle/afparticle.ins +catalogue-ctan /macros/latex/contrib/afparticle +catalogue-date 2014-12-23 21:17:05 +0100 +catalogue-license lppl1.3 +catalogue-version 1.3 + +name afthesis +category Package +revision 15878 +shortdesc Air Force Institute of Technology thesis class. +relocated 1 +longdesc LaTeX thesis/dissertation class for US Air Force Institute Of +longdesc Technology. +runfiles size=19 + RELOC/bibtex/bst/afthesis/thesnumb.bst + RELOC/tex/latex/afthesis/afthes10.sty + RELOC/tex/latex/afthesis/afthes11.sty + RELOC/tex/latex/afthesis/afthes12.sty + RELOC/tex/latex/afthesis/afthesis.cls + RELOC/tex/latex/afthesis/afthesis.sty +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-license pd +catalogue-version 2.7 + +name aguplus +category Package +revision 17156 +shortdesc Styles for American Geophysical Union. +relocated 1 +longdesc This bundle started as an extension to the AGU's own published +longdesc styles, providing extra facilities and improved usability. The +longdesc AGU now publishes satisfactory LaTeX materials of its own; the +longdesc author of aguplus recommends that users switch to using the +longdesc official distribution. +runfiles size=74 + RELOC/bibtex/bst/aguplus/agu.bst + RELOC/bibtex/bst/aguplus/agu04.bst + RELOC/bibtex/bst/aguplus/agufull.bst + RELOC/bibtex/bst/aguplus/agufull04.bst + RELOC/tex/latex/aguplus/aguplus.cls + RELOC/tex/latex/aguplus/aguplus.sty + RELOC/tex/latex/aguplus/agupp.sty +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-license lppl +catalogue-version 1.6b + +name aiaa +category Package +revision 15878 +shortdesc Typeset AIAA conference papers. +relocated 1 +longdesc A bundle of LaTeX/BibTeX files and sample documents to aid +longdesc those producing papers and journal articles according to the +longdesc guidelines of the American Institute of Aeronautics and +longdesc Astronautics (AIAA). +runfiles size=10 + RELOC/bibtex/bst/aiaa/aiaa.bst + RELOC/tex/latex/aiaa/aiaa-tc.cls +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/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/aiaa.dtx + RELOC/doc/latex/aiaa/pre2004/aiaa.ins + RELOC/doc/latex/aiaa/pre2004/aiaa.pdf + RELOC/doc/latex/aiaa/pre2004/aiaalgo.eps + RELOC/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.ps + RELOC/doc/latex/aiaa/pre2004/demos/paper/smpaiaa.tex + RELOC/doc/latex/aiaa/pre2004/demos/paper/smpbtx.bib + RELOC/doc/latex/aiaa/pre2004/demos/paper/smpfig.eps + RELOC/doc/latex/aiaa/pre2004/demos/refs/tstbtx.bib + RELOC/doc/latex/aiaa/pre2004/demos/refs/tstref.tex + RELOC/doc/latex/aiaa/pre2004/demos/subfigs/smpfig.eps + RELOC/doc/latex/aiaa/pre2004/demos/subfigs/smpsubf.tex + RELOC/doc/latex/aiaa/pre2004/demos/talk/smpfig.eps + RELOC/doc/latex/aiaa/pre2004/demos/talk/smptalk.ps + RELOC/doc/latex/aiaa/pre2004/demos/talk/smptalk.sty + RELOC/doc/latex/aiaa/pre2004/demos/talk/smptalk.tex + RELOC/doc/latex/aiaa/template_advanced.pdf + RELOC/doc/latex/aiaa/template_advanced.tex + RELOC/doc/latex/aiaa/template_basic.pdf + RELOC/doc/latex/aiaa/template_basic.tex +srcfiles size=16 + RELOC/source/latex/aiaa/aiaa.dtx + RELOC/source/latex/aiaa/aiaa.ins +catalogue-ctan /macros/latex/contrib/aiaa +catalogue-date 2012-04-20 12:07:37 +0200 +catalogue-license lppl +catalogue-version 3.6 + +name aichej +category Package +revision 15878 +shortdesc Bibliography style file for the AIChE Journal. +relocated 1 +longdesc The style was generated using custom-bib, and implements the +longdesc style of the American Institute of Chemical Engineers Journal +longdesc (or AIChE Journal or AIChE J or AIChEJ). +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-license lppl + +name ajl +category Package +revision 34016 +shortdesc BibTeX style for AJL. +relocated 1 +longdesc Bibliographic style references in style of Australian Journal +longdesc of Linguistics. +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-license lppl + +name akktex +category Package +revision 26055 +shortdesc A collection of packages and classes. +relocated 1 +longdesc The bundle provides: new document classes for technical +longdesc documents, thesis works, manuscripts and lecture notes; many +longdesc mathematical packages providing a large number of macros for +longdesc mathematical texts; layout providing a non-empty parskip with +longdesc extended length corrections and new section definition +longdesc commands; easy label creation for counters; and german language +longdesc tools and predefined abbreviations. +runfiles size=37 + RELOC/tex/latex/akktex/akkconditional.sty + RELOC/tex/latex/akktex/akkcounterlabelpattern.sty + RELOC/tex/latex/akktex/akkcs.sty + RELOC/tex/latex/akktex/akkdoc.sty + RELOC/tex/latex/akktex/akkgerman.sty + RELOC/tex/latex/akktex/akkgermanabbreviations.sty + RELOC/tex/latex/akktex/akklecture.cls + RELOC/tex/latex/akktex/akklongpage.sty + RELOC/tex/latex/akktex/akkmath.sty + RELOC/tex/latex/akktex/akkmathbasic.sty + RELOC/tex/latex/akktex/akkmathdisc.sty + RELOC/tex/latex/akktex/akkmathfun.sty + RELOC/tex/latex/akktex/akkmathnum.sty + RELOC/tex/latex/akktex/akkmathpaper.sty + RELOC/tex/latex/akktex/akkmathproof.sty + RELOC/tex/latex/akktex/akkmathrel.sty + RELOC/tex/latex/akktex/akkmathset.sty + RELOC/tex/latex/akktex/akkmathtext.sty + RELOC/tex/latex/akktex/akknum.sty + RELOC/tex/latex/akktex/akkparskip.sty + RELOC/tex/latex/akktex/akkscript.cls + RELOC/tex/latex/akktex/akksection.sty + RELOC/tex/latex/akktex/akkstring.sty + RELOC/tex/latex/akktex/akktecdoc.cls + RELOC/tex/latex/akktex/akktex.sty + RELOC/tex/latex/akktex/akkwidepage.sty +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-license lppl +catalogue-version 0.3.2 + +name akletter +category Package +revision 15878 +shortdesc Comprehensive letter support. +relocated 1 +longdesc An advanced letter document class which extends LaTeX's usual +longdesc letter class, providing support for building your own +longdesc letterhead and marking fold points for window envelopes. +longdesc Options supported by the package include: letterpaper for US +longdesc letter; a4offset for a modified A4 layout suitable for platic +longdesc binders that cover a part of the left margin. The class's +longdesc handling of dates has inspired an extended version of date- +longdesc 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 +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.tex + RELOC/doc/latex/akletter/lettereng.pdf + RELOC/doc/latex/akletter/lettereng.tex +catalogue-ctan /macros/latex/contrib/akletter +catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-license lppl +catalogue-version 1.5i + +name alegreya +category Package +revision 38278 +shortdesc Alegreya fonts with LaTeX support +relocated 1 +longdesc The Alegreya fonts are designed by Juan Pablo del Peral for +longdesc Huerta Tipografica. Alegreya is a typeface originally intended +longdesc for literature. It conveys a dynamic and varied rhythm which +longdesc facilitates the reading of long texts. The italic has just as +longdesc much care and attention to detail in the design as the roman. +longdesc Bold, black, small caps and five number styles are available. +execute addMap Alegreya.map +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 + 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/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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-Italic.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 + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-BoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-ExtraBold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Italic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Light.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-LightItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Medium.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-MediumItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Regular.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-Thin.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSans-ThinItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Black.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-BlackItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Bold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-BoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ExtraBold.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ExtraBoldItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Italic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Light.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-LightItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Medium.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-MediumItalic.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Regular.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-Thin.pfb + RELOC/fonts/type1/huerta/alegreya/AlegreyaSansSC-ThinItalic.pfb + RELOC/fonts/vf/huerta/alegreya/Alegreya-Black-inf-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-BoldItalic-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-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-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-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-t1.vf + RELOC/fonts/vf/huerta/alegreya/Alegreya-Italic-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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/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-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 + +name aleph +category Package +revision 37078 +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 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 + 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-license gpl + +name aleph.i386-linux +category Package +revision 36790 +shortdesc i386-linux files of aleph +binfiles arch=i386-linux size=171 + bin/i386-linux/aleph + bin/i386-linux/lamed + +name alertmessage +category Package +revision 38055 +shortdesc Alert messages for LaTeX +relocated 1 +longdesc Some macros to display alert messages (informations, errors, +longdesc warnings and success messages). +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-ctan /macros/latex/contrib/alertmessage +catalogue-date 2015-08-05 05:51:16 +0200 +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 1.1 + +name algorithm2e +category Package +revision 28749 +shortdesc Floating algorithm environment with algorithmic keywords. +relocated 1 +longdesc Algorithm2e is an environment for writing algorithms. An +longdesc algorithm becomes a floating object (like figure, table, etc.). +longdesc The package provides macros that allow you to create different +longdesc keywords, and a set of predefined key words is provided; you +longdesc can change the typography of the keywords. The package allows +longdesc vertical lines delimiting a block of instructions in an +longdesc algorithm, and defines different sorts of algorithms such as +longdesc Procedure or Function; the name of these functions may be +longdesc reused in the text or in other algorithms. +runfiles size=34 + RELOC/tex/latex/algorithm2e/algorithm2e.sty +docfiles size=165 + RELOC/doc/latex/algorithm2e/README + RELOC/doc/latex/algorithm2e/algorithm2e.pdf + RELOC/doc/latex/algorithm2e/algorithm2e.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex01.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex02.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex03.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex04.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex05.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex06.tex + RELOC/doc/latex/algorithm2e/algorithm2e_ex07.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exAlgoDisjdecomp.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exIR.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exProg.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exfor.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exgeneric.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exrepeat.tex + RELOC/doc/latex/algorithm2e/algorithm2e_exswitch.tex +catalogue-ctan /macros/latex/contrib/algorithm2e +catalogue-date 2013-01-06 21:16:44 +0100 +catalogue-license lppl +catalogue-version 5.0 + +name algorithmicx +category Package +revision 15878 +shortdesc The algorithmic style you always wanted. +relocated 1 +longdesc Algorithmicx provides a flexible, yet easy to use, way for +longdesc inserting good looking pseudocode or source code in your +longdesc papers. It has built in support for Pseudocode, Pascal and C, +longdesc and offers powerful means to create definitions for any +longdesc programming language. The user can adapt a Pseudocode style to +longdesc his native language. +runfiles size=12 + RELOC/tex/latex/algorithmicx/algc.sty + RELOC/tex/latex/algorithmicx/algcompatible.sty + RELOC/tex/latex/algorithmicx/algmatlab.sty + RELOC/tex/latex/algorithmicx/algorithmicx.sty + RELOC/tex/latex/algorithmicx/algpascal.sty + RELOC/tex/latex/algorithmicx/algpseudocode.sty +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-license lppl + +name algorithms +category Package +revision 38085 +shortdesc A suite of tools for typesetting algorithms in pseudo-code +relocated 1 +longdesc Consists of two environments: algorithm and algorithmic. The +longdesc algorithm package defines a floating algorithm environment +longdesc designed to work with the algorithmic style. Within an +longdesc algorithmic environment a number of commands for typesetting +longdesc popular algorithmic constructs are available. +runfiles size=4 + RELOC/tex/latex/algorithms/algorithm.sty + RELOC/tex/latex/algorithms/algorithmic.sty +docfiles size=91 + RELOC/doc/latex/algorithms/COPYING + RELOC/doc/latex/algorithms/README + RELOC/doc/latex/algorithms/THANKS + RELOC/doc/latex/algorithms/algorithms.pdf +srcfiles size=13 + RELOC/source/latex/algorithms/algorithms.dtx + RELOC/source/latex/algorithms/algorithms.ins +catalogue-also alg +catalogue-ctan /macros/latex/contrib/algorithms +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lgpl +catalogue-topics pseudocode +catalogue-version 0.1 + +name alg +category Package +revision 15878 +shortdesc LaTeX environments for typesetting algorithms. +relocated 1 +longdesc Defines two environments for typesetting algorithms in LaTeX2e. +longdesc The algtab environment is used to typeset an algorithm with +longdesc automatically numbered lines. The algorithm environment can be +longdesc used to encapsulate the algtab environment algorithm in a +longdesc floating body together with a header, a caption, etc. +longdesc \listofalgorithms is defined. +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 + +name allrunes +category Package +revision 21886 +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 +runfiles size=2728 + RELOC/fonts/map/dvips/allrunes/allrunes.map + RELOC/fonts/source/public/allrunes/frua.mf + RELOC/fonts/source/public/allrunes/fruabm.mf + RELOC/fonts/source/public/allrunes/fruabn.mf + RELOC/fonts/source/public/allrunes/fruabq.mf + RELOC/fonts/source/public/allrunes/fruabr.mf + RELOC/fonts/source/public/allrunes/fruabs.mf + RELOC/fonts/source/public/allrunes/fruabt.mf + RELOC/fonts/source/public/allrunes/fruacm.mf + RELOC/fonts/source/public/allrunes/fruacn.mf + RELOC/fonts/source/public/allrunes/fruacq.mf + RELOC/fonts/source/public/allrunes/fruacr.mf + RELOC/fonts/source/public/allrunes/fruacs.mf + RELOC/fonts/source/public/allrunes/fruact.mf + RELOC/fonts/source/public/allrunes/fruakm.mf + RELOC/fonts/source/public/allrunes/fruakn.mf + RELOC/fonts/source/public/allrunes/fruakq.mf + RELOC/fonts/source/public/allrunes/fruakr.mf + RELOC/fonts/source/public/allrunes/fruaks.mf + RELOC/fonts/source/public/allrunes/fruakt.mf + RELOC/fonts/source/public/allrunes/frualm.mf + RELOC/fonts/source/public/allrunes/frualn.mf + RELOC/fonts/source/public/allrunes/frualq.mf + RELOC/fonts/source/public/allrunes/frualr.mf + RELOC/fonts/source/public/allrunes/fruals.mf + RELOC/fonts/source/public/allrunes/frualt.mf + RELOC/fonts/source/public/allrunes/fruamm.mf + RELOC/fonts/source/public/allrunes/fruamn.mf + RELOC/fonts/source/public/allrunes/fruamq.mf + RELOC/fonts/source/public/allrunes/fruamr.mf + RELOC/fonts/source/public/allrunes/fruams.mf + RELOC/fonts/source/public/allrunes/fruamt.mf + RELOC/fonts/source/public/allrunes/fruanm.mf + RELOC/fonts/source/public/allrunes/fruann.mf + RELOC/fonts/source/public/allrunes/fruanq.mf + RELOC/fonts/source/public/allrunes/fruanr.mf + RELOC/fonts/source/public/allrunes/fruans.mf + RELOC/fonts/source/public/allrunes/fruant.mf + RELOC/fonts/source/public/allrunes/frubase.mf + RELOC/fonts/source/public/allrunes/fruc.mf + RELOC/fonts/source/public/allrunes/frucbm.mf + RELOC/fonts/source/public/allrunes/frucbn.mf + RELOC/fonts/source/public/allrunes/frucbq.mf + RELOC/fonts/source/public/allrunes/frucbr.mf + RELOC/fonts/source/public/allrunes/frucbs.mf + RELOC/fonts/source/public/allrunes/frucbt.mf + RELOC/fonts/source/public/allrunes/fruccm.mf + RELOC/fonts/source/public/allrunes/fruccn.mf + RELOC/fonts/source/public/allrunes/fruccq.mf + RELOC/fonts/source/public/allrunes/fruccr.mf + RELOC/fonts/source/public/allrunes/fruccs.mf + RELOC/fonts/source/public/allrunes/frucct.mf + RELOC/fonts/source/public/allrunes/fruckm.mf + RELOC/fonts/source/public/allrunes/fruckn.mf + RELOC/fonts/source/public/allrunes/fruckq.mf + RELOC/fonts/source/public/allrunes/fruckr.mf + RELOC/fonts/source/public/allrunes/frucks.mf + RELOC/fonts/source/public/allrunes/fruckt.mf + RELOC/fonts/source/public/allrunes/fruclm.mf + RELOC/fonts/source/public/allrunes/frucln.mf + RELOC/fonts/source/public/allrunes/fruclq.mf + RELOC/fonts/source/public/allrunes/fruclr.mf + RELOC/fonts/source/public/allrunes/frucls.mf + RELOC/fonts/source/public/allrunes/fruclt.mf + RELOC/fonts/source/public/allrunes/frucmm.mf + RELOC/fonts/source/public/allrunes/frucmn.mf + RELOC/fonts/source/public/allrunes/frucmq.mf + RELOC/fonts/source/public/allrunes/frucmr.mf + RELOC/fonts/source/public/allrunes/frucms.mf + RELOC/fonts/source/public/allrunes/frucmt.mf + RELOC/fonts/source/public/allrunes/frucnm.mf + RELOC/fonts/source/public/allrunes/frucnn.mf + RELOC/fonts/source/public/allrunes/frucnq.mf + RELOC/fonts/source/public/allrunes/frucnr.mf + RELOC/fonts/source/public/allrunes/frucns.mf + RELOC/fonts/source/public/allrunes/frucnt.mf + RELOC/fonts/source/public/allrunes/frul.mf + RELOC/fonts/source/public/allrunes/frulbm.mf + RELOC/fonts/source/public/allrunes/frulbn.mf + RELOC/fonts/source/public/allrunes/frulbq.mf + RELOC/fonts/source/public/allrunes/frulbr.mf + RELOC/fonts/source/public/allrunes/frulbs.mf + RELOC/fonts/source/public/allrunes/frulbt.mf + RELOC/fonts/source/public/allrunes/frulcm.mf + RELOC/fonts/source/public/allrunes/frulcn.mf + RELOC/fonts/source/public/allrunes/frulcq.mf + RELOC/fonts/source/public/allrunes/frulcr.mf + RELOC/fonts/source/public/allrunes/frulcs.mf + RELOC/fonts/source/public/allrunes/frulct.mf + RELOC/fonts/source/public/allrunes/frulkm.mf + RELOC/fonts/source/public/allrunes/frulkn.mf + RELOC/fonts/source/public/allrunes/frulkq.mf + RELOC/fonts/source/public/allrunes/frulkr.mf + RELOC/fonts/source/public/allrunes/frulks.mf + RELOC/fonts/source/public/allrunes/frulkt.mf + RELOC/fonts/source/public/allrunes/frullm.mf + RELOC/fonts/source/public/allrunes/frulln.mf + RELOC/fonts/source/public/allrunes/frullq.mf + RELOC/fonts/source/public/allrunes/frullr.mf + RELOC/fonts/source/public/allrunes/frulls.mf + RELOC/fonts/source/public/allrunes/frullt.mf + RELOC/fonts/source/public/allrunes/frulmm.mf + RELOC/fonts/source/public/allrunes/frulmn.mf + RELOC/fonts/source/public/allrunes/frulmq.mf + RELOC/fonts/source/public/allrunes/frulmr.mf + RELOC/fonts/source/public/allrunes/frulms.mf + RELOC/fonts/source/public/allrunes/frulmt.mf + RELOC/fonts/source/public/allrunes/frulnm.mf + RELOC/fonts/source/public/allrunes/frulnn.mf + RELOC/fonts/source/public/allrunes/frulnq.mf + RELOC/fonts/source/public/allrunes/frulnr.mf + RELOC/fonts/source/public/allrunes/frulns.mf + RELOC/fonts/source/public/allrunes/frulnt.mf + RELOC/fonts/source/public/allrunes/frum.mf + RELOC/fonts/source/public/allrunes/frumbm.mf + RELOC/fonts/source/public/allrunes/frumbn.mf + RELOC/fonts/source/public/allrunes/frumbq.mf + RELOC/fonts/source/public/allrunes/frumbr.mf + RELOC/fonts/source/public/allrunes/frumbs.mf + RELOC/fonts/source/public/allrunes/frumbt.mf + RELOC/fonts/source/public/allrunes/frumcm.mf + RELOC/fonts/source/public/allrunes/frumcn.mf + RELOC/fonts/source/public/allrunes/frumcq.mf + RELOC/fonts/source/public/allrunes/frumcr.mf + RELOC/fonts/source/public/allrunes/frumcs.mf + RELOC/fonts/source/public/allrunes/frumct.mf + RELOC/fonts/source/public/allrunes/frumkm.mf + RELOC/fonts/source/public/allrunes/frumkn.mf + RELOC/fonts/source/public/allrunes/frumkq.mf + RELOC/fonts/source/public/allrunes/frumkr.mf + RELOC/fonts/source/public/allrunes/frumks.mf + RELOC/fonts/source/public/allrunes/frumkt.mf + RELOC/fonts/source/public/allrunes/frumlm.mf + RELOC/fonts/source/public/allrunes/frumln.mf + RELOC/fonts/source/public/allrunes/frumlq.mf + RELOC/fonts/source/public/allrunes/frumlr.mf + RELOC/fonts/source/public/allrunes/frumls.mf + RELOC/fonts/source/public/allrunes/frumlt.mf + RELOC/fonts/source/public/allrunes/frummm.mf + RELOC/fonts/source/public/allrunes/frummn.mf + RELOC/fonts/source/public/allrunes/frummq.mf + RELOC/fonts/source/public/allrunes/frummr.mf + RELOC/fonts/source/public/allrunes/frumms.mf + RELOC/fonts/source/public/allrunes/frummt.mf + RELOC/fonts/source/public/allrunes/frumnm.mf + RELOC/fonts/source/public/allrunes/frumnn.mf + RELOC/fonts/source/public/allrunes/frumnq.mf + RELOC/fonts/source/public/allrunes/frumnr.mf + RELOC/fonts/source/public/allrunes/frumns.mf + RELOC/fonts/source/public/allrunes/frumnt.mf + RELOC/fonts/source/public/allrunes/frun.mf + RELOC/fonts/source/public/allrunes/frunbm.mf + RELOC/fonts/source/public/allrunes/frunbn.mf + RELOC/fonts/source/public/allrunes/frunbq.mf + RELOC/fonts/source/public/allrunes/frunbr.mf + RELOC/fonts/source/public/allrunes/frunbs.mf + RELOC/fonts/source/public/allrunes/frunbt.mf + RELOC/fonts/source/public/allrunes/fruncm.mf + RELOC/fonts/source/public/allrunes/fruncn.mf + RELOC/fonts/source/public/allrunes/fruncq.mf + RELOC/fonts/source/public/allrunes/fruncr.mf + RELOC/fonts/source/public/allrunes/fruncs.mf + RELOC/fonts/source/public/allrunes/frunct.mf + RELOC/fonts/source/public/allrunes/frunkm.mf + RELOC/fonts/source/public/allrunes/frunkn.mf + RELOC/fonts/source/public/allrunes/frunkq.mf + RELOC/fonts/source/public/allrunes/frunkr.mf + RELOC/fonts/source/public/allrunes/frunks.mf + RELOC/fonts/source/public/allrunes/frunkt.mf + RELOC/fonts/source/public/allrunes/frunlm.mf + RELOC/fonts/source/public/allrunes/frunln.mf + RELOC/fonts/source/public/allrunes/frunlq.mf + RELOC/fonts/source/public/allrunes/frunlr.mf + RELOC/fonts/source/public/allrunes/frunls.mf + RELOC/fonts/source/public/allrunes/frunlt.mf + RELOC/fonts/source/public/allrunes/frunmm.mf + RELOC/fonts/source/public/allrunes/frunmn.mf + RELOC/fonts/source/public/allrunes/frunmq.mf + RELOC/fonts/source/public/allrunes/frunmr.mf + RELOC/fonts/source/public/allrunes/frunms.mf + RELOC/fonts/source/public/allrunes/frunmt.mf + RELOC/fonts/source/public/allrunes/frunnm.mf + RELOC/fonts/source/public/allrunes/frunnn.mf + RELOC/fonts/source/public/allrunes/frunnq.mf + RELOC/fonts/source/public/allrunes/frunnr.mf + RELOC/fonts/source/public/allrunes/frunns.mf + RELOC/fonts/source/public/allrunes/frunnt.mf + RELOC/fonts/source/public/allrunes/frusep.mf + RELOC/fonts/source/public/allrunes/frut.mf + RELOC/fonts/source/public/allrunes/frutbm.mf + RELOC/fonts/source/public/allrunes/frutbn.mf + RELOC/fonts/source/public/allrunes/frutbq.mf + RELOC/fonts/source/public/allrunes/frutbr.mf + RELOC/fonts/source/public/allrunes/frutbs.mf + RELOC/fonts/source/public/allrunes/frutbt.mf + RELOC/fonts/source/public/allrunes/frutcm.mf + RELOC/fonts/source/public/allrunes/frutcn.mf + RELOC/fonts/source/public/allrunes/frutcq.mf + RELOC/fonts/source/public/allrunes/frutcr.mf + RELOC/fonts/source/public/allrunes/frutcs.mf + RELOC/fonts/source/public/allrunes/frutct.mf + RELOC/fonts/source/public/allrunes/frutkm.mf + RELOC/fonts/source/public/allrunes/frutkn.mf + RELOC/fonts/source/public/allrunes/frutkq.mf + RELOC/fonts/source/public/allrunes/frutkr.mf + RELOC/fonts/source/public/allrunes/frutks.mf + RELOC/fonts/source/public/allrunes/frutkt.mf + RELOC/fonts/source/public/allrunes/frutlm.mf + RELOC/fonts/source/public/allrunes/frutln.mf + RELOC/fonts/source/public/allrunes/frutlq.mf + RELOC/fonts/source/public/allrunes/frutlr.mf + RELOC/fonts/source/public/allrunes/frutls.mf + RELOC/fonts/source/public/allrunes/frutlt.mf + RELOC/fonts/source/public/allrunes/frutmm.mf + RELOC/fonts/source/public/allrunes/frutmn.mf + RELOC/fonts/source/public/allrunes/frutmq.mf + RELOC/fonts/source/public/allrunes/frutmr.mf + RELOC/fonts/source/public/allrunes/frutms.mf + RELOC/fonts/source/public/allrunes/frutmt.mf + RELOC/fonts/source/public/allrunes/frutnm.mf + RELOC/fonts/source/public/allrunes/frutnn.mf + RELOC/fonts/source/public/allrunes/frutnq.mf + RELOC/fonts/source/public/allrunes/frutnr.mf + RELOC/fonts/source/public/allrunes/frutns.mf + RELOC/fonts/source/public/allrunes/frutnt.mf + RELOC/fonts/type1/public/allrunes/fruabm.pfb + RELOC/fonts/type1/public/allrunes/fruabn.pfb + RELOC/fonts/type1/public/allrunes/fruabq.pfb + RELOC/fonts/type1/public/allrunes/fruabr.pfb + RELOC/fonts/type1/public/allrunes/fruabs.pfb + RELOC/fonts/type1/public/allrunes/fruabt.pfb + RELOC/fonts/type1/public/allrunes/fruacm.pfb + RELOC/fonts/type1/public/allrunes/fruacn.pfb + RELOC/fonts/type1/public/allrunes/fruacq.pfb + RELOC/fonts/type1/public/allrunes/fruacr.pfb + RELOC/fonts/type1/public/allrunes/fruacs.pfb + RELOC/fonts/type1/public/allrunes/fruact.pfb + RELOC/fonts/type1/public/allrunes/fruakm.pfb + RELOC/fonts/type1/public/allrunes/fruakn.pfb + RELOC/fonts/type1/public/allrunes/fruakq.pfb + RELOC/fonts/type1/public/allrunes/fruakr.pfb + RELOC/fonts/type1/public/allrunes/fruaks.pfb + RELOC/fonts/type1/public/allrunes/fruakt.pfb + RELOC/fonts/type1/public/allrunes/frualm.pfb + RELOC/fonts/type1/public/allrunes/frualn.pfb + RELOC/fonts/type1/public/allrunes/frualq.pfb + RELOC/fonts/type1/public/allrunes/frualr.pfb + RELOC/fonts/type1/public/allrunes/fruals.pfb + RELOC/fonts/type1/public/allrunes/frualt.pfb + RELOC/fonts/type1/public/allrunes/fruamm.pfb + RELOC/fonts/type1/public/allrunes/fruamn.pfb + RELOC/fonts/type1/public/allrunes/fruamq.pfb + RELOC/fonts/type1/public/allrunes/fruamr.pfb + RELOC/fonts/type1/public/allrunes/fruams.pfb + RELOC/fonts/type1/public/allrunes/fruamt.pfb + RELOC/fonts/type1/public/allrunes/fruanm.pfb + RELOC/fonts/type1/public/allrunes/fruann.pfb + RELOC/fonts/type1/public/allrunes/fruanq.pfb + RELOC/fonts/type1/public/allrunes/fruanr.pfb + RELOC/fonts/type1/public/allrunes/fruans.pfb + RELOC/fonts/type1/public/allrunes/fruant.pfb + RELOC/fonts/type1/public/allrunes/frucbm.pfb + RELOC/fonts/type1/public/allrunes/frucbn.pfb + RELOC/fonts/type1/public/allrunes/frucbq.pfb + RELOC/fonts/type1/public/allrunes/frucbr.pfb + RELOC/fonts/type1/public/allrunes/frucbs.pfb + RELOC/fonts/type1/public/allrunes/frucbt.pfb + RELOC/fonts/type1/public/allrunes/fruccm.pfb + RELOC/fonts/type1/public/allrunes/fruccn.pfb + RELOC/fonts/type1/public/allrunes/fruccq.pfb + RELOC/fonts/type1/public/allrunes/fruccr.pfb + RELOC/fonts/type1/public/allrunes/fruccs.pfb + RELOC/fonts/type1/public/allrunes/frucct.pfb + RELOC/fonts/type1/public/allrunes/fruckm.pfb + RELOC/fonts/type1/public/allrunes/fruckn.pfb + RELOC/fonts/type1/public/allrunes/fruckq.pfb + RELOC/fonts/type1/public/allrunes/fruckr.pfb + RELOC/fonts/type1/public/allrunes/frucks.pfb + RELOC/fonts/type1/public/allrunes/fruckt.pfb + RELOC/fonts/type1/public/allrunes/fruclm.pfb + RELOC/fonts/type1/public/allrunes/frucln.pfb + RELOC/fonts/type1/public/allrunes/fruclq.pfb + RELOC/fonts/type1/public/allrunes/fruclr.pfb + RELOC/fonts/type1/public/allrunes/frucls.pfb + RELOC/fonts/type1/public/allrunes/fruclt.pfb + RELOC/fonts/type1/public/allrunes/frucmm.pfb + RELOC/fonts/type1/public/allrunes/frucmn.pfb + RELOC/fonts/type1/public/allrunes/frucmq.pfb + RELOC/fonts/type1/public/allrunes/frucmr.pfb + RELOC/fonts/type1/public/allrunes/frucms.pfb + RELOC/fonts/type1/public/allrunes/frucmt.pfb + RELOC/fonts/type1/public/allrunes/frucnm.pfb + RELOC/fonts/type1/public/allrunes/frucnn.pfb + RELOC/fonts/type1/public/allrunes/frucnq.pfb + RELOC/fonts/type1/public/allrunes/frucnr.pfb + RELOC/fonts/type1/public/allrunes/frucns.pfb + RELOC/fonts/type1/public/allrunes/frucnt.pfb + RELOC/fonts/type1/public/allrunes/frulbm.pfb + RELOC/fonts/type1/public/allrunes/frulbn.pfb + RELOC/fonts/type1/public/allrunes/frulbq.pfb + RELOC/fonts/type1/public/allrunes/frulbr.pfb + RELOC/fonts/type1/public/allrunes/frulbs.pfb + RELOC/fonts/type1/public/allrunes/frulbt.pfb + RELOC/fonts/type1/public/allrunes/frulcm.pfb + RELOC/fonts/type1/public/allrunes/frulcn.pfb + RELOC/fonts/type1/public/allrunes/frulcq.pfb + RELOC/fonts/type1/public/allrunes/frulcr.pfb + RELOC/fonts/type1/public/allrunes/frulcs.pfb + RELOC/fonts/type1/public/allrunes/frulct.pfb + RELOC/fonts/type1/public/allrunes/frulkm.pfb + RELOC/fonts/type1/public/allrunes/frulkn.pfb + RELOC/fonts/type1/public/allrunes/frulkq.pfb + RELOC/fonts/type1/public/allrunes/frulkr.pfb + RELOC/fonts/type1/public/allrunes/frulks.pfb + RELOC/fonts/type1/public/allrunes/frulkt.pfb + RELOC/fonts/type1/public/allrunes/frullm.pfb + RELOC/fonts/type1/public/allrunes/frulln.pfb + RELOC/fonts/type1/public/allrunes/frullq.pfb + RELOC/fonts/type1/public/allrunes/frullr.pfb + RELOC/fonts/type1/public/allrunes/frulls.pfb + RELOC/fonts/type1/public/allrunes/frullt.pfb + RELOC/fonts/type1/public/allrunes/frulmm.pfb + RELOC/fonts/type1/public/allrunes/frulmn.pfb + RELOC/fonts/type1/public/allrunes/frulmq.pfb + RELOC/fonts/type1/public/allrunes/frulmr.pfb + RELOC/fonts/type1/public/allrunes/frulms.pfb + RELOC/fonts/type1/public/allrunes/frulmt.pfb + RELOC/fonts/type1/public/allrunes/frulnm.pfb + RELOC/fonts/type1/public/allrunes/frulnn.pfb + RELOC/fonts/type1/public/allrunes/frulnq.pfb + RELOC/fonts/type1/public/allrunes/frulnr.pfb + RELOC/fonts/type1/public/allrunes/frulns.pfb + RELOC/fonts/type1/public/allrunes/frulnt.pfb + RELOC/fonts/type1/public/allrunes/frumbm.pfb + RELOC/fonts/type1/public/allrunes/frumbn.pfb + RELOC/fonts/type1/public/allrunes/frumbq.pfb + RELOC/fonts/type1/public/allrunes/frumbr.pfb + RELOC/fonts/type1/public/allrunes/frumbs.pfb + RELOC/fonts/type1/public/allrunes/frumbt.pfb + RELOC/fonts/type1/public/allrunes/frumcm.pfb + RELOC/fonts/type1/public/allrunes/frumcn.pfb + RELOC/fonts/type1/public/allrunes/frumcq.pfb + RELOC/fonts/type1/public/allrunes/frumcr.pfb + RELOC/fonts/type1/public/allrunes/frumcs.pfb + RELOC/fonts/type1/public/allrunes/frumct.pfb + RELOC/fonts/type1/public/allrunes/frumkm.pfb + RELOC/fonts/type1/public/allrunes/frumkn.pfb + RELOC/fonts/type1/public/allrunes/frumkq.pfb + RELOC/fonts/type1/public/allrunes/frumkr.pfb + RELOC/fonts/type1/public/allrunes/frumks.pfb + RELOC/fonts/type1/public/allrunes/frumkt.pfb + RELOC/fonts/type1/public/allrunes/frumlm.pfb + RELOC/fonts/type1/public/allrunes/frumln.pfb + RELOC/fonts/type1/public/allrunes/frumlq.pfb + RELOC/fonts/type1/public/allrunes/frumlr.pfb + RELOC/fonts/type1/public/allrunes/frumls.pfb + RELOC/fonts/type1/public/allrunes/frumlt.pfb + RELOC/fonts/type1/public/allrunes/frummm.pfb + RELOC/fonts/type1/public/allrunes/frummn.pfb + RELOC/fonts/type1/public/allrunes/frummq.pfb + RELOC/fonts/type1/public/allrunes/frummr.pfb + RELOC/fonts/type1/public/allrunes/frumms.pfb + RELOC/fonts/type1/public/allrunes/frummt.pfb + RELOC/fonts/type1/public/allrunes/frumnm.pfb + RELOC/fonts/type1/public/allrunes/frumnn.pfb + RELOC/fonts/type1/public/allrunes/frumnq.pfb + RELOC/fonts/type1/public/allrunes/frumnr.pfb + RELOC/fonts/type1/public/allrunes/frumns.pfb + RELOC/fonts/type1/public/allrunes/frumnt.pfb + RELOC/fonts/type1/public/allrunes/frunbm.pfb + RELOC/fonts/type1/public/allrunes/frunbn.pfb + RELOC/fonts/type1/public/allrunes/frunbq.pfb + RELOC/fonts/type1/public/allrunes/frunbr.pfb + RELOC/fonts/type1/public/allrunes/frunbs.pfb + RELOC/fonts/type1/public/allrunes/frunbt.pfb + RELOC/fonts/type1/public/allrunes/fruncm.pfb + RELOC/fonts/type1/public/allrunes/fruncn.pfb + RELOC/fonts/type1/public/allrunes/fruncq.pfb + RELOC/fonts/type1/public/allrunes/fruncr.pfb + RELOC/fonts/type1/public/allrunes/fruncs.pfb + RELOC/fonts/type1/public/allrunes/frunct.pfb + RELOC/fonts/type1/public/allrunes/frunkm.pfb + RELOC/fonts/type1/public/allrunes/frunkn.pfb + RELOC/fonts/type1/public/allrunes/frunkq.pfb + RELOC/fonts/type1/public/allrunes/frunkr.pfb + RELOC/fonts/type1/public/allrunes/frunks.pfb + RELOC/fonts/type1/public/allrunes/frunkt.pfb + RELOC/fonts/type1/public/allrunes/frunlm.pfb + RELOC/fonts/type1/public/allrunes/frunln.pfb + RELOC/fonts/type1/public/allrunes/frunlq.pfb + RELOC/fonts/type1/public/allrunes/frunlr.pfb + RELOC/fonts/type1/public/allrunes/frunls.pfb + RELOC/fonts/type1/public/allrunes/frunlt.pfb + RELOC/fonts/type1/public/allrunes/frunmm.pfb + RELOC/fonts/type1/public/allrunes/frunmn.pfb + RELOC/fonts/type1/public/allrunes/frunmq.pfb + RELOC/fonts/type1/public/allrunes/frunmr.pfb + RELOC/fonts/type1/public/allrunes/frunms.pfb + RELOC/fonts/type1/public/allrunes/frunmt.pfb + RELOC/fonts/type1/public/allrunes/frunnm.pfb + RELOC/fonts/type1/public/allrunes/frunnn.pfb + RELOC/fonts/type1/public/allrunes/frunnq.pfb + RELOC/fonts/type1/public/allrunes/frunnr.pfb + RELOC/fonts/type1/public/allrunes/frunns.pfb + RELOC/fonts/type1/public/allrunes/frunnt.pfb + RELOC/fonts/type1/public/allrunes/frutbm.pfb + RELOC/fonts/type1/public/allrunes/frutbn.pfb + RELOC/fonts/type1/public/allrunes/frutbq.pfb + RELOC/fonts/type1/public/allrunes/frutbr.pfb + RELOC/fonts/type1/public/allrunes/frutbs.pfb + RELOC/fonts/type1/public/allrunes/frutbt.pfb + RELOC/fonts/type1/public/allrunes/frutcm.pfb + RELOC/fonts/type1/public/allrunes/frutcn.pfb + RELOC/fonts/type1/public/allrunes/frutcq.pfb + RELOC/fonts/type1/public/allrunes/frutcr.pfb + RELOC/fonts/type1/public/allrunes/frutcs.pfb + RELOC/fonts/type1/public/allrunes/frutct.pfb + RELOC/fonts/type1/public/allrunes/frutkm.pfb + RELOC/fonts/type1/public/allrunes/frutkn.pfb + RELOC/fonts/type1/public/allrunes/frutkq.pfb + RELOC/fonts/type1/public/allrunes/frutkr.pfb + RELOC/fonts/type1/public/allrunes/frutks.pfb + RELOC/fonts/type1/public/allrunes/frutkt.pfb + RELOC/fonts/type1/public/allrunes/frutlm.pfb + RELOC/fonts/type1/public/allrunes/frutln.pfb + RELOC/fonts/type1/public/allrunes/frutlq.pfb + RELOC/fonts/type1/public/allrunes/frutlr.pfb + RELOC/fonts/type1/public/allrunes/frutls.pfb + RELOC/fonts/type1/public/allrunes/frutlt.pfb + RELOC/fonts/type1/public/allrunes/frutmm.pfb + RELOC/fonts/type1/public/allrunes/frutmn.pfb + RELOC/fonts/type1/public/allrunes/frutmq.pfb + RELOC/fonts/type1/public/allrunes/frutmr.pfb + RELOC/fonts/type1/public/allrunes/frutms.pfb + RELOC/fonts/type1/public/allrunes/frutmt.pfb + RELOC/fonts/type1/public/allrunes/frutnm.pfb + RELOC/fonts/type1/public/allrunes/frutnn.pfb + RELOC/fonts/type1/public/allrunes/frutnq.pfb + RELOC/fonts/type1/public/allrunes/frutnr.pfb + RELOC/fonts/type1/public/allrunes/frutns.pfb + RELOC/fonts/type1/public/allrunes/frutnt.pfb + RELOC/tex/latex/allrunes/allrunes.sty + RELOC/tex/latex/allrunes/ara.fd + RELOC/tex/latex/allrunes/arc.fd + RELOC/tex/latex/allrunes/arl.fd + RELOC/tex/latex/allrunes/arm.fd + RELOC/tex/latex/allrunes/arn.fd + RELOC/tex/latex/allrunes/art.fd +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-ctan /fonts/allrunes +catalogue-date 2014-04-03 23:09:57 +0200 +catalogue-license lppl +catalogue-version 2.1 + +name almfixed +category Package +revision 35065 +shortdesc Arabic-Latin Modern Fixed extends TeX-Gyre Latin Modern Mono 10 Regular to full Arabic Unicode support +relocated 1 +longdesc Arabic-Latin Modern Fixed is an extension of TeX-Gyre Latin +longdesc Modern Mono 10 Regular. Every glyph and opentype feature of the +longdesc Latin Modern Mono has been retained, with minor improvements. +longdesc On the other hand, we have changed the vertical metrics of the +longdesc font. Although the Arabic script is designed to use the same x- +longdesc 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 applications (and usually the default for TeX). The TrueType +longdesc version is for on-screen applications such as text editors. +longdesc Hinting in the ttf version is much better for on-screen, at +longdesc least on Microsoft Windows. The unique feature of Arabic-Latin +longdesc Modern is its treatment of vowels and diacritics. Each vowel +longdesc and diacritic (ALM Fixed contains a total of 68 such glyphs) +longdesc may now be edited horizontally within any text editor or +longdesc processor. The author believes this is the very first opentype +longdesc Arabic font ever to have this capability. Editing complex +longdesc Arabic texts will now be much easier to input and to proofread. +runfiles size=222 + RELOC/fonts/opentype/public/almfixed/almfixed.otf + RELOC/fonts/truetype/public/almfixed/almfixed.ttf +docfiles size=488 + RELOC/doc/fonts/almfixed/README + RELOC/doc/fonts/almfixed/Unibook_0600.pdf + RELOC/doc/fonts/almfixed/Unibook_0750.pdf + RELOC/doc/fonts/almfixed/Unibook_08A0.pdf + RELOC/doc/fonts/almfixed/Unibook_FB50-1.pdf + RELOC/doc/fonts/almfixed/Unibook_FB50-2.pdf + RELOC/doc/fonts/almfixed/Unibook_FB50-3.pdf + RELOC/doc/fonts/almfixed/Unibook_FE70.pdf + RELOC/doc/fonts/almfixed/almfixed-dtk.pdf + RELOC/doc/fonts/almfixed/almfixed-dtk.tex + RELOC/doc/fonts/almfixed/almmono10-sample-crop.pdf + RELOC/doc/fonts/almfixed/aristoteles.pdf + RELOC/doc/fonts/almfixed/fawaid-427-crop.pdf + RELOC/doc/fonts/almfixed/ilahiyyat-1.pdf + RELOC/doc/fonts/almfixed/sc-unipad.pdf + RELOC/doc/fonts/almfixed/wa.pdf +catalogue-ctan /fonts/almfixed +catalogue-date 2014-09-09 12:05:44 +0200 +catalogue-license gfl +catalogue-version 0.92 + +name alnumsec +category Package +revision 15878 +shortdesc Alphanumeric section numbering. +relocated 1 +longdesc This package allows you to use alphanumeric section numbering, +longdesc for instance "A. Introduction ... III. International Law". Its +longdesc output is similar to alphanum, but you can use the standard +longdesc LaTeX sectioning commands, so that it is possible to switch +longdesc numbering schemes easily. Greek letters, double letters (bb) +longdesc and different delimiters around them are supported. +runfiles size=3 + RELOC/tex/latex/alnumsec/alnumsec.sty +docfiles size=37 + RELOC/doc/latex/alnumsec/README + RELOC/doc/latex/alnumsec/alnumsec.pdf +srcfiles size=7 + RELOC/source/latex/alnumsec/alnumsec.dtx + RELOC/source/latex/alnumsec/alnumsec.ins +catalogue-ctan /macros/latex/contrib/alnumsec +catalogue-date 2013-11-21 20:02:41 +0100 +catalogue-license lppl +catalogue-version v0.03 + +name alterqcm +category Package +revision 23385 +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 +docfiles size=399 + RELOC/doc/latex/alterqcm/README + RELOC/doc/latex/alterqcm/README.doc + RELOC/doc/latex/alterqcm/doc_aq-screen.pdf + RELOC/doc/latex/alterqcm/examples/latex/AntillesESjuin2006.tex + RELOC/doc/latex/alterqcm/examples/latex/alea.tex + RELOC/doc/latex/alterqcm/examples/latex/annexe.tex + RELOC/doc/latex/alterqcm/examples/latex/correct.tex + RELOC/doc/latex/alterqcm/examples/latex/example_1.tex + RELOC/doc/latex/alterqcm/examples/latex/example_2.tex + RELOC/doc/latex/alterqcm/examples/latex/language.tex + RELOC/doc/latex/alterqcm/examples/latex/points.tex + RELOC/doc/latex/alterqcm/examples/latex/sep.tex + RELOC/doc/latex/alterqcm/examples/latex/transparent-final.tex + RELOC/doc/latex/alterqcm/examples/latex/transparent-init.tex + RELOC/doc/latex/alterqcm/examples/latex/verb.tex + RELOC/doc/latex/alterqcm/examples/pdf/AntillesESjuin2006.pdf + RELOC/doc/latex/alterqcm/examples/pdf/alea.pdf + RELOC/doc/latex/alterqcm/examples/pdf/annexe.pdf + RELOC/doc/latex/alterqcm/examples/pdf/correct.pdf + RELOC/doc/latex/alterqcm/examples/pdf/doc_aq.pdf + RELOC/doc/latex/alterqcm/examples/pdf/example_1.pdf + RELOC/doc/latex/alterqcm/examples/pdf/example_2.pdf + RELOC/doc/latex/alterqcm/examples/pdf/language.pdf + RELOC/doc/latex/alterqcm/examples/pdf/points.pdf + RELOC/doc/latex/alterqcm/examples/pdf/sep.pdf + RELOC/doc/latex/alterqcm/examples/pdf/transparent-final.pdf + RELOC/doc/latex/alterqcm/examples/pdf/transparent-init.pdf + RELOC/doc/latex/alterqcm/examples/pdf/verb.pdf + RELOC/doc/latex/alterqcm/latex/180px-Gustave_Moreau_007.jpg + RELOC/doc/latex/alterqcm/latex/240px-Mort_du_fossoyeur.jpg + RELOC/doc/latex/alterqcm/latex/The_Wounded_Angel_-_Hugo_Simberg.jpg + RELOC/doc/latex/alterqcm/latex/aq.ist + RELOC/doc/latex/alterqcm/latex/doc-aq-def.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-excomp.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-globales.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-installation.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-locales.tex + RELOC/doc/latex/alterqcm/latex/doc-aq-mc.tex + 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 +catalogue-ctan /macros/latex/contrib/alterqcm +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 3.7c + +name altfont +category Package +revision 15878 +shortdesc Alternative font handling in LaTeX. +relocated 1 +longdesc The package provides a replacement for that part of psnfss and +longdesc mfnfss that changes the default font. The package is +longdesc distributed together with the psfont package, by the same +longdesc author. +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 +docfiles size=59 + RELOC/doc/latex/altfont/README + RELOC/doc/latex/altfont/altfont.pdf + RELOC/doc/latex/altfont/psfont.pdf +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 +catalogue-ctan /macros/latex/contrib/altfont +catalogue-date 2012-06-07 20:36:04 +0200 +catalogue-license gpl +catalogue-version 1.1 + +name ametsoc +category Package +revision 36030 +shortdesc Official American Meteorological Society LaTeX Template. +relocated 1 +longdesc This bundle contains all the files necessary to write an +longdesc article using LaTeX for the American Meteorological Society +longdesc journals. The article and bibliography style files are provided +longdesc (with documentation) and a blank template for authors to use +longdesc when writing their article. Also available is a separate style +longdesc package used to format a two-column, journal page layout draft +longdesc for the author's personal use. +runfiles size=18 + RELOC/bibtex/bst/ametsoc/ametsoc2014.bst + RELOC/tex/latex/ametsoc/ametsoc.cls +docfiles size=6 + RELOC/doc/latex/ametsoc/README + RELOC/doc/latex/ametsoc/README.TEXLIVE + RELOC/doc/latex/ametsoc/references.bib + RELOC/doc/latex/ametsoc/template.tex +catalogue-ctan /macros/latex/contrib/ametsoc +catalogue-date 2015-01-19 21:06:40 +0100 +catalogue-license lppl +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 + RELOC/fonts/truetype/public/amiri/amiri-bold.ttf + RELOC/fonts/truetype/public/amiri/amiri-boldslanted.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-ctan /fonts/amiri +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license ofl +catalogue-version 0.107 + +name amsaddr +category Package +revision 29630 +shortdesc Alter the position of affiliations in amsart. +relocated 1 +longdesc The package is to be used with the amsart documentclass. It +longdesc lets you move the authors' affiliations either just below the +longdesc authors' names on the front page or as footnotes on the first +longdesc page. The email addresses are always listed as a footnote on +longdesc the front page. +runfiles size=1 + RELOC/tex/latex/amsaddr/amsaddr.sty +docfiles size=49 + RELOC/doc/latex/amsaddr/README + RELOC/doc/latex/amsaddr/amsaddr.pdf +srcfiles size=4 + RELOC/source/latex/amsaddr/amsaddr.dtx + RELOC/source/latex/amsaddr/amsaddr.ins +catalogue-ctan /macros/latex/contrib/amsaddr +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name amscls +category Package +revision 36804 +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 + RELOC/doc/latex/amscls/00LICENSE.txt + RELOC/doc/latex/amscls/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/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 + RELOC/source/latex/amscls/amsbooka.dtx + RELOC/source/latex/amscls/amsbooka.ins + RELOC/source/latex/amscls/amsclass.dtx + RELOC/source/latex/amscls/amsclass.ins + RELOC/source/latex/amscls/amsdtx.dtx + RELOC/source/latex/amscls/amsdtx.ins + RELOC/source/latex/amscls/amsmidx.dtx + RELOC/source/latex/amscls/amsmidx.ins + RELOC/source/latex/amscls/amsthdoc.tex + RELOC/source/latex/amscls/install.txt + RELOC/source/latex/amscls/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 + +name amsfonts +category Package +revision 29208 +shortdesc TeX fonts from the American Mathematical Society. +relocated 1 +longdesc An extended set of fonts for use in mathematics, including: +longdesc extra mathematical symbols; blackboard bold letters (uppercase +longdesc only); fraktur letters; subscript sizes of bold math italic and +longdesc bold Greek letters; subscript sizes of large symbols such as +longdesc sum and product; added sizes of the Computer Modern small caps +longdesc font; cyrillic fonts (from the University of Washington); Euler +longdesc mathematical fonts. All fonts are provided as Adobe Type 1 +longdesc files, and all except the Euler fonts are provided as Metafont +longdesc source. The distribution also includes the canonical Type 1 +longdesc versions of the Computer Modern family of fonts. Plain TeX and +longdesc LaTeX macros for using the fonts are provided. +execute addMixedMap cm.map +execute addMixedMap cmextra.map +execute addMixedMap cyrillic.map +execute addMap euler.map +execute addMixedMap latxfont.map +execute addMixedMap symbols.map +runfiles size=1879 + RELOC/fonts/afm/public/amsfonts/cm/cmb10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbsy10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx5.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx6.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbx9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbxsl10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmbxti10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmcsc10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmdunh10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmex10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmff10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmfi10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmfib8.afm + RELOC/fonts/afm/public/amsfonts/cm/cminch.afm + RELOC/fonts/afm/public/amsfonts/cm/cmitt10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi5.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi6.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmi9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmmib10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr17.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr5.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr6.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmr9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsl10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsl12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsl8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsl9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsltt10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss17.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmss9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssbx10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssdc10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi17.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssi9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssq8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmssqi8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy5.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy6.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmsy9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtcsc10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtex10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtex8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtex9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti7.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmti9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtt10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtt12.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtt8.afm + RELOC/fonts/afm/public/amsfonts/cm/cmtt9.afm + RELOC/fonts/afm/public/amsfonts/cm/cmu10.afm + RELOC/fonts/afm/public/amsfonts/cm/cmvtt10.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy5.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy6.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy7.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy8.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmbsy9.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmcsc8.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmcsc9.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmex7.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmex8.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmex9.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib5.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib6.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib7.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib8.afm + RELOC/fonts/afm/public/amsfonts/cmextra/cmmib9.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncyb10.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncyi10.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncyr10.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncysc10.afm + RELOC/fonts/afm/public/amsfonts/cyrillic/wncyss10.afm + RELOC/fonts/afm/public/amsfonts/euler/euex10.afm + RELOC/fonts/afm/public/amsfonts/euler/euex7.afm + RELOC/fonts/afm/public/amsfonts/euler/euex8.afm + RELOC/fonts/afm/public/amsfonts/euler/euex9.afm + RELOC/fonts/afm/public/amsfonts/euler/eufb10.afm + RELOC/fonts/afm/public/amsfonts/euler/eufb5.afm + RELOC/fonts/afm/public/amsfonts/euler/eufb7.afm + RELOC/fonts/afm/public/amsfonts/euler/eufm10.afm + RELOC/fonts/afm/public/amsfonts/euler/eufm5.afm + RELOC/fonts/afm/public/amsfonts/euler/eufm7.afm + RELOC/fonts/afm/public/amsfonts/euler/eurb10.afm + RELOC/fonts/afm/public/amsfonts/euler/eurb5.afm + RELOC/fonts/afm/public/amsfonts/euler/eurb7.afm + RELOC/fonts/afm/public/amsfonts/euler/eurm10.afm + RELOC/fonts/afm/public/amsfonts/euler/eurm5.afm + RELOC/fonts/afm/public/amsfonts/euler/eurm7.afm + RELOC/fonts/afm/public/amsfonts/euler/eusb10.afm + RELOC/fonts/afm/public/amsfonts/euler/eusb5.afm + RELOC/fonts/afm/public/amsfonts/euler/eusb7.afm + RELOC/fonts/afm/public/amsfonts/euler/eusm10.afm + RELOC/fonts/afm/public/amsfonts/euler/eusm5.afm + RELOC/fonts/afm/public/amsfonts/euler/eusm7.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy10.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy5.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy6.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy7.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy8.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasy9.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lasyb10.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcircle1.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcirclew.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcmss8.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcmssb8.afm + RELOC/fonts/afm/public/amsfonts/latxfont/lcmssi8.afm + RELOC/fonts/afm/public/amsfonts/latxfont/line10.afm + RELOC/fonts/afm/public/amsfonts/latxfont/linew10.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam10.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam5.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam6.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam7.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam8.afm + RELOC/fonts/afm/public/amsfonts/symbols/msam9.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm10.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm5.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm6.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm7.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm8.afm + RELOC/fonts/afm/public/amsfonts/symbols/msbm9.afm + RELOC/fonts/map/dvips/amsfonts/cm.map + RELOC/fonts/map/dvips/amsfonts/cmextra.map + RELOC/fonts/map/dvips/amsfonts/cyrillic.map + RELOC/fonts/map/dvips/amsfonts/euler.map + RELOC/fonts/map/dvips/amsfonts/latxfont.map + RELOC/fonts/map/dvips/amsfonts/symbols.map + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy5.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy6.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy7.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy8.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmbsy9.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmcsc8.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmcsc9.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmex7.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmex8.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmex9.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib5.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib6.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib7.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib8.mf + RELOC/fonts/source/public/amsfonts/cmextra/cmmib9.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrcsc.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrfont.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrilu.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrital.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrmax.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrpunc.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrspl.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrspu.mf + RELOC/fonts/source/public/amsfonts/cyrillic/cyrti.mf + RELOC/fonts/source/public/amsfonts/cyrillic/serb.mf + RELOC/fonts/source/public/amsfonts/cyrillic/serbspu.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb5.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb6.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb7.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb8.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyb9.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi5.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi6.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi7.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi8.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyi9.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr5.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr6.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr7.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr8.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyr9.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncysc10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyss10.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyss8.mf + RELOC/fonts/source/public/amsfonts/cyrillic/wncyss9.mf + RELOC/fonts/source/public/amsfonts/dummy/dummy.mf + RELOC/fonts/source/public/amsfonts/symbols/amsya.mf + RELOC/fonts/source/public/amsfonts/symbols/amsyb.mf + RELOC/fonts/source/public/amsfonts/symbols/asymbols.mf + RELOC/fonts/source/public/amsfonts/symbols/bsymbols.mf + RELOC/fonts/source/public/amsfonts/symbols/msam10.mf + RELOC/fonts/source/public/amsfonts/symbols/msam5.mf + RELOC/fonts/source/public/amsfonts/symbols/msam6.mf + RELOC/fonts/source/public/amsfonts/symbols/msam7.mf + RELOC/fonts/source/public/amsfonts/symbols/msam8.mf + RELOC/fonts/source/public/amsfonts/symbols/msam9.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm10.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm5.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm6.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm7.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm8.mf + RELOC/fonts/source/public/amsfonts/symbols/msbm9.mf + RELOC/fonts/source/public/amsfonts/symbols/xbbase.mf + RELOC/fonts/source/public/amsfonts/symbols/xbbold.mf + RELOC/fonts/source/public/amsfonts/symbols/xbcaps.mf + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy5.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy6.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy7.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy8.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmbsy9.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmcsc8.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmcsc9.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmex8.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmex9.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib5.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib6.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib7.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib8.tfm + RELOC/fonts/tfm/public/amsfonts/cmextra/cmmib9.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb5.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb6.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb7.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb8.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyb9.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi5.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi6.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi7.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi8.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyi9.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr5.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr6.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr7.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr8.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyr9.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncysc10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyss10.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyss8.tfm + RELOC/fonts/tfm/public/amsfonts/cyrillic/wncyss9.tfm + RELOC/fonts/tfm/public/amsfonts/dummy/dummy.tfm + RELOC/fonts/tfm/public/amsfonts/euler/euex10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/euex7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/euex8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/euex9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufb9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eufm9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurb9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eurm9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusb9.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm10.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm5.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm6.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm7.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm8.tfm + RELOC/fonts/tfm/public/amsfonts/euler/eusm9.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam10.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam5.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam6.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam7.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam8.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msam9.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm10.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm5.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm6.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm7.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm8.tfm + RELOC/fonts/tfm/public/amsfonts/symbols/msbm9.tfm + RELOC/fonts/type1/public/amsfonts/cm/cmb10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmb10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbsy10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbsy10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx5.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx5.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx6.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx6.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbx9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbx9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbxsl10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbxsl10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmbxti10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmbxti10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmcsc10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmcsc10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmdunh10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmdunh10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmex10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmex10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmff10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmff10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmfi10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmfi10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmfib8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmfib8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cminch.pfb + RELOC/fonts/type1/public/amsfonts/cm/cminch.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmitt10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmitt10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi5.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi5.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi6.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi6.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmi9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmi9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmmib10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmmib10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr17.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr17.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr5.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr5.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr6.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr6.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmr9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmr9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsl10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsl10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsl12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsl12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsl8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsl8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsl9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsl9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsltt10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsltt10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss17.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss17.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmss9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmss9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssbx10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssbx10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssdc10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssdc10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi17.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi17.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssi9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssi9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssq8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssq8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmssqi8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmssqi8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy5.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy5.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy6.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy6.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmsy9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmsy9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtcsc10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtcsc10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtex10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtex10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtex8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtex8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtex9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtex9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti7.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti7.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmti9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmti9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtt10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtt10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtt12.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtt12.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtt8.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtt8.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmtt9.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmtt9.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmu10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmu10.pfm + RELOC/fonts/type1/public/amsfonts/cm/cmvtt10.pfb + RELOC/fonts/type1/public/amsfonts/cm/cmvtt10.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy5.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy5.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy6.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy6.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy7.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy7.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy8.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy8.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy9.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmbsy9.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmcsc8.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmcsc8.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmcsc9.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmcsc9.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmex7.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmex7.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmex8.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmex8.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmex9.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmex9.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib5.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib5.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib6.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib6.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib7.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib7.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib8.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib8.pfm + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib9.pfb + RELOC/fonts/type1/public/amsfonts/cmextra/cmmib9.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyb10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyb10.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyi10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyi10.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyr10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyr10.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncysc10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncysc10.pfm + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyss10.pfb + RELOC/fonts/type1/public/amsfonts/cyrillic/wncyss10.pfm + RELOC/fonts/type1/public/amsfonts/euler/euex10.pfb + RELOC/fonts/type1/public/amsfonts/euler/euex10.pfm + RELOC/fonts/type1/public/amsfonts/euler/euex7.pfb + RELOC/fonts/type1/public/amsfonts/euler/euex7.pfm + RELOC/fonts/type1/public/amsfonts/euler/euex8.pfb + RELOC/fonts/type1/public/amsfonts/euler/euex8.pfm + RELOC/fonts/type1/public/amsfonts/euler/euex9.pfb + RELOC/fonts/type1/public/amsfonts/euler/euex9.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufb10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufb10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufb5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufb5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufb7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufb7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufm10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufm10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufm5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufm5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eufm7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eufm7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurb10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurb10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurb5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurb5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurb7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurb7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurm10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurm10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurm5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurm5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eurm7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eurm7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusb10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusb10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusb5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusb5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusb7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusb7.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusm10.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusm10.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusm5.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusm5.pfm + RELOC/fonts/type1/public/amsfonts/euler/eusm7.pfb + RELOC/fonts/type1/public/amsfonts/euler/eusm7.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy10.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy10.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy5.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy5.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy6.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy6.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy7.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy7.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy8.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy8.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasy9.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasy9.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lasyb10.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lasyb10.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcircle1.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcircle1.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcirclew.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcirclew.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcmss8.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcmss8.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcmssb8.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcmssb8.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/lcmssi8.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/lcmssi8.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/line10.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/line10.pfm + RELOC/fonts/type1/public/amsfonts/latxfont/linew10.pfb + RELOC/fonts/type1/public/amsfonts/latxfont/linew10.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam10.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam10.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam5.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam5.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam6.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam6.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam7.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam7.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam8.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam8.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msam9.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msam9.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm10.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm10.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm5.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm5.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm6.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm6.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm7.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm7.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm8.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm8.pfm + RELOC/fonts/type1/public/amsfonts/symbols/msbm9.pfb + RELOC/fonts/type1/public/amsfonts/symbols/msbm9.pfm + RELOC/tex/latex/amsfonts/amsfonts.sty + RELOC/tex/latex/amsfonts/amssymb.sty + RELOC/tex/latex/amsfonts/cmmib57.sty + RELOC/tex/latex/amsfonts/eucal.sty + RELOC/tex/latex/amsfonts/eufrak.sty + RELOC/tex/latex/amsfonts/euscript.sty + RELOC/tex/latex/amsfonts/ueuex.fd + RELOC/tex/latex/amsfonts/ueuf.fd + RELOC/tex/latex/amsfonts/ueur.fd + RELOC/tex/latex/amsfonts/ueus.fd + RELOC/tex/latex/amsfonts/umsa.fd + RELOC/tex/latex/amsfonts/umsb.fd + RELOC/tex/plain/amsfonts/amssym.def + RELOC/tex/plain/amsfonts/amssym.tex + RELOC/tex/plain/amsfonts/cyracc.def +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-ctan /fonts/amsfonts +catalogue-date 2014-04-26 12:45:28 +0200 +catalogue-license ofl +catalogue-version 3.04 + +name amslatex-primer +category Package +revision 28980 +shortdesc Getting up and running with AMS-LaTeX. +relocated 1 +longdesc The document aims to get you up and running with AMS-LaTeX as +longdesc quickly as possible. These instructions (along with a template +longdesc file template.tex) are not a substitute for the full +longdesc documentation, but they may get you started quickly enough so +longdesc that you will only need to refer to the main documentation +longdesc occasionally. In addition to 'AMS-LaTeX out of the box', the +longdesc document contains: a section describing how to draw commutative +longdesc diagrams using Xy-pic; and a section describing how to use +longdesc amsrefs to create a bibliography. +docfiles size=177 + RELOC/doc/latex/amslatex-primer/README + RELOC/doc/latex/amslatex-primer/amshelp.md5 + RELOC/doc/latex/amslatex-primer/amshelp.pdf + 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-license lppl +catalogue-version 2.3 + +name amsldoc-it +category Package +revision 15878 +relocated 1 +docfiles size=105 + RELOC/doc/latex/amsldoc-it/itamsldoc.pdf + RELOC/doc/latex/amsldoc-it/itamsldoc.tex + +name amsldoc-vn +category Package +revision 21855 +catalogue amslatexdoc-vietnamese +shortdesc Vietnamese translation of AMSLaTeX documentation. +relocated 1 +longdesc This is a Vietnamese translation of amsldoc, the users' guide +longdesc to amsmath. +docfiles size=370 + RELOC/doc/latex/amsldoc-vn/Makefile + RELOC/doc/latex/amsldoc-vn/README + RELOC/doc/latex/amsldoc-vn/TODO + RELOC/doc/latex/amsldoc-vn/amsldoc-print-vi.pdf + RELOC/doc/latex/amsldoc-vn/amsldoc-print-vi.tex + RELOC/doc/latex/amsldoc-vn/amsldoc-vi.pdf + 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-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. +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 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 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 + 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/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/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 + RELOC/source/latex/amsmath/amsopn.ins + RELOC/source/latex/amsmath/amstext.dtx + RELOC/source/latex/amsmath/amstext.ins + RELOC/source/latex/amsmath/amsxtra.dtx + RELOC/source/latex/amsmath/amsxtra.ins + 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 +catalogue-license lppl +catalogue-version 2.14 + +name amsrefs +category Package +revision 30646 +shortdesc A LaTeX-based replacement for BibTeX. +relocated 1 +longdesc Amsrefs is a LaTeX package for bibliographies that provides an +longdesc archival data format similar to the format of BibTeX database +longdesc files, but adapted to make direct processing by LaTeX easier. +longdesc The package can be used either in conjunction with BibTeX or as +longdesc a replacement for BibTeX. +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 +docfiles size=522 + RELOC/doc/latex/amsrefs/amsrdoc.pdf + RELOC/doc/latex/amsrefs/amsrefs.faq + RELOC/doc/latex/amsrefs/amsrefs.pdf + RELOC/doc/latex/amsrefs/amsxport.pdf + RELOC/doc/latex/amsrefs/changes.pdf + RELOC/doc/latex/amsrefs/cite-xa.tex + RELOC/doc/latex/amsrefs/cite-xb.tex + RELOC/doc/latex/amsrefs/cite-xh.tex + RELOC/doc/latex/amsrefs/cite-xs.tex + RELOC/doc/latex/amsrefs/gktest.ltb + RELOC/doc/latex/amsrefs/ifoption.pdf + RELOC/doc/latex/amsrefs/jr.bib + RELOC/doc/latex/amsrefs/mathscinet.pdf + RELOC/doc/latex/amsrefs/pcatcode.pdf + RELOC/doc/latex/amsrefs/rkeyval.pdf + RELOC/doc/latex/amsrefs/textcmds.pdf +srcfiles size=129 + RELOC/source/latex/amsrefs/README + RELOC/source/latex/amsrefs/amsrdoc.tex + RELOC/source/latex/amsrefs/amsrefs.dtx + RELOC/source/latex/amsrefs/amsrefs.ins + RELOC/source/latex/amsrefs/amsxport.dtx + RELOC/source/latex/amsrefs/amsxport.ins + RELOC/source/latex/amsrefs/changes.tex + RELOC/source/latex/amsrefs/ifoption.dtx + RELOC/source/latex/amsrefs/ifoption.ins + RELOC/source/latex/amsrefs/install.txt + RELOC/source/latex/amsrefs/manifest.txt + RELOC/source/latex/amsrefs/mathscinet.dtx + RELOC/source/latex/amsrefs/mathscinet.ins + RELOC/source/latex/amsrefs/pcatcode.dtx + RELOC/source/latex/amsrefs/pcatcode.ins + RELOC/source/latex/amsrefs/rkeyval.dtx + RELOC/source/latex/amsrefs/rkeyval.ins + RELOC/source/latex/amsrefs/textcmds.dtx + RELOC/source/latex/amsrefs/textcmds.ins +catalogue-ctan /macros/latex/contrib/amsrefs +catalogue-date 2013-03-09 15:08:10 +0100 +catalogue-license lppl1.3 +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. +depend tex +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 + 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/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 +catalogue-ctan /macros/amstex +catalogue-date 2015-03-31 14:13:38 +0200 +catalogue-license lppl +catalogue-version 2.2 + +name amstex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of amstex +binfiles arch=i386-linux size=1 + bin/i386-linux/amstex + +name amsthdoc-it +category Package +revision 15878 +relocated 1 +docfiles size=32 + RELOC/doc/latex/amsthdoc-it/README + RELOC/doc/latex/amsthdoc-it/amsthdoc_it.pdf + RELOC/doc/latex/amsthdoc-it/amsthdoc_it.tex + +name animate +category Package +revision 38230 +shortdesc Create PDF 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 + RELOC/doc/latex/animate/ChangeLog + RELOC/doc/latex/animate/README + RELOC/doc/latex/animate/animate.pdf +srcfiles size=43 + RELOC/source/latex/animate/animate.tex + RELOC/source/latex/animate/files/bye_0.eps + RELOC/source/latex/animate/files/bye_1.eps + RELOC/source/latex/animate/files/bye_2.eps + RELOC/source/latex/animate/files/bye_3.eps + RELOC/source/latex/animate/files/click.mp3 + RELOC/source/latex/animate/files/exp.mp + RELOC/source/latex/animate/files/mailto.eps + RELOC/source/latex/animate/files/pstmetronome.tex + RELOC/source/latex/animate/files/scarab.mp +catalogue-ctan /macros/latex/contrib/animate +catalogue-date 2015-08-28 18:23:54 +0200 +catalogue-license lppl +catalogue-topics graphics-motion + +name anonchap +category Package +revision 17049 +shortdesc Make chapters be typeset like sections. +relocated 1 +longdesc The command \simplechapter sets up the \chapter command not to +longdesc number chapters, though they may possibly have a prefix, and a +longdesc suffix (the \simplechapterdelim command, which the user may +longdesc alter). The \restorechapter command restores the status quo +longdesc ante. +runfiles size=1 + RELOC/tex/latex/anonchap/anonchap.sty +docfiles size=48 + RELOC/doc/latex/anonchap/anonchap.pdf + RELOC/doc/latex/anonchap/anonchap.tex +catalogue-ctan /macros/latex/contrib/anonchap +catalogue-date 2012-05-24 15:26:23 +0200 +catalogue-license lppl +catalogue-version 1.1a + +name anonymouspro +category Package +revision 33441 +shortdesc Use AnonymousPro fonts with LaTeX. +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 +runfiles size=312 + RELOC/fonts/afm/public/anonymouspro/AnonymousPro-Bold.afm + RELOC/fonts/afm/public/anonymouspro/AnonymousPro-BoldItalic.afm + RELOC/fonts/afm/public/anonymouspro/AnonymousPro-Italic.afm + RELOC/fonts/afm/public/anonymouspro/AnonymousPro-Regular.afm + RELOC/fonts/enc/dvips/anonymouspro/AnonymousPro-01.enc + RELOC/fonts/enc/dvips/anonymouspro/AnonymousPro-02.enc + RELOC/fonts/enc/dvips/anonymouspro/AnonymousPro-03.enc + RELOC/fonts/enc/dvips/anonymouspro/AnonymousPro-symbols.enc + RELOC/fonts/map/dvips/anonymouspro/AnonymousPro.map + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-01.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-02.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-03.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-Symbols-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-Symbols-u.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold-ts1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Bold.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-01.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-02.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-03.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-u.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldItalic.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-BoldSC-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-01.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-02.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-03.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-Symbols-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-Symbols-u.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic-ts1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Italic.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-01.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-02.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-03.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-Symbols-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-Symbols-u.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-base.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-t1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular-ts1.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-Regular.tfm + RELOC/fonts/tfm/public/anonymouspro/AnonymousPro-RegularSC-t1.tfm + RELOC/fonts/truetype/public/anonymouspro/AnonymousPro-Bold.ttf + RELOC/fonts/truetype/public/anonymouspro/AnonymousPro-BoldItalic.ttf + RELOC/fonts/truetype/public/anonymouspro/AnonymousPro-Italic.ttf + RELOC/fonts/truetype/public/anonymouspro/AnonymousPro-Regular.ttf + RELOC/fonts/type1/public/anonymouspro/AnonymousPro-Bold.pfb + RELOC/fonts/type1/public/anonymouspro/AnonymousPro-BoldItalic.pfb + RELOC/fonts/type1/public/anonymouspro/AnonymousPro-Italic.pfb + RELOC/fonts/type1/public/anonymouspro/AnonymousPro-Regular.pfb + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Bold-Symbols-u.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Bold-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Bold-ts1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-Symbols-u.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-BoldItalic-ts1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-BoldSC-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Italic-Symbols-u.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Italic-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Italic-ts1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Regular-Symbols-u.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Regular-t1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-Regular-ts1.vf + RELOC/fonts/vf/public/anonymouspro/AnonymousPro-RegularSC-t1.vf + RELOC/tex/latex/anonymouspro/AnonymousPro.sty + RELOC/tex/latex/anonymouspro/t1anonymouspro.fd + RELOC/tex/latex/anonymouspro/ts1anonymouspro.fd + RELOC/tex/latex/anonymouspro/uanonymouspro.fd +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-ctan /fonts/anonymouspro +catalogue-date 2014-04-13 18:34:56 +0200 +catalogue-license lppl1.3 +catalogue-version 2.1 + +name answers +category Package +revision 35032 +shortdesc Setting questions (or exercises) and answers. +relocated 1 +longdesc The package allows a lot of flexibility in constructing +longdesc question and answer sheets. +runfiles size=2 + RELOC/tex/latex/answers/answers.sty +docfiles size=52 + RELOC/doc/latex/answers/answers.pdf +srcfiles size=7 + RELOC/source/latex/answers/answers.dtx + RELOC/source/latex/answers/answers.ins +catalogue-ctan /macros/latex/contrib/answers +catalogue-date 2014-08-24 12:32:27 +0200 +catalogue-license lppl +catalogue-version 2.16 + +name antiqua +category Package +revision 24266 +catalogue urw-antiqua +shortdesc URW Antiqua condensed font, for use with TeX. +relocated 1 +longdesc The package contains a copy of the Type 1 font "URW Antiqua +longdesc 2051 Regular Condensed" released under the GPL by URW, with +longdesc supporting files for use with (La)TeX. +execute addMap uaq.map +runfiles size=53 + RELOC/fonts/afm/urw/antiqua/uaqr8ac.afm + RELOC/fonts/map/dvips/antiqua/uaq.map + RELOC/fonts/map/vtex/antiqua/uaq.ali + RELOC/fonts/tfm/urw/antiqua/uaqr7tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqr8ac.tfm + RELOC/fonts/tfm/urw/antiqua/uaqr8cc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqr8rc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqr8tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqrc7tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqrc8tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqro7tc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqro8cc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqro8rc.tfm + RELOC/fonts/tfm/urw/antiqua/uaqro8tc.tfm + RELOC/fonts/type1/urw/antiqua/uaqr8ac.pfb + RELOC/fonts/type1/urw/antiqua/uaqr8ac.pfm + RELOC/fonts/vf/urw/antiqua/uaqr7tc.vf + RELOC/fonts/vf/urw/antiqua/uaqr8cc.vf + RELOC/fonts/vf/urw/antiqua/uaqr8tc.vf + RELOC/fonts/vf/urw/antiqua/uaqrc7tc.vf + RELOC/fonts/vf/urw/antiqua/uaqrc8tc.vf + RELOC/fonts/vf/urw/antiqua/uaqro7tc.vf + RELOC/fonts/vf/urw/antiqua/uaqro8cc.vf + RELOC/fonts/vf/urw/antiqua/uaqro8tc.vf + RELOC/tex/latex/antiqua/ot1uaq.fd + RELOC/tex/latex/antiqua/t1uaq.fd + RELOC/tex/latex/antiqua/ts1uaq.fd +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-license gpl +catalogue-version 001.003 + +name antomega +category Package +revision 21933 +shortdesc Alternative language support for Omega/Lambda. +relocated 1 +longdesc A language support package for Omega/Lambda. This replaces the +longdesc original omega package for use with Lambda, and provides extra +longdesc facilities (including Babel-like language switching, which +longdesc eases porting of LaTeX documents to Lambda). +depend omega +runfiles size=206 + RELOC/omega/ocp/antomega/babel2de.ocp + RELOC/omega/ocp/antomega/babel2es.ocp + RELOC/omega/ocp/antomega/babel2la.ocp + RELOC/omega/ocp/antomega/babel2pl.ocp + RELOC/omega/ocp/antomega/babel2punct.ocp + RELOC/omega/ocp/antomega/babel2ru.ocp + RELOC/omega/ocp/antomega/bblgrk2uni.ocp + RELOC/omega/ocp/antomega/dosrus2uni.ocp + RELOC/omega/ocp/antomega/greek2punct.ocp + RELOC/omega/ocp/antomega/iso2uni.ocp + RELOC/omega/ocp/antomega/isobaltic2uni.ocp + RELOC/omega/ocp/antomega/isoce2uni.ocp + RELOC/omega/ocp/antomega/isocyr2uni.ocp + RELOC/omega/ocp/antomega/isogrk2uni.ocp + RELOC/omega/ocp/antomega/koirus2uni.ocp + RELOC/omega/ocp/antomega/latcyr2uni.ocp + RELOC/omega/ocp/antomega/latin/la-lig.ocp + RELOC/omega/ocp/antomega/latin/la-longs.ocp + RELOC/omega/ocp/antomega/latin/la-noj.ocp + RELOC/omega/ocp/antomega/latin/la-nouv.ocp + RELOC/omega/ocp/antomega/oldstyle.ocp + RELOC/omega/ocp/antomega/rhobre.ocp + RELOC/omega/ocp/antomega/rhonobre.ocp + RELOC/omega/ocp/antomega/tex2punct.ocp + RELOC/omega/ocp/antomega/texgrk2uni.ocp + RELOC/omega/ocp/antomega/uni2accents.ocp + RELOC/omega/ocp/antomega/uni2lgr.ocp + RELOC/omega/ocp/antomega/uni2lig.ocp + RELOC/omega/ocp/antomega/uni2omega.ocp + RELOC/omega/ocp/antomega/uni2t1.ocp + RELOC/omega/ocp/antomega/uni2t2a.ocp + RELOC/omega/ocp/antomega/uniutf2uni.ocp + RELOC/omega/ocp/antomega/uppercase-dflt.ocp + RELOC/omega/ocp/antomega/win2uni.ocp + RELOC/omega/ocp/antomega/winbaltic2uni.ocp + RELOC/omega/ocp/antomega/wince2uni.ocp + RELOC/omega/ocp/antomega/wincyr2uni.ocp + RELOC/omega/otp/antomega/babel2de.otp + RELOC/omega/otp/antomega/babel2es.otp + RELOC/omega/otp/antomega/babel2la.otp + RELOC/omega/otp/antomega/babel2pl.otp + RELOC/omega/otp/antomega/babel2punct.otp + RELOC/omega/otp/antomega/babel2ru.otp + RELOC/omega/otp/antomega/bblgrk2uni.otp + RELOC/omega/otp/antomega/dosrus2uni.otp + RELOC/omega/otp/antomega/greek2punct.otp + RELOC/omega/otp/antomega/iso2uni.otp + RELOC/omega/otp/antomega/isobaltic2uni.otp + RELOC/omega/otp/antomega/isoce2uni.otp + RELOC/omega/otp/antomega/isocyr2uni.otp + RELOC/omega/otp/antomega/isogrk2uni.otp + RELOC/omega/otp/antomega/koirus2uni.otp + RELOC/omega/otp/antomega/latcyr2uni.otp + RELOC/omega/otp/antomega/latin/la-lig.otp + RELOC/omega/otp/antomega/latin/la-longs.otp + RELOC/omega/otp/antomega/latin/la-noj.otp + RELOC/omega/otp/antomega/latin/la-nouv.otp + RELOC/omega/otp/antomega/rhobre.otp + RELOC/omega/otp/antomega/rhonobre.otp + RELOC/omega/otp/antomega/tex2punct.otp + RELOC/omega/otp/antomega/texgrk2uni.otp + RELOC/omega/otp/antomega/uni2accents.otp + RELOC/omega/otp/antomega/uni2lgr.otp + RELOC/omega/otp/antomega/uni2lig.otp + RELOC/omega/otp/antomega/uni2omega.otp + RELOC/omega/otp/antomega/uni2t1.otp + RELOC/omega/otp/antomega/uni2t2a.otp + RELOC/omega/otp/antomega/uniutf2uni.otp + RELOC/omega/otp/antomega/uppercase-dflt.otp + RELOC/omega/otp/antomega/win2uni.otp + RELOC/omega/otp/antomega/winbaltic2uni.otp + RELOC/omega/otp/antomega/wince2uni.otp + RELOC/omega/otp/antomega/wincyr2uni.otp + RELOC/tex/lambda/antomega/antomega.cfg + RELOC/tex/lambda/antomega/antomega.sty + RELOC/tex/lambda/antomega/grhyph16.tex + RELOC/tex/lambda/antomega/hyphen.cfg + RELOC/tex/lambda/antomega/language.dat.sample + RELOC/tex/lambda/antomega/lgc0700.def + RELOC/tex/lambda/antomega/lgrenc-antomega.def + RELOC/tex/lambda/antomega/ograhyph4.tex + RELOC/tex/lambda/antomega/ogrmhyph4.tex + RELOC/tex/lambda/antomega/ogrphyph4.tex + RELOC/tex/lambda/antomega/omega-english.ldf + RELOC/tex/lambda/antomega/omega-french.ldf + RELOC/tex/lambda/antomega/omega-german.ldf + RELOC/tex/lambda/antomega/omega-greek.ldf + RELOC/tex/lambda/antomega/omega-latin.ldf + RELOC/tex/lambda/antomega/omega-latvian.ldf + RELOC/tex/lambda/antomega/omega-polish.ldf + RELOC/tex/lambda/antomega/omega-russian.ldf + RELOC/tex/lambda/antomega/omega-spanish.ldf + RELOC/tex/lambda/antomega/ruhyph16.tex + RELOC/tex/lambda/antomega/t1enc-antomega.def + RELOC/tex/lambda/antomega/t2aenc-antomega.def + RELOC/tex/lambda/antomega/uni0100.def + RELOC/tex/lambda/antomega/uni0370.def + RELOC/tex/lambda/antomega/uni0400.def + RELOC/tex/lambda/antomega/uni1f00.def + RELOC/tex/lambda/antomega/ut1enc-antomega.def +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-license lppl +catalogue-version 0.8 + +name antt +category Package +revision 18651 +shortdesc Antykwa Torunska: a Type 1 family of a Polish traditional type. +relocated 1 +longdesc Antykwa Torunska is a serif font designed by the late Polish +longdesc typographer Zygfryd Gardzielewski, reconstructed and digitized +longdesc as Type 1. +execute addMap antt.map +runfiles size=5261 + RELOC/fonts/afm/public/antt/anttb.afm + RELOC/fonts/afm/public/antt/anttbi.afm + RELOC/fonts/afm/public/antt/anttcb.afm + RELOC/fonts/afm/public/antt/anttcbi.afm + RELOC/fonts/afm/public/antt/anttcl.afm + RELOC/fonts/afm/public/antt/anttcli.afm + RELOC/fonts/afm/public/antt/anttcm.afm + RELOC/fonts/afm/public/antt/anttcmi.afm + RELOC/fonts/afm/public/antt/anttcr.afm + RELOC/fonts/afm/public/antt/anttcri.afm + RELOC/fonts/afm/public/antt/anttl.afm + RELOC/fonts/afm/public/antt/anttli.afm + RELOC/fonts/afm/public/antt/anttm.afm + RELOC/fonts/afm/public/antt/anttmi.afm + RELOC/fonts/afm/public/antt/anttr.afm + RELOC/fonts/afm/public/antt/anttri.afm + RELOC/fonts/enc/dvips/antt/antt-cs.enc + RELOC/fonts/enc/dvips/antt/antt-ec.enc + RELOC/fonts/enc/dvips/antt/antt-el.enc + RELOC/fonts/enc/dvips/antt/antt-ex.enc + RELOC/fonts/enc/dvips/antt/antt-exp.enc + RELOC/fonts/enc/dvips/antt/antt-greek.enc + RELOC/fonts/enc/dvips/antt/antt-mi.enc + RELOC/fonts/enc/dvips/antt/antt-qx.enc + RELOC/fonts/enc/dvips/antt/antt-rm.enc + RELOC/fonts/enc/dvips/antt/antt-sy.enc + RELOC/fonts/enc/dvips/antt/antt-t2a.enc + RELOC/fonts/enc/dvips/antt/antt-t2b.enc + RELOC/fonts/enc/dvips/antt/antt-t2c.enc + RELOC/fonts/enc/dvips/antt/antt-t5.enc + RELOC/fonts/enc/dvips/antt/antt-texnansi.enc + RELOC/fonts/enc/dvips/antt/antt-ts1.enc + RELOC/fonts/enc/dvips/antt/antt-wncy.enc + RELOC/fonts/enc/dvips/antt/anttcap-cs.enc + RELOC/fonts/enc/dvips/antt/anttcap-ec.enc + RELOC/fonts/enc/dvips/antt/anttcap-qx.enc + RELOC/fonts/enc/dvips/antt/anttcap-t5.enc + RELOC/fonts/enc/dvips/antt/anttcap-texnansi.enc + RELOC/fonts/map/dvips/antt/antt-cs.map + RELOC/fonts/map/dvips/antt/antt-ec.map + RELOC/fonts/map/dvips/antt/antt-el.map + RELOC/fonts/map/dvips/antt/antt-ex.map + RELOC/fonts/map/dvips/antt/antt-exp.map + RELOC/fonts/map/dvips/antt/antt-greek.map + RELOC/fonts/map/dvips/antt/antt-mi.map + RELOC/fonts/map/dvips/antt/antt-qx.map + RELOC/fonts/map/dvips/antt/antt-rm.map + RELOC/fonts/map/dvips/antt/antt-sy.map + RELOC/fonts/map/dvips/antt/antt-t2a.map + RELOC/fonts/map/dvips/antt/antt-t2b.map + RELOC/fonts/map/dvips/antt/antt-t2c.map + RELOC/fonts/map/dvips/antt/antt-t5.map + RELOC/fonts/map/dvips/antt/antt-texnansi.map + RELOC/fonts/map/dvips/antt/antt-ts1.map + RELOC/fonts/map/dvips/antt/antt-wncy.map + RELOC/fonts/map/dvips/antt/antt.map + RELOC/fonts/opentype/public/antt/AntykwaTorunska-Bold.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunska-BoldItalic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunska-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunska-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCond-Bold.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCond-BoldItalic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCond-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCond-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCondLight-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCondLight-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCondMed-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaCondMed-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaLight-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaLight-Regular.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaMed-Italic.otf + RELOC/fonts/opentype/public/antt/AntykwaTorunskaMed-Regular.otf + RELOC/fonts/tfm/public/antt/cs-anttb.tfm + RELOC/fonts/tfm/public/antt/cs-anttbcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttbi.tfm + RELOC/fonts/tfm/public/antt/cs-anttbicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcb.tfm + RELOC/fonts/tfm/public/antt/cs-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcbi.tfm + RELOC/fonts/tfm/public/antt/cs-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcl.tfm + RELOC/fonts/tfm/public/antt/cs-anttclcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcli.tfm + RELOC/fonts/tfm/public/antt/cs-anttclicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcm.tfm + RELOC/fonts/tfm/public/antt/cs-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcmi.tfm + RELOC/fonts/tfm/public/antt/cs-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcr.tfm + RELOC/fonts/tfm/public/antt/cs-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttcri.tfm + RELOC/fonts/tfm/public/antt/cs-anttcricap.tfm + RELOC/fonts/tfm/public/antt/cs-anttl.tfm + RELOC/fonts/tfm/public/antt/cs-anttlcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttli.tfm + RELOC/fonts/tfm/public/antt/cs-anttlicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttm.tfm + RELOC/fonts/tfm/public/antt/cs-anttmcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttmi.tfm + RELOC/fonts/tfm/public/antt/cs-anttmicap.tfm + RELOC/fonts/tfm/public/antt/cs-anttr.tfm + RELOC/fonts/tfm/public/antt/cs-anttrcap.tfm + RELOC/fonts/tfm/public/antt/cs-anttri.tfm + RELOC/fonts/tfm/public/antt/cs-anttricap.tfm + RELOC/fonts/tfm/public/antt/ec-anttb.tfm + RELOC/fonts/tfm/public/antt/ec-anttbcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttbi.tfm + RELOC/fonts/tfm/public/antt/ec-anttbicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcb.tfm + RELOC/fonts/tfm/public/antt/ec-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcbi.tfm + RELOC/fonts/tfm/public/antt/ec-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcl.tfm + RELOC/fonts/tfm/public/antt/ec-anttclcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcli.tfm + RELOC/fonts/tfm/public/antt/ec-anttclicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcm.tfm + RELOC/fonts/tfm/public/antt/ec-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcmi.tfm + RELOC/fonts/tfm/public/antt/ec-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcr.tfm + RELOC/fonts/tfm/public/antt/ec-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttcri.tfm + RELOC/fonts/tfm/public/antt/ec-anttcricap.tfm + RELOC/fonts/tfm/public/antt/ec-anttl.tfm + RELOC/fonts/tfm/public/antt/ec-anttlcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttli.tfm + RELOC/fonts/tfm/public/antt/ec-anttlicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttm.tfm + RELOC/fonts/tfm/public/antt/ec-anttmcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttmi.tfm + RELOC/fonts/tfm/public/antt/ec-anttmicap.tfm + RELOC/fonts/tfm/public/antt/ec-anttr.tfm + RELOC/fonts/tfm/public/antt/ec-anttrcap.tfm + RELOC/fonts/tfm/public/antt/ec-anttri.tfm + RELOC/fonts/tfm/public/antt/ec-anttricap.tfm + RELOC/fonts/tfm/public/antt/el-anttb.tfm + RELOC/fonts/tfm/public/antt/el-anttbi.tfm + RELOC/fonts/tfm/public/antt/el-anttcb.tfm + RELOC/fonts/tfm/public/antt/el-anttcbi.tfm + RELOC/fonts/tfm/public/antt/el-anttcl.tfm + RELOC/fonts/tfm/public/antt/el-anttcli.tfm + RELOC/fonts/tfm/public/antt/el-anttcm.tfm + RELOC/fonts/tfm/public/antt/el-anttcmi.tfm + RELOC/fonts/tfm/public/antt/el-anttcr.tfm + RELOC/fonts/tfm/public/antt/el-anttcri.tfm + RELOC/fonts/tfm/public/antt/el-anttl.tfm + RELOC/fonts/tfm/public/antt/el-anttli.tfm + RELOC/fonts/tfm/public/antt/el-anttm.tfm + RELOC/fonts/tfm/public/antt/el-anttmi.tfm + RELOC/fonts/tfm/public/antt/el-anttr.tfm + RELOC/fonts/tfm/public/antt/el-anttri.tfm + RELOC/fonts/tfm/public/antt/ex-anttb.tfm + RELOC/fonts/tfm/public/antt/ex-anttcb.tfm + RELOC/fonts/tfm/public/antt/ex-anttcl.tfm + RELOC/fonts/tfm/public/antt/ex-anttcm.tfm + RELOC/fonts/tfm/public/antt/ex-anttcr.tfm + RELOC/fonts/tfm/public/antt/ex-anttl.tfm + RELOC/fonts/tfm/public/antt/ex-anttm.tfm + RELOC/fonts/tfm/public/antt/ex-anttr.tfm + RELOC/fonts/tfm/public/antt/exp-anttb.tfm + RELOC/fonts/tfm/public/antt/exp-anttbi.tfm + RELOC/fonts/tfm/public/antt/exp-anttcb.tfm + RELOC/fonts/tfm/public/antt/exp-anttcbi.tfm + RELOC/fonts/tfm/public/antt/exp-anttcl.tfm + RELOC/fonts/tfm/public/antt/exp-anttcli.tfm + RELOC/fonts/tfm/public/antt/exp-anttcm.tfm + RELOC/fonts/tfm/public/antt/exp-anttcmi.tfm + RELOC/fonts/tfm/public/antt/exp-anttcr.tfm + RELOC/fonts/tfm/public/antt/exp-anttcri.tfm + RELOC/fonts/tfm/public/antt/exp-anttl.tfm + RELOC/fonts/tfm/public/antt/exp-anttli.tfm + RELOC/fonts/tfm/public/antt/exp-anttm.tfm + RELOC/fonts/tfm/public/antt/exp-anttmi.tfm + RELOC/fonts/tfm/public/antt/exp-anttr.tfm + RELOC/fonts/tfm/public/antt/exp-anttri.tfm + RELOC/fonts/tfm/public/antt/greek-anttb.tfm + RELOC/fonts/tfm/public/antt/greek-anttbi.tfm + RELOC/fonts/tfm/public/antt/greek-anttcb.tfm + RELOC/fonts/tfm/public/antt/greek-anttcbi.tfm + RELOC/fonts/tfm/public/antt/greek-anttcl.tfm + RELOC/fonts/tfm/public/antt/greek-anttcli.tfm + RELOC/fonts/tfm/public/antt/greek-anttcm.tfm + RELOC/fonts/tfm/public/antt/greek-anttcmi.tfm + RELOC/fonts/tfm/public/antt/greek-anttcr.tfm + RELOC/fonts/tfm/public/antt/greek-anttcri.tfm + RELOC/fonts/tfm/public/antt/greek-anttl.tfm + RELOC/fonts/tfm/public/antt/greek-anttli.tfm + RELOC/fonts/tfm/public/antt/greek-anttm.tfm + RELOC/fonts/tfm/public/antt/greek-anttmi.tfm + RELOC/fonts/tfm/public/antt/greek-anttr.tfm + RELOC/fonts/tfm/public/antt/greek-anttri.tfm + RELOC/fonts/tfm/public/antt/mi-anttbi.tfm + RELOC/fonts/tfm/public/antt/mi-anttcbi.tfm + RELOC/fonts/tfm/public/antt/mi-anttcli.tfm + RELOC/fonts/tfm/public/antt/mi-anttcmi.tfm + RELOC/fonts/tfm/public/antt/mi-anttcri.tfm + RELOC/fonts/tfm/public/antt/mi-anttli.tfm + RELOC/fonts/tfm/public/antt/mi-anttmi.tfm + RELOC/fonts/tfm/public/antt/mi-anttri.tfm + RELOC/fonts/tfm/public/antt/qx-anttb.tfm + RELOC/fonts/tfm/public/antt/qx-anttbcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttbi.tfm + RELOC/fonts/tfm/public/antt/qx-anttbicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcb.tfm + RELOC/fonts/tfm/public/antt/qx-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcbi.tfm + RELOC/fonts/tfm/public/antt/qx-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcl.tfm + RELOC/fonts/tfm/public/antt/qx-anttclcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcli.tfm + RELOC/fonts/tfm/public/antt/qx-anttclicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcm.tfm + RELOC/fonts/tfm/public/antt/qx-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcmi.tfm + RELOC/fonts/tfm/public/antt/qx-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcr.tfm + RELOC/fonts/tfm/public/antt/qx-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttcri.tfm + RELOC/fonts/tfm/public/antt/qx-anttcricap.tfm + RELOC/fonts/tfm/public/antt/qx-anttl.tfm + RELOC/fonts/tfm/public/antt/qx-anttlcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttli.tfm + RELOC/fonts/tfm/public/antt/qx-anttlicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttm.tfm + RELOC/fonts/tfm/public/antt/qx-anttmcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttmi.tfm + RELOC/fonts/tfm/public/antt/qx-anttmicap.tfm + RELOC/fonts/tfm/public/antt/qx-anttr.tfm + RELOC/fonts/tfm/public/antt/qx-anttrcap.tfm + RELOC/fonts/tfm/public/antt/qx-anttri.tfm + RELOC/fonts/tfm/public/antt/qx-anttricap.tfm + RELOC/fonts/tfm/public/antt/rm-anttb.tfm + RELOC/fonts/tfm/public/antt/rm-anttbi.tfm + RELOC/fonts/tfm/public/antt/rm-anttcb.tfm + RELOC/fonts/tfm/public/antt/rm-anttcbi.tfm + RELOC/fonts/tfm/public/antt/rm-anttcl.tfm + RELOC/fonts/tfm/public/antt/rm-anttcli.tfm + RELOC/fonts/tfm/public/antt/rm-anttcm.tfm + RELOC/fonts/tfm/public/antt/rm-anttcmi.tfm + RELOC/fonts/tfm/public/antt/rm-anttcr.tfm + RELOC/fonts/tfm/public/antt/rm-anttcri.tfm + RELOC/fonts/tfm/public/antt/rm-anttl.tfm + RELOC/fonts/tfm/public/antt/rm-anttli.tfm + RELOC/fonts/tfm/public/antt/rm-anttm.tfm + RELOC/fonts/tfm/public/antt/rm-anttmi.tfm + RELOC/fonts/tfm/public/antt/rm-anttr.tfm + RELOC/fonts/tfm/public/antt/rm-anttri.tfm + RELOC/fonts/tfm/public/antt/sy-anttbz.tfm + RELOC/fonts/tfm/public/antt/sy-anttcbz.tfm + RELOC/fonts/tfm/public/antt/sy-anttclz.tfm + RELOC/fonts/tfm/public/antt/sy-anttcmz.tfm + RELOC/fonts/tfm/public/antt/sy-anttcrz.tfm + RELOC/fonts/tfm/public/antt/sy-anttlz.tfm + RELOC/fonts/tfm/public/antt/sy-anttmz.tfm + RELOC/fonts/tfm/public/antt/sy-anttrz.tfm + RELOC/fonts/tfm/public/antt/t2a-anttb.tfm + RELOC/fonts/tfm/public/antt/t2a-anttbi.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcb.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcbi.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcl.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcli.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcm.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcmi.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcr.tfm + RELOC/fonts/tfm/public/antt/t2a-anttcri.tfm + RELOC/fonts/tfm/public/antt/t2a-anttl.tfm + RELOC/fonts/tfm/public/antt/t2a-anttli.tfm + RELOC/fonts/tfm/public/antt/t2a-anttm.tfm + RELOC/fonts/tfm/public/antt/t2a-anttmi.tfm + RELOC/fonts/tfm/public/antt/t2a-anttr.tfm + RELOC/fonts/tfm/public/antt/t2a-anttri.tfm + RELOC/fonts/tfm/public/antt/t2b-anttb.tfm + RELOC/fonts/tfm/public/antt/t2b-anttbi.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcb.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcbi.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcl.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcli.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcm.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcmi.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcr.tfm + RELOC/fonts/tfm/public/antt/t2b-anttcri.tfm + RELOC/fonts/tfm/public/antt/t2b-anttl.tfm + RELOC/fonts/tfm/public/antt/t2b-anttli.tfm + RELOC/fonts/tfm/public/antt/t2b-anttm.tfm + RELOC/fonts/tfm/public/antt/t2b-anttmi.tfm + RELOC/fonts/tfm/public/antt/t2b-anttr.tfm + RELOC/fonts/tfm/public/antt/t2b-anttri.tfm + RELOC/fonts/tfm/public/antt/t2c-anttb.tfm + RELOC/fonts/tfm/public/antt/t2c-anttbi.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcb.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcbi.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcl.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcli.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcm.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcmi.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcr.tfm + RELOC/fonts/tfm/public/antt/t2c-anttcri.tfm + RELOC/fonts/tfm/public/antt/t2c-anttl.tfm + RELOC/fonts/tfm/public/antt/t2c-anttli.tfm + RELOC/fonts/tfm/public/antt/t2c-anttm.tfm + RELOC/fonts/tfm/public/antt/t2c-anttmi.tfm + RELOC/fonts/tfm/public/antt/t2c-anttr.tfm + RELOC/fonts/tfm/public/antt/t2c-anttri.tfm + RELOC/fonts/tfm/public/antt/t5-anttb.tfm + RELOC/fonts/tfm/public/antt/t5-anttbcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttbi.tfm + RELOC/fonts/tfm/public/antt/t5-anttbicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcb.tfm + RELOC/fonts/tfm/public/antt/t5-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcbi.tfm + RELOC/fonts/tfm/public/antt/t5-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcl.tfm + RELOC/fonts/tfm/public/antt/t5-anttclcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcli.tfm + RELOC/fonts/tfm/public/antt/t5-anttclicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcm.tfm + RELOC/fonts/tfm/public/antt/t5-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcmi.tfm + RELOC/fonts/tfm/public/antt/t5-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcr.tfm + RELOC/fonts/tfm/public/antt/t5-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttcri.tfm + RELOC/fonts/tfm/public/antt/t5-anttcricap.tfm + RELOC/fonts/tfm/public/antt/t5-anttl.tfm + RELOC/fonts/tfm/public/antt/t5-anttlcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttli.tfm + RELOC/fonts/tfm/public/antt/t5-anttlicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttm.tfm + RELOC/fonts/tfm/public/antt/t5-anttmcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttmi.tfm + RELOC/fonts/tfm/public/antt/t5-anttmicap.tfm + RELOC/fonts/tfm/public/antt/t5-anttr.tfm + RELOC/fonts/tfm/public/antt/t5-anttrcap.tfm + RELOC/fonts/tfm/public/antt/t5-anttri.tfm + RELOC/fonts/tfm/public/antt/t5-anttricap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttb.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttbcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttbi.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttbicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcb.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcbcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcbi.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcbicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcl.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttclcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcli.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttclicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcm.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcmcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcmi.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcmicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcr.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcrcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcri.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttcricap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttl.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttlcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttli.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttlicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttm.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttmcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttmi.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttmicap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttr.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttrcap.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttri.tfm + RELOC/fonts/tfm/public/antt/texnansi-anttricap.tfm + RELOC/fonts/tfm/public/antt/ts1-anttb.tfm + RELOC/fonts/tfm/public/antt/ts1-anttbi.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcb.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcbi.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcl.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcli.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcm.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcmi.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcr.tfm + RELOC/fonts/tfm/public/antt/ts1-anttcri.tfm + RELOC/fonts/tfm/public/antt/ts1-anttl.tfm + RELOC/fonts/tfm/public/antt/ts1-anttli.tfm + RELOC/fonts/tfm/public/antt/ts1-anttm.tfm + RELOC/fonts/tfm/public/antt/ts1-anttmi.tfm + RELOC/fonts/tfm/public/antt/ts1-anttr.tfm + RELOC/fonts/tfm/public/antt/ts1-anttri.tfm + RELOC/fonts/tfm/public/antt/wncy-anttb.tfm + RELOC/fonts/tfm/public/antt/wncy-anttbi.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcb.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcbi.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcl.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcli.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcm.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcmi.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcr.tfm + RELOC/fonts/tfm/public/antt/wncy-anttcri.tfm + RELOC/fonts/tfm/public/antt/wncy-anttl.tfm + RELOC/fonts/tfm/public/antt/wncy-anttli.tfm + RELOC/fonts/tfm/public/antt/wncy-anttm.tfm + RELOC/fonts/tfm/public/antt/wncy-anttmi.tfm + RELOC/fonts/tfm/public/antt/wncy-anttr.tfm + RELOC/fonts/tfm/public/antt/wncy-anttri.tfm + RELOC/fonts/type1/public/antt/anttb.pfb + RELOC/fonts/type1/public/antt/anttbi.pfb + RELOC/fonts/type1/public/antt/anttcb.pfb + RELOC/fonts/type1/public/antt/anttcbi.pfb + RELOC/fonts/type1/public/antt/anttcl.pfb + RELOC/fonts/type1/public/antt/anttcli.pfb + RELOC/fonts/type1/public/antt/anttcm.pfb + RELOC/fonts/type1/public/antt/anttcmi.pfb + RELOC/fonts/type1/public/antt/anttcr.pfb + RELOC/fonts/type1/public/antt/anttcri.pfb + RELOC/fonts/type1/public/antt/anttl.pfb + RELOC/fonts/type1/public/antt/anttli.pfb + RELOC/fonts/type1/public/antt/anttm.pfb + RELOC/fonts/type1/public/antt/anttmi.pfb + RELOC/fonts/type1/public/antt/anttr.pfb + RELOC/fonts/type1/public/antt/anttri.pfb + RELOC/tex/latex/antt/anttor.sty + RELOC/tex/latex/antt/antyktor.sty + RELOC/tex/latex/antt/il2antt.fd + RELOC/tex/latex/antt/il2anttc.fd + RELOC/tex/latex/antt/il2anttl.fd + RELOC/tex/latex/antt/il2anttlc.fd + RELOC/tex/latex/antt/ly1antt.fd + RELOC/tex/latex/antt/ly1anttc.fd + RELOC/tex/latex/antt/ly1anttl.fd + RELOC/tex/latex/antt/ly1anttlc.fd + RELOC/tex/latex/antt/omlantt.fd + RELOC/tex/latex/antt/omlanttc.fd + RELOC/tex/latex/antt/omlanttl.fd + RELOC/tex/latex/antt/omlanttlc.fd + RELOC/tex/latex/antt/omsantt.fd + RELOC/tex/latex/antt/omsanttc.fd + RELOC/tex/latex/antt/omsanttl.fd + RELOC/tex/latex/antt/omsanttlc.fd + RELOC/tex/latex/antt/omxantt.fd + RELOC/tex/latex/antt/omxanttc.fd + RELOC/tex/latex/antt/omxanttl.fd + RELOC/tex/latex/antt/omxanttlc.fd + RELOC/tex/latex/antt/ot1antt.fd + RELOC/tex/latex/antt/ot1anttc.fd + RELOC/tex/latex/antt/ot1anttcm.fd + RELOC/tex/latex/antt/ot1anttl.fd + RELOC/tex/latex/antt/ot1anttlc.fd + RELOC/tex/latex/antt/ot1anttlcm.fd + RELOC/tex/latex/antt/ot1anttlm.fd + RELOC/tex/latex/antt/ot1anttm.fd + RELOC/tex/latex/antt/ot2antt.fd + RELOC/tex/latex/antt/ot2anttc.fd + RELOC/tex/latex/antt/ot2anttl.fd + RELOC/tex/latex/antt/ot2anttlc.fd + RELOC/tex/latex/antt/ot4antt.fd + RELOC/tex/latex/antt/ot4anttc.fd + RELOC/tex/latex/antt/ot4anttl.fd + RELOC/tex/latex/antt/ot4anttlc.fd + RELOC/tex/latex/antt/qxantt.fd + RELOC/tex/latex/antt/qxanttc.fd + RELOC/tex/latex/antt/qxanttl.fd + RELOC/tex/latex/antt/qxanttlc.fd + RELOC/tex/latex/antt/t1antt.fd + RELOC/tex/latex/antt/t1anttc.fd + RELOC/tex/latex/antt/t1anttl.fd + RELOC/tex/latex/antt/t1anttlc.fd + RELOC/tex/latex/antt/t2aantt.fd + RELOC/tex/latex/antt/t2aanttc.fd + RELOC/tex/latex/antt/t2aanttl.fd + RELOC/tex/latex/antt/t2aanttlc.fd + RELOC/tex/latex/antt/t2bantt.fd + RELOC/tex/latex/antt/t2banttc.fd + RELOC/tex/latex/antt/t2banttl.fd + RELOC/tex/latex/antt/t2banttlc.fd + RELOC/tex/latex/antt/t2cantt.fd + RELOC/tex/latex/antt/t2canttc.fd + RELOC/tex/latex/antt/t2canttl.fd + RELOC/tex/latex/antt/t2canttlc.fd + RELOC/tex/latex/antt/t5antt.fd + RELOC/tex/latex/antt/t5anttc.fd + RELOC/tex/latex/antt/t5anttl.fd + RELOC/tex/latex/antt/t5anttlc.fd + RELOC/tex/latex/antt/ts1antt.fd + RELOC/tex/latex/antt/ts1anttc.fd + RELOC/tex/latex/antt/ts1anttl.fd + RELOC/tex/latex/antt/ts1anttlc.fd + RELOC/tex/plain/antt/antt-math.tex +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-ctan /fonts/antt +catalogue-date 2012-11-30 12:31:01 +0100 +catalogue-license gfsl +catalogue-version 2.08 + +name anufinalexam +category Package +revision 26053 +shortdesc LaTeX document shell for ANU final exam +relocated 1 +longdesc This LaTeX document shell is created for the standard +longdesc formatting of final exams in The Australian National +longdesc University. +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 +catalogue-license gpl + +name anyfontsize +category Package +revision 17050 +shortdesc Select any font size in LaTeX. +relocated 1 +longdesc The package allows the to user select any font size (via e.g. +longdesc \fontsize{...}{...}\selectfont), even those sizes that are not +longdesc listed in the .fd file. If such a size is requested, LaTeX will +longdesc search for and select the nearest listed size; anyfontsize will +longdesc then scale the font to the size actually requested. Similar +longdesc functionality is available for the CM family, for the EC +longdesc family, or for either computer modern encoding; the present +longdesc package generalises the facility. +runfiles size=1 + RELOC/tex/latex/anyfontsize/anyfontsize.sty +docfiles size=48 + RELOC/doc/latex/anyfontsize/README + RELOC/doc/latex/anyfontsize/anyfontsize.pdf + RELOC/doc/latex/anyfontsize/anyfontsize.tex +catalogue-ctan /macros/latex/contrib/anyfontsize +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name anysize +category Package +revision 15878 +shortdesc A simple package to set up document margins. +relocated 1 +longdesc This package is considered obsolete; alternatives are the +longdesc typearea package from the koma-script bundle, or the geometry +longdesc package. +runfiles size=1 + RELOC/tex/latex/anysize/anysize.sty +docfiles size=13 + RELOC/doc/latex/anysize/README + RELOC/doc/latex/anysize/anysize.pdf + RELOC/doc/latex/anysize/anysize.tex +catalogue-ctan /macros/latex/contrib/anysize +catalogue-date 2012-04-17 00:02:56 +0200 +catalogue-license pd + +name aobs-tikz +category Package +revision 32662 +shortdesc TikZ styles for creating overlaid pictures in beamer. +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 +docfiles size=25 + RELOC/doc/latex/aobs-tikz/README + RELOC/doc/latex/aobs-tikz/aobs-tikz.pdf + RELOC/doc/latex/aobs-tikz/example.tex +srcfiles size=6 + RELOC/source/latex/aobs-tikz/aobs-tikz.dtx + RELOC/source/latex/aobs-tikz/aobs-tikz.ins +catalogue-ctan /graphics/pgf/contrib/aobs-tikz +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name aomart +category Package +revision 36324 +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 + RELOC/doc/latex/aomart/Makefile + RELOC/doc/latex/aomart/README + RELOC/doc/latex/aomart/aomart.bib + RELOC/doc/latex/aomart/aomart.pdf + RELOC/doc/latex/aomart/aomsample.bib + RELOC/doc/latex/aomart/aomsample.pdf + 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 + RELOC/source/latex/aomart/aomart.dtx + RELOC/source/latex/aomart/aomart.ins +catalogue-ctan /macros/latex/contrib/aomart +catalogue-date 2015-02-18 22:22:55 +0100 +catalogue-license lppl1.3 +catalogue-version 1.14a + +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. +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 + +name apa6 +category Package +revision 35631 +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 + RELOC/tex/latex/apa6/apa6.cls + RELOC/tex/latex/apa6/config/APAamerican.txt + RELOC/tex/latex/apa6/config/APAbritish.txt + RELOC/tex/latex/apa6/config/APAczech.txt + RELOC/tex/latex/apa6/config/APAdutch.txt + RELOC/tex/latex/apa6/config/APAendfloat.cfg + RELOC/tex/latex/apa6/config/APAenglish.txt + RELOC/tex/latex/apa6/config/APAgerman.txt + RELOC/tex/latex/apa6/config/APAgreek.txt + RELOC/tex/latex/apa6/config/APAngerman.txt +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 +catalogue-ctan /macros/latex/contrib/apa6 +catalogue-date 2014-11-20 15:51:47 +0100 +catalogue-license lppl1.3 +catalogue-version 2.14 + +name apacite +category Package +revision 31264 +shortdesc Citation style following the rules of the APA. +relocated 1 +longdesc Apacite provides a BibTeX style and a LaTeX package which are +longdesc designed to match the requirements of the American +longdesc Psychological Association's style for citations. The package +longdesc follows the 6th edition of the APA manual, and is designed to +longdesc work with the apa6 class. A test document is provided. The +longdesc package is compatible with chapterbib and (to some extent) with +longdesc hyperref (for limits of compatibility, see the documentation). +longdesc The package also includes a means of generating an author index +longdesc for a document. +runfiles size=189 + RELOC/bibtex/bst/apacite/apacann.bst + RELOC/bibtex/bst/apacite/apacannx.bst + RELOC/bibtex/bst/apacite/apacite.bst + RELOC/bibtex/bst/apacite/apacitex.bst + RELOC/tex/latex/apacite/apacdoc.sty + RELOC/tex/latex/apacite/apacite.sty + RELOC/tex/latex/apacite/dutch.apc + RELOC/tex/latex/apacite/english.apc + RELOC/tex/latex/apacite/finnish.apc + RELOC/tex/latex/apacite/french.apc + RELOC/tex/latex/apacite/german.apc + RELOC/tex/latex/apacite/greek.apc + RELOC/tex/latex/apacite/ngerman.apc + RELOC/tex/latex/apacite/norsk.apc + RELOC/tex/latex/apacite/spanish.apc + RELOC/tex/latex/apacite/swedish.apc +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-license lppl +catalogue-version 6.03 + +name apalike2 +category Package +revision 15878 +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). +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-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 + +name apnum +category Package +revision 37357 +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 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 + RELOC/doc/generic/apnum/apnum.d + RELOC/doc/generic/apnum/apnum.pdf +catalogue-ctan /macros/generic/apnum +catalogue-date 2015-05-12 19:56:31 +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 + +name appendix +category Package +revision 15878 +shortdesc Extra control of appendices. +relocated 1 +longdesc The appendix package provides various ways of formatting the +longdesc titles of appendices. Also (sub)appendices environments are +longdesc provided that can be used, for example, for per chapter/section +longdesc appendices. The word 'Appendix' or similar can be prepended to +longdesc the appendix number for article class documents. The word +longdesc 'Appendices' or similar can be added to the table of contents +longdesc before the appendices are listed. The word 'Appendices' or +longdesc similar can be typeset as a \part-like heading (page) in the +longdesc body. An appendices environment is provided which can be used +longdesc instead of the \appendix command. +runfiles size=3 + RELOC/tex/latex/appendix/appendix.sty +docfiles size=46 + RELOC/doc/latex/appendix/README + RELOC/doc/latex/appendix/appendix.pdf +srcfiles size=11 + RELOC/source/latex/appendix/appendix.dtx + RELOC/source/latex/appendix/appendix.ins +catalogue-ctan /macros/latex/contrib/appendix +catalogue-date 2012-05-01 12:33:44 +0200 +catalogue-license lppl +catalogue-version 1.2b + +name apprends-latex +category Package +revision 19306 +shortdesc Apprends LaTeX! +relocated 1 +longdesc Apprends LaTeX! ("Learn LaTeX", in English) is French +longdesc documentation for LaTeX beginners. +docfiles size=713 + RELOC/doc/latex/apprends-latex/Apprends_LaTeX.pdf + RELOC/doc/latex/apprends-latex/Apprends_LaTeX.tex + RELOC/doc/latex/apprends-latex/README + RELOC/doc/latex/apprends-latex/avance.bib + RELOC/doc/latex/apprends-latex/bibliographie-index.bib + RELOC/doc/latex/apprends-latex/divers.bib + RELOC/doc/latex/apprends-latex/exemples/Makefile + RELOC/doc/latex/apprends-latex/exemples/beamer-themes.pl + RELOC/doc/latex/apprends-latex/exemples/beamer-titlepage.tex + RELOC/doc/latex/apprends-latex/exemples/currvita.tex + RELOC/doc/latex/apprends-latex/exemples/curve-experience.tex + RELOC/doc/latex/apprends-latex/exemples/curve-extra.tex + RELOC/doc/latex/apprends-latex/exemples/curve-formation.tex + RELOC/doc/latex/apprends-latex/exemples/curve-langues.tex + RELOC/doc/latex/apprends-latex/exemples/curve-methodologies.tex + RELOC/doc/latex/apprends-latex/exemples/curve-references.tex + RELOC/doc/latex/apprends-latex/exemples/curve.tex + RELOC/doc/latex/apprends-latex/exemples/letter.tex + RELOC/doc/latex/apprends-latex/exemples/moderncv.tex + RELOC/doc/latex/apprends-latex/exemples/polices.pl + RELOC/doc/latex/apprends-latex/exemples/scrlttr2.tex + RELOC/doc/latex/apprends-latex/exemples/seraphin-lampion.jpg + RELOC/doc/latex/apprends-latex/exemples/slides.tex + RELOC/doc/latex/apprends-latex/exemples/tikz.tex + RELOC/doc/latex/apprends-latex/graphisme.bib + RELOC/doc/latex/apprends-latex/index.ist + RELOC/doc/latex/apprends-latex/latex.bib + RELOC/doc/latex/apprends-latex/latexmkrc + RELOC/doc/latex/apprends-latex/typographie.bib +catalogue-ctan /info/apprends-latex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 4.02 + +name apptools +category Package +revision 28400 +shortdesc Tools for customising appendices. +relocated 1 +longdesc The package provides an \AtAppendix command to add code to a +longdesc hook that is executed when \appendix is called by the user. +longdesc Additionally, a TeX conditional \ifappendix and a LaTeX-style +longdesc conditional \IfAppendix are provided to check if \appendix has +longdesc already been called. +runfiles size=1 + RELOC/tex/latex/apptools/apptools.sty +docfiles size=22 + RELOC/doc/latex/apptools/apptools-test.tex + RELOC/doc/latex/apptools/apptools.pdf +srcfiles size=6 + RELOC/source/latex/apptools/apptools.drv + RELOC/source/latex/apptools/apptools.dtx + RELOC/source/latex/apptools/apptools.ins +catalogue-ctan /macros/latex/contrib/apptools +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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 arabi +category Package +revision 25095 +shortdesc (La)TeX support for Arabic and Farsi, compliant with Babel. +relocated 1 +longdesc The package provides an Arabic and Farsi script support for TeX +longdesc without the need of any external pre-processor, and in a way +longdesc that is compatible with babel. The bi-directional capability +longdesc supposes that the user has a TeX engine that knows the four +longdesc primitives \beginR, \endR, \beginL and \endL. That is the case +longdesc in both the TeX--XeT and e-TeX engines. Arabi will accept input +longdesc in several 8-bit encodings, including UTF-8. Arabi can make use +longdesc of a wide variety of Arabic and Farsi fonts, and provides one +longdesc of its own. PDF files generated using Arabi may be searched, +longdesc and text may be copied from them and pasted elsewhere. +execute addMap arabi.map +runfiles size=1025 + RELOC/fonts/afm/arabi/arabeyes/ae_almohanad_boldItalitalic.afm + RELOC/fonts/afm/arabi/arabeyes/ae_almohanad_thin.afm + RELOC/fonts/afm/arabi/arabeyes/ae_almohanad_xxbold.afm + RELOC/fonts/enc/dvips/arabi/ararabeyes.enc + RELOC/fonts/enc/dvips/arabi/ardtpnaskh.enc + RELOC/fonts/enc/dvips/arabi/ardtpthuluth.enc + RELOC/fonts/enc/dvips/arabi/armonotype.enc + RELOC/fonts/enc/dvips/arabi/aromega.enc + RELOC/fonts/enc/dvips/arabi/arsimplified.enc + RELOC/fonts/enc/dvips/arabi/arunicode.enc + RELOC/fonts/enc/dvips/arabi/farsitex.enc + RELOC/fonts/enc/dvips/arabi/farsiwebencoding.enc + RELOC/fonts/enc/dvips/arabi/frmonotype.enc + RELOC/fonts/enc/dvips/arabi/frsimple.enc + RELOC/fonts/enc/dvips/arabi/frsimplified.enc + RELOC/fonts/enc/dvips/arabi/frunicode.enc + RELOC/fonts/map/dvips/arabi/arabi.map + RELOC/fonts/tfm/arabi/arabeyes/ae_almohanad_xxbold.tfm + RELOC/fonts/tfm/arabi/arabeyes/ae_alyermook.tfm + RELOC/fonts/tfm/arabi/arabeyes/ae_arab.tfm + RELOC/fonts/tfm/arabi/arabeyes/ae_tholoth.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealbattar.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealmateen.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealmohanadb.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealmohanadbolditalic.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealmothnna.tfm + RELOC/fonts/tfm/arabi/arabeyes/aealyermook.tfm + RELOC/fonts/tfm/arabi/arabeyes/aearab.tfm + RELOC/fonts/tfm/arabi/arabeyes/aecortoba.tfm + RELOC/fonts/tfm/arabi/arabeyes/aedimnah.tfm + RELOC/fonts/tfm/arabi/arabeyes/aefurat.tfm + RELOC/fonts/tfm/arabi/arabeyes/aegranada.tfm + RELOC/fonts/tfm/arabi/arabeyes/aegraph.tfm + RELOC/fonts/tfm/arabi/arabeyes/aehani.tfm + RELOC/fonts/tfm/arabi/arabeyes/aehor.tfm + RELOC/fonts/tfm/arabi/arabeyes/aekayrawan.tfm + RELOC/fonts/tfm/arabi/arabeyes/aekhalid.tfm + RELOC/fonts/tfm/arabi/arabeyes/aemashq.tfm + RELOC/fonts/tfm/arabi/arabeyes/aemetal.tfm + RELOC/fonts/tfm/arabi/arabeyes/aenada.tfm + RELOC/fonts/tfm/arabi/arabeyes/aenagham.tfm + RELOC/fonts/tfm/arabi/arabeyes/aenice.tfm + RELOC/fonts/tfm/arabi/arabeyes/aeostorah.tfm + RELOC/fonts/tfm/arabi/arabeyes/aeouhod.tfm + RELOC/fonts/tfm/arabi/arabeyes/aepetra.tfm + RELOC/fonts/tfm/arabi/arabeyes/aerehan.tfm + RELOC/fonts/tfm/arabi/arabeyes/aesalem.tfm + RELOC/fonts/tfm/arabi/arabeyes/aeshado.tfm + RELOC/fonts/tfm/arabi/arabeyes/aesharjah.tfm + RELOC/fonts/tfm/arabi/arabeyes/aesindibad.tfm + RELOC/fonts/tfm/arabi/arabeyes/aetarablus.tfm + RELOC/fonts/tfm/arabi/arabeyes/aetholoth.tfm + RELOC/fonts/tfm/arabi/farsiweb/homa.tfm + RELOC/fonts/tfm/arabi/farsiweb/nazli.tfm + RELOC/fonts/tfm/arabi/farsiweb/nazlib.tfm + RELOC/fonts/tfm/arabi/farsiweb/nazlibout.tfm + RELOC/fonts/tfm/arabi/farsiweb/nazliout.tfm + RELOC/fonts/tfm/arabi/farsiweb/titr.tfm + RELOC/fonts/tfm/arabi/farsiweb/titrout.tfm + RELOC/fonts/type1/arabi/arabeyes/ae_albattar.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almateen.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almohanad_bold.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almohanad_boldItalitalic.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almohanad_thin.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almohanad_xxbold.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_almothnna.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_alyermook.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_arab.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_cortoba.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_dimnah.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_furat.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_granada.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_graph.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_hani.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_hor.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_kayrawan.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_khalid.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_mashq.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_metal.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_nada.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_nagham.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_nice.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_ostorah.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_ouhod.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_petra.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_rehan.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_salem.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_shado.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_sharjah.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_sindibad.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_tarablus.pfb + RELOC/fonts/type1/arabi/arabeyes/ae_tholoth.pfb + RELOC/fonts/type1/arabi/farsiweb/homa.pfb + RELOC/fonts/type1/arabi/farsiweb/nazli.pfb + RELOC/fonts/type1/arabi/farsiweb/nazlib.pfb + RELOC/fonts/type1/arabi/farsiweb/titr.pfb + RELOC/tex/latex/arabi/8859-6.def + RELOC/tex/latex/arabi/PPRarabic.sty + RELOC/tex/latex/arabi/arabi4ht.cfg + RELOC/tex/latex/arabi/arabic.cfg + RELOC/tex/latex/arabi/arabic.ldf + RELOC/tex/latex/arabi/arabicfnt.sty + RELOC/tex/latex/arabi/arabicore.sty + RELOC/tex/latex/arabi/arabiftoday.sty + RELOC/tex/latex/arabi/arabnovowel.sty + RELOC/tex/latex/arabi/arfonts.sty + RELOC/tex/latex/arabi/calendrierfpar.sty + RELOC/tex/latex/arabi/calendrierfpmodified.sty + RELOC/tex/latex/arabi/cp1256.def + RELOC/tex/latex/arabi/farsi.ldf + RELOC/tex/latex/arabi/farsifnt.sty + RELOC/tex/latex/arabi/fmultico.sty + RELOC/tex/latex/arabi/fnum.sty + RELOC/tex/latex/arabi/frfonts.sty + RELOC/tex/latex/arabi/haparabica.sty + RELOC/tex/latex/arabi/laeaealbattar.fd + RELOC/tex/latex/arabi/laeaealmateen.fd + RELOC/tex/latex/arabi/laeaealmohanadb.fd + RELOC/tex/latex/arabi/laeaealmothnna.fd + RELOC/tex/latex/arabi/laeaealyermook.fd + RELOC/tex/latex/arabi/laeaearab.fd + RELOC/tex/latex/arabi/laeaecortoba.fd + RELOC/tex/latex/arabi/laeaedimnah.fd + RELOC/tex/latex/arabi/laeaefurat.fd + RELOC/tex/latex/arabi/laeaegranada.fd + RELOC/tex/latex/arabi/laeaegraph.fd + RELOC/tex/latex/arabi/laeaehani.fd + RELOC/tex/latex/arabi/laeaehor.fd + RELOC/tex/latex/arabi/laeaekayrawan.fd + RELOC/tex/latex/arabi/laeaekhalid.fd + RELOC/tex/latex/arabi/laeaemashq.fd + RELOC/tex/latex/arabi/laeaemetal.fd + RELOC/tex/latex/arabi/laeaenada.fd + RELOC/tex/latex/arabi/laeaenagham.fd + RELOC/tex/latex/arabi/laeaenice.fd + RELOC/tex/latex/arabi/laeaeostorah.fd + RELOC/tex/latex/arabi/laeaeouhod.fd + RELOC/tex/latex/arabi/laeaepetra.fd + RELOC/tex/latex/arabi/laeaerehan.fd + RELOC/tex/latex/arabi/laeaesalem.fd + RELOC/tex/latex/arabi/laeaeshado.fd + RELOC/tex/latex/arabi/laeaesharjah.fd + RELOC/tex/latex/arabi/laeaesindibad.fd + RELOC/tex/latex/arabi/laeaetarablus.fd + RELOC/tex/latex/arabi/laeaetholoth.fd + RELOC/tex/latex/arabi/laeandlso.fd + RELOC/tex/latex/arabi/laeararial.fd + RELOC/tex/latex/arabi/laearcour.fd + RELOC/tex/latex/arabi/laearomega.fd + RELOC/tex/latex/arabi/laearsimpo.fd + RELOC/tex/latex/arabi/laeartimes.fd + RELOC/tex/latex/arabi/laeasv.fd + RELOC/tex/latex/arabi/laecmr.fd + RELOC/tex/latex/arabi/laecmss.fd + RELOC/tex/latex/arabi/laecmtt.fd + RELOC/tex/latex/arabi/laedthuluth.fd + RELOC/tex/latex/arabi/laedtpn.fd + RELOC/tex/latex/arabi/laedtpnsp.fd + RELOC/tex/latex/arabi/laeenc.def + RELOC/tex/latex/arabi/laeenc.dfu + RELOC/tex/latex/arabi/laekacstbook.fd + RELOC/tex/latex/arabi/laemaghribi.fd + RELOC/tex/latex/arabi/laenaskhi.fd + RELOC/tex/latex/arabi/laereqaa.fd + RELOC/tex/latex/arabi/laetraditionalarabic.fd + RELOC/tex/latex/arabi/lagally.sty + RELOC/tex/latex/arabi/lfecmr.fd + RELOC/tex/latex/arabi/lfecmss.fd + RELOC/tex/latex/arabi/lfecmtt.fd + RELOC/tex/latex/arabi/lfeelham.fd + RELOC/tex/latex/arabi/lfeenc.def + RELOC/tex/latex/arabi/lfefandlso.fd + RELOC/tex/latex/arabi/lfefarsismpl.fd + RELOC/tex/latex/arabi/lfefrarial.fd + RELOC/tex/latex/arabi/lfefrtimes.fd + RELOC/tex/latex/arabi/lfeftraditionalarabic.fd + RELOC/tex/latex/arabi/lfehoma.fd + RELOC/tex/latex/arabi/lfekoodak.fd + RELOC/tex/latex/arabi/lfenazli.fd + RELOC/tex/latex/arabi/lfenazliout.fd + RELOC/tex/latex/arabi/lferoya.fd + RELOC/tex/latex/arabi/lfesmplarabic.fd + RELOC/tex/latex/arabi/lfeterafik.fd + RELOC/tex/latex/arabi/lfetitr.fd + RELOC/tex/latex/arabi/lfetitrout.fd + RELOC/tex/latex/arabi/mosq.def + RELOC/tex/latex/arabi/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-ctan /language/arabic/arabi +catalogue-date 2014-04-05 19:55:22 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name arabtex +category Package +revision 25711 +shortdesc Macros and fonts for typesetting Arabic. +relocated 1 +longdesc ArabTeX is a package extending the capabilities of TeX/LaTeX to +longdesc generate Arabic and Hebrew text. Input may be in ASCII +longdesc transliteration or other encodings (including UTF-8); output +longdesc may be Arabic, Hebrew, or any of several languages that use the +longdesc Arabic script. ArabTeX consists of a TeX macro package and +longdesc Arabic and Hebrew fonts (provided both in Metafont format and +longdesc Adobe Type 1). The Arabic font is presently only available in +longdesc the Naskhi style. ArabTeX will run with Plain TeX and also with +longdesc LaTeX. +execute addMixedMap arabtex.map +runfiles size=306 + RELOC/fonts/map/dvips/arabtex/arabtex.map + RELOC/fonts/source/public/arabtex/arabsymb.mf + RELOC/fonts/source/public/arabtex/hcaption.mf + RELOC/fonts/source/public/arabtex/hcbase.mf + RELOC/fonts/source/public/arabtex/hclassic.mf + RELOC/fonts/source/public/arabtex/nash.mf + RELOC/fonts/source/public/arabtex/nash14.mf + RELOC/fonts/source/public/arabtex/nash14bf.mf + RELOC/fonts/source/public/arabtex/nashbase.mf + RELOC/fonts/source/public/arabtex/nashchar.mf + RELOC/fonts/source/public/arabtex/nashdia.mf + RELOC/fonts/source/public/arabtex/nashdig.mf + RELOC/fonts/source/public/arabtex/nashlig.mf + RELOC/fonts/source/public/arabtex/nashspec.mf + RELOC/fonts/source/public/arabtex/xarbsymb.mf + RELOC/fonts/source/public/arabtex/xnsh.mf + RELOC/fonts/source/public/arabtex/xnsh14.mf + RELOC/fonts/source/public/arabtex/xnsh14bf.mf + RELOC/fonts/source/public/arabtex/xnshbase.mf + RELOC/fonts/source/public/arabtex/xnshchar.mf + RELOC/fonts/source/public/arabtex/xnshdia.mf + RELOC/fonts/source/public/arabtex/xnshdig.mf + RELOC/fonts/source/public/arabtex/xnshlig.mf + RELOC/fonts/source/public/arabtex/xnshspec.mf + RELOC/fonts/tfm/public/arabtex/hcaption.tfm + RELOC/fonts/tfm/public/arabtex/hclassic.tfm + RELOC/fonts/tfm/public/arabtex/nash14.tfm + RELOC/fonts/tfm/public/arabtex/nash14bf.tfm + RELOC/fonts/tfm/public/arabtex/xnsh14.tfm + RELOC/fonts/tfm/public/arabtex/xnsh14bf.tfm + RELOC/fonts/tfm/public/arabtex/yarborn.tfm + RELOC/fonts/type1/public/arabtex/hcaption-4.pfb + RELOC/fonts/type1/public/arabtex/hclassic-4.pfb + RELOC/fonts/type1/public/arabtex/xnsh14.pfb + RELOC/fonts/type1/public/arabtex/xnsh14bf.pfb + RELOC/tex/latex/arabtex/Uxnsh.fd + RELOC/tex/latex/arabtex/abidir.sty + RELOC/tex/latex/arabtex/abjad.sty + RELOC/tex/latex/arabtex/aboxes.sty + RELOC/tex/latex/arabtex/acjk.sty + RELOC/tex/latex/arabtex/acmd.sty + RELOC/tex/latex/arabtex/aconfig.sty + RELOC/tex/latex/arabtex/aedpatch.sty + RELOC/tex/latex/arabtex/afonts.sty + RELOC/tex/latex/arabtex/afonts0.sty + RELOC/tex/latex/arabtex/afonts1.sty + RELOC/tex/latex/arabtex/afonts2.sty + RELOC/tex/latex/arabtex/afoot.sty + RELOC/tex/latex/arabtex/alatex.sty + RELOC/tex/latex/arabtex/aligs.sty + RELOC/tex/latex/arabtex/alists.sty + RELOC/tex/latex/arabtex/alocal.sty + RELOC/tex/latex/arabtex/altxext.sty + RELOC/tex/latex/arabtex/amac.sty + RELOC/tex/latex/arabtex/aoutput.sty + RELOC/tex/latex/arabtex/aparse.sty + RELOC/tex/latex/arabtex/apatch.sty + RELOC/tex/latex/arabtex/arababel.sty + RELOC/tex/latex/arabtex/arabart.cls + RELOC/tex/latex/arabtex/arabaux.sty + RELOC/tex/latex/arabtex/arabbook.cls + RELOC/tex/latex/arabtex/arabchrs.sty + RELOC/tex/latex/arabtex/arabext.sty + RELOC/tex/latex/arabtex/arabrep.cls + RELOC/tex/latex/arabtex/arabrep1.cls + RELOC/tex/latex/arabtex/arabskel.sty + RELOC/tex/latex/arabtex/arabsymb.sty + RELOC/tex/latex/arabtex/arabtex-doc.tex + RELOC/tex/latex/arabtex/arabtex.sty + RELOC/tex/latex/arabtex/arabtex.tex + RELOC/tex/latex/arabtex/arabtoks.sty + RELOC/tex/latex/arabtex/arwindoc.tex + RELOC/tex/latex/arabtex/ascan.sty + RELOC/tex/latex/arabtex/asect.sty + RELOC/tex/latex/arabtex/asize10.clo + RELOC/tex/latex/arabtex/asize11.clo + RELOC/tex/latex/arabtex/asize12.clo + RELOC/tex/latex/arabtex/asmo449.sty + RELOC/tex/latex/arabtex/asmo449a.sty + RELOC/tex/latex/arabtex/atabg.sty + RELOC/tex/latex/arabtex/atrans.sty + RELOC/tex/latex/arabtex/awrite.sty + RELOC/tex/latex/arabtex/bhs.sty + RELOC/tex/latex/arabtex/bhslabel.sty + RELOC/tex/latex/arabtex/buck.sty + RELOC/tex/latex/arabtex/captions.def + RELOC/tex/latex/arabtex/cp1256.sty + RELOC/tex/latex/arabtex/etrans.sty + RELOC/tex/latex/arabtex/gedalin.sty + RELOC/tex/latex/arabtex/guha.tex + RELOC/tex/latex/arabtex/hebchrs.sty + RELOC/tex/latex/arabtex/hebsymb.sty + RELOC/tex/latex/arabtex/hebtex.sty + RELOC/tex/latex/arabtex/hebtex.tex + RELOC/tex/latex/arabtex/hecmd.sty + RELOC/tex/latex/arabtex/hefonts.sty + RELOC/tex/latex/arabtex/hefonts0.sty + RELOC/tex/latex/arabtex/hefonts1.sty + RELOC/tex/latex/arabtex/hefonts2.sty + RELOC/tex/latex/arabtex/heparse.sty + RELOC/tex/latex/arabtex/hepatch.sty + RELOC/tex/latex/arabtex/hescan.sty + RELOC/tex/latex/arabtex/hetrans.sty + RELOC/tex/latex/arabtex/hewrite.sty + RELOC/tex/latex/arabtex/hmac.sty + RELOC/tex/latex/arabtex/isiri.sty + RELOC/tex/latex/arabtex/iso88596.sty + RELOC/tex/latex/arabtex/kashmiri.tex + RELOC/tex/latex/arabtex/ligtable.tex + RELOC/tex/latex/arabtex/malay.tex + RELOC/tex/latex/arabtex/nashbf.sty + RELOC/tex/latex/arabtex/omar.tex + RELOC/tex/latex/arabtex/raw.sty + RELOC/tex/latex/arabtex/saw.sty + RELOC/tex/latex/arabtex/sindhi.tex + RELOC/tex/latex/arabtex/sotoku.sty + RELOC/tex/latex/arabtex/twoblks.sty + RELOC/tex/latex/arabtex/uheb.fd + RELOC/tex/latex/arabtex/uighur.tex + RELOC/tex/latex/arabtex/unash.fd + RELOC/tex/latex/arabtex/utf8.sty + RELOC/tex/latex/arabtex/utfcode.sty + RELOC/tex/latex/arabtex/verses.sty + RELOC/tex/latex/arabtex/witbhs.sty + RELOC/tex/latex/arabtex/xarbskel.sty + RELOC/tex/latex/arabtex/xarbsymb.sty + RELOC/tex/latex/arabtex/yiddish.sty +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-ctan /language/arabic/arabtex +catalogue-date 2014-04-05 19:55:22 +0200 +catalogue-license lppl +catalogue-version 3.17 + +name arabxetex +category Package +revision 38299 +shortdesc An ArabTeX-like interface for XeLaTeX +relocated 1 +longdesc ArabXeTeX provides a convenient ArabTeX-like user-interface for +longdesc typesetting languages using the Arabic script in XeLaTeX, with +longdesc flexible access to font features. Input in ArabTeX notation can +longdesc be set in three different vocalization modes or in roman +longdesc transliteration. Direct UTF-8 input is also supported. The +longdesc parsing and converting of ArabTeX input to Unicode is done by +longdesc means of TECkit mappings. Version 1.0 provides support for +longdesc Arabic, Maghribi Arabic, Farsi (Persian), Urdu, Sindhi, +longdesc Kashmiri, Ottoman Turkish, Kurdish, Jawi (Malay) and Uighur. +longdesc The documentation covers topics such as typesetting the Holy +longdesc Quran and typesetting bidirectional critical editions with the +longdesc package ednotes. +runfiles size=197 + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabicdigits.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabicdigits.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-farsi-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kashmiri-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kurdish.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-kurdish.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-maghribi-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-malay-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-pashto-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-sindhi-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans-dmg.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans-dmg.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-turk-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-uighur.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-uighur.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-fullvoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-fullvoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-novoc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-novoc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-trans-loc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-trans-loc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-urdu-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-voc.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/arabtex-voc.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/farsidigits.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/farsidigits.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/fixlamalif.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/fixlamalif.tec + RELOC/fonts/misc/xetex/fontmapping/arabxetex/mirrorpunct.map + RELOC/fonts/misc/xetex/fontmapping/arabxetex/mirrorpunct.tec + RELOC/tex/xelatex/arabxetex/arabxetex.sty +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-ctan /macros/xetex/latex/arabxetex +catalogue-date 2015-09-04 12:07:48 +0200 +catalogue-license lppl +catalogue-topics multilingual xetex +catalogue-version 1.2.1 + +name aramaic-serto +category Package +revision 30042 +shortdesc Fonts and LaTeX for Syriac written in Serto. +relocated 1 +longdesc This package enables (La)TeX users to typeset words or phrases +longdesc (e-TeX extensions are needed) in Syriac (Aramaic) using the +longdesc Serto-alphabet. The package includes a preprocessor written in +longdesc Python (>= 1.5.2) in order to deal with right-to-left +longdesc typesetting for those who do not want to use elatex and to +longdesc choose the correct letter depending on word context +longdesc (initial/medial/final form). Detailed documentation and +longdesc examples are included. +execute addMap syriac.map +runfiles size=78 + RELOC/fonts/afm/public/aramaic-serto/assy.afm + RELOC/fonts/afm/public/aramaic-serto/assyrb10.afm + RELOC/fonts/afm/public/aramaic-serto/serto10.afm + RELOC/fonts/afm/public/aramaic-serto/sertob10.afm + RELOC/fonts/map/dvips/aramaic-serto/syriac.map + RELOC/fonts/source/public/aramaic-serto/assy.mf + RELOC/fonts/source/public/aramaic-serto/assyrb10.mf + RELOC/fonts/source/public/aramaic-serto/assyrfont.mf + RELOC/fonts/source/public/aramaic-serto/serto.mf + RELOC/fonts/source/public/aramaic-serto/serto10.mf + RELOC/fonts/source/public/aramaic-serto/sertob10.mf + RELOC/fonts/source/public/aramaic-serto/sertobase.mf + RELOC/fonts/source/public/aramaic-serto/sertofont.mf + RELOC/fonts/source/public/aramaic-serto/sertomacros.mf + RELOC/fonts/source/public/aramaic-serto/syriacvowels.mf + RELOC/fonts/source/public/aramaic-serto/test.mf + RELOC/fonts/tfm/public/aramaic-serto/assy.tfm + RELOC/fonts/tfm/public/aramaic-serto/assyrb10.tfm + RELOC/fonts/tfm/public/aramaic-serto/serto10.tfm + RELOC/fonts/tfm/public/aramaic-serto/sertob10.tfm + RELOC/fonts/type1/public/aramaic-serto/assy.pfb + RELOC/fonts/type1/public/aramaic-serto/assyrb10.pfb + RELOC/fonts/type1/public/aramaic-serto/serto10.pfb + RELOC/fonts/type1/public/aramaic-serto/sertob10.pfb + RELOC/tex/latex/aramaic-serto/assyr.sty + RELOC/tex/latex/aramaic-serto/serto.sty + RELOC/tex/latex/aramaic-serto/syriac.sty + RELOC/tex/latex/aramaic-serto/uassyr.fd + RELOC/tex/latex/aramaic-serto/userto.fd +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-ctan /language/aramaic/serto +catalogue-date 2014-04-05 19:55:22 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name arara +category Package +revision 29762 +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 determines its actions from metadata in the source code, rather +longdesc than relying on indirect resources, such as log file analysis. +depend arara.ARCH +runfiles size=663 + texmf-dist/scripts/arara/arara.jar + texmf-dist/scripts/arara/arara.sh + texmf-dist/scripts/arara/rules/biber.yaml + texmf-dist/scripts/arara/rules/bibtex.yaml + texmf-dist/scripts/arara/rules/clean.yaml + texmf-dist/scripts/arara/rules/dvips.yaml + texmf-dist/scripts/arara/rules/frontespizio.yaml + texmf-dist/scripts/arara/rules/latex.yaml + texmf-dist/scripts/arara/rules/lmkclean.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/makeindex.yaml + texmf-dist/scripts/arara/rules/nomencl.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/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/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 +catalogue-ctan /support/arara +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license bsd +catalogue-version 3.0 + +name arara.i386-linux +category Package +revision 29036 +shortdesc i386-linux files of arara +binfiles arch=i386-linux size=1 + bin/i386-linux/arara + +name archaic +category Package +revision 38005 +shortdesc A collection of archaic fonts. +relocated 1 +longdesc The collection contains fonts to represent Aramaic, Cypriot, +longdesc Etruscan, Greek of the 6th and 4th centuries BCE, Egyptian +longdesc hieroglyphics, Linear A, Linear B, Nabatean old Persian, the +longdesc Phaistos disc, Phoenician, proto-Semitic, runic, South Arabian +longdesc Ugaritic and Viking scripts. The bundle also includes a small +longdesc font for use in phonetic transcription of the archaic writings. +longdesc The bundle's own directory includes a font installation map +longdesc file for the whole collection. +execute addMap archaicprw.map +runfiles size=271 + RELOC/fonts/afm/public/archaic/aram10.afm + RELOC/fonts/afm/public/archaic/copsn10.afm + RELOC/fonts/afm/public/archaic/cugar10.afm + RELOC/fonts/afm/public/archaic/cypr10.afm + RELOC/fonts/afm/public/archaic/etr10.afm + RELOC/fonts/afm/public/archaic/fut10.afm + RELOC/fonts/afm/public/archaic/givbc10.afm + RELOC/fonts/afm/public/archaic/gvibc10.afm + RELOC/fonts/afm/public/archaic/linb10.afm + RELOC/fonts/afm/public/archaic/nab10.afm + RELOC/fonts/afm/public/archaic/oandsi10.afm + RELOC/fonts/afm/public/archaic/oandsu10.afm + RELOC/fonts/afm/public/archaic/phnc10.afm + RELOC/fonts/afm/public/archaic/pmhg.afm + RELOC/fonts/afm/public/archaic/proto10.afm + RELOC/fonts/afm/public/archaic/sarab10.afm + RELOC/fonts/map/dvips/archaic/aramaic.map + RELOC/fonts/map/dvips/archaic/archaicprw.map + RELOC/fonts/map/dvips/archaic/cypriot.map + RELOC/fonts/map/dvips/archaic/etruscan.map + RELOC/fonts/map/dvips/archaic/fut10.map + RELOC/fonts/map/dvips/archaic/greek4cbc.map + RELOC/fonts/map/dvips/archaic/greek6cbc.map + RELOC/fonts/map/dvips/archaic/hieroglf.map + RELOC/fonts/map/dvips/archaic/linearb.map + RELOC/fonts/map/dvips/archaic/nabatean.map + RELOC/fonts/map/dvips/archaic/oands.map + RELOC/fonts/map/dvips/archaic/oldprsn.map + RELOC/fonts/map/dvips/archaic/phoenician.map + RELOC/fonts/map/dvips/archaic/protosem.map + RELOC/fonts/map/dvips/archaic/sarabian.map + RELOC/fonts/map/dvips/archaic/ugarite.map + RELOC/fonts/source/public/archaic/copsn10.mf + RELOC/fonts/source/public/archaic/givbc10.mf + RELOC/fonts/source/public/archaic/gvibc10.mf + RELOC/fonts/source/public/archaic/sarab10.mf + RELOC/fonts/source/public/archaic/vik10.mf + RELOC/fonts/source/public/archaic/vikglyph.mf + RELOC/fonts/source/public/archaic/viktitle.mf + RELOC/fonts/tfm/public/archaic/aram10.tfm + RELOC/fonts/tfm/public/archaic/copsn10.tfm + RELOC/fonts/tfm/public/archaic/cugar10.tfm + RELOC/fonts/tfm/public/archaic/cypr10.tfm + RELOC/fonts/tfm/public/archaic/etr10.tfm + RELOC/fonts/tfm/public/archaic/fut10.tfm + RELOC/fonts/tfm/public/archaic/givbc10.tfm + RELOC/fonts/tfm/public/archaic/gvibc10.tfm + RELOC/fonts/tfm/public/archaic/linb10.tfm + RELOC/fonts/tfm/public/archaic/nab10.tfm + RELOC/fonts/tfm/public/archaic/oandsi10.tfm + RELOC/fonts/tfm/public/archaic/oandsu10.tfm + RELOC/fonts/tfm/public/archaic/phnc10.tfm + RELOC/fonts/tfm/public/archaic/pmhg.tfm + RELOC/fonts/tfm/public/archaic/proto10.tfm + RELOC/fonts/tfm/public/archaic/sarab10.tfm + RELOC/fonts/tfm/public/archaic/vik10.tfm + RELOC/fonts/type1/public/archaic/aram10.pfb + RELOC/fonts/type1/public/archaic/copsn10.pfb + RELOC/fonts/type1/public/archaic/cugar10.pfb + RELOC/fonts/type1/public/archaic/cypr10.pfb + RELOC/fonts/type1/public/archaic/etr10.pfb + RELOC/fonts/type1/public/archaic/fut10.pfb + RELOC/fonts/type1/public/archaic/givbc10.pfb + RELOC/fonts/type1/public/archaic/gvibc10.pfb + RELOC/fonts/type1/public/archaic/linb10.pfb + RELOC/fonts/type1/public/archaic/nab10.pfb + RELOC/fonts/type1/public/archaic/oandsi10.pfb + RELOC/fonts/type1/public/archaic/oandsu10.pfb + RELOC/fonts/type1/public/archaic/phnc10.pfb + RELOC/fonts/type1/public/archaic/pmhg.pfb + RELOC/fonts/type1/public/archaic/proto10.pfb + RELOC/fonts/type1/public/archaic/sarab10.pfb + RELOC/tex/latex/archaic/aramaic.sty + RELOC/tex/latex/archaic/cypriot.sty + RELOC/tex/latex/archaic/etruscan.sty + RELOC/tex/latex/archaic/greek4cbc.sty + RELOC/tex/latex/archaic/greek6cbc.sty + RELOC/tex/latex/archaic/hieroglf.sty + RELOC/tex/latex/archaic/linearb.sty + RELOC/tex/latex/archaic/nabatean.sty + RELOC/tex/latex/archaic/oands.sty + RELOC/tex/latex/archaic/oldprsn.sty + RELOC/tex/latex/archaic/ot1aram.fd + RELOC/tex/latex/archaic/ot1copsn.fd + RELOC/tex/latex/archaic/ot1cugar.fd + RELOC/tex/latex/archaic/ot1cypr.fd + RELOC/tex/latex/archaic/ot1etr.fd + RELOC/tex/latex/archaic/ot1fut.fd + RELOC/tex/latex/archaic/ot1givbc.fd + RELOC/tex/latex/archaic/ot1gvibc.fd + RELOC/tex/latex/archaic/ot1nab.fd + RELOC/tex/latex/archaic/ot1oands.fd + RELOC/tex/latex/archaic/ot1phnc.fd + RELOC/tex/latex/archaic/ot1pmhg.fd + RELOC/tex/latex/archaic/ot1proto.fd + RELOC/tex/latex/archaic/ot1sarab.fd + RELOC/tex/latex/archaic/ot1vik.fd + RELOC/tex/latex/archaic/phoenician.sty + RELOC/tex/latex/archaic/protosem.sty + RELOC/tex/latex/archaic/runic.sty + RELOC/tex/latex/archaic/sarabian.sty + RELOC/tex/latex/archaic/t1aram.fd + RELOC/tex/latex/archaic/t1copsn.fd + RELOC/tex/latex/archaic/t1cugar.fd + RELOC/tex/latex/archaic/t1cypr.fd + RELOC/tex/latex/archaic/t1etr.fd + RELOC/tex/latex/archaic/t1fut.fd + RELOC/tex/latex/archaic/t1givbc.fd + RELOC/tex/latex/archaic/t1gvibc.fd + RELOC/tex/latex/archaic/t1linb.fd + RELOC/tex/latex/archaic/t1nab.fd + RELOC/tex/latex/archaic/t1oands.fd + RELOC/tex/latex/archaic/t1phnc.fd + RELOC/tex/latex/archaic/t1pmhg.fd + RELOC/tex/latex/archaic/t1proto.fd + RELOC/tex/latex/archaic/t1sarab.fd + RELOC/tex/latex/archaic/t1vik.fd + RELOC/tex/latex/archaic/ugarite.sty + RELOC/tex/latex/archaic/viking.sty +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-license lppl +catalogue-topics font-archaic + +name arcs +category Package +revision 15878 +shortdesc Draw arcs over and under text +relocated 1 +longdesc The package provides two commands for placing an arc over +longdesc (\overarc) or under (\underarc) a piece of text. (The text may +longdesc be up to three letters long.) The commands generate an \hbox, +longdesc and may be used both in text and in maths formulae. +runfiles size=1 + RELOC/tex/latex/arcs/arcs.sty +docfiles size=22 + RELOC/doc/latex/arcs/README + RELOC/doc/latex/arcs/arcs.pdf + RELOC/doc/latex/arcs/arcstest.tex +srcfiles size=3 + RELOC/source/latex/arcs/arcs.dtx + RELOC/source/latex/arcs/arcs.ins +catalogue-ctan /macros/latex/contrib/arcs +catalogue-date 2012-02-10 18:22:03 +0100 +catalogue-license lppl +catalogue-version 1 + +name arev +category Package +revision 15878 +shortdesc Fonts and LaTeX support files for Arev Sans. +relocated 1 +longdesc The package arev provides type 1 and virtual fonts, together +longdesc with LaTeX packages for using Arev Sans in both text and +longdesc mathematics. Arev Sans is a derivative of Bitstream Vera Sans +longdesc created by Tavmjong Bah, adding support for Greek and Cyrillic +longdesc characters. Bah also added a few variant letters that are more +longdesc appropriate for mathematics. The primary purpose for using Arev +longdesc Sans in LaTeX is presentations, particularly when using a +longdesc computer projector. In such a context, Arev Sans is quite +longdesc readable, with large x-height, "open letters", wide spacing, +longdesc and thick stems. The style is very similar to the SliTeX font +longdesc lcmss, but heavier. Arev is one of a very small number of sans- +longdesc font mathematics support packages. Others are cmbright, hvmath +longdesc and kerkis. +execute addMap arev.map +runfiles size=392 + RELOC/fonts/afm/public/arev/ArevSans-Bold.afm + RELOC/fonts/afm/public/arev/ArevSans-BoldOblique.afm + RELOC/fonts/afm/public/arev/ArevSans-Oblique.afm + RELOC/fonts/afm/public/arev/ArevSans-Roman.afm + RELOC/fonts/enc/dvips/arev/arevoml.enc + RELOC/fonts/enc/dvips/arev/arevoms.enc + RELOC/fonts/enc/dvips/arev/arevot1.enc + RELOC/fonts/map/dvips/arev/arev.map + RELOC/fonts/tfm/public/arev/ArevSans-Bold.tfm + RELOC/fonts/tfm/public/arev/ArevSans-BoldOblique.tfm + RELOC/fonts/tfm/public/arev/ArevSans-Oblique.tfm + RELOC/fonts/tfm/public/arev/ArevSans-Roman.tfm + RELOC/fonts/tfm/public/arev/favb8r.tfm + RELOC/fonts/tfm/public/arev/favb8t.tfm + RELOC/fonts/tfm/public/arev/favbi8r.tfm + RELOC/fonts/tfm/public/arev/favbi8t.tfm + RELOC/fonts/tfm/public/arev/favmb7t.tfm + RELOC/fonts/tfm/public/arev/favmbi7m.tfm + RELOC/fonts/tfm/public/arev/favmr7t.tfm + RELOC/fonts/tfm/public/arev/favmr7y.tfm + RELOC/fonts/tfm/public/arev/favmri7m.tfm + RELOC/fonts/tfm/public/arev/favr8r.tfm + RELOC/fonts/tfm/public/arev/favr8t.tfm + RELOC/fonts/tfm/public/arev/favri8r.tfm + RELOC/fonts/tfm/public/arev/favri8t.tfm + RELOC/fonts/tfm/public/arev/zavmb7t.tfm + RELOC/fonts/tfm/public/arev/zavmbi7m.tfm + RELOC/fonts/tfm/public/arev/zavmr7t.tfm + RELOC/fonts/tfm/public/arev/zavmr7y.tfm + RELOC/fonts/tfm/public/arev/zavmri7m.tfm + RELOC/fonts/type1/public/arev/ArevSans-Bold.pfb + RELOC/fonts/type1/public/arev/ArevSans-BoldOblique.pfb + RELOC/fonts/type1/public/arev/ArevSans-Oblique.pfb + RELOC/fonts/type1/public/arev/ArevSans-Roman.pfb + RELOC/fonts/vf/public/arev/favb8t.vf + RELOC/fonts/vf/public/arev/favbi8t.vf + RELOC/fonts/vf/public/arev/favr8t.vf + RELOC/fonts/vf/public/arev/favri8t.vf + RELOC/fonts/vf/public/arev/zavmb7t.vf + RELOC/fonts/vf/public/arev/zavmbi7m.vf + RELOC/fonts/vf/public/arev/zavmr7t.vf + RELOC/fonts/vf/public/arev/zavmr7y.vf + RELOC/fonts/vf/public/arev/zavmri7m.vf + RELOC/tex/latex/arev/ams-mdbch.sty + RELOC/tex/latex/arev/arev.sty + RELOC/tex/latex/arev/arevmath.sty + RELOC/tex/latex/arev/arevsymbols.tex + RELOC/tex/latex/arev/arevtext.sty + RELOC/tex/latex/arev/omlzavm.fd + RELOC/tex/latex/arev/omszavm.fd + RELOC/tex/latex/arev/ot1zavm.fd + RELOC/tex/latex/arev/t1fav.fd + RELOC/tex/latex/arev/uzavm.fd +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-license lppl + +name armtex +category Package +revision 33894 +shortdesc A sytem for writing Armenian with TeX and LaTeX. +relocated 1 +longdesc ArmTeX is a system for typesetting Armenian text with Plain TeX +longdesc or LaTeX(2e). It may be used with input: from a standard Latin +longdesc keyboard without any special encoding and/or support for +longdesc Armenian letters, any keyboard which uses an encoding that has +longdesc Armenian letters in the second half (characters 128-255) of the +longdesc extended ASCII table (for example ArmSCII8 Armenian standard), +longdesc or encoded in UTF-8. Users should note that the manuals (below) +longdesc mostly describe the previous (version 2.0) of the package. +longdesc Updating work is still under way. +execute addMixedMap arss.map +execute addMixedMap artm.map +runfiles size=525 + RELOC/fonts/afm/public/armenian/arssb10.afm + RELOC/fonts/afm/public/armenian/arssbs10.afm + RELOC/fonts/afm/public/armenian/arssr10.afm + RELOC/fonts/afm/public/armenian/arsssl10.afm + RELOC/fonts/afm/public/armenian/artmb10.afm + RELOC/fonts/afm/public/armenian/artmbi10.afm + RELOC/fonts/afm/public/armenian/artmbs10.afm + RELOC/fonts/afm/public/armenian/artmi10.afm + RELOC/fonts/afm/public/armenian/artmr10.afm + RELOC/fonts/afm/public/armenian/artmsl10.afm + RELOC/fonts/map/dvips/armenian/arss.map + RELOC/fonts/map/dvips/armenian/artm.map + RELOC/fonts/source/public/armenian/arssb10.mf + RELOC/fonts/source/public/armenian/arssbs10.mf + RELOC/fonts/source/public/armenian/arssr10.mf + RELOC/fonts/source/public/armenian/arsssl10.mf + RELOC/fonts/source/public/armenian/artmb10.mf + RELOC/fonts/source/public/armenian/artmbi10.mf + RELOC/fonts/source/public/armenian/artmbs10.mf + RELOC/fonts/source/public/armenian/artmi10.mf + RELOC/fonts/source/public/armenian/artmr10.mf + RELOC/fonts/source/public/armenian/artmsl10.mf + RELOC/fonts/source/public/armenian/ps2mfbas.mf + RELOC/fonts/tfm/public/armenian/arssb10.tfm + RELOC/fonts/tfm/public/armenian/arssbs10.tfm + RELOC/fonts/tfm/public/armenian/arssr10.tfm + RELOC/fonts/tfm/public/armenian/arsssl10.tfm + RELOC/fonts/tfm/public/armenian/artmb10.tfm + RELOC/fonts/tfm/public/armenian/artmbi10.tfm + RELOC/fonts/tfm/public/armenian/artmbs10.tfm + RELOC/fonts/tfm/public/armenian/artmi10.tfm + RELOC/fonts/tfm/public/armenian/artmr10.tfm + RELOC/fonts/tfm/public/armenian/artmsl10.tfm + RELOC/fonts/type1/public/armenian/arssb10.pfb + RELOC/fonts/type1/public/armenian/arssb10.pfm + RELOC/fonts/type1/public/armenian/arssbs10.pfb + RELOC/fonts/type1/public/armenian/arssbs10.pfm + RELOC/fonts/type1/public/armenian/arssr10.pfb + RELOC/fonts/type1/public/armenian/arssr10.pfm + RELOC/fonts/type1/public/armenian/arsssl10.pfb + RELOC/fonts/type1/public/armenian/arsssl10.pfm + RELOC/fonts/type1/public/armenian/artmb10.pfb + RELOC/fonts/type1/public/armenian/artmb10.pfm + RELOC/fonts/type1/public/armenian/artmbi10.pfb + RELOC/fonts/type1/public/armenian/artmbi10.pfm + RELOC/fonts/type1/public/armenian/artmbs10.pfb + RELOC/fonts/type1/public/armenian/artmbs10.pfm + RELOC/fonts/type1/public/armenian/artmi10.pfb + RELOC/fonts/type1/public/armenian/artmi10.pfm + RELOC/fonts/type1/public/armenian/artmr10.pfb + RELOC/fonts/type1/public/armenian/artmr10.pfm + RELOC/fonts/type1/public/armenian/artmsl10.pfb + RELOC/fonts/type1/public/armenian/artmsl10.pfm + RELOC/tex/latex/armenian/armscii8.def + RELOC/tex/latex/armenian/armtex.sty + RELOC/tex/latex/armenian/ot6cmr.fd + RELOC/tex/latex/armenian/ot6cmss.fd + RELOC/tex/latex/armenian/ot6enc.def + RELOC/tex/latex/armenian/ot6enc.dfu + RELOC/tex/plain/armenian/arm.tex + RELOC/tex/plain/armenian/armkb-a8.tex + RELOC/tex/plain/armenian/armkb-u8.tex +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-license lppl +catalogue-version 3.0-beta3 + +name around-the-bend +category Package +revision 15878 +shortdesc Typeset exercises in TeX, with answers. +relocated 1 +longdesc This is a typeset version of the files of the aro-bend, plus +longdesc three extra questions (with their answers) that Michael Downes +longdesc didn't manage to get onto CTAN. +docfiles size=210 + RELOC/doc/generic/around-the-bend/AroundTheBend.pdf + RELOC/doc/generic/around-the-bend/AroundTheBend.tex + RELOC/doc/generic/around-the-bend/README +catalogue-ctan /info/challenges/AroBend +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name arphic +category Package +revision 15878 +shortdesc Arphic (Chinese) font packages. +relocated 1 +longdesc These are font bundles for the Chinese Arphic fonts which work +longdesc with the CJK package. Arphic is actually the name of the +longdesc company that which created the fonts (and put them under a GPL- +longdesc like licence). +execute addMap bkaiu.map +execute addMap bsmiu.map +execute addMap gbsnu.map +execute addMap gkaiu.map +runfiles size=8706 + RELOC/dvips/arphic/config.bkaiu + RELOC/dvips/arphic/config.bsmiu + RELOC/dvips/arphic/config.gbsnu + RELOC/dvips/arphic/config.gkaiu + RELOC/fonts/afm/arphic/bkaiu/bkaiu00.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu02.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu03.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu20.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu21.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu22.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu25.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu26.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu30.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu31.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu32.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu33.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu4e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu4f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu50.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu51.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu52.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu53.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu54.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu55.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu56.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu57.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu58.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu59.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu5f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu60.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu61.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu62.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu63.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu64.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu65.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu66.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu67.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu68.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu69.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu6f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu70.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu71.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu72.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu73.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu74.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu75.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu76.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu77.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu78.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu79.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu7f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu80.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu81.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu82.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu83.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu84.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu85.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu86.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu87.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu88.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu89.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu8f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu90.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu91.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu92.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu93.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu94.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu95.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu96.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu97.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu98.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu99.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9a.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9b.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9c.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9d.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9e.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiu9f.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuee.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuf6.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuf7.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuf8.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiufa.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiufe.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuff.afm + RELOC/fonts/afm/arphic/bkaiu/bkaiuv.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu00.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu02.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu03.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu20.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu21.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu22.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu25.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu26.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu30.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu31.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu32.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu33.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu4e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu4f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu50.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu51.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu52.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu53.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu54.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu55.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu56.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu57.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu58.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu59.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu5f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu60.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu61.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu62.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu63.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu64.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu65.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu66.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu67.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu68.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu69.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu6f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu70.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu71.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu72.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu73.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu74.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu75.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu76.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu77.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu78.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu79.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu7f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu80.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu81.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu82.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu83.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu84.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu85.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu86.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu87.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu88.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu89.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu8f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu90.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu91.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu92.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu93.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu94.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu95.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu96.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu97.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu98.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu99.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9a.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9b.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9c.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9d.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9e.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiu9f.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuee.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuf6.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuf7.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuf8.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiufa.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiufe.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuff.afm + RELOC/fonts/afm/arphic/bsmiu/bsmiuv.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu00.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu01.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu02.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu03.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu04.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu20.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu21.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu22.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu23.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu24.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu25.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu26.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu30.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu31.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu32.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu4e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu4f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu50.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu51.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu52.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu53.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu54.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu55.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu56.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu57.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu58.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu59.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5d.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu5f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu60.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu61.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu62.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu63.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu64.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu65.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu66.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu67.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu68.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu69.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6d.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu6f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu70.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu71.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu72.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu73.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu74.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu75.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu76.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu77.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu78.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu79.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7d.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu7f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu80.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu81.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu82.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu83.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu84.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu85.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu86.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu87.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu88.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu89.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8d.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu8f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu90.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu91.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu92.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu93.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu94.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu95.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu96.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu97.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu98.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu99.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9a.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9b.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9c.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9e.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnu9f.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnufe.afm + RELOC/fonts/afm/arphic/gbsnu/gbsnuff.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu00.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu01.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu02.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu03.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu04.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu20.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu21.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu22.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu23.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu24.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu25.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu26.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu30.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu31.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu32.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu4e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu4f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu50.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu51.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu52.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu53.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu54.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu55.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu56.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu57.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu58.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu59.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5d.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu5f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu60.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu61.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu62.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu63.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu64.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu65.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu66.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu67.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu68.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu69.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6d.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu6f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu70.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu71.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu72.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu73.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu74.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu75.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu76.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu77.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu78.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu79.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7d.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu7f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu80.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu81.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu82.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu83.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu84.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu85.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu86.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu87.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu88.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu89.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8d.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu8f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu90.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu91.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu92.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu93.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu94.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu95.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu96.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu97.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu98.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu99.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9a.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9b.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9c.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9e.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiu9f.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiufe.afm + RELOC/fonts/afm/arphic/gkaiu/gkaiuff.afm + RELOC/fonts/map/dvips/arphic/bkaiu.map + RELOC/fonts/map/dvips/arphic/bsmiu.map + RELOC/fonts/map/dvips/arphic/gbsnu.map + RELOC/fonts/map/dvips/arphic/gkaiu.map + RELOC/fonts/tfm/arphic/bkaimp/bkaimp00.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp01.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp02.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp03.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp04.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp05.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp06.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp07.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp08.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp09.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp10.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp11.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp12.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp13.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp14.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp15.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp16.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp17.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp18.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp19.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp20.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp21.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp22.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp23.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp25.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp26.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp27.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp28.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp29.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp30.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp31.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp32.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp33.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp34.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp35.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp36.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp37.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp38.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp39.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp40.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp41.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp42.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp43.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp44.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp45.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp46.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp47.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp48.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp49.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp50.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp51.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp52.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp53.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp54.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimp55.tfm + RELOC/fonts/tfm/arphic/bkaimp/bkaimpv.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu00.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu02.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu03.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu20.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu21.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu22.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu25.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu26.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu30.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu31.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu32.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu33.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu4e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu4f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu50.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu51.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu52.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu53.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu54.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu55.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu56.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu57.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu58.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu59.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu5f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu60.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu61.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu62.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu63.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu64.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu65.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu66.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu67.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu68.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu69.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu6f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu70.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu71.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu72.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu73.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu74.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu75.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu76.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu77.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu78.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu79.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu7f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu80.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu81.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu82.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu83.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu84.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu85.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu86.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu87.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu88.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu89.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu8f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu90.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu91.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu92.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu93.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu94.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu95.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu96.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu97.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu98.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu99.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9a.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9b.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9c.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9d.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9e.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiu9f.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuee.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuf6.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuf7.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuf8.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiufa.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiufe.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuff.tfm + RELOC/fonts/tfm/arphic/bkaiu/bkaiuv.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp00.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp01.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp02.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp03.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp04.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp05.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp06.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp07.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp08.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp09.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp10.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp11.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp12.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp13.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp14.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp15.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp16.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp17.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp18.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp19.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp20.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp21.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp22.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp23.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp25.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp26.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp27.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp28.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp29.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp30.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp31.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp32.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp33.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp34.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp35.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp36.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp37.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp38.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp39.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp40.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp41.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp42.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp43.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp44.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp45.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp46.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp47.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp48.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp49.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp50.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp51.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp52.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp53.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp54.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilp55.tfm + RELOC/fonts/tfm/arphic/bsmilp/bsmilpv.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu00.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu02.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu03.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu20.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu21.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu22.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu25.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu26.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu30.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu31.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu32.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu33.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu4e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu4f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu50.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu51.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu52.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu53.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu54.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu55.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu56.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu57.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu58.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu59.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu5f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu60.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu61.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu62.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu63.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu64.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu65.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu66.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu67.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu68.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu69.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu6f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu70.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu71.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu72.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu73.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu74.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu75.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu76.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu77.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu78.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu79.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu7f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu80.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu81.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu82.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu83.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu84.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu85.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu86.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu87.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu88.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu89.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu8f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu90.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu91.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu92.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu93.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu94.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu95.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu96.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu97.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu98.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu99.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9a.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9b.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9c.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9d.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9e.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiu9f.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuee.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuf6.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuf7.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuf8.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiufa.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiufe.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuff.tfm + RELOC/fonts/tfm/arphic/bsmiu/bsmiuv.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp00.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp01.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp02.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp03.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp04.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp06.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp07.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp08.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp09.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp10.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp11.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp12.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp13.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp14.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp15.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp16.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp17.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp18.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp19.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp20.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp21.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp22.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp23.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp24.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp25.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp26.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp27.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp28.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp29.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp30.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp31.tfm + RELOC/fonts/tfm/arphic/gbsnlp/gbsnlp32.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu00.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu01.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu02.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu03.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu04.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu20.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu21.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu22.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu23.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu24.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu25.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu26.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu30.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu31.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu32.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu4e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu4f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu50.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu51.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu52.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu53.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu54.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu55.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu56.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu57.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu58.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu59.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5d.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu5f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu60.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu61.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu62.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu63.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu64.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu65.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu66.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu67.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu68.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu69.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6d.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu6f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu70.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu71.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu72.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu73.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu74.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu75.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu76.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu77.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu78.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu79.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7d.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu7f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu80.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu81.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu82.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu83.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu84.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu85.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu86.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu87.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu88.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu89.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8d.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu8f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu90.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu91.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu92.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu93.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu94.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu95.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu96.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu97.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu98.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu99.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9a.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9b.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9c.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9e.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnu9f.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnufe.tfm + RELOC/fonts/tfm/arphic/gbsnu/gbsnuff.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp00.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp01.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp02.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp03.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp04.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp06.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp07.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp08.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp09.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp10.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp11.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp12.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp13.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp14.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp15.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp16.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp17.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp18.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp19.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp20.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp21.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp22.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp23.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp24.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp25.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp26.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp27.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp28.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp29.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp30.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp31.tfm + RELOC/fonts/tfm/arphic/gkaimp/gkaimp32.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu00.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu01.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu02.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu03.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu04.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu20.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu21.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu22.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu23.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu24.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu25.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu26.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu30.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu31.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu32.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu4e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu4f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu50.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu51.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu52.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu53.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu54.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu55.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu56.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu57.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu58.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu59.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5d.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu5f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu60.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu61.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu62.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu63.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu64.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu65.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu66.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu67.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu68.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu69.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6d.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu6f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu70.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu71.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu72.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu73.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu74.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu75.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu76.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu77.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu78.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu79.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7d.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu7f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu80.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu81.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu82.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu83.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu84.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu85.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu86.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu87.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu88.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu89.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8d.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu8f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu90.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu91.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu92.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu93.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu94.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu95.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu96.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu97.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu98.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu99.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9a.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9b.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9c.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9e.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiu9f.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiufe.tfm + RELOC/fonts/tfm/arphic/gkaiu/gkaiuff.tfm + RELOC/fonts/type1/arphic/bkaiu/bkaiu00.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu02.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu03.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu20.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu21.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu22.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu25.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu26.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu30.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu31.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu32.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu33.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu4e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu4f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu50.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu51.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu52.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu53.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu54.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu55.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu56.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu57.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu58.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu59.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu5f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu60.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu61.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu62.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu63.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu64.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu65.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu66.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu67.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu68.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu69.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu6f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu70.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu71.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu72.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu73.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu74.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu75.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu76.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu77.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu78.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu79.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu7f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu80.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu81.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu82.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu83.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu84.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu85.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu86.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu87.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu88.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu89.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu8f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu90.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu91.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu92.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu93.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu94.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu95.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu96.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu97.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu98.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu99.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9a.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9b.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9c.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9d.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9e.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiu9f.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuee.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuf6.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuf7.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuf8.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiufa.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiufe.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuff.pfb + RELOC/fonts/type1/arphic/bkaiu/bkaiuv.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu00.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu02.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu03.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu20.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu21.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu22.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu25.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu26.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu30.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu31.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu32.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu33.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu4e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu4f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu50.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu51.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu52.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu53.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu54.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu55.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu56.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu57.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu58.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu59.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu5f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu60.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu61.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu62.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu63.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu64.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu65.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu66.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu67.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu68.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu69.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu6f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu70.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu71.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu72.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu73.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu74.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu75.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu76.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu77.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu78.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu79.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu7f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu80.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu81.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu82.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu83.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu84.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu85.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu86.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu87.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu88.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu89.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu8f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu90.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu91.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu92.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu93.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu94.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu95.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu96.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu97.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu98.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu99.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9a.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9b.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9c.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9d.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9e.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiu9f.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuee.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuf6.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuf7.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuf8.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiufa.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiufe.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuff.pfb + RELOC/fonts/type1/arphic/bsmiu/bsmiuv.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu00.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu01.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu02.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu03.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu04.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu20.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu21.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu22.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu23.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu24.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu25.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu26.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu30.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu31.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu32.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu4e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu4f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu50.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu51.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu52.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu53.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu54.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu55.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu56.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu57.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu58.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu59.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5d.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu5f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu60.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu61.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu62.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu63.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu64.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu65.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu66.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu67.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu68.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu69.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6d.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu6f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu70.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu71.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu72.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu73.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu74.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu75.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu76.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu77.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu78.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu79.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7d.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu7f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu80.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu81.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu82.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu83.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu84.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu85.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu86.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu87.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu88.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu89.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8d.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu8f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu90.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu91.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu92.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu93.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu94.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu95.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu96.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu97.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu98.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu99.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9a.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9b.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9c.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9e.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnu9f.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnufe.pfb + RELOC/fonts/type1/arphic/gbsnu/gbsnuff.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu00.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu01.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu02.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu03.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu04.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu20.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu21.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu22.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu23.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu24.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu25.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu26.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu30.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu31.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu32.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu4e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu4f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu50.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu51.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu52.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu53.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu54.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu55.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu56.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu57.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu58.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu59.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5d.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu5f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu60.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu61.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu62.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu63.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu64.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu65.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu66.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu67.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu68.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu69.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6d.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu6f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu70.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu71.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu72.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu73.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu74.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu75.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu76.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu77.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu78.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu79.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7d.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu7f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu80.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu81.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu82.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu83.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu84.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu85.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu86.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu87.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu88.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu89.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8d.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu8f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu90.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu91.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu92.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu93.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu94.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu95.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu96.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu97.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu98.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu99.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9a.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9b.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9c.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9e.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiu9f.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiufe.pfb + RELOC/fonts/type1/arphic/gkaiu/gkaiuff.pfb + RELOC/fonts/vf/arphic/bkaimp/bkaimp00.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp01.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp02.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp03.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp04.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp05.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp06.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp07.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp08.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp09.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp10.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp11.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp12.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp13.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp14.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp15.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp16.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp17.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp18.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp19.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp20.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp21.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp22.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp23.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp25.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp26.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp27.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp28.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp29.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp30.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp31.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp32.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp33.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp34.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp35.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp36.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp37.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp38.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp39.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp40.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp41.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp42.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp43.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp44.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp45.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp46.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp47.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp48.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp49.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp50.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp51.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp52.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp53.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp54.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimp55.vf + RELOC/fonts/vf/arphic/bkaimp/bkaimpv.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp00.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp01.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp02.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp03.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp04.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp05.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp06.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp07.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp08.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp09.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp10.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp11.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp12.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp13.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp14.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp15.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp16.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp17.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp18.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp19.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp20.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp21.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp22.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp23.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp25.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp26.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp27.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp28.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp29.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp30.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp31.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp32.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp33.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp34.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp35.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp36.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp37.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp38.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp39.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp40.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp41.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp42.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp43.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp44.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp45.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp46.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp47.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp48.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp49.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp50.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp51.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp52.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp53.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp54.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilp55.vf + RELOC/fonts/vf/arphic/bsmilp/bsmilpv.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp00.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp01.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp02.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp03.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp04.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp06.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp07.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp08.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp09.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp10.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp11.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp12.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp13.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp14.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp15.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp16.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp17.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp18.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp19.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp20.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp21.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp22.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp23.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp24.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp25.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp26.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp27.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp28.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp29.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp30.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp31.vf + RELOC/fonts/vf/arphic/gbsnlp/gbsnlp32.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp00.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp01.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp02.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp03.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp04.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp06.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp07.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp08.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp09.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp10.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp11.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp12.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp13.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp14.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp15.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp16.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp17.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp18.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp19.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp20.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp21.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp22.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp23.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp24.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp25.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp26.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp27.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp28.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp29.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp30.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp31.vf + RELOC/fonts/vf/arphic/gkaimp/gkaimp32.vf +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-ctan /fonts/arphic +catalogue-date 2014-04-05 20:24:32 +0200 +catalogue-license other-free + +name arrayjobx +category Package +revision 18125 +shortdesc Array data structures for (La)TeX. +relocated 1 +longdesc This package provides array data structures in (La)TeX, in the +longdesc meaning of the classical procedural programming languages like +longdesc Fortran, Ada or C, and macros to manipulate them. Arrays can be +longdesc mono or bi-dimensional. This is useful for applications which +longdesc require high level programming techniques, like algorithmic +longdesc graphics programmed in the TeX language. The package supersedes +longdesc the arrayjob package. +runfiles size=4 + RELOC/tex/generic/arrayjobx/arrayjob.sty + RELOC/tex/generic/arrayjobx/arrayjobx.sty +docfiles size=265 + RELOC/doc/generic/arrayjobx/README + RELOC/doc/generic/arrayjobx/arrayjob.pdf + RELOC/doc/generic/arrayjobx/arrayjob.tex + RELOC/doc/generic/arrayjobx/arrayjobx.pdf + RELOC/doc/generic/arrayjobx/arrayjobx.tex +catalogue-ctan /macros/generic/arrayjobx +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.04 + +name arraysort +category Package +revision 31576 +shortdesc Sort arrays (or portions of them). +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 +docfiles size=76 + RELOC/doc/latex/arraysort/Makefile + RELOC/doc/latex/arraysort/README + RELOC/doc/latex/arraysort/arraysort.pdf +srcfiles size=10 + RELOC/source/latex/arraysort/arraysort.dtx + RELOC/source/latex/arraysort/arraysort.ins +catalogue-ctan /macros/latex/contrib/arraysort +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.0 + +name arsclassica +category Package +revision 25466 +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 +docfiles size=125 + RELOC/doc/latex/arsclassica/ArsClassica.pdf + RELOC/doc/latex/arsclassica/ArsClassica.tex + RELOC/doc/latex/arsclassica/Bibliography.bib + RELOC/doc/latex/arsclassica/CHANGES + RELOC/doc/latex/arsclassica/Chapters/Code.tex + RELOC/doc/latex/arsclassica/Chapters/Fundamentals.tex + RELOC/doc/latex/arsclassica/FrontBackMatter/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/arsclassica-settings.tex +catalogue-ctan /macros/latex/contrib/arsclassica +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 4.0.3 + +name articleingud +category Package +revision 29803 +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 + RELOC/doc/latex/articleingud/plantilla.tex + RELOC/doc/latex/articleingud/template.tex +srcfiles size=30 + RELOC/source/latex/articleingud/articleingud.dtx + RELOC/source/latex/articleingud/articleingud.ins +catalogue-ctan /macros/latex/contrib/articleingud +catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-license lppl1.2 +catalogue-version 0.2 + +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 + RELOC/doc/latex/arydshln/arydshln-man.tex + RELOC/doc/latex/arydshln/arydshln.pdf +srcfiles size=59 + RELOC/source/latex/arydshln/arydshln.dtx + RELOC/source/latex/arydshln/arydshln.ins +catalogue-ctan /macros/latex/contrib/arydshln +catalogue-date 2012-04-13 13:58:18 +0200 +catalogue-license lppl +catalogue-version 1.71 + +name asaetr +category Package +revision 15878 +shortdesc Transactions of the ASAE. +relocated 1 +longdesc A class and BibTeX style for submissions to the Transactions of +longdesc the American Society of Agricultural Engineers. Also included +longdesc is the Metafont source of a slanted Computer Modern Caps and +longdesc Small Caps font. +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 +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.tex + RELOC/doc/latex/asaetr/cmcscsl10.mf +catalogue-ctan /macros/latex/contrib/asaetr +catalogue-date 2014-09-16 18:22:54 +0200 +catalogue-license pd +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 ascelike +category Package +revision 29129 +shortdesc Bibliography style for the ASCE. +relocated 1 +longdesc A document class and bibliographic style that prepares +longdesc documents in the style required by the American Society of +longdesc Civil Engineers (ASCE). These are unofficial files, not +longdesc sanctioned by that organization, and the files specifically +longdesc give this caveat. Also included is a short +longdesc documentation/example of how to use the class. +runfiles size=16 + RELOC/bibtex/bst/ascelike/ascelike.bst + RELOC/tex/latex/ascelike/ascelike.cls +docfiles size=40 + RELOC/doc/latex/ascelike/README + RELOC/doc/latex/ascelike/ascexmpl.bib + RELOC/doc/latex/ascelike/ascexmpl.pdf + RELOC/doc/latex/ascelike/ascexmpl.tex +catalogue-ctan /macros/latex/contrib/ascelike +catalogue-date 2014-09-21 12:30:29 +0200 +catalogue-license lppl +catalogue-version 2.3 + +name ascii-chart +category Package +revision 20536 +shortdesc An ASCII wall chart. +relocated 1 +longdesc The document may be converted between Plain TeX and LaTeX +longdesc (2.09) by a simple editing action. +docfiles size=10 + RELOC/doc/support/ascii-chart/ascii.pdf + RELOC/doc/support/ascii-chart/ascii.tex +catalogue-ctan /info/ascii-chart +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 + +name ascii-font +category Package +revision 29989 +shortdesc Use the ASCII "font" in LaTeX. +relocated 1 +longdesc The package provides glyph and font access commands so that +longdesc LaTeX users can use the ASCII glyphs in their documents. The +longdesc ASCII font is encoded according to the IBM PC Code Page 437 C0 +longdesc Graphics. This package replaces any early LaTeX 2.09 package +longdesc and "font" by R. Ramasubramanian and R.W.D. Nickalls. +execute addMap ascii.map +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 +docfiles size=1 + RELOC/doc/fonts/ascii-font/README.TEXLIVE +srcfiles size=5 + RELOC/source/fonts/ascii-font/ascii.dtx + RELOC/source/fonts/ascii-font/ascii.ins +catalogue-ctan /fonts/ascii +catalogue-date 2014-04-05 20:24:32 +0200 +catalogue-license lppl +catalogue-version 2.0 + +name askmaps +category Package +revision 32320 +shortdesc Typeset American style Karnaugh maps. +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 +docfiles size=82 + RELOC/doc/latex/askmaps/README + RELOC/doc/latex/askmaps/askmaps.pdf + RELOC/doc/latex/askmaps/askmaps.tex +catalogue-ctan /macros/latex/contrib/askmaps +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name aspectratio +category Package +revision 25243 +shortdesc Capital A and capital R ligature for Aspect Ratio. +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 +runfiles size=82 + RELOC/fonts/map/dvips/aspectratio/aspectratio.map + RELOC/fonts/source/public/aspectratio/ar10.mf + RELOC/fonts/source/public/aspectratio/ar12.mf + RELOC/fonts/source/public/aspectratio/ar6.mf + RELOC/fonts/source/public/aspectratio/ar7.mf + RELOC/fonts/source/public/aspectratio/ar8.mf + RELOC/fonts/source/public/aspectratio/ar9.mf + RELOC/fonts/source/public/aspectratio/arb10.mf + RELOC/fonts/source/public/aspectratio/arb12.mf + RELOC/fonts/source/public/aspectratio/arb5.mf + RELOC/fonts/source/public/aspectratio/arb6.mf + RELOC/fonts/source/public/aspectratio/arb7.mf + RELOC/fonts/source/public/aspectratio/arb8.mf + RELOC/fonts/source/public/aspectratio/arb9.mf + RELOC/fonts/source/public/aspectratio/arssbi10.mf + RELOC/fonts/source/public/aspectratio/arssi10.mf + RELOC/fonts/source/public/aspectratio/artti10.mf + RELOC/fonts/tfm/public/aspectratio/amarbi.tfm + RELOC/fonts/tfm/public/aspectratio/amarri.tfm + RELOC/fonts/tfm/public/aspectratio/aparbi.tfm + RELOC/fonts/tfm/public/aspectratio/aparri.tfm + RELOC/fonts/tfm/public/aspectratio/ar10.tfm + RELOC/fonts/tfm/public/aspectratio/ar12.tfm + RELOC/fonts/tfm/public/aspectratio/ar5.tfm + RELOC/fonts/tfm/public/aspectratio/ar6.tfm + RELOC/fonts/tfm/public/aspectratio/ar7.tfm + RELOC/fonts/tfm/public/aspectratio/ar8.tfm + RELOC/fonts/tfm/public/aspectratio/ar9.tfm + RELOC/fonts/tfm/public/aspectratio/arb10.tfm + RELOC/fonts/tfm/public/aspectratio/arb12.tfm + RELOC/fonts/tfm/public/aspectratio/arb5.tfm + RELOC/fonts/tfm/public/aspectratio/arb6.tfm + RELOC/fonts/tfm/public/aspectratio/arb7.tfm + RELOC/fonts/tfm/public/aspectratio/arb8.tfm + RELOC/fonts/tfm/public/aspectratio/arb9.tfm + RELOC/fonts/tfm/public/aspectratio/arssbi10.tfm + RELOC/fonts/tfm/public/aspectratio/arssi10.tfm + RELOC/fonts/tfm/public/aspectratio/artti10.tfm + RELOC/fonts/type1/public/aspectratio/amarbi.pfb + RELOC/fonts/type1/public/aspectratio/amarri.pfb + RELOC/fonts/type1/public/aspectratio/ar10.pfb + RELOC/fonts/type1/public/aspectratio/ar12.pfb + RELOC/fonts/type1/public/aspectratio/ar5.pfb + RELOC/fonts/type1/public/aspectratio/ar6.pfb + RELOC/fonts/type1/public/aspectratio/ar7.pfb + RELOC/fonts/type1/public/aspectratio/ar8.pfb + RELOC/fonts/type1/public/aspectratio/ar9.pfb + RELOC/fonts/type1/public/aspectratio/arb10.pfb + RELOC/fonts/type1/public/aspectratio/arb12.pfb + RELOC/fonts/type1/public/aspectratio/arb5.pfb + RELOC/fonts/type1/public/aspectratio/arb6.pfb + RELOC/fonts/type1/public/aspectratio/arb7.pfb + RELOC/fonts/type1/public/aspectratio/arb8.pfb + RELOC/fonts/type1/public/aspectratio/arb9.pfb + RELOC/fonts/type1/public/aspectratio/arssbi10.pfb + RELOC/fonts/type1/public/aspectratio/arssi10.pfb + RELOC/fonts/type1/public/aspectratio/artti10.pfb + RELOC/tex/latex/aspectratio/ar.sty +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-license lppl +catalogue-version 2.0 + +name assignment +category Package +revision 20431 +shortdesc A class file for typesetting homework and lab assignments +relocated 1 +longdesc A class file for typesetting homework and lab assignments. +runfiles size=2 + RELOC/tex/latex/assignment/assignment.cls +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/assignment.tex +catalogue-ctan /macros/latex/contrib/assignment +catalogue-date 2014-09-21 12:32:17 +0200 +catalogue-license lppl + +name assoccnt +category Package +revision 35231 +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 + RELOC/doc/latex/assoccnt/assoccnt_example.tex + RELOC/doc/latex/assoccnt/assoccntdoc.pdf + RELOC/doc/latex/assoccnt/assoccntdoc.tex +catalogue-ctan /macros/latex/contrib/assoccnt +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.3 +catalogue-version 0.5a + +name astro +category Package +revision 15878 +shortdesc Astronomical (planetary) symbols. +relocated 1 +longdesc Astrosym is a font containing astronomical symbols, including +longdesc those used for the planets, four planetoids, the phases of the +longdesc moon, the signs of the zodiac, and some additional symbols. The +longdesc font is distributed as Metafont source. +runfiles size=21 + RELOC/fonts/source/public/astro/astrosym.cal + RELOC/fonts/source/public/astro/astrosym.cmn + RELOC/fonts/source/public/astro/astrosym.mac + RELOC/fonts/source/public/astro/astrosym.mf + RELOC/fonts/source/public/astro/astrosym.uni + RELOC/fonts/source/public/astro/astrosym.xtr + RELOC/fonts/tfm/public/astro/astrosym.tfm +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-license lppl +catalogue-version 2.20 + +name asyfig +category Package +revision 17512 +shortdesc Commands for using Asymptote figures. +relocated 1 +longdesc The package provides a means of reading Asymptote figures from +longdesc separate files, rather than within the document, as is standard +longdesc in the asymptote package, which is provided as part of the +longdesc Asymptote bundle. The asymptote way can prove cumbersome in a +longdesc large document; the present package allows the user to process +longdesc one picture at a time, in simple test documents, and then to +longdesc migrate (with no fuss) to their use in the target document. +runfiles size=3 + RELOC/tex/latex/asyfig/asyalign.sty + RELOC/tex/latex/asyfig/asyfig.sty + RELOC/tex/latex/asyfig/asyprocess.sty +docfiles size=76 + RELOC/doc/latex/asyfig/README + RELOC/doc/latex/asyfig/asyfig.pdf + RELOC/doc/latex/asyfig/example/frf.asy + RELOC/doc/latex/asyfig/example/test-asyfig.tex +srcfiles size=6 + RELOC/source/latex/asyfig/asyfig.ins + RELOC/source/latex/asyfig/asyfig.tex +catalogue-ctan /macros/latex/contrib/asyfig +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1c + +name asypictureb +category Package +revision 33490 +shortdesc User-friendly integration of Asymptote into LaTeX +relocated 1 +longdesc The package is an unofficial alternative to the package +longdesc provided with the Asymptote distribution, for including +longdesc pictures within a LaTeX source file. While it does not +longdesc duplicate all the features of the official package, this +longdesc package is more user-friendly in several ways. Most notably, +longdesc Asymptote errors are repackaged as LaTeX errors, making +longdesc debugging less of a pain. It also has a more robust mechanism +longdesc for identifying unchanged pictures that need not be recompiled. +runfiles size=3 + RELOC/tex/latex/asypictureb/asypictureB.sty +docfiles size=157 + RELOC/doc/latex/asypictureb/README + RELOC/doc/latex/asypictureb/asypictureB.pdf +srcfiles size=15 + RELOC/source/latex/asypictureb/asypictureB.dtx + RELOC/source/latex/asypictureb/asypictureB.ins +catalogue-ctan /graphics/asypictureb +catalogue-date 2014-04-25 11:20:11 +0200 +catalogue-license lppl1.3 +catalogue-version 0.3 + +name attachfile +category Package +revision 36721 +shortdesc Attach arbitrary files to a PDF document +relocated 1 +longdesc Starting with PDF 1.3 (Adobe Acrobat 4.0), PDF files can +longdesc contain file attachments -- arbitrary files that a reader can +longdesc extract, just like attachments to an e-mail message. The +longdesc attachfile package brings this functionality to pdfLaTeX and +longdesc provides some additional features not available in Acrobat, +longdesc such as the ability to use arbitrary LaTeX code for the file +longdesc icon -- including things like \includegraphics, tabular, and +longdesc mathematics. Settings can be made either globally or on a per- +longdesc attachment basis. Attachfile makes it easy to attach files and +longdesc 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 +srcfiles size=19 + RELOC/source/latex/attachfile/attachfile.dtx + RELOC/source/latex/attachfile/attachfile.ins +catalogue-ctan /macros/latex/contrib/attachfile +catalogue-date 2015-04-05 08:11:10 +0200 +catalogue-license lppl1.3 +catalogue-version 1.6 + +name augie +category Package +revision 18948 +shortdesc Calligraphic font for typesetting handwriting. +relocated 1 +longdesc A calligraphic font for simulating American-style informal +longdesc handwriting. The font is distributed in Adobe Type 1 format. +execute addMap augie.map +runfiles size=30 + RELOC/fonts/afm/public/augie/augie___.afm + RELOC/fonts/map/dvips/augie/augie.map + RELOC/fonts/tfm/public/augie/augie7t.tfm + RELOC/fonts/tfm/public/augie/augie8c.tfm + RELOC/fonts/tfm/public/augie/augie8r.tfm + RELOC/fonts/tfm/public/augie/augie8t.tfm + RELOC/fonts/tfm/public/augie/augie___.tfm + RELOC/fonts/type1/public/augie/augie___.pfb + RELOC/fonts/vf/public/augie/augie7t.vf + RELOC/fonts/vf/public/augie/augie8c.vf + RELOC/fonts/vf/public/augie/augie8t.vf + RELOC/tex/latex/augie/ot1augie.fd + RELOC/tex/latex/augie/t1augie.fd + RELOC/tex/latex/augie/ts1augie.fd +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-ctan /fonts/augie +catalogue-date 2014-04-05 20:24:32 +0200 +catalogue-license lppl + +name auncial-new +category Package +revision 15878 +shortdesc Artificial Uncial font and LaTeX support macros. +relocated 1 +longdesc The auncial-new bundle provides packages and fonts for a script +longdesc based on the Artificial Uncial manuscript book-hand used +longdesc between the 6th & 10th century AD. The script consists of +longdesc minuscules and digits, with some appropriate period punctuation +longdesc marks. Both normal and bold versions are provided, and the font +longdesc is distributed in Adobe Type 1 format. This is an experimental +longdesc new version of the auncial bundle, which is one of a series of +longdesc bookhand fonts. The font follows the B1 encoding developed for +longdesc bookhands. Access to the encoding is essential. The encoding +longdesc mainly follows the standard T1 encoding. +execute addMap auncial.map +runfiles size=65 + RELOC/fonts/afm/public/auncial-new/auncl10.afm + RELOC/fonts/afm/public/auncial-new/aunclb10.afm + RELOC/fonts/map/dvips/auncial-new/auncial.map + RELOC/fonts/tfm/public/auncial-new/auncl10.tfm + RELOC/fonts/tfm/public/auncial-new/aunclb10.tfm + RELOC/fonts/type1/public/auncial-new/auncl10.pfb + RELOC/fonts/type1/public/auncial-new/aunclb10.pfb + RELOC/tex/latex/auncial-new/allauncl.sty + RELOC/tex/latex/auncial-new/auncial.sty + RELOC/tex/latex/auncial-new/b1auncl.fd +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-license lppl +catalogue-version 2.0 + +name aurical +category Package +revision 15878 +shortdesc Calligraphic fonts for use with LaTeX in T1 encoding. +relocated 1 +longdesc The package that implements a set (AuriocusKalligraphicus) of +longdesc three calligraphic fonts derived from the author's handwriting +longdesc in Adobe Type 1 Format, T1 encoding for use with LaTeX: +longdesc Auriocus Kalligraphicus; Lukas Svatba; and Jana Skrivana. Each +longdesc font features oldstyle digits and (machine-generated) boldface +longdesc and slanted versions. A variant of Lukas Svatba offers a 'long +longdesc s'. +execute addMap aurical.map +runfiles size=779 + RELOC/fonts/afm/public/aurical/AmiciLogo.afm + RELOC/fonts/afm/public/aurical/AmiciLogoBold.afm + RELOC/fonts/afm/public/aurical/AmiciLogoBoldRslant.afm + RELOC/fonts/afm/public/aurical/AmiciLogoBoldSlant.afm + RELOC/fonts/afm/public/aurical/AmiciLogoRslant.afm + RELOC/fonts/afm/public/aurical/AmiciLogoSlant.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicus.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusBold.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusBoldRslant.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusBoldSlant.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusRslant.afm + RELOC/fonts/afm/public/aurical/AuriocusKalligraphicusSlant.afm + RELOC/fonts/afm/public/aurical/JanaSkrivana.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaBold.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaBoldRslant.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaBoldSlant.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaRslant.afm + RELOC/fonts/afm/public/aurical/JanaSkrivanaSlant.afm + RELOC/fonts/afm/public/aurical/LukasSvatba.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaBold.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaBoldRslant.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaBoldSlant.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaRslant.afm + RELOC/fonts/afm/public/aurical/LukasSvatbaSlant.afm + RELOC/fonts/map/dvips/aurical/aurical.map + RELOC/fonts/source/public/aurical/aurical_source.zip + RELOC/fonts/tfm/public/aurical/AmiciLogo.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoBold.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoBoldRslant.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoBoldSlant.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoRslant.tfm + RELOC/fonts/tfm/public/aurical/AmiciLogoSlant.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicus.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusBold.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusBoldRslant.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusBoldSlant.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusRslant.tfm + RELOC/fonts/tfm/public/aurical/AuriocusKalligraphicusSlant.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivana.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaBold.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaBoldRslant.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaBoldSlant.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaRslant.tfm + RELOC/fonts/tfm/public/aurical/JanaSkrivanaSlant.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatba.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaBold.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaBoldRslant.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaBoldSlant.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaRslant.tfm + RELOC/fonts/tfm/public/aurical/LukasSvatbaSlant.tfm + RELOC/fonts/type1/public/aurical/AmiciLogo.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoBold.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoBoldRslant.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoBoldSlant.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoRslant.pfb + RELOC/fonts/type1/public/aurical/AmiciLogoSlant.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicus.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusBold.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusBoldRslant.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusBoldSlant.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusRslant.pfb + RELOC/fonts/type1/public/aurical/AuriocusKalligraphicusSlant.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivana.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaBold.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaBoldRslant.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaBoldSlant.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaRslant.pfb + RELOC/fonts/type1/public/aurical/JanaSkrivanaSlant.pfb + RELOC/fonts/type1/public/aurical/LukasSvatba.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaBold.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaBoldRslant.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaBoldSlant.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaRslant.pfb + RELOC/fonts/type1/public/aurical/LukasSvatbaSlant.pfb + RELOC/tex/latex/aurical/T1AmiciLogo.fd + RELOC/tex/latex/aurical/T1AuriocusKalligraphicus.fd + RELOC/tex/latex/aurical/T1JanaSkrivana.fd + RELOC/tex/latex/aurical/T1LukasSvatba.fd + RELOC/tex/latex/aurical/aurical.sty +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-license lppl +catalogue-version 1.5 + +name authoraftertitle +category Package +revision 24863 +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 +docfiles size=31 + RELOC/doc/latex/authoraftertitle/authoraftertitle.pdf + RELOC/doc/latex/authoraftertitle/authoraftertitle.tex +catalogue-ctan /macros/latex/contrib/authoraftertitle +catalogue-date 2012-05-01 17:17:50 +0200 +catalogue-license pd +catalogue-version 0.9 + +name authorindex +category Package +revision 26313 +shortdesc Index citations by author names. +longdesc This package allows the user to create an index of all authors +longdesc cited in a LaTeX document. Each author entry in the index +longdesc contains the pages where these citations occur. Alternatively, +longdesc the package can list the labels of the citations that appear in +longdesc the references rather than the text pages. The package relies +longdesc on BibTeX being used to handle citations. Additionally, it +longdesc requires Perl (version 5 or higher). +depend authorindex.ARCH +runfiles size=7 + texmf-dist/scripts/authorindex/authorindex + texmf-dist/tex/latex/authorindex/authorindex.sty +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.tex +catalogue-ctan /indexing/authorindex +catalogue-date 2012-05-24 17:00:23 +0200 +catalogue-license lppl + +name authorindex.i386-linux +category Package +revision 18790 +shortdesc i386-linux files of authorindex +binfiles arch=i386-linux size=1 + bin/i386-linux/authorindex + +name autoarea +category Package +revision 15878 +catalogue pictex-autoarea +shortdesc Automatic computation of bounding boxes with PiCTeX. +relocated 1 +longdesc This package makes PiCTeX recognize lines and arcs in +longdesc determining the "bounding box" of a picture. (PiCTeX so far +longdesc accounted for put commands only). The "bounding box" is +longdesc essential for proper placement of a picture between running +longdesc text and margins and for keeping the running text away. +runfiles size=3 + RELOC/tex/latex/autoarea/autoarea.sty +docfiles size=22 + RELOC/doc/latex/autoarea/ANNOUNCE.txt + RELOC/doc/latex/autoarea/README.aa + RELOC/doc/latex/autoarea/autodemo/README.autodemo + RELOC/doc/latex/autoarea/autodemo/autodemo+.log + RELOC/doc/latex/autoarea/autodemo/autodemo+.pdf + RELOC/doc/latex/autoarea/autodemo/autodemo+.tex + RELOC/doc/latex/autoarea/autodemo/autodemo-.log + RELOC/doc/latex/autoarea/autodemo/autodemo-.pdf + RELOC/doc/latex/autoarea/autodemo/autodemo-.tex + RELOC/doc/latex/autoarea/autodemo/autodemo.tex +catalogue-ctan /graphics/pictex/addon/autoarea +catalogue-date 2012-07-19 14:34:01 +0200 +catalogue-license lppl +catalogue-version 0.3a + +name automata +category Package +revision 19717 +shortdesc Finite state machines, graphs and trees in MetaPost. +relocated 1 +longdesc The package offers a collection of macros for MetaPost to make +longdesc easier to draw finite-state machines, automata, labelled +longdesc graphs, etc. The user defines nodes, which may be isolated or +longdesc arranged into matrices or trees; edges connect pairs of nodes +longdesc through arbitrary paths. Parameters, that specify the shapes of +longdesc nodes and the styles of edges, may be adjusted. +runfiles size=7 + RELOC/metapost/automata/automata.mp +docfiles size=26 + RELOC/doc/metapost/automata/README + RELOC/doc/metapost/automata/example.mp + RELOC/doc/metapost/automata/example.pdf + RELOC/doc/metapost/automata/example.tex +catalogue-ctan /graphics/metapost/contrib/macros/automata +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.3 + +name autonum +category Package +revision 36084 +shortdesc Automatic equation references. +relocated 1 +longdesc The package arranges that equation numbers are applied only to +longdesc those equations that are referenced. This operation is similar +longdesc to the showonlyrefs option of the package mathtools. +runfiles size=3 + RELOC/tex/latex/autonum/autonum.sty +docfiles size=104 + RELOC/doc/latex/autonum/README + RELOC/doc/latex/autonum/autonum.pdf + RELOC/doc/latex/autonum/test-autonum.pdf + RELOC/doc/latex/autonum/test-autonum.tex + RELOC/doc/latex/autonum/test-freeze.tex +srcfiles size=18 + RELOC/source/latex/autonum/autonum.dtx + RELOC/source/latex/autonum/autonum.ins +catalogue-ctan /macros/latex/contrib/autonum +catalogue-date 2015-01-18 10:26:22 +0100 +catalogue-license lppl1.3 +catalogue-version 0.3.11 + +name autopdf +category Package +revision 32377 +shortdesc Conversion of graphics to pdfLaTeX-compatible formats. +relocated 1 +longdesc The package facilitates the on-the-fly conversion of various +longdesc graphics formats to formats supported by pdfLaTeX (e.g. PDF). +longdesc It uses a range of external programs, and therefore requires +longdesc that the LaTeX run starts with write18 enabled. +runfiles size=5 + RELOC/tex/latex/autopdf/autopdf.sty +docfiles size=57 + RELOC/doc/latex/autopdf/README.txt + RELOC/doc/latex/autopdf/autopdf.pdf +srcfiles size=8 + RELOC/source/latex/autopdf/autopdf.dtx +catalogue-ctan /macros/latex/contrib/autopdf +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +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 avantgar +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX. +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap uag.map +runfiles size=392 + RELOC/dvips/avantgar/config.uag + RELOC/fonts/afm/adobe/avantgar/pagd8a.afm + RELOC/fonts/afm/adobe/avantgar/pagdo8a.afm + RELOC/fonts/afm/adobe/avantgar/pagk8a.afm + RELOC/fonts/afm/adobe/avantgar/pagko8a.afm + RELOC/fonts/afm/urw/avantgar/uagb8a.afm + RELOC/fonts/afm/urw/avantgar/uagbi8a.afm + RELOC/fonts/afm/urw/avantgar/uagd8a.afm + RELOC/fonts/afm/urw/avantgar/uagdo8a.afm + RELOC/fonts/afm/urw/avantgar/uagk8a.afm + RELOC/fonts/afm/urw/avantgar/uagko8a.afm + RELOC/fonts/afm/urw/avantgar/uagr8a.afm + RELOC/fonts/afm/urw/avantgar/uagri8a.afm + RELOC/fonts/map/dvips/avantgar/uag.map + RELOC/fonts/tfm/adobe/avantgar/pagd.tfm + RELOC/fonts/tfm/adobe/avantgar/pagd7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagd8c.tfm + RELOC/fonts/tfm/adobe/avantgar/pagd8r.tfm + RELOC/fonts/tfm/adobe/avantgar/pagd8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdc.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdc7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdc8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo8c.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo8r.tfm + RELOC/fonts/tfm/adobe/avantgar/pagdo8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk8c.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk8r.tfm + RELOC/fonts/tfm/adobe/avantgar/pagk8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagkc.tfm + RELOC/fonts/tfm/adobe/avantgar/pagkc7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagkc8t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko7t.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko8c.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko8r.tfm + RELOC/fonts/tfm/adobe/avantgar/pagko8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagb7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagb8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagb8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagb8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbc7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbc8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbi7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbi8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbi8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbi8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbo7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbo8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbo8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagbo8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagd7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagd8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagd8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagd8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdc7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdc8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdo7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdo8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdo8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagdo8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagk7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagk8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagk8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagk8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagkc7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagkc8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagko7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagko8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagko8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagko8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagr7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagr8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagr8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagr8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagrc7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagrc8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagri7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagri8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagri8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagri8t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagro7t.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagro8c.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagro8r.tfm + RELOC/fonts/tfm/urw35vf/avantgar/uagro8t.tfm + RELOC/fonts/type1/urw/avantgar/uagd8a.pfb + RELOC/fonts/type1/urw/avantgar/uagd8a.pfm + RELOC/fonts/type1/urw/avantgar/uagdo8a.pfb + RELOC/fonts/type1/urw/avantgar/uagdo8a.pfm + RELOC/fonts/type1/urw/avantgar/uagk8a.pfb + RELOC/fonts/type1/urw/avantgar/uagk8a.pfm + RELOC/fonts/type1/urw/avantgar/uagko8a.pfb + RELOC/fonts/type1/urw/avantgar/uagko8a.pfm + RELOC/fonts/vf/adobe/avantgar/pagd.vf + RELOC/fonts/vf/adobe/avantgar/pagd7t.vf + RELOC/fonts/vf/adobe/avantgar/pagd8c.vf + RELOC/fonts/vf/adobe/avantgar/pagd8t.vf + RELOC/fonts/vf/adobe/avantgar/pagdc.vf + RELOC/fonts/vf/adobe/avantgar/pagdc7t.vf + RELOC/fonts/vf/adobe/avantgar/pagdc8t.vf + RELOC/fonts/vf/adobe/avantgar/pagdo.vf + RELOC/fonts/vf/adobe/avantgar/pagdo7t.vf + RELOC/fonts/vf/adobe/avantgar/pagdo8c.vf + RELOC/fonts/vf/adobe/avantgar/pagdo8t.vf + RELOC/fonts/vf/adobe/avantgar/pagk.vf + RELOC/fonts/vf/adobe/avantgar/pagk7t.vf + RELOC/fonts/vf/adobe/avantgar/pagk8c.vf + RELOC/fonts/vf/adobe/avantgar/pagk8t.vf + RELOC/fonts/vf/adobe/avantgar/pagkc.vf + RELOC/fonts/vf/adobe/avantgar/pagkc7t.vf + RELOC/fonts/vf/adobe/avantgar/pagkc8t.vf + RELOC/fonts/vf/adobe/avantgar/pagko.vf + RELOC/fonts/vf/adobe/avantgar/pagko7t.vf + RELOC/fonts/vf/adobe/avantgar/pagko8c.vf + RELOC/fonts/vf/adobe/avantgar/pagko8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagb7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagb8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagb8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbc7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbc8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbi7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbi8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbi8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbo7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbo8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagbo8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagd7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagd8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagd8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdc7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdc8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdo7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdo8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagdo8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagk7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagk8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagk8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagkc7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagkc8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagko7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagko8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagko8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagr7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagr8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagr8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagrc7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagrc8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagri7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagri8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagri8t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagro7t.vf + RELOC/fonts/vf/urw35vf/avantgar/uagro8c.vf + RELOC/fonts/vf/urw35vf/avantgar/uagro8t.vf + RELOC/tex/latex/avantgar/8ruag.fd + RELOC/tex/latex/avantgar/omluag.fd + RELOC/tex/latex/avantgar/omsuag.fd + RELOC/tex/latex/avantgar/ot1uag.fd + RELOC/tex/latex/avantgar/t1uag.fd + RELOC/tex/latex/avantgar/ts1uag.fd +catalogue-ctan /fonts/urw/base35 +catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-license gpl + +name avremu +category Package +revision 35373 +shortdesc An 8-Bit Microcontroller Simulator written in LaTeX. +relocated 1 +longdesc A fully working package to simulate a Microprocessor in pure +longdesc LaTeX. The simulator is able to calculate complex pictures, +longdesc like Mandelbrot sets. +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 +docfiles size=37 + RELOC/doc/latex/avremu/README + RELOC/doc/latex/avremu/avremu.pdf +srcfiles size=25 + RELOC/source/latex/avremu/avremu.tex + RELOC/source/latex/avremu/imgs/mandelbrot-128x128.png + RELOC/source/latex/avremu/imgs/mandelbrot-20x20.png + RELOC/source/latex/avremu/imgs/mandelbrot-250x250.png + RELOC/source/latex/avremu/simple-testsuite.tex + RELOC/source/latex/avremu/test-suite/FOOTER + RELOC/source/latex/avremu/test-suite/HEADER + RELOC/source/latex/avremu/test-suite/complex-memory.c + RELOC/source/latex/avremu/test-suite/empty-main.c + RELOC/source/latex/avremu/test-suite/fibonacci-rec.c + RELOC/source/latex/avremu/test-suite/float.c + RELOC/source/latex/avremu/test-suite/func-ptr.c + RELOC/source/latex/avremu/test-suite/mandelbrot.c + RELOC/source/latex/avremu/test-suite/mul.c + RELOC/source/latex/avremu/test-suite/printf.c + RELOC/source/latex/avremu/test-suite/shift.c + RELOC/source/latex/avremu/test-suite/string.c + RELOC/source/latex/avremu/test-suite/sum-rec.c + RELOC/source/latex/avremu/test-suite/test-suite +catalogue-ctan /macros/latex/contrib/avremu +catalogue-date 2014-10-26 09:12:08 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name b1encoding +category Package +revision 21271 +shortdesc LaTeX encoding tools for Bookhands fonts. +relocated 1 +longdesc The package characterises and defines the author's B1 encoding +longdesc for use with LaTeX when typesetting things using his Bookhands +longdesc fonts. +runfiles size=7 + RELOC/fonts/enc/dvips/b1encoding/TeXB1.enc + RELOC/tex/latex/b1encoding/b1cmr.fd + RELOC/tex/latex/b1encoding/b1enc.def +docfiles size=45 + RELOC/doc/latex/b1encoding/README + RELOC/doc/latex/b1encoding/b1encoding.pdf +srcfiles size=8 + RELOC/source/latex/b1encoding/b1encoding.dtx + RELOC/source/latex/b1encoding/b1encoding.ins +catalogue-ctan /macros/latex/contrib/b1encoding +catalogue-date 2012-05-17 15:24:13 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name babel-albanian +category Package +revision 30254 +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 +docfiles size=31 + RELOC/doc/generic/babel-albanian/albanian.pdf +srcfiles size=5 + RELOC/source/generic/babel-albanian/albanian.dtx + RELOC/source/generic/babel-albanian/albanian.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/albanian +catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-license lppl +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 +catalogue-license lppl1.3 +catalogue-version 1.0l + +name babel-basque +category Package +revision 30256 +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 +docfiles size=38 + RELOC/doc/generic/babel-basque/basque.pdf +srcfiles size=6 + RELOC/source/generic/babel-basque/basque.dtx + RELOC/source/generic/babel-basque/basque.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/basque +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0f + +name babelbib +category Package +revision 25245 +shortdesc Multilingual bibliographies. +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 + +name babel-bosnian +category Package +revision 38174 +shortdesc Babel contrib support for Bosnian +relocated 1 +longdesc The package provides a language definition file that enables +longdesc support of Bosnian with babel. +runfiles size=1 + RELOC/tex/generic/babel-bosnian/bosnian.ldf +docfiles size=27 + RELOC/doc/generic/babel-bosnian/README + RELOC/doc/generic/babel-bosnian/bosnian.pdf +srcfiles size=4 + RELOC/source/generic/babel-bosnian/bosnian.dtx + RELOC/source/generic/babel-bosnian/bosnian.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/bosnian +catalogue-date 2015-08-21 00:26:56 +0200 +catalogue-license lppl1.3 +catalogue-topics bosnian multilingual-addon +catalogue-version 1.1 + +name babel-breton +category Package +revision 30257 +shortdesc Babel contributed support for Breton. +relocated 1 +longdesc Breton (being, principally, a spoken language) does not have +longdesc typographic rules of its own; this package provides an +longdesc "appropriate" selection of French and British typographic +longdesc rules. +runfiles size=2 + RELOC/tex/generic/babel-breton/breton.ldf +docfiles size=29 + RELOC/doc/generic/babel-breton/breton.pdf +srcfiles size=5 + RELOC/source/generic/babel-breton/breton.dtx + RELOC/source/generic/babel-breton/breton.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/breton +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0h + +name babel-bulgarian +category Package +revision 31902 +shortdesc Babel contributed support for Bulgarian. +relocated 1 +longdesc The package provides support for documents in Bulgarian (or +longdesc simply containing some Bulgarian text). +runfiles size=6 + RELOC/tex/generic/babel-bulgarian/bulgarian.ldf +docfiles size=48 + RELOC/doc/generic/babel-bulgarian/README + RELOC/doc/generic/babel-bulgarian/bulgarian.pdf +srcfiles size=20 + RELOC/source/generic/babel-bulgarian/bulgarian.dtx + RELOC/source/generic/babel-bulgarian/bulgarian.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/bulgarian +catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-license lppl1.3 +catalogue-version 1.2g + +name babel-catalan +category Package +revision 30259 +shortdesc Babel contributed support for Catalan. +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 +docfiles size=52 + RELOC/doc/generic/babel-catalan/catalan.pdf +srcfiles size=10 + RELOC/source/generic/babel-catalan/catalan.dtx + RELOC/source/generic/babel-catalan/catalan.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/catalan +catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-license lppl1.3 +catalogue-version 2.2p + +name babel-croatian +category Package +revision 35198 +shortdesc Babel contributed support for Croatian. +relocated 1 +longdesc The package establishes Croatian conventions in a document (or +longdesc a subset of the conventions, if Croatian is not the main +longdesc language of the document). +runfiles size=1 + RELOC/tex/generic/babel-croatian/croatian.ldf +docfiles size=30 + RELOC/doc/generic/babel-croatian/croatian.pdf +srcfiles size=5 + RELOC/source/generic/babel-croatian/croatian.dtx + RELOC/source/generic/babel-croatian/croatian.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/croatian +catalogue-date 2014-09-18 10:38:54 +0200 +catalogue-license lppl1.3 +catalogue-version 1.3l + +name babel-czech +category Package +revision 30261 +shortdesc Babel support for Czech. +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Czech in babel. Some shortcuts are defined, as well as +longdesc translations to Czech of standard "LaTeX names". +runfiles size=4 + RELOC/tex/generic/babel-czech/czech.ldf +docfiles size=47 + RELOC/doc/generic/babel-czech/czech.pdf +srcfiles size=12 + RELOC/source/generic/babel-czech/czech.dtx + RELOC/source/generic/babel-czech/czech.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/czech +catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-license lppl1.3 +catalogue-version 3.1a + +name babel-danish +category Package +revision 30262 +shortdesc Babel contributed support for Danish. +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 +docfiles size=32 + RELOC/doc/generic/babel-danish/danish.pdf +srcfiles size=6 + RELOC/source/generic/babel-danish/danish.dtx + RELOC/source/generic/babel-danish/danish.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/danish +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.3r + +name babel-dutch +category Package +revision 30263 +shortdesc Babel contributed support for Dutch. +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 +docfiles size=38 + RELOC/doc/generic/babel-dutch/dutch.pdf +srcfiles size=8 + RELOC/source/generic/babel-dutch/dutch.dtx + RELOC/source/generic/babel-dutch/dutch.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/dutch +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 3.8i + +name babel-english +category Package +revision 30264 +shortdesc Babel support for English. +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 +srcfiles size=7 + RELOC/source/generic/babel-english/english.dtx + RELOC/source/generic/babel-english/english.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/english +catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-license lppl1.3 +catalogue-version 3.3p + +name babel-esperanto +category Package +revision 30265 +shortdesc Babel support for Esperanto. +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 +docfiles size=31 + RELOC/doc/generic/babel-esperanto/esperanto.pdf +srcfiles size=6 + RELOC/source/generic/babel-esperanto/esperanto.dtx + RELOC/source/generic/babel-esperanto/esperanto.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/esperanto +catalogue-date 2014-05-22 11:58:32 +0200 +catalogue-license lppl1.3 +catalogue-version 1.4t + +name babel-estonian +category Package +revision 38064 +shortdesc Babel support for Estonian +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Estonian in babel. Some shortcuts are defined, as well as +longdesc translations to Estonian of standard "LaTeX names". +runfiles size=2 + RELOC/tex/generic/babel-estonian/estonian.ldf +docfiles size=28 + RELOC/doc/generic/babel-estonian/README.txt + RELOC/doc/generic/babel-estonian/estonian.pdf +srcfiles size=8 + RELOC/source/generic/babel-estonian/estonian.dtx + RELOC/source/generic/babel-estonian/estonian.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/estonian +catalogue-date 2015-08-05 10:58:42 +0200 +catalogue-license lppl1.3 +catalogue-topics estonian +catalogue-version 1.1a + +name babel-finnish +category Package +revision 30267 +relocated 1 +runfiles size=2 + RELOC/tex/generic/babel-finnish/finnish.ldf +docfiles size=35 + RELOC/doc/generic/babel-finnish/finnish.pdf +srcfiles size=6 + RELOC/source/generic/babel-finnish/finnish.dtx + RELOC/source/generic/babel-finnish/finnish.ins + +name babel-french +category Package +revision 38160 +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 + RELOC/source/generic/babel-french/frenchb.dtx + RELOC/source/generic/babel-french/frenchb.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/french +catalogue-date 2015-08-19 19:30:43 +0200 +catalogue-license lppl1.3 +catalogue-topics french multilingual-addon +catalogue-version 3.1h + +name babel-friulan +category Package +revision 30361 +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 +srcfiles size=3 + RELOC/source/generic/babel-friulan/friulan.dtx +catalogue-ctan /macros/latex/contrib/babel-contrib/friulan +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 + +name babel-galician +category Package +revision 30270 +relocated 1 +runfiles size=7 + RELOC/tex/generic/babel-galician/galician.ldf +docfiles size=112 + RELOC/doc/generic/babel-galician/galician.pdf + RELOC/doc/generic/babel-galician/glbst.tex + RELOC/doc/generic/babel-galician/glromidx.tex +srcfiles size=22 + RELOC/source/generic/babel-galician/galician.dtx + RELOC/source/generic/babel-galician/galician.ins + +name babel-georgian +category Package +revision 33527 +shortdesc Babel +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. +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-ctan /macros/latex/contrib/babel-contrib/georgian +catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-license lppl1.3 +catalogue-version 2.1 + +name babel-german +category Package +revision 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 + RELOC/tex/generic/babel-german/austrian.ldf + RELOC/tex/generic/babel-german/german.ldf + RELOC/tex/generic/babel-german/germanb.ldf + RELOC/tex/generic/babel-german/naustrian.ldf + RELOC/tex/generic/babel-german/ngerman.ldf + RELOC/tex/generic/babel-german/ngermanb.ldf + RELOC/tex/generic/babel-german/nswissgerman.ldf + RELOC/tex/generic/babel-german/swissgerman.ldf +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-ctan /macros/latex/contrib/babel-contrib/german +catalogue-date 2014-10-10 15:41:35 +0200 +catalogue-license lppl1.3 +catalogue-version 2.7b + +name babel-greek +category Package +revision 38296 +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 +docfiles size=282 + RELOC/doc/generic/babel-greek/README + RELOC/doc/generic/babel-greek/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/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.tex +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 +catalogue-ctan /macros/latex/contrib/babel-contrib/greek +catalogue-date 2015-09-04 16:00:57 +0200 +catalogue-license lppl1.3 +catalogue-topics greek multilingual-addon +catalogue-version 1.9d + +name babel-hebrew +category Package +revision 30273 +shortdesc Babel support for Hebrew. +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Hebrew in babel. Macros to control the use of text direction +longdesc control of TeX--XeT and e-TeX are provided (and may be used +longdesc elsewhere). Some shortcuts are defined, as well as translations +longdesc to Hebrew of standard "LaTeX names". +runfiles size=53 + RELOC/tex/generic/babel-hebrew/8859-8.def + RELOC/tex/generic/babel-hebrew/cp1255.def + RELOC/tex/generic/babel-hebrew/cp862.def + RELOC/tex/generic/babel-hebrew/he8OmegaHebrew.fd + RELOC/tex/generic/babel-hebrew/he8aharoni.fd + RELOC/tex/generic/babel-hebrew/he8cmr.fd + RELOC/tex/generic/babel-hebrew/he8cmss.fd + RELOC/tex/generic/babel-hebrew/he8cmtt.fd + RELOC/tex/generic/babel-hebrew/he8david.fd + RELOC/tex/generic/babel-hebrew/he8drugulin.fd + RELOC/tex/generic/babel-hebrew/he8enc.def + RELOC/tex/generic/babel-hebrew/he8frankruehl.fd + RELOC/tex/generic/babel-hebrew/he8miriam.fd + RELOC/tex/generic/babel-hebrew/he8nachlieli.fd + RELOC/tex/generic/babel-hebrew/he8yad.fd + RELOC/tex/generic/babel-hebrew/hebcal.sty + RELOC/tex/generic/babel-hebrew/hebfont.sty + RELOC/tex/generic/babel-hebrew/hebrew.ldf + RELOC/tex/generic/babel-hebrew/hebrew_newcode.sty + RELOC/tex/generic/babel-hebrew/hebrew_oldcode.sty + RELOC/tex/generic/babel-hebrew/hebrew_p.sty + RELOC/tex/generic/babel-hebrew/lheclas.fd + RELOC/tex/generic/babel-hebrew/lhecmr.fd + RELOC/tex/generic/babel-hebrew/lhecmss.fd + RELOC/tex/generic/babel-hebrew/lhecmtt.fd + RELOC/tex/generic/babel-hebrew/lhecrml.fd + RELOC/tex/generic/babel-hebrew/lheenc.def + RELOC/tex/generic/babel-hebrew/lhefr.fd + RELOC/tex/generic/babel-hebrew/lheredis.fd + RELOC/tex/generic/babel-hebrew/lheshold.fd + RELOC/tex/generic/babel-hebrew/lheshscr.fd + RELOC/tex/generic/babel-hebrew/lheshstk.fd + RELOC/tex/generic/babel-hebrew/rlbabel.def + RELOC/tex/generic/babel-hebrew/si960.def +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-license lppl1.3 +catalogue-version 2.3h + +name babel-hungarian +category Package +revision 35053 +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 +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 +catalogue-license lppl +catalogue-version 1.5 + +name babel-icelandic +category Package +revision 30275 +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 + RELOC/source/generic/babel-icelandic/icelandic.dtx + RELOC/source/generic/babel-icelandic/icelandic.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/icelandic +catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-license lppl1.3 +catalogue-version 1.1g + +name babel-interlingua +category Package +revision 30276 +shortdesc Babel support for Interlingua. +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Interlingua in babel. Translations to Interlingua of +longdesc standard "LaTeX names" (no shortcuts are provided). Interlingua +longdesc itself is an auxiliary language, built from the common +longdesc vocabulary of Spanish/Portuguese, English, Italian and French, +longdesc with some normalisation of spelling. +runfiles size=1 + RELOC/tex/generic/babel-interlingua/interlingua.ldf +docfiles size=27 + RELOC/doc/generic/babel-interlingua/interlingua.pdf +srcfiles size=4 + RELOC/source/generic/babel-interlingua/interlingua.dtx + RELOC/source/generic/babel-interlingua/interlingua.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/interlingua +catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-license lppl1.3 +catalogue-version 1.6 + +name babel-irish +category Package +revision 30277 +shortdesc Babel support for Irish. +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 +docfiles size=27 + RELOC/doc/generic/babel-irish/irish.pdf +srcfiles size=4 + RELOC/source/generic/babel-irish/irish.dtx + RELOC/source/generic/babel-irish/irish.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/irish +catalogue-date 2014-05-22 12:07:21 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0h + +name babel-italian +category Package +revision 36645 +shortdesc Babel support for Italian text. +relocated 1 +longdesc The package provides language definitions for use in babel. +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-license lppl1.3 +catalogue-version 1.3n + +name babel-kurmanji +category Package +revision 30279 +shortdesc Babel support for Kurmanji. +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Kurmanji in babel. Kurmanji belongs to the family of Kurdish +longdesc languages. Some shortcuts are defined, as well as translations +longdesc to Kurmanji of standard "LaTeX names". Note that the package is +longdesc dealing with 'Northern' Kurdish, written using a Latin-based +longdesc alphabet. The arabxetex package offers support for Kurdish +longdesc written in Arabic script. +runfiles size=2 + RELOC/tex/generic/babel-kurmanji/kurmanji.ldf +docfiles size=31 + RELOC/doc/generic/babel-kurmanji/kurmanji.pdf +srcfiles size=6 + RELOC/source/generic/babel-kurmanji/kurmanji.dtx + RELOC/source/generic/babel-kurmanji/kurmanji.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/kurmanji +catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name babel-latin +category Package +revision 38173 +shortdesc Babel support for Latin +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Latin in babel. Translations to Latin (in both modern and +longdesc medieval spelling) of standard "LaTeX names", and some +longdesc shortcuts, are provided. Apart from the modern vs. medieval +longdesc setting, a further switch permits addition of prosodic marks. +runfiles size=2 + RELOC/tex/generic/babel-latin/latin.ldf +docfiles size=39 + RELOC/doc/generic/babel-latin/latin.pdf +srcfiles size=11 + RELOC/source/generic/babel-latin/latin.dtx + RELOC/source/generic/babel-latin/latin.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/latin +catalogue-date 2015-08-21 11:47:02 +0200 +catalogue-license lppl1 +catalogue-topics latin multilingual-addon +catalogue-version 3.5 + +name babel-latvian +category Package +revision 34377 +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 +srcfiles size=6 + RELOC/source/generic/babel-latvian/latvian.dtx + RELOC/source/generic/babel-latvian/latvian.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/latvian +catalogue-date 2014-07-01 22:21:53 +0200 +catalogue-license lppl1.3 +catalogue-version 2.0a + +name babel-norsk +category Package +revision 30281 +shortdesc Babel support for Norwegian. +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Norwegian in babel. Some shortcuts are defined, as well as +longdesc translations to Norsk of standard "LaTeX names". +runfiles size=2 + RELOC/tex/generic/babel-norsk/norsk.ldf +docfiles size=35 + RELOC/doc/generic/babel-norsk/norsk.pdf +srcfiles size=7 + RELOC/source/generic/babel-norsk/norsk.dtx + RELOC/source/generic/babel-norsk/norsk.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/norsk +catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-license lppl1.3 +catalogue-version 2.0i + +name babel-piedmontese +category Package +revision 30282 +shortdesc Babel support for Piedmontese. +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 +docfiles size=26 + RELOC/doc/generic/babel-piedmontese/piedmontese.pdf +srcfiles size=3 + RELOC/source/generic/babel-piedmontese/piedmontese.dtx +catalogue-ctan /macros/latex/contrib/babel-contrib/piedmontese +catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name babel-polish +category Package +revision 30283 +shortdesc Babel support for Polish. +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 +docfiles size=33 + RELOC/doc/generic/babel-polish/polish.pdf +srcfiles size=8 + RELOC/source/generic/babel-polish/polish.dtx + RELOC/source/generic/babel-polish/polish.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/polish +catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-license lppl1.3 +catalogue-version 1.2l + +name babel-portuges +category Package +revision 30284 +shortdesc Babel support for Portuges. +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 +docfiles size=36 + RELOC/doc/generic/babel-portuges/portuges.pdf +srcfiles size=7 + RELOC/source/generic/babel-portuges/portuges.dtx + RELOC/source/generic/babel-portuges/portuges.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/portuges +catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-license lppl1.3 +catalogue-version 1.2q + +name babel-romanian +category Package +revision 30285 +shortdesc Babel support for Romanian. +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 +docfiles size=28 + RELOC/doc/generic/babel-romanian/romanian.pdf +srcfiles size=5 + RELOC/source/generic/babel-romanian/romanian.dtx + RELOC/source/generic/babel-romanian/romanian.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/romanian +catalogue-date 2014-05-22 12:36:10 +0200 +catalogue-license lppl1.3 +catalogue-version 1.2l + +name babel-romansh +category Package +revision 30286 +shortdesc Babel/Polyglossia support for the Romansh language. +relocated 1 +longdesc The package provides a language description file that enables +longdesc support of Romansh either with babel or with polyglossia. +runfiles size=1 + RELOC/tex/generic/babel-romansh/romansh.ldf +docfiles size=28 + RELOC/doc/generic/babel-romansh/romansh.pdf +srcfiles size=2 + RELOC/source/generic/babel-romansh/romansh.dtx +catalogue-ctan /macros/latex/contrib/babel-contrib/romansh +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 + +name babel-russian +category Package +revision 37209 +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 + RELOC/source/generic/babel-russian/russianb.dtx + RELOC/source/generic/babel-russian/russianb.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/russian +catalogue-date 2015-05-05 07:39:59 +0200 +catalogue-license lppl1.3 +catalogue-version 1.3g + +name babel-samin +category Package +revision 30288 +shortdesc Babel support for Samin. +relocated 1 +longdesc The package provides the language definition file for support +longdesc of North Sami in babel. (Several Sami dialects/languages are +longdesc spoken in Finland, Norway, Sweden and on the Kola Peninsula of +longdesc Russia). Not all use the same alphabet, and no attempt is made +longdesc to support any other than North Sami here. Some shortcuts are +longdesc defined, as well as translations to Norsk of standard "LaTeX +longdesc names". +runfiles size=1 + RELOC/tex/generic/babel-samin/samin.ldf +docfiles size=31 + RELOC/doc/generic/babel-samin/samin.pdf +srcfiles size=4 + RELOC/source/generic/babel-samin/samin.dtx + RELOC/source/generic/babel-samin/samin.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/samin +catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0c + +name babel-scottish +category Package +revision 30289 +shortdesc Babel support for Scottish Gaelic. +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 +docfiles size=28 + RELOC/doc/generic/babel-scottish/scottish.pdf +srcfiles size=4 + RELOC/source/generic/babel-scottish/scottish.dtx + RELOC/source/generic/babel-scottish/scottish.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/scottish +catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0g + +name babel-serbianc +category Package +revision 30348 +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 + RELOC/source/generic/babel-serbianc/serbianc.dtx + RELOC/source/generic/babel-serbianc/serbianc.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/serbianc +catalogue-date 2014-02-26 23:03:13 +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 + +name babel-slovak +category Package +revision 30292 +shortdesc Babel support for typesetting Slovak. +relocated 1 +longdesc The package provides the language definition file for support +longdesc of Slovak in babel, including Slovak variants of LaTeX built-in- +longdesc names. Shortcuts are also defined. +runfiles size=5 + RELOC/tex/generic/babel-slovak/slovak.ldf +docfiles size=48 + RELOC/doc/generic/babel-slovak/slovak.pdf +srcfiles size=14 + RELOC/source/generic/babel-slovak/slovak.dtx + RELOC/source/generic/babel-slovak/slovak.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/slovak +catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-license lppl1.3 +catalogue-version 3.1a + +name babel-slovenian +category Package +revision 30351 +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 +docfiles size=32 + RELOC/doc/generic/babel-slovenian/slovene.pdf +srcfiles size=5 + RELOC/source/generic/babel-slovenian/slovene.dtx + RELOC/source/generic/babel-slovenian/slovene.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/slovenian +catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-license lppl1.3 +catalogue-version 1.2i + +name babel-sorbian +category Package +revision 30294 +shortdesc Babel support for Upper and Lower Sorbian. +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 +docfiles size=64 + RELOC/doc/generic/babel-sorbian/lsorbian.pdf + RELOC/doc/generic/babel-sorbian/usorbian.pdf +srcfiles size=9 + RELOC/source/generic/babel-sorbian/lsorbian.dtx + RELOC/source/generic/babel-sorbian/sorbian.ins + RELOC/source/generic/babel-sorbian/usorbian.dtx +catalogue-ctan /macros/latex/contrib/babel-contrib/sorbian +catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-license lppl1.3 +catalogue-version lower sorbian:1.0g, upper:1.0k + +name babel-spanglish +category Package +revision 37629 +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 +longdesc fails for some reason. The package provides basic support for +longdesc Spanish hyphenation, captions, date, frenchspacing, +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. +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-license lppl1.3 +catalogue-topics spanish multilingual-addon +catalogue-version 0.3 + +name babel-spanish +category Package +revision 33668 +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 +docfiles size=46 + RELOC/doc/generic/babel-spanish/README + RELOC/doc/generic/babel-spanish/spanish.pdf +srcfiles size=24 + RELOC/source/generic/babel-spanish/spanish.dtx + RELOC/source/generic/babel-spanish/spanish.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/spanish +catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-license lppl +catalogue-version 5.0n + +name babel-swedish +category Package +revision 30296 +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 +docfiles size=32 + RELOC/doc/generic/babel-swedish/swedish.pdf +srcfiles size=7 + RELOC/source/generic/babel-swedish/swedish.dtx + RELOC/source/generic/babel-swedish/swedish.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/swedish +catalogue-date 2014-05-22 12:43:44 +0200 +catalogue-license lppl1.3 +catalogue-version 2.3d + +name babel-thai +category Package +revision 30564 +shortdesc Support for Thai within babel +relocated 1 +longdesc The package provides support for typesetting Thai text. within +longdesc the babel system. +runfiles size=8 + RELOC/tex/generic/babel-thai/lthenc.def + RELOC/tex/generic/babel-thai/thai.ldf + RELOC/tex/generic/babel-thai/tis620.def +docfiles size=53 + RELOC/doc/generic/babel-thai/thai.pdf +srcfiles size=12 + RELOC/source/generic/babel-thai/thai.dtx + RELOC/source/generic/babel-thai/thai.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/thai +catalogue-date 2014-05-22 12:50:09 +0200 +catalogue-license lppl1.3 +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. +relocated 1 +longdesc The package provides support, within babel, of the Turkish +longdesc language. +runfiles size=2 + RELOC/tex/generic/babel-turkish/turkish.ldf +docfiles size=67 + RELOC/doc/generic/babel-turkish/README + RELOC/doc/generic/babel-turkish/turkish.pdf +srcfiles size=6 + RELOC/source/generic/babel-turkish/turkish.dtx + RELOC/source/generic/babel-turkish/turkish.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/turkish +catalogue-date 2014-03-25 07:43:48 +0100 +catalogue-license lppl1.3 +catalogue-version 1.3b + +name babel-ukraineb +category Package +revision 30298 +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 + +name babel-vietnamese +category Package +revision 30578 +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 + RELOC/source/generic/babel-vietnamese/vietnamese.dtx + RELOC/source/generic/babel-vietnamese/vietnamese.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/vietnamese +catalogue-date 2014-05-22 12:50:09 +0200 +catalogue-license lppl1.3 +catalogue-version 1.3 + +name babel-welsh +category Package +revision 38372 +shortdesc Babel support for Welsh +relocated 1 +longdesc The package provides the language definition file for Welsh. +longdesc (Mostly Welsh-language versions of the standard names in a +longdesc LaTeX file.) +runfiles size=1 + RELOC/tex/generic/babel-welsh/welsh.ldf +docfiles size=29 + RELOC/doc/generic/babel-welsh/README + RELOC/doc/generic/babel-welsh/welsh.pdf +srcfiles size=4 + RELOC/source/generic/babel-welsh/welsh.dtx + RELOC/source/generic/babel-welsh/welsh.ins +catalogue-ctan /macros/latex/contrib/babel-contrib/welsh +catalogue-date 2015-09-04 20:16:13 +0200 +catalogue-license lppl1.3 +catalogue-topics welsh multilingual-addon +catalogue-version 1.1a + +name background +category Package +revision 33100 +shortdesc Placement of background material on pages of a document. +relocated 1 +longdesc The package offers the placement of background material on the +longdesc pages of a document. The user can control many aspects +longdesc (contents, position, color, opacity) of the background material +longdesc that will be displayed; all placement and attribute settings +longdesc are controlled by setting key values. The package makes use of +longdesc the everypage package, and uses pgf/tikz for attribute control. +runfiles size=2 + RELOC/tex/latex/background/background.sty +docfiles size=30 + RELOC/doc/latex/background/README + RELOC/doc/latex/background/background.pdf +srcfiles size=8 + RELOC/source/latex/background/background.dtx + RELOC/source/latex/background/background.ins +catalogue-ctan /macros/latex/contrib/background +catalogue-date 2014-03-04 21:07:04 +0100 +catalogue-license lppl +catalogue-version 2.1 + +name backnaur +category Package +revision 28513 +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 +srcfiles size=6 + RELOC/source/latex/backnaur/backnaur.dtx + RELOC/source/latex/backnaur/backnaur.ins +catalogue-ctan /macros/latex/contrib/backnaur +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name bagpipe +category Package +revision 34393 +shortdesc Support for typesetting bagpipe music. +relocated 1 +longdesc Typesetting bagpipe music in MusixTeX is needlessly tedious. +longdesc This package provides specialized and re-defined macros to +longdesc simplify this task. +runfiles size=15 + RELOC/tex/generic/bagpipe/bagpipe.ini + RELOC/tex/generic/bagpipe/bagpipe.tex + RELOC/tex/generic/bagpipe/bagpipex.ini +docfiles size=76 + RELOC/doc/generic/bagpipe/BlackDonald.pdf + RELOC/doc/generic/bagpipe/BlackDonald.tex + RELOC/doc/generic/bagpipe/Bonnets.pdf + RELOC/doc/generic/bagpipe/Bonnets.tex + RELOC/doc/generic/bagpipe/Green.pdf + RELOC/doc/generic/bagpipe/Green.tex + RELOC/doc/generic/bagpipe/GreenTwo.pdf + RELOC/doc/generic/bagpipe/GreenTwo.tex + RELOC/doc/generic/bagpipe/README + RELOC/doc/generic/bagpipe/Washer.pdf + RELOC/doc/generic/bagpipe/Washer.tex + RELOC/doc/generic/bagpipe/bagdoc.pdf + RELOC/doc/generic/bagpipe/bagdoc.tex + RELOC/doc/generic/bagpipe/quickref.pdf + RELOC/doc/generic/bagpipe/quickref.tex +catalogue-ctan /macros/generic/bagpipe +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.3 +catalogue-version 3.02 + +name bangorcsthesis +category Package +revision 36727 +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 +docfiles size=72 + RELOC/doc/latex/bangorcsthesis/README + RELOC/doc/latex/bangorcsthesis/bangorcsthesis.pdf +srcfiles size=65 + RELOC/source/latex/bangorcsthesis/bangorcsthesis.dtx + RELOC/source/latex/bangorcsthesis/bangorcsthesis.ins +catalogue-ctan /macros/latex/contrib/bangorcsthesis +catalogue-date 2015-04-06 11:58:09 +0200 +catalogue-license lppl1.3 +catalogue-version 1.3.0 + +name bangtex +category Package +revision 15878 +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. +runfiles size=78 + RELOC/fonts/source/public/bangtex/bang10.mf + RELOC/fonts/source/public/bangtex/bangbase.mf + RELOC/fonts/source/public/bangtex/bangconso.mf + RELOC/fonts/source/public/bangtex/bangdefs.mf + RELOC/fonts/source/public/bangtex/bangfala.mf + RELOC/fonts/source/public/bangtex/banghalf.mf + RELOC/fonts/source/public/bangtex/bangjuk.mf + RELOC/fonts/source/public/bangtex/bangkaar.mf + RELOC/fonts/source/public/bangtex/banglig.mf + RELOC/fonts/source/public/bangtex/bangmac.mf + RELOC/fonts/source/public/bangtex/bangnum.mf + RELOC/fonts/source/public/bangtex/bangpunc.mf + RELOC/fonts/source/public/bangtex/bangsl10.mf + RELOC/fonts/source/public/bangtex/bangvow.mf + RELOC/fonts/source/public/bangtex/bangwd10.mf + RELOC/fonts/tfm/public/bangtex/bang10.tfm + RELOC/fonts/tfm/public/bangtex/bangsl10.tfm + RELOC/fonts/tfm/public/bangtex/bangwd10.tfm + RELOC/tex/latex/bangtex/bangfont.tex + RELOC/tex/latex/bangtex/barticle.cls + RELOC/tex/latex/bangtex/bbk10.clo + RELOC/tex/latex/bangtex/bbk11.clo + RELOC/tex/latex/bangtex/bbk12.clo + RELOC/tex/latex/bangtex/bbook.cls + RELOC/tex/latex/bangtex/bletter.cls + RELOC/tex/latex/bangtex/bsize10.clo + RELOC/tex/latex/bangtex/bsize11.clo + RELOC/tex/latex/bangtex/bsize12.clo +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-license lppl + +name bankstatement +category Package +revision 35985 +shortdesc A LaTeX class for bank statements based on csv data. +relocated 1 +longdesc More and more banks allow their customers to download posting +longdesc records in various formats. By using the bankstatement class, +longdesc you can create bank statements, as long as a csv format is +longdesc available. At the moment, the csv-mt940 and csv-camt formats -- +longdesc used by many german Sparkassen -- are supported. You can quite +longdesc easily add support for other csv formats. Simply define the +longdesc order of the keys in the csv data file and how to use them. The +longdesc terminology in this class -- such as BIC (Business Identifier +longdesc Code) or IBAN (International Bank Account Number) -- is based +longdesc on usage in the SEPA (Single Euro Payments Area). The user may +longdesc adjust the terminology to suit local needs. +runfiles size=6 + RELOC/tex/latex/bankstatement/bankstatement.cls + RELOC/tex/latex/bankstatement/csv-camt.def + RELOC/tex/latex/bankstatement/csv-mt940.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 +catalogue-ctan /macros/latex/contrib/bankstatement +catalogue-date 2015-01-27 11:33:51 +0100 +catalogue-license lppl +catalogue-version 0.9.1 + +name barcodes +category Package +revision 15878 +shortdesc Fonts for making barcodes. +relocated 1 +longdesc The package deals with EAN barcodes; Metafont sources for fonts +longdesc are provided, and a set of examples; for some codes, a small +longdesc Perl script is needed. +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 +docfiles size=74 + RELOC/doc/latex/barcodes/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.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 +srcfiles size=21 + RELOC/source/latex/barcodes/barcodes.dtx + RELOC/source/latex/barcodes/barcodes.ins +catalogue-ctan /fonts/barcodes/willadt +catalogue-date 2012-04-03 18:09:05 +0200 +catalogue-license lppl + +name bardiag +category Package +revision 22013 +shortdesc LateX package for drawing bar diagrams. +relocated 1 +longdesc The main purpose of the package is to make the drawing of bar +longdesc diagrams possible and easy in LaTeX. The BarDiag package is +longdesc inspired by and based on PSTricks. +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 +docfiles size=419 + RELOC/doc/latex/bardiag/README + RELOC/doc/latex/bardiag/bardiag.pdf + RELOC/doc/latex/bardiag/bardiag.tex + RELOC/doc/latex/bardiag/bardiag1.pdf + RELOC/doc/latex/bardiag/bardiag1.tex + RELOC/doc/latex/bardiag/bardiag2.pdf + RELOC/doc/latex/bardiag/bardiag2.tex + RELOC/doc/latex/bardiag/example/altdiags.ps + RELOC/doc/latex/bardiag/example/altdiags.tex + RELOC/doc/latex/bardiag/example/compile.all + RELOC/doc/latex/bardiag/example/diagrams.dvi + RELOC/doc/latex/bardiag/example/diagrams.ps + RELOC/doc/latex/bardiag/example/diagrams.tex + RELOC/doc/latex/bardiag/example/diagramsbw.ps + RELOC/doc/latex/bardiag/example/diagramsbw.tex + RELOC/doc/latex/bardiag/example/src/10.tex + RELOC/doc/latex/bardiag/example/src/1a.tex + RELOC/doc/latex/bardiag/example/src/1b.tex + RELOC/doc/latex/bardiag/example/src/2a.tex + RELOC/doc/latex/bardiag/example/src/2b.tex + RELOC/doc/latex/bardiag/example/src/3.tex + RELOC/doc/latex/bardiag/example/src/4.tex + RELOC/doc/latex/bardiag/example/src/5.tex + RELOC/doc/latex/bardiag/example/src/6.tex + RELOC/doc/latex/bardiag/example/src/7.tex + RELOC/doc/latex/bardiag/example/src/8.tex + RELOC/doc/latex/bardiag/example/src/9.tex + RELOC/doc/latex/bardiag/figs/diag.eps + RELOC/doc/latex/bardiag/figs/diagleg.eps + RELOC/doc/latex/bardiag/figs/examp1.tex + RELOC/doc/latex/bardiag/figs/examp1a.tex + RELOC/doc/latex/bardiag/figs/examp1b.tex + RELOC/doc/latex/bardiag/figs/examp2.tex + RELOC/doc/latex/bardiag/figs/examp2er.tex + RELOC/doc/latex/bardiag/figs/examp3.tex + RELOC/doc/latex/bardiag/figs/examp4.tex + RELOC/doc/latex/bardiag/figs/examp5.tex + RELOC/doc/latex/bardiag/figs/examp6.tex + RELOC/doc/latex/bardiag/figs/exampcr.tex + RELOC/doc/latex/bardiag/figs/tddiag.eps + RELOC/doc/latex/bardiag/src/10.tex + RELOC/doc/latex/bardiag/src/1a.tex + RELOC/doc/latex/bardiag/src/1b.tex + RELOC/doc/latex/bardiag/src/2a.tex + RELOC/doc/latex/bardiag/src/2b.tex + RELOC/doc/latex/bardiag/src/3.tex + RELOC/doc/latex/bardiag/src/4.tex + RELOC/doc/latex/bardiag/src/5.tex + RELOC/doc/latex/bardiag/src/6.tex + RELOC/doc/latex/bardiag/src/7.tex + RELOC/doc/latex/bardiag/src/8.tex + RELOC/doc/latex/bardiag/src/9.tex +catalogue-ctan /graphics/bardiag +catalogue-date 2012-07-19 15:23:05 +0200 +catalogue-license lppl +catalogue-version 0.4a + +name barr +category Package +revision 23579 +catalogue diagxy +shortdesc Diagram macros by Michael Barr. +relocated 1 +longdesc Diagxy is a general diagramming package, useful for diagrams in +longdesc a number of mathematical disciplines. Diagxy is a development +longdesc of an earlier (successful) package to use the facilities of the +longdesc xypic bundle. +runfiles size=12 + RELOC/tex/generic/barr/diagxy.tex +docfiles size=93 + RELOC/doc/generic/barr/diaxydoc.pdf + RELOC/doc/generic/barr/diaxydoc.tex +catalogue-ctan /macros/generic/diagrams/barr +catalogue-date 2012-02-21 12:31:05 +0100 +catalogue-license lppl + +name bartel-chess-fonts +category Package +revision 20619 +shortdesc A set of fonts supporting chess diagrams. +relocated 1 +longdesc The fonts are provided as Metafont source. +runfiles size=92 + RELOC/fonts/source/public/bartel-chess-fonts/elch-bishop.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-blackfield.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-chbase.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-equi.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-geo.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-king.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-knight.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-pawn.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-queen.mf + RELOC/fonts/source/public/bartel-chess-fonts/elch-rook.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch10.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch11.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch12.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch13.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch14.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch16.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch17.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch20.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch24.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch32.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch36.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch6.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch7.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch8.mf + RELOC/fonts/source/public/bartel-chess-fonts/fselch9.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkbase.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkbishop.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkblackfield.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch10.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch11.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch12.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch14.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch16.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch8.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkelch9.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkgeo.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkking.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkknight.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkpawn.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkqueen.mf + RELOC/fonts/source/public/bartel-chess-fonts/pkrook.mf + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch10.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch11.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch12.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch13.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch14.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch16.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch17.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch20.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch24.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch32.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch36.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch6.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch7.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch8.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/fselch9.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch10.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch11.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch12.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch14.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch16.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch8.tfm + RELOC/fonts/tfm/public/bartel-chess-fonts/pkelch9.tfm +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-license gpl + +name bashful +category Package +revision 25597 +shortdesc Invoke bash commands from within LaTeX. +relocated 1 +longdesc The package makes it possible to execute Unix bash shell +longdesc scripts from within LaTeX. The main application is in writing +longdesc computer-science texts, in which you want to make sure the +longdesc programs listed in the document are executed directly from the +longdesc input. The package may use other Unix shells than bash, but +longdesc does not work without modification in a Windows environment. +longdesc The package requires the -shell-escape flag when LaTeX is +longdesc processing your document. +runfiles size=5 + RELOC/tex/latex/bashful/bashful.sty +docfiles size=148 + RELOC/doc/latex/bashful/Makefile + RELOC/doc/latex/bashful/README + RELOC/doc/latex/bashful/bashful.pdf + RELOC/doc/latex/bashful/bashful.tex +catalogue-ctan /macros/latex/contrib/bashful +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.93 + +name basicarith +category Package +revision 35460 +shortdesc Macros for typesetting basic arithmetic. +relocated 1 +longdesc The package provides macros for typesetting basic arithmetic, +longdesc in the style typically found in textbooks. It focuses on the +longdesc American style of performing these algorithms. It is written +longdesc mostly in low-level TeX, with the goal that it should run in +longdesc either plain TeX or LaTeX, but there are two constructions that +longdesc currently prevent this. It is highly configurable, with macros +longdesc and lengths described in the documentation. +runfiles size=2 + RELOC/tex/latex/basicarith/basicarith.sty +docfiles size=59 + RELOC/doc/latex/basicarith/CHANGES + RELOC/doc/latex/basicarith/README + RELOC/doc/latex/basicarith/basicarith.pdf + RELOC/doc/latex/basicarith/lppl.txt +srcfiles size=9 + RELOC/source/latex/basicarith/basicarith.dtx + RELOC/source/latex/basicarith/basicarith.ins +catalogue-ctan /macros/latex/contrib/basicarith +catalogue-date 2014-10-27 22:19:19 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name baskervald +category Package +revision 19490 +catalogue baskervaldadf +shortdesc Baskervald ADF fonts collection with TeX/LaTeX support. +relocated 1 +longdesc Baskervald ADF is a serif family with lining figures designed +longdesc as a substitute for Baskerville. The family currently includes +longdesc upright and italic or oblique shapes in each of regular, bold +longdesc and heavy weights. All fonts include the slashed zero and +longdesc additional non-standard ligatures. The support package renames +longdesc them according to the Karl Berry fontname scheme and defines +longdesc two families. One of these primarily provides access to the +longdesc "standard" or default characters while the other supports +longdesc additional ligatures. The included package files provide access +longdesc to these features in LaTeX. +execute addMap ybv.map +runfiles size=274 + RELOC/fonts/afm/arkandis/baskervald/ybvb8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvbi8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvh8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvho8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvr8a.afm + RELOC/fonts/afm/arkandis/baskervald/ybvri8a.afm + RELOC/fonts/enc/dvips/baskervald/supp-ybv.enc + RELOC/fonts/map/dvips/baskervald/ybv.map + RELOC/fonts/tfm/arkandis/baskervald/ybvb8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvb8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvb8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvb8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbi8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbi8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbi8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbi8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbiw8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvbw8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvh8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvh8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvh8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvh8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvho8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvho8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvho8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvho8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvhow8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvhw8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvr8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvr8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvr8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvr8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvri8c.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvri8r.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvri8s.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvri8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvriw8t.tfm + RELOC/fonts/tfm/arkandis/baskervald/ybvrw8t.tfm + RELOC/fonts/type1/arkandis/baskervald/ybvb8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvb8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvbi8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvbi8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvh8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvh8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvho8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvho8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvr8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvr8a.pfm + RELOC/fonts/type1/arkandis/baskervald/ybvri8a.pfb + RELOC/fonts/type1/arkandis/baskervald/ybvri8a.pfm + RELOC/fonts/vf/arkandis/baskervald/ybvb8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvb8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvbi8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvbi8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvbiw8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvbw8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvh8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvh8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvho8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvho8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvhow8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvhw8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvr8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvr8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvri8c.vf + RELOC/fonts/vf/arkandis/baskervald/ybvri8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvriw8t.vf + RELOC/fonts/vf/arkandis/baskervald/ybvrw8t.vf + RELOC/tex/latex/baskervald/baskervald.sty + RELOC/tex/latex/baskervald/t1ybv.fd + RELOC/tex/latex/baskervald/t1ybvw.fd + RELOC/tex/latex/baskervald/ts1ybv.fd + RELOC/tex/latex/baskervald/ts1ybvw.fd +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-ctan /fonts/baskervaldadf +catalogue-date 2015-01-19 21:10:13 +0100 +catalogue-license lppl +catalogue-version 1.016 + +name baskervaldx +category Package +revision 36734 +shortdesc Extension and modification of BaskervaldADF with LaTeX support +relocated 1 +longdesc Extends and modifies the BaskervaldADF font (a Baskerville +longdesc substitute) with more accented glyphs, with small caps and +longdesc oldstyle figures in all shapes. Includes OpenType and +longdesc PostScript fonts, as well as LaTeX support files. +execute addMap baskervaldx.map +runfiles size=1155 + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Bol.afm + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-BolIta.afm + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Ita.afm + RELOC/fonts/afm/public/baskervaldx/Baskervaldx-Reg.afm + RELOC/fonts/enc/dvips/baskervaldx/bvalph.enc + RELOC/fonts/enc/dvips/baskervaldx/bvtabosf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_2bp5ef.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_2n2qka.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_2sm4i7.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_3lvabu.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_3omoui.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_4f5bev.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_4kmser.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_4ksy5y.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_537kn6.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_5zt4ml.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_67xtiz.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_6mioll.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_6rdtju.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_6rwo65.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_6tdhgo.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_7453eo.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_7nnme4.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_7qmldf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_awcfcx.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_bgypte.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_bs5d7e.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_caye23.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_cgzxx6.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ck4t6h.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_coqtyh.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_e3qxqg.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ea64ih.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_gar3zb.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_gjwmpg.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_go57dj.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_gsgxts.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_h4nqsn.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_hg6ru4.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_hkyy53.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_igsfta.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ik76ei.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ilkd46.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_jd6ty7.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_jmvj36.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_jwmruw.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_k3ascw.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_k6hbcl.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_krjs6b.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_l7sulo.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_lewyuf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_mvsyl4.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_n3xo7h.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_n57xi2.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_nak3zo.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ne5zxs.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_nq5ldf.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_oue4qy.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_riybhr.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_rtdlfq.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_rzwiio.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_shb4ap.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_uhxou6.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_untte3.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_upsxpb.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_wvrs5w.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_wy43ep.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_xbckbj.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_xjuza2.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_xsxsev.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_xyk42r.enc + RELOC/fonts/enc/dvips/baskervaldx/zbv_ymibyh.enc + RELOC/fonts/map/dvips/baskervaldx/baskervaldx.map + RELOC/fonts/opentype/public/baskervaldx/Baskervaldx-Bol.otf + RELOC/fonts/opentype/public/baskervaldx/Baskervaldx-BolIta.otf + RELOC/fonts/opentype/public/baskervaldx/Baskervaldx-Ita.otf + RELOC/fonts/opentype/public/baskervaldx/Baskervaldx-Reg.otf + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-osf.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-sup-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Bol-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-alph.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-sup-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-alph.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-sup-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Ita-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-lf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-osf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-sup-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tlf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-t1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-t1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-Reg-tosf-ts1.tfm + RELOC/fonts/tfm/public/baskervaldx/Baskervaldx-osf.tfm + RELOC/fonts/tfm/public/baskervaldx/zbvbmi.tfm + RELOC/fonts/tfm/public/baskervaldx/zbvmi.tfm + RELOC/fonts/type1/public/baskervaldx/Baskervaldx-Bol.pfb + RELOC/fonts/type1/public/baskervaldx/Baskervaldx-BolIta.pfb + RELOC/fonts/type1/public/baskervaldx/Baskervaldx-Ita.pfb + RELOC/fonts/type1/public/baskervaldx/Baskervaldx-Reg.pfb + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-lf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-osf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-sup-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-sup-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tlf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Bol-tosf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-lf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-osf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-sup-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-sup-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tlf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-BolIta-tosf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-lf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-osf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-sup-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-sup-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tlf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Ita-tosf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-lf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-osf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-sup-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-sup-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tlf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-sc-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-sc-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-swash-ly1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-swash-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-t1.vf + RELOC/fonts/vf/public/baskervaldx/Baskervaldx-Reg-tosf-ts1.vf + RELOC/fonts/vf/public/baskervaldx/zbvbmi.vf + RELOC/fonts/vf/public/baskervaldx/zbvmi.vf + RELOC/tex/latex/baskervaldx/Baskervaldx.sty + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-LF.fd + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-OsF.fd + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-Sup.fd + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-TLF.fd + RELOC/tex/latex/baskervaldx/LY1Baskervaldx-TOsF.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-LF.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-OsF.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-Sup.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-TLF.fd + RELOC/tex/latex/baskervaldx/T1Baskervaldx-TOsF.fd + RELOC/tex/latex/baskervaldx/TS1Baskervaldx-LF.fd + RELOC/tex/latex/baskervaldx/TS1Baskervaldx-OsF.fd + RELOC/tex/latex/baskervaldx/TS1Baskervaldx-TLF.fd + RELOC/tex/latex/baskervaldx/TS1Baskervaldx-TOsF.fd + RELOC/tex/latex/baskervaldx/baskervaldx.fontspec +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-license gpl +catalogue-version 1.07 + +name basque-book +category Package +revision 32924 +shortdesc Class for book-type documents written in Basque. +relocated 1 +longdesc The class is derived from the LaTeX book class. The extensions +longdesc solve grammatical and numeration issues that occur when 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 +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/basque-book_EUS.tex +srcfiles size=11 + RELOC/source/latex/basque-book/basque-book.dtx + RELOC/source/latex/basque-book/basque-book.ins +catalogue-ctan /macros/latex/contrib/basque-book +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.20 + +name basque-date +category Package +revision 26477 +shortdesc Print the date in Basque. +relocated 1 +longdesc The package provides two LaTeX commands to print the current +longdesc date in Basque according to the correct forms ruled by The +longdesc Basque Language Academy (Euskaltzaindia). The commands +longdesc automatically solve the complex declination issues of numbers +longdesc in Basque. +runfiles size=2 + RELOC/tex/latex/basque-date/basque-date.sty +docfiles size=49 + RELOC/doc/latex/basque-date/README + RELOC/doc/latex/basque-date/basque-date.pdf +srcfiles size=4 + RELOC/source/latex/basque-date/basque-date.dtx + RELOC/source/latex/basque-date/basque-date.ins +catalogue-ctan /macros/latex/contrib/basque-date +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.05 + +name bbcard +category Package +revision 19440 +shortdesc Bullshit bingo, calendar and baseball-score cards. +relocated 1 +longdesc Three jiffy packages for creating cards of various sorts with +longdesc MetaPost. +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-license pd + +name bbding +category Package +revision 17186 +shortdesc A symbol (dingbat) font and LaTeX macros for its use. +relocated 1 +longdesc A symbol font (distributed as Metafont source) that contains +longdesc many of the symbols of the Zapf dingbats set, together with an +longdesc NFSS interface for using the font. An Adobe Type 1 version of +longdesc the fonts is available in the niceframe fonts bundle. +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 +docfiles size=131 + RELOC/doc/latex/bbding/README + RELOC/doc/latex/bbding/bbding.pdf + RELOC/doc/latex/bbding/bbding10.org +srcfiles size=9 + RELOC/source/latex/bbding/bbding.dtx + RELOC/source/latex/bbding/bbding.ins +catalogue-ctan /fonts/bbding +catalogue-date 2014-04-06 17:50:10 +0200 +catalogue-license lppl +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. +relocated 1 +longdesc Blackboard variants of Computer Modern fonts. The fonts are +longdesc distributed as Metafont source (only); LaTeX support is +longdesc available with the bbm-macros package. The Sauter font package +longdesc has Metafont parameter source files for building the fonts at +longdesc more sizes than you could reasonably imagine. A sample of these +longdesc fonts appears in the blackboard bold sampler. +runfiles size=159 + RELOC/fonts/source/public/bbm/bbm10.mf + RELOC/fonts/source/public/bbm/bbm12.mf + RELOC/fonts/source/public/bbm/bbm17.mf + RELOC/fonts/source/public/bbm/bbm5.mf + RELOC/fonts/source/public/bbm/bbm6.mf + RELOC/fonts/source/public/bbm/bbm7.mf + RELOC/fonts/source/public/bbm/bbm8.mf + RELOC/fonts/source/public/bbm/bbm9.mf + RELOC/fonts/source/public/bbm/bbmb10.mf + RELOC/fonts/source/public/bbm/bbmbx10.mf + RELOC/fonts/source/public/bbm/bbmbx12.mf + RELOC/fonts/source/public/bbm/bbmbx5.mf + RELOC/fonts/source/public/bbm/bbmbx6.mf + RELOC/fonts/source/public/bbm/bbmbx7.mf + RELOC/fonts/source/public/bbm/bbmbx8.mf + RELOC/fonts/source/public/bbm/bbmbx9.mf + RELOC/fonts/source/public/bbm/bbmbxsl10.mf + RELOC/fonts/source/public/bbm/bbmdunh10.mf + RELOC/fonts/source/public/bbm/bbmfib8.mf + RELOC/fonts/source/public/bbm/bbmfxib8.mf + RELOC/fonts/source/public/bbm/bbminch.mf + RELOC/fonts/source/public/bbm/bbmsl10.mf + RELOC/fonts/source/public/bbm/bbmsl12.mf + RELOC/fonts/source/public/bbm/bbmsl8.mf + RELOC/fonts/source/public/bbm/bbmsl9.mf + RELOC/fonts/source/public/bbm/bbmsltt10.mf + RELOC/fonts/source/public/bbm/bbmss10.mf + RELOC/fonts/source/public/bbm/bbmss12.mf + RELOC/fonts/source/public/bbm/bbmss17.mf + RELOC/fonts/source/public/bbm/bbmss8.mf + RELOC/fonts/source/public/bbm/bbmss9.mf + RELOC/fonts/source/public/bbm/bbmssbx10.mf + RELOC/fonts/source/public/bbm/bbmssdc10.mf + RELOC/fonts/source/public/bbm/bbmssi10.mf + RELOC/fonts/source/public/bbm/bbmssi12.mf + RELOC/fonts/source/public/bbm/bbmssi17.mf + RELOC/fonts/source/public/bbm/bbmssi8.mf + RELOC/fonts/source/public/bbm/bbmssi9.mf + RELOC/fonts/source/public/bbm/bbmssq8.mf + RELOC/fonts/source/public/bbm/bbmssqi8.mf + RELOC/fonts/source/public/bbm/bbmtt10.mf + RELOC/fonts/source/public/bbm/bbmtt12.mf + RELOC/fonts/source/public/bbm/bbmtt8.mf + RELOC/fonts/source/public/bbm/bbmtt9.mf + RELOC/fonts/source/public/bbm/bbmvtt10.mf + RELOC/fonts/source/public/bbm/blbbase.mf + RELOC/fonts/source/public/bbm/blbord.mf + RELOC/fonts/source/public/bbm/blbordl.mf + RELOC/fonts/source/public/bbm/blbordsp.mf + RELOC/fonts/source/public/bbm/blbordu.mf + RELOC/fonts/tfm/public/bbm/bbm10.tfm + RELOC/fonts/tfm/public/bbm/bbm12.tfm + RELOC/fonts/tfm/public/bbm/bbm17.tfm + RELOC/fonts/tfm/public/bbm/bbm5.tfm + RELOC/fonts/tfm/public/bbm/bbm6.tfm + RELOC/fonts/tfm/public/bbm/bbm7.tfm + RELOC/fonts/tfm/public/bbm/bbm8.tfm + RELOC/fonts/tfm/public/bbm/bbm9.tfm + RELOC/fonts/tfm/public/bbm/bbmb10.tfm + RELOC/fonts/tfm/public/bbm/bbmbx10.tfm + RELOC/fonts/tfm/public/bbm/bbmbx12.tfm + RELOC/fonts/tfm/public/bbm/bbmbx5.tfm + RELOC/fonts/tfm/public/bbm/bbmbx6.tfm + RELOC/fonts/tfm/public/bbm/bbmbx7.tfm + RELOC/fonts/tfm/public/bbm/bbmbx8.tfm + RELOC/fonts/tfm/public/bbm/bbmbx9.tfm + RELOC/fonts/tfm/public/bbm/bbmbxsl10.tfm + RELOC/fonts/tfm/public/bbm/bbmdunh10.tfm + RELOC/fonts/tfm/public/bbm/bbmfib8.tfm + RELOC/fonts/tfm/public/bbm/bbmfxib8.tfm + RELOC/fonts/tfm/public/bbm/bbmsl10.tfm + RELOC/fonts/tfm/public/bbm/bbmsl12.tfm + RELOC/fonts/tfm/public/bbm/bbmsl8.tfm + RELOC/fonts/tfm/public/bbm/bbmsl9.tfm + RELOC/fonts/tfm/public/bbm/bbmss10.tfm + RELOC/fonts/tfm/public/bbm/bbmss12.tfm + RELOC/fonts/tfm/public/bbm/bbmss17.tfm + RELOC/fonts/tfm/public/bbm/bbmss8.tfm + RELOC/fonts/tfm/public/bbm/bbmss9.tfm + RELOC/fonts/tfm/public/bbm/bbmssbx10.tfm + RELOC/fonts/tfm/public/bbm/bbmssdc10.tfm + RELOC/fonts/tfm/public/bbm/bbmssi10.tfm + RELOC/fonts/tfm/public/bbm/bbmssi12.tfm + RELOC/fonts/tfm/public/bbm/bbmssi17.tfm + RELOC/fonts/tfm/public/bbm/bbmssi8.tfm + RELOC/fonts/tfm/public/bbm/bbmssi9.tfm + RELOC/fonts/tfm/public/bbm/bbmssq8.tfm + RELOC/fonts/tfm/public/bbm/bbmssqi8.tfm + RELOC/fonts/tfm/public/bbm/bbmtt10.tfm + RELOC/fonts/tfm/public/bbm/bbmtt12.tfm + RELOC/fonts/tfm/public/bbm/bbmtt8.tfm + RELOC/fonts/tfm/public/bbm/bbmtt9.tfm +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-ctan /fonts/cm/bbm +catalogue-date 2014-04-06 17:37:39 +0200 +catalogue-license other-free + +name bbold +category Package +revision 17187 +shortdesc Sans serif blackboard bold. +relocated 1 +longdesc A geometric sans serif blackboard bold font, for use in +longdesc mathematics; Metafont sources are provided, as well as macros +longdesc for use with LaTeX. The Sauter font package has Metafont +longdesc parameter source files for building the fonts at more sizes +longdesc than you could reasonably imagine. See the blackboard sampler +longdesc for a feel for the font's appearance. +runfiles size=45 + RELOC/fonts/source/public/bbold/bbbase.mf + RELOC/fonts/source/public/bbold/bbgreekl.mf + RELOC/fonts/source/public/bbold/bbgreeku.mf + RELOC/fonts/source/public/bbold/bbligs.mf + RELOC/fonts/source/public/bbold/bblower.mf + RELOC/fonts/source/public/bbold/bbnum.mf + RELOC/fonts/source/public/bbold/bbold.mf + RELOC/fonts/source/public/bbold/bbold10.mf + RELOC/fonts/source/public/bbold/bbold12.mf + RELOC/fonts/source/public/bbold/bbold17.mf + RELOC/fonts/source/public/bbold/bbold5.mf + RELOC/fonts/source/public/bbold/bbold6.mf + RELOC/fonts/source/public/bbold/bbold7.mf + RELOC/fonts/source/public/bbold/bbold8.mf + RELOC/fonts/source/public/bbold/bbold9.mf + RELOC/fonts/source/public/bbold/bbparams.mf + RELOC/fonts/source/public/bbold/bbpunc.mf + RELOC/fonts/source/public/bbold/bbupper.mf + RELOC/fonts/tfm/public/bbold/bbold10.tfm + RELOC/fonts/tfm/public/bbold/bbold12.tfm + RELOC/fonts/tfm/public/bbold/bbold17.tfm + RELOC/fonts/tfm/public/bbold/bbold5.tfm + RELOC/fonts/tfm/public/bbold/bbold6.tfm + RELOC/fonts/tfm/public/bbold/bbold7.tfm + RELOC/fonts/tfm/public/bbold/bbold8.tfm + RELOC/fonts/tfm/public/bbold/bbold9.tfm + RELOC/tex/latex/bbold/Ubbold.fd + RELOC/tex/latex/bbold/bbold.sty +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-ctan /fonts/bbold +catalogue-date 2014-04-06 17:50:10 +0200 +catalogue-license bsd +catalogue-version 1.01 + +name bbold-type1 +category Package +revision 33143 +shortdesc An Adobe Type 1 format version of the bbold font. +relocated 1 +longdesc The files offer an Adobe Type 1 format version of the 5pt, 7pt +longdesc and 10pt versions of the bbold fonts. The distribution also +longdesc includes a map file, for use when incorporating the fonts into +longdesc TeX documents; the macros provided with the original Metafont +longdesc version of the font serve for the scaleable version, too. The +longdesc fonts were produced to be part of the TeX distribution from +longdesc Y&Y; they were generously donated to the TeX Users Group when +longdesc Y&Y closed its doors as a business. +execute addMixedMap bbold.map +runfiles size=28 + RELOC/fonts/afm/public/bbold-type1/bbold10.afm + RELOC/fonts/afm/public/bbold-type1/bbold5.afm + RELOC/fonts/afm/public/bbold-type1/bbold7.afm + RELOC/fonts/map/dvips/bbold-type1/bbold.map + RELOC/fonts/type1/public/bbold-type1/bbold10.pfb + RELOC/fonts/type1/public/bbold-type1/bbold5.pfb + RELOC/fonts/type1/public/bbold-type1/bbold7.pfb +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-license other-free + +name bchart +category Package +revision 27496 +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 +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/bchart.tex +catalogue-ctan /macros/latex/contrib/bchart +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 0.1.2 + +name bclogo +category Package +revision 23305 +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 + RELOC/metapost/bclogo/bc-attention.mp + RELOC/metapost/bclogo/bc-aux-301.mp + RELOC/metapost/bclogo/bc-bombe.mp + RELOC/metapost/bclogo/bc-book.mp + RELOC/metapost/bclogo/bc-calendrier.mp + RELOC/metapost/bclogo/bc-cle.mp + RELOC/metapost/bclogo/bc-clefa.mp + RELOC/metapost/bclogo/bc-clesol.mp + RELOC/metapost/bclogo/bc-coeur.mp + RELOC/metapost/bclogo/bc-crayon.mp + RELOC/metapost/bclogo/bc-cube.mp + RELOC/metapost/bclogo/bc-dallemagne.mp + RELOC/metapost/bclogo/bc-danger.mp + RELOC/metapost/bclogo/bc-dautriche.mp + RELOC/metapost/bclogo/bc-dbelgique.mp + RELOC/metapost/bclogo/bc-dbulgarie.mp + RELOC/metapost/bclogo/bc-dfrance.mp + RELOC/metapost/bclogo/bc-ditalie.mp + RELOC/metapost/bclogo/bc-dluxembourg.mp + RELOC/metapost/bclogo/bc-dodecaedre.mp + RELOC/metapost/bclogo/bc-dpaysbas.mp + RELOC/metapost/bclogo/bc-dz.mp + RELOC/metapost/bclogo/bc-eclaircie.mp + RELOC/metapost/bclogo/bc-etoile.mp + RELOC/metapost/bclogo/bc-femme.mp + RELOC/metapost/bclogo/bc-feujaune.mp + RELOC/metapost/bclogo/bc-feurouge.mp + RELOC/metapost/bclogo/bc-feutricolore.mp + RELOC/metapost/bclogo/bc-feuvert.mp + RELOC/metapost/bclogo/bc-fleur.mp + RELOC/metapost/bclogo/bc-homme.mp + RELOC/metapost/bclogo/bc-horloge.mp + RELOC/metapost/bclogo/bc-icosaedre.mp + RELOC/metapost/bclogo/bc-info.mp + RELOC/metapost/bclogo/bc-inter.mp + RELOC/metapost/bclogo/bc-interdit.mp + RELOC/metapost/bclogo/bc-lampe.mp + RELOC/metapost/bclogo/bc-loupe.mp + RELOC/metapost/bclogo/bc-neige.mp + RELOC/metapost/bclogo/bc-note.mp + RELOC/metapost/bclogo/bc-nucleaire.mp + RELOC/metapost/bclogo/bc-octaedre.mp + RELOC/metapost/bclogo/bc-oeil.mp + RELOC/metapost/bclogo/bc-orne.mp + RELOC/metapost/bclogo/bc-ours.mp + RELOC/metapost/bclogo/bc-outil.mp + RELOC/metapost/bclogo/bc-peaceandlove.mp + RELOC/metapost/bclogo/bc-pluie.mp + RELOC/metapost/bclogo/bc-plume.mp + RELOC/metapost/bclogo/bc-poisson.mp + RELOC/metapost/bclogo/bc-recyclage.mp + RELOC/metapost/bclogo/bc-rosevents.mp + RELOC/metapost/bclogo/bc-smiley-bonnehumeur.mp + RELOC/metapost/bclogo/bc-smiley-mauvaisehumeur.mp + RELOC/metapost/bclogo/bc-soleil.mp + RELOC/metapost/bclogo/bc-stop.mp + RELOC/metapost/bclogo/bc-takecare.mp + RELOC/metapost/bclogo/bc-tetraedre.mp + RELOC/metapost/bclogo/bc-trefle.mp + RELOC/metapost/bclogo/bc-trombone.mp + RELOC/metapost/bclogo/bc-valetcoeur.mp + RELOC/metapost/bclogo/bc-velo.mp + RELOC/metapost/bclogo/bc-yin.mp + RELOC/metapost/bclogo/brace.mp + RELOC/metapost/bclogo/losanges.mp + RELOC/metapost/bclogo/spir.mp + RELOC/tex/latex/bclogo/bc-attention.mps + RELOC/tex/latex/bclogo/bc-aux-301.mps + RELOC/tex/latex/bclogo/bc-bombe.mps + RELOC/tex/latex/bclogo/bc-book.mps + RELOC/tex/latex/bclogo/bc-calendrier.mps + RELOC/tex/latex/bclogo/bc-cle.mps + RELOC/tex/latex/bclogo/bc-clefa.mps + RELOC/tex/latex/bclogo/bc-clesol.mps + RELOC/tex/latex/bclogo/bc-coeur.mps + RELOC/tex/latex/bclogo/bc-crayon.mps + RELOC/tex/latex/bclogo/bc-cube.mps + RELOC/tex/latex/bclogo/bc-dallemagne.mps + RELOC/tex/latex/bclogo/bc-danger.mps + RELOC/tex/latex/bclogo/bc-dautriche.mps + RELOC/tex/latex/bclogo/bc-dbelgique.mps + RELOC/tex/latex/bclogo/bc-dbulgarie.mps + RELOC/tex/latex/bclogo/bc-dfrance.mps + RELOC/tex/latex/bclogo/bc-ditalie.mps + RELOC/tex/latex/bclogo/bc-dluxembourg.mps + RELOC/tex/latex/bclogo/bc-dodecaedre.mps + RELOC/tex/latex/bclogo/bc-dpaysbas.mps + RELOC/tex/latex/bclogo/bc-dz.mps + RELOC/tex/latex/bclogo/bc-eclaircie.mps + RELOC/tex/latex/bclogo/bc-etoile.mps + RELOC/tex/latex/bclogo/bc-femme.mps + RELOC/tex/latex/bclogo/bc-feujaune.mps + RELOC/tex/latex/bclogo/bc-feurouge.mps + RELOC/tex/latex/bclogo/bc-feutricolore.mps + RELOC/tex/latex/bclogo/bc-feuvert.mps + RELOC/tex/latex/bclogo/bc-fleur.mps + RELOC/tex/latex/bclogo/bc-homme.mps + RELOC/tex/latex/bclogo/bc-horloge.mps + RELOC/tex/latex/bclogo/bc-icosaedre.mps + RELOC/tex/latex/bclogo/bc-info.mps + RELOC/tex/latex/bclogo/bc-inter.mps + RELOC/tex/latex/bclogo/bc-interdit.mps + RELOC/tex/latex/bclogo/bc-lampe.mps + RELOC/tex/latex/bclogo/bc-loupe.mps + RELOC/tex/latex/bclogo/bc-neige.mps + RELOC/tex/latex/bclogo/bc-note.mps + RELOC/tex/latex/bclogo/bc-nucleaire.mps + RELOC/tex/latex/bclogo/bc-octaedre.mps + RELOC/tex/latex/bclogo/bc-oeil.mps + RELOC/tex/latex/bclogo/bc-orne.mps + RELOC/tex/latex/bclogo/bc-ours.mps + RELOC/tex/latex/bclogo/bc-outil.mps + RELOC/tex/latex/bclogo/bc-peaceandlove.mps + RELOC/tex/latex/bclogo/bc-pluie.mps + RELOC/tex/latex/bclogo/bc-plume.mps + RELOC/tex/latex/bclogo/bc-poisson.mps + RELOC/tex/latex/bclogo/bc-recyclage.mps + RELOC/tex/latex/bclogo/bc-rosevents.mps + RELOC/tex/latex/bclogo/bc-smiley-bonnehumeur.mps + RELOC/tex/latex/bclogo/bc-smiley-mauvaisehumeur.mps + RELOC/tex/latex/bclogo/bc-soleil.mps + RELOC/tex/latex/bclogo/bc-stop.mps + RELOC/tex/latex/bclogo/bc-takecare.mps + RELOC/tex/latex/bclogo/bc-tetraedre.mps + RELOC/tex/latex/bclogo/bc-trefle.mps + RELOC/tex/latex/bclogo/bc-trombone.mps + RELOC/tex/latex/bclogo/bc-valetcoeur.mps + RELOC/tex/latex/bclogo/bc-velo.mps + RELOC/tex/latex/bclogo/bc-yin.mps + RELOC/tex/latex/bclogo/bclogo.sty +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-license lppl +catalogue-version 2.26 + +name beamer2thesis +category Package +revision 27539 +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 +docfiles size=99 + RELOC/doc/latex/beamer2thesis/README + RELOC/doc/latex/beamer2thesis/beamer2thesis.pdf + RELOC/doc/latex/beamer2thesis/beamer2thesis.tex + RELOC/doc/latex/beamer2thesis/beamer2thesis_ita.pdf + 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 +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamer2thesis +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 2.2 + +name beameraudience +category Package +revision 23427 +shortdesc Assembling beamer frames according to audience +relocated 1 +longdesc The Beamer Audience package provides macros to easily assemble +longdesc frames according to different audiences. It enables to pick up +longdesc the frames for a specific audience while leaving their order +longdesc according to a logical structure in the LaTeX source. +runfiles size=1 + RELOC/tex/latex/beameraudience/beameraudience.sty +docfiles size=1 + RELOC/doc/latex/beameraudience/README +catalogue-ctan /macros/latex/contrib/beamer-contrib/beameraudience +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name beamerdarkthemes +category Package +revision 35101 +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 +docfiles size=2368 + RELOC/doc/latex/beamerdarkthemes/README + RELOC/doc/latex/beamerdarkthemes/beamerdarkthemesuserguide.pdf + RELOC/doc/latex/beamerdarkthemes/beamerdarkthemesuserguide.tex + RELOC/doc/latex/beamerdarkthemes/ccby.png + RELOC/doc/latex/beamerdarkthemes/cormorantexampledefault.pdf + RELOC/doc/latex/beamerdarkthemes/cormorantexampleinfolines.pdf + RELOC/doc/latex/beamerdarkthemes/cormorantexamplesidebar.pdf + RELOC/doc/latex/beamerdarkthemes/cormorantexampletree.pdf + RELOC/doc/latex/beamerdarkthemes/dahut.jpg + RELOC/doc/latex/beamerdarkthemes/example.tex + RELOC/doc/latex/beamerdarkthemes/frigatebirdexampledefault.pdf + RELOC/doc/latex/beamerdarkthemes/frigatebirdexampleinfolines.pdf + RELOC/doc/latex/beamerdarkthemes/frigatebirdexamplesidebar.pdf + RELOC/doc/latex/beamerdarkthemes/frigatebirdexampletree.pdf + RELOC/doc/latex/beamerdarkthemes/img_5630.jpg + RELOC/doc/latex/beamerdarkthemes/magpieexampledefault.pdf + RELOC/doc/latex/beamerdarkthemes/magpieexampleinfolines.pdf + RELOC/doc/latex/beamerdarkthemes/magpieexamplesidebar.pdf + RELOC/doc/latex/beamerdarkthemes/magpieexampletree.pdf + RELOC/doc/latex/beamerdarkthemes/makeexamples.sh +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/beamerdarkthemes +catalogue-date 2014-09-09 16:43:02 +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 + +name beamerposter +category Package +revision 37009 +shortdesc Extend beamer and a0poster for custom sized posters. +relocated 1 +longdesc The package enables the user to use beamer style operations on +longdesc a canvas of the sizes provided by a0poster; font scaling is +longdesc available (using packages such as type1cm if necessary). In +longdesc addition, the package allows the user to benefit from the nice +longdesc colour box handling and alignment provided by the beamer class +longdesc (for example, with rounded corners and shadows). Good looking +longdesc posters may be created very rapidly. Features include: scalable +longdesc fonts using the fp and type1cm packages; posters in A-series +longdesc sizes, and custom sizes like double A0 are possible; still +longdesc applicable to custom beamer slides, e.g. 16:9 slides for a 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 +docfiles size=22 + RELOC/doc/latex/beamerposter/README + RELOC/doc/latex/beamerposter/beamerposter.pdf + RELOC/doc/latex/beamerposter/beamerposter.tex + RELOC/doc/latex/beamerposter/example.tex +catalogue-ctan /macros/latex/contrib/beamerposter +catalogue-date 2015-04-22 07:10:09 +0200 +catalogue-license lppl +catalogue-version 1.12 + +name beamersubframe +category Package +revision 23510 +shortdesc Reorder frames in the PDF file. +relocated 1 +longdesc The package provides a method to reorder frames in the PDF file +longdesc without reordering the source. Its principal use is to embed or +longdesc append frames with details on some subject. The author +longdesc describes the package as "experimental". +runfiles size=4 + RELOC/tex/latex/beamersubframe/beamersubframe.sty +docfiles size=150 + RELOC/doc/latex/beamersubframe/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/bsf-example.tex +srcfiles size=23 + RELOC/source/latex/beamersubframe/beamersubframe.dtx + RELOC/source/latex/beamersubframe/beamersubframe.ins +catalogue-ctan /macros/latex/contrib/beamer-contrib/beamersubframe +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.2 + +name beamerthemejltree +category Package +revision 21977 +shortdesc Contributed beamer theme. +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 + +name beamerthemenirma +category Package +revision 20765 +shortdesc A Beamer theme for academic presentations. +relocated 1 +longdesc The package developed for academic purposes. The distribution +longdesc includes nothing more than style file needed for preparing +longdesc presentations. +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 + +name beamerthemephnompenh +category Package +revision 31392 +relocated 1 +runfiles size=1 + RELOC/tex/latex/beamerthemephnompenh/beamerthemePhnomPenh.sty +docfiles size=21 + RELOC/doc/latex/beamerthemephnompenh/README + RELOC/doc/latex/beamerthemephnompenh/beamerthemePhnomPenh.pdf + RELOC/doc/latex/beamerthemephnompenh/beamerthemePhnomPenh.tex + +name beamertheme-upenn-bc +category Package +revision 29937 +shortdesc Beamer themies 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 +docfiles size=139 + RELOC/doc/latex/beamertheme-upenn-bc/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 +catalogue-ctan /macros/latex/contrib/beamer-contrib/themes/upenn-bc +catalogue-date 2014-10-16 09:35:03 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name beamer +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 + +name beamer-tut-pt +category Package +revision 15878 +shortdesc An introduction to the Beamer class, in Portuguese. +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 + +name beebe +category Package +revision 38101 +relocated 1 +runfiles size=1198 + RELOC/bibtex/bib/beebe/gut.bib + RELOC/bibtex/bib/beebe/komoedie.bib + RELOC/bibtex/bib/beebe/texbook1.bib + RELOC/bibtex/bib/beebe/texbook2.bib + RELOC/bibtex/bib/beebe/texbook3.bib + RELOC/bibtex/bib/beebe/texgraph.bib + RELOC/bibtex/bib/beebe/texjourn.bib + RELOC/bibtex/bib/beebe/texnique.bib + RELOC/bibtex/bib/beebe/tugboat.bib + RELOC/bibtex/bst/beebe/aaai-named.bst + RELOC/bibtex/bst/beebe/abstract.bst + RELOC/bibtex/bst/beebe/annotate.bst + RELOC/bibtex/bst/beebe/annotation.bst + RELOC/bibtex/bst/beebe/apa.bst + RELOC/bibtex/bst/beebe/apalike2.bst + RELOC/bibtex/bst/beebe/astron.bst + RELOC/bibtex/bst/beebe/authordate1.bst + RELOC/bibtex/bst/beebe/authordate2.bst + RELOC/bibtex/bst/beebe/authordate3.bst + RELOC/bibtex/bst/beebe/authordate4.bst + RELOC/bibtex/bst/beebe/bbs.bst + RELOC/bibtex/bst/beebe/bibtoref.bst + RELOC/bibtex/bst/beebe/cbe.bst + RELOC/bibtex/bst/beebe/chicagoa.bst + RELOC/bibtex/bst/beebe/humanbio.bst + RELOC/bibtex/bst/beebe/humannat.bst + RELOC/bibtex/bst/beebe/is-abbrv.bst + RELOC/bibtex/bst/beebe/is-alpha.bst + RELOC/bibtex/bst/beebe/is-plain.bst + RELOC/bibtex/bst/beebe/is-unsrt.bst + RELOC/bibtex/bst/beebe/jas99.bst + RELOC/bibtex/bst/beebe/jbact.bst + RELOC/bibtex/bst/beebe/jmb.bst + RELOC/bibtex/bst/beebe/jtb.bst + RELOC/bibtex/bst/beebe/jthcarsu.bst + RELOC/bibtex/bst/beebe/named.bst + RELOC/bibtex/bst/beebe/namunsrt.bst + RELOC/bibtex/bst/beebe/newapa.bst + RELOC/bibtex/bst/beebe/phaip.bst + RELOC/bibtex/bst/beebe/phapalik.bst + RELOC/bibtex/bst/beebe/phcpc.bst + RELOC/bibtex/bst/beebe/phiaea.bst + RELOC/bibtex/bst/beebe/phjcp.bst + RELOC/bibtex/bst/beebe/phnf.bst + RELOC/bibtex/bst/beebe/phnflet.bst + RELOC/bibtex/bst/beebe/phpf.bst + RELOC/bibtex/bst/beebe/phppcf.bst + RELOC/bibtex/bst/beebe/phreport.bst + RELOC/bibtex/bst/beebe/phrmp.bst + RELOC/bibtex/bst/beebe/plainyr.bst + RELOC/bibtex/bst/beebe/refer.bst + RELOC/bibtex/bst/beebe/xbtxbst.doc + RELOC/tex/generic/beebe/bibnames.sty + RELOC/tex/generic/beebe/texnames.sty + RELOC/tex/generic/beebe/tugboat.def + +name begingreek +category Package +revision 36294 +shortdesc Greek environment to be used with pdflatex only +relocated 1 +longdesc This simple package defines a greek environment to be used with +longdesc pdfLaTeX only, that accepts an optional Greek font family name +longdesc to type its contents with. A similar \greektxt command does a +longdesc similar action for shorter texts. +runfiles size=1 + RELOC/tex/latex/begingreek/begingreek.sty +docfiles size=175 + RELOC/doc/latex/begingreek/README + RELOC/doc/latex/begingreek/begingreek.pdf + RELOC/doc/latex/begingreek/manifest.txt +srcfiles size=5 + RELOC/source/latex/begingreek/begingreek.dtx +catalogue-ctan /macros/latex/contrib/begingreek +catalogue-date 2015-02-16 12:49:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.5 + +name begriff +category Package +revision 15878 +shortdesc Typeset Begriffschrift. +relocated 1 +longdesc The package defines maths mode commands for typesetting Frege's +longdesc Begriffschrift. +runfiles size=2 + RELOC/tex/latex/begriff/begriff.sty +docfiles size=20 + RELOC/doc/latex/begriff/COPYING + RELOC/doc/latex/begriff/README + RELOC/doc/latex/begriff/examples.pdf + RELOC/doc/latex/begriff/examples.tex +catalogue-ctan /macros/latex/contrib/begriff +catalogue-date 2014-03-25 19:16:16 +0100 +catalogue-license gpl +catalogue-version 1.6 + +name belleek +category Package +revision 18651 +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 currently available commercial bundle). +execute addMap belleek.map +runfiles size=34 + RELOC/fonts/map/dvips/belleek/belleek.map + RELOC/fonts/truetype/public/belleek/blex.ttf + RELOC/fonts/truetype/public/belleek/blsy.ttf + RELOC/fonts/truetype/public/belleek/rblmi.ttf + RELOC/fonts/type1/public/belleek/blex.pfb + RELOC/fonts/type1/public/belleek/blsy.pfb + RELOC/fonts/type1/public/belleek/rblmi.pfb +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-ctan /fonts/belleek +catalogue-date 2014-04-06 17:50:10 +0200 +catalogue-license pd + +name bengali +category Package +revision 20987 +catalogue bengali-pandey +shortdesc Support for the Bengali language. +relocated 1 +longdesc The package is based on Velthuis' transliteration scheme, with +longdesc extensions to deal with the Bengali letters that are not in +longdesc Devanagari. The package also supports Assamese. +runfiles size=42 + RELOC/fonts/source/public/bengali/bn.mf + RELOC/fonts/source/public/bengali/bnbanjon.mf + RELOC/fonts/source/public/bengali/bndigit.mf + RELOC/fonts/source/public/bengali/bnjuk.mf + RELOC/fonts/source/public/bengali/bnkaar.mf + RELOC/fonts/source/public/bengali/bnlig.mf + RELOC/fonts/source/public/bengali/bnligtbl.mf + RELOC/fonts/source/public/bengali/bnmacro.mf + RELOC/fonts/source/public/bengali/bnmisc.mf + RELOC/fonts/source/public/bengali/bnpunct.mf + RELOC/fonts/source/public/bengali/bnr10.mf + RELOC/fonts/source/public/bengali/bnsl10.mf + RELOC/fonts/source/public/bengali/bnswar.mf + RELOC/fonts/source/public/bengali/xbnr10.mf + RELOC/fonts/source/public/bengali/xbnsl10.mf + RELOC/fonts/source/public/bengali/xbnsupp.mf + RELOC/fonts/tfm/public/bengali/bnr10.tfm + RELOC/fonts/tfm/public/bengali/bnsl10.tfm + RELOC/fonts/tfm/public/bengali/xbnr10.tfm + RELOC/fonts/tfm/public/bengali/xbnsl10.tfm + RELOC/tex/latex/bengali/beng.sty + RELOC/tex/latex/bengali/ubn.fd + RELOC/tex/latex/bengali/ubnx.fd +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-ctan /language/bengali/pandey +catalogue-date 2012-05-25 22:30:43 +0200 +catalogue-license lppl + +name bera +category Package +revision 20031 +shortdesc Bera fonts. +relocated 1 +longdesc The package contains the Bera Type 1 fonts, and a zip archive +longdesc containing files to use the fonts with LaTeX. Bera is a set of +longdesc three font families: Bera Serif (a slab-serif Roman), Bera Sans +longdesc (a Frutiger descendant), and Bera Mono (monospaced/typewriter). +longdesc Support for use in LaTeX is also provided. The Bera family is a +longdesc repackaging, for use with TeX, of the Bitstream Vera family. +execute addMap bera.map +runfiles size=249 + RELOC/fonts/afm/public/bera/fveb8a.afm + RELOC/fonts/afm/public/bera/fver8a.afm + RELOC/fonts/afm/public/bera/fvmb8a.afm + RELOC/fonts/afm/public/bera/fvmbo8a.afm + RELOC/fonts/afm/public/bera/fvmr8a.afm + RELOC/fonts/afm/public/bera/fvmro8a.afm + RELOC/fonts/afm/public/bera/fvsb8a.afm + RELOC/fonts/afm/public/bera/fvsbo8a.afm + RELOC/fonts/afm/public/bera/fvsr8a.afm + RELOC/fonts/afm/public/bera/fvsro8a.afm + RELOC/fonts/map/dvips/bera/bera.map + RELOC/fonts/tfm/public/bera/fveb8a.tfm + RELOC/fonts/tfm/public/bera/fveb8c.tfm + RELOC/fonts/tfm/public/bera/fveb8r.tfm + RELOC/fonts/tfm/public/bera/fveb8t.tfm + RELOC/fonts/tfm/public/bera/fvebo8c.tfm + RELOC/fonts/tfm/public/bera/fvebo8r.tfm + RELOC/fonts/tfm/public/bera/fvebo8t.tfm + RELOC/fonts/tfm/public/bera/fver8a.tfm + RELOC/fonts/tfm/public/bera/fver8c.tfm + RELOC/fonts/tfm/public/bera/fver8r.tfm + RELOC/fonts/tfm/public/bera/fver8t.tfm + RELOC/fonts/tfm/public/bera/fvero8c.tfm + RELOC/fonts/tfm/public/bera/fvero8r.tfm + RELOC/fonts/tfm/public/bera/fvero8t.tfm + RELOC/fonts/tfm/public/bera/fvmb8a.tfm + RELOC/fonts/tfm/public/bera/fvmb8c.tfm + RELOC/fonts/tfm/public/bera/fvmb8r.tfm + RELOC/fonts/tfm/public/bera/fvmb8t.tfm + RELOC/fonts/tfm/public/bera/fvmbo8a.tfm + RELOC/fonts/tfm/public/bera/fvmbo8c.tfm + RELOC/fonts/tfm/public/bera/fvmbo8r.tfm + RELOC/fonts/tfm/public/bera/fvmbo8t.tfm + RELOC/fonts/tfm/public/bera/fvmr8a.tfm + RELOC/fonts/tfm/public/bera/fvmr8c.tfm + RELOC/fonts/tfm/public/bera/fvmr8r.tfm + RELOC/fonts/tfm/public/bera/fvmr8t.tfm + RELOC/fonts/tfm/public/bera/fvmro8a.tfm + RELOC/fonts/tfm/public/bera/fvmro8c.tfm + RELOC/fonts/tfm/public/bera/fvmro8r.tfm + RELOC/fonts/tfm/public/bera/fvmro8t.tfm + RELOC/fonts/tfm/public/bera/fvsb8a.tfm + RELOC/fonts/tfm/public/bera/fvsb8c.tfm + RELOC/fonts/tfm/public/bera/fvsb8r.tfm + RELOC/fonts/tfm/public/bera/fvsb8t.tfm + RELOC/fonts/tfm/public/bera/fvsbo8a.tfm + RELOC/fonts/tfm/public/bera/fvsbo8c.tfm + RELOC/fonts/tfm/public/bera/fvsbo8r.tfm + RELOC/fonts/tfm/public/bera/fvsbo8t.tfm + RELOC/fonts/tfm/public/bera/fvsr8a.tfm + RELOC/fonts/tfm/public/bera/fvsr8c.tfm + RELOC/fonts/tfm/public/bera/fvsr8r.tfm + RELOC/fonts/tfm/public/bera/fvsr8t.tfm + RELOC/fonts/tfm/public/bera/fvsro8a.tfm + RELOC/fonts/tfm/public/bera/fvsro8c.tfm + RELOC/fonts/tfm/public/bera/fvsro8r.tfm + RELOC/fonts/tfm/public/bera/fvsro8t.tfm + RELOC/fonts/type1/public/bera/fveb8a.pfb + RELOC/fonts/type1/public/bera/fver8a.pfb + RELOC/fonts/type1/public/bera/fvmb8a.pfb + RELOC/fonts/type1/public/bera/fvmbo8a.pfb + RELOC/fonts/type1/public/bera/fvmr8a.pfb + RELOC/fonts/type1/public/bera/fvmro8a.pfb + RELOC/fonts/type1/public/bera/fvsb8a.pfb + RELOC/fonts/type1/public/bera/fvsbo8a.pfb + RELOC/fonts/type1/public/bera/fvsr8a.pfb + RELOC/fonts/type1/public/bera/fvsro8a.pfb + RELOC/fonts/vf/public/bera/fveb8c.vf + RELOC/fonts/vf/public/bera/fveb8t.vf + RELOC/fonts/vf/public/bera/fvebo8c.vf + RELOC/fonts/vf/public/bera/fvebo8t.vf + RELOC/fonts/vf/public/bera/fver8c.vf + RELOC/fonts/vf/public/bera/fver8t.vf + RELOC/fonts/vf/public/bera/fvero8c.vf + RELOC/fonts/vf/public/bera/fvero8t.vf + RELOC/fonts/vf/public/bera/fvmb8c.vf + RELOC/fonts/vf/public/bera/fvmb8t.vf + RELOC/fonts/vf/public/bera/fvmbo8c.vf + RELOC/fonts/vf/public/bera/fvmbo8t.vf + RELOC/fonts/vf/public/bera/fvmr8c.vf + RELOC/fonts/vf/public/bera/fvmr8t.vf + RELOC/fonts/vf/public/bera/fvmro8c.vf + RELOC/fonts/vf/public/bera/fvmro8t.vf + RELOC/fonts/vf/public/bera/fvsb8c.vf + RELOC/fonts/vf/public/bera/fvsb8t.vf + RELOC/fonts/vf/public/bera/fvsbo8c.vf + RELOC/fonts/vf/public/bera/fvsbo8t.vf + RELOC/fonts/vf/public/bera/fvsr8c.vf + RELOC/fonts/vf/public/bera/fvsr8t.vf + RELOC/fonts/vf/public/bera/fvsro8c.vf + RELOC/fonts/vf/public/bera/fvsro8t.vf + RELOC/tex/latex/bera/bera.sty + RELOC/tex/latex/bera/beramono.sty + RELOC/tex/latex/bera/berasans.sty + RELOC/tex/latex/bera/beraserif.sty + RELOC/tex/latex/bera/t1fve.fd + RELOC/tex/latex/bera/t1fvm.fd + RELOC/tex/latex/bera/t1fvs.fd + RELOC/tex/latex/bera/ts1fve.fd + RELOC/tex/latex/bera/ts1fvm.fd + RELOC/tex/latex/bera/ts1fvs.fd +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-license other-free + +name berenisadf +category Package +revision 32215 +shortdesc Berenis ADF fonts and TeX/LaTeX support. +relocated 1 +longdesc The bundle provides the BerenisADF Pro font collection, in +longdesc OpenType and PostScript Type 1 formats, together with support +longdesc files to use the fonts in TeXnANSI (LY1) and LaTeX standard T1 +longdesc and TS1 encodings. +execute addMap ybd.map +runfiles size=1517 + RELOC/fonts/afm/arkandis/berenisadf/ybdb.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdbc.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdbci.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdbi.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdr.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdrc.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdrci.afm + RELOC/fonts/afm/arkandis/berenisadf/ybdri.afm + RELOC/fonts/enc/dvips/berenisadf/t1-ybd.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybd0.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybd1.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybd2.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybd2j.enc + RELOC/fonts/enc/dvips/berenisadf/t1-ybdj.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd0.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd1.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd2.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybd2j.enc + RELOC/fonts/enc/dvips/berenisadf/texnansi-ybdj.enc + RELOC/fonts/enc/dvips/berenisadf/texnansx-ybd2jw.enc + RELOC/fonts/enc/dvips/berenisadf/texnansx-ybd2w.enc + RELOC/fonts/enc/dvips/berenisadf/texnansx-ybdjw.enc + RELOC/fonts/enc/dvips/berenisadf/texnansx-ybdw.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd0.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd1.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd2.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybd2j.enc + RELOC/fonts/enc/dvips/berenisadf/ts1-ybdj.enc + RELOC/fonts/map/dvips/berenisadf/ybd.map + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Bold.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFPro-BoldItalic.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Italic.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFPro-Regular.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Bold.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-BoldItalic.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Italic.otf + RELOC/fonts/opentype/arkandis/berenisadf/BerenisADFProSC-Regular.otf + RELOC/fonts/tfm/arkandis/berenisadf/ybdb08c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb08t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb08y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb0i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb18c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb18t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb18y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb1i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb28c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb28t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb28y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ciw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2cw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2ijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2iw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2j8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2j8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2j8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2jw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb2w8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdb8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbc8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbc8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbc8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbciw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbcw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbi8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbi8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbi8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbiw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdbw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr08c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr08t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr08y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr0i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr18c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr18t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr18y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr1i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr28c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr28t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr28y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2c8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2c8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2c8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ciw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2cw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2i8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2i8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2i8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2ijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2iw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2j8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2j8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2j8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2jw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr2w8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdr8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrc8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrc8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrc8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrci8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrci8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrci8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrciw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrcw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdri8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdri8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdri8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrij8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrij8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrij8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrijw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdriw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrj8c.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrj8t.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrj8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrjw8y.tfm + RELOC/fonts/tfm/arkandis/berenisadf/ybdrw8y.tfm + RELOC/fonts/type1/arkandis/berenisadf/ybdb.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdbc.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdbci.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdbi.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdr.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdrc.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdrci.pfb + RELOC/fonts/type1/arkandis/berenisadf/ybdri.pfb + RELOC/tex/latex/berenisadf/berenis.sty + RELOC/tex/latex/berenisadf/ly1ybd.fd + RELOC/tex/latex/berenisadf/ly1ybd0.fd + RELOC/tex/latex/berenisadf/ly1ybd1.fd + RELOC/tex/latex/berenisadf/ly1ybd2.fd + RELOC/tex/latex/berenisadf/ly1ybd2j.fd + RELOC/tex/latex/berenisadf/ly1ybd2jw.fd + RELOC/tex/latex/berenisadf/ly1ybd2w.fd + RELOC/tex/latex/berenisadf/ly1ybdj.fd + RELOC/tex/latex/berenisadf/ly1ybdjw.fd + RELOC/tex/latex/berenisadf/ly1ybdw.fd + RELOC/tex/latex/berenisadf/t1ybd.fd + RELOC/tex/latex/berenisadf/t1ybd0.fd + RELOC/tex/latex/berenisadf/t1ybd1.fd + RELOC/tex/latex/berenisadf/t1ybd2.fd + RELOC/tex/latex/berenisadf/t1ybd2j.fd + RELOC/tex/latex/berenisadf/t1ybdj.fd + RELOC/tex/latex/berenisadf/ts1ybd.fd + RELOC/tex/latex/berenisadf/ts1ybd0.fd + RELOC/tex/latex/berenisadf/ts1ybd1.fd + RELOC/tex/latex/berenisadf/ts1ybd2.fd + RELOC/tex/latex/berenisadf/ts1ybd2j.fd + RELOC/tex/latex/berenisadf/ts1ybdj.fd +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-license other-free +catalogue-version 1.004 + +name besjournals +category Package +revision 35428 +relocated 1 +runfiles size=11 + RELOC/bibtex/bst/besjournals/besjournals.bst +docfiles size=8 + RELOC/doc/bibtex/besjournals/README + RELOC/doc/bibtex/besjournals/besjournals.dbj + +name betababel +category Package +revision 15878 +shortdesc Insert ancient greek text coded in Beta Code. +relocated 1 +longdesc The betababel package extends the babel polutonikogreek option +longdesc to provide a simple way to insert ancient Greek texts with +longdesc diacritical characters into your document using the commonly +longdesc used Beta Code transliteration. You can directly insert Beta +longdesc Code texts -- as they can be found at the Perseus project, for +longdesc example -- without modification. +runfiles size=3 + RELOC/tex/latex/betababel/betababel.sty +docfiles size=48 + RELOC/doc/latex/betababel/betatest.pdf + RELOC/doc/latex/betababel/betatest.tex +catalogue-ctan /macros/latex/contrib/betababel +catalogue-date 2012-04-24 11:13:54 +0200 +catalogue-license lppl +catalogue-version 0.5 + +name beton +category Package +revision 15878 +shortdesc Use Concrete fonts. +relocated 1 +longdesc Typeset a LaTeX2e document with the Concrete fonts designed by +longdesc Don Knuth and used in his book "Concrete Mathematics". +runfiles size=1 + RELOC/tex/latex/beton/beton.sty +docfiles size=27 + RELOC/doc/latex/beton/beton.pdf + RELOC/doc/latex/beton/legal.txt +srcfiles size=5 + RELOC/source/latex/beton/beton.dtx + RELOC/source/latex/beton/beton.ins +catalogue-ctan /macros/latex/contrib/beton +catalogue-date 2012-04-24 11:13:54 +0200 +catalogue-license lppl + +name bewerbung +category Package +revision 37880 +shortdesc Typesetting job application +relocated 1 +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 +docfiles size=236 + RELOC/doc/latex/bewerbung/Foto.pdf + RELOC/doc/latex/bewerbung/README + RELOC/doc/latex/bewerbung/README_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.tex + RELOC/doc/latex/bewerbung/bewerbung.pdf + RELOC/doc/latex/bewerbung/config.inc + RELOC/doc/latex/bewerbung/neueBewerbung.sh + RELOC/doc/latex/bewerbung/titlepage.inc +srcfiles size=30 + RELOC/source/latex/bewerbung/bewerbung.dtx + RELOC/source/latex/bewerbung/bewerbung.ins +catalogue-ctan /macros/latex/contrib/bewerbung +catalogue-date 2015-07-15 05:44:18 +0200 +catalogue-license lppl1.3 +catalogue-topics cv class +catalogue-version 1.1 + +name bez123 +category Package +revision 15878 +shortdesc Support for Bezier curves. +relocated 1 +longdesc Provides additional facilities in a picture environment for +longdesc drawing linear, cubic, and rational quadratic Bezier curves +longdesc (standard LaTeX only offers non-rational quadratic splines). +longdesc Provides a package multiply that provides a command for +longdesc multiplication of a length without numerical overflow. +runfiles size=4 + RELOC/tex/latex/bez123/bez123.sty + RELOC/tex/latex/bez123/multiply.sty +docfiles size=72 + RELOC/doc/latex/bez123/README + RELOC/doc/latex/bez123/bez123.pdf +srcfiles size=17 + RELOC/source/latex/bez123/bez123.dtx + RELOC/source/latex/bez123/bez123.ins +catalogue-ctan /macros/latex/contrib/bez123 +catalogue-date 2012-06-07 15:01:30 +0200 +catalogue-license lppl1.3 +catalogue-version 1.1b + +name bezos +category Package +revision 25507 +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 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 + 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.tex + RELOC/doc/latex/bezos/esindex.pdf + RELOC/doc/latex/bezos/esindex.tex + RELOC/doc/latex/bezos/soulpos.pdf + RELOC/doc/latex/bezos/soulpos.tex + RELOC/doc/latex/bezos/tensind.pdf + RELOC/doc/latex/bezos/tensind.tex +catalogue-ctan /macros/latex/contrib/bezos +catalogue-date 2014-10-16 09:35:03 +0200 +catalogue-license lppl + +name bgreek +category Package +revision 15878 +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. +runfiles size=396 + RELOC/fonts/tfm/public/bgreek/bgmc0500.tfm + RELOC/fonts/tfm/public/bgreek/bgmc0600.tfm + RELOC/fonts/tfm/public/bgreek/bgmc0700.tfm + RELOC/fonts/tfm/public/bgreek/bgmc0800.tfm + RELOC/fonts/tfm/public/bgreek/bgmc0900.tfm + RELOC/fonts/tfm/public/bgreek/bgmc1000.tfm + RELOC/fonts/tfm/public/bgreek/bgmc1095.tfm + RELOC/fonts/tfm/public/bgreek/bgmc1200.tfm + RELOC/fonts/tfm/public/bgreek/bgmc1440.tfm + RELOC/fonts/tfm/public/bgreek/bgmc1728.tfm + RELOC/fonts/tfm/public/bgreek/bgmc2074.tfm + RELOC/fonts/tfm/public/bgreek/bgmc2488.tfm + RELOC/fonts/tfm/public/bgreek/bgmn0500.tfm + RELOC/fonts/tfm/public/bgreek/bgmn0600.tfm + RELOC/fonts/tfm/public/bgreek/bgmn0700.tfm + RELOC/fonts/tfm/public/bgreek/bgmn0800.tfm + RELOC/fonts/tfm/public/bgreek/bgmn0900.tfm + RELOC/fonts/tfm/public/bgreek/bgmn1000.tfm + RELOC/fonts/tfm/public/bgreek/bgmn1095.tfm + RELOC/fonts/tfm/public/bgreek/bgmn1200.tfm + RELOC/fonts/tfm/public/bgreek/bgmn1440.tfm + RELOC/fonts/tfm/public/bgreek/bgmn1728.tfm + RELOC/fonts/tfm/public/bgreek/bgmn2074.tfm + RELOC/fonts/tfm/public/bgreek/bgmn2488.tfm + RELOC/fonts/tfm/public/bgreek/bgmo0500.tfm + RELOC/fonts/tfm/public/bgreek/bgmo0600.tfm + RELOC/fonts/tfm/public/bgreek/bgmo0700.tfm + RELOC/fonts/tfm/public/bgreek/bgmo0800.tfm + RELOC/fonts/tfm/public/bgreek/bgmo0900.tfm + RELOC/fonts/tfm/public/bgreek/bgmo1000.tfm + RELOC/fonts/tfm/public/bgreek/bgmo1095.tfm + RELOC/fonts/tfm/public/bgreek/bgmo1200.tfm + RELOC/fonts/tfm/public/bgreek/bgmo1440.tfm + RELOC/fonts/tfm/public/bgreek/bgmo1728.tfm + RELOC/fonts/tfm/public/bgreek/bgmo2074.tfm + RELOC/fonts/tfm/public/bgreek/bgmo2488.tfm + RELOC/fonts/tfm/public/bgreek/bgxc0500.tfm + RELOC/fonts/tfm/public/bgreek/bgxc0600.tfm + RELOC/fonts/tfm/public/bgreek/bgxc0700.tfm + RELOC/fonts/tfm/public/bgreek/bgxc0800.tfm + RELOC/fonts/tfm/public/bgreek/bgxc0900.tfm + RELOC/fonts/tfm/public/bgreek/bgxc1000.tfm + RELOC/fonts/tfm/public/bgreek/bgxc1095.tfm + RELOC/fonts/tfm/public/bgreek/bgxc1200.tfm + RELOC/fonts/tfm/public/bgreek/bgxc1440.tfm + RELOC/fonts/tfm/public/bgreek/bgxc1728.tfm + RELOC/fonts/tfm/public/bgreek/bgxc2074.tfm + RELOC/fonts/tfm/public/bgreek/bgxc2488.tfm + RELOC/fonts/tfm/public/bgreek/bgxn0500.tfm + RELOC/fonts/tfm/public/bgreek/bgxn0600.tfm + RELOC/fonts/tfm/public/bgreek/bgxn0700.tfm + RELOC/fonts/tfm/public/bgreek/bgxn0800.tfm + RELOC/fonts/tfm/public/bgreek/bgxn0900.tfm + RELOC/fonts/tfm/public/bgreek/bgxn1000.tfm + RELOC/fonts/tfm/public/bgreek/bgxn1095.tfm + RELOC/fonts/tfm/public/bgreek/bgxn1200.tfm + RELOC/fonts/tfm/public/bgreek/bgxn1440.tfm + RELOC/fonts/tfm/public/bgreek/bgxn1728.tfm + RELOC/fonts/tfm/public/bgreek/bgxn2074.tfm + RELOC/fonts/tfm/public/bgreek/bgxn2488.tfm + RELOC/fonts/tfm/public/bgreek/bgxo0500.tfm + RELOC/fonts/tfm/public/bgreek/bgxo0600.tfm + RELOC/fonts/tfm/public/bgreek/bgxo0700.tfm + RELOC/fonts/tfm/public/bgreek/bgxo0800.tfm + RELOC/fonts/tfm/public/bgreek/bgxo0900.tfm + RELOC/fonts/tfm/public/bgreek/bgxo1000.tfm + RELOC/fonts/tfm/public/bgreek/bgxo1095.tfm + RELOC/fonts/tfm/public/bgreek/bgxo1200.tfm + RELOC/fonts/tfm/public/bgreek/bgxo1440.tfm + RELOC/fonts/tfm/public/bgreek/bgxo1728.tfm + RELOC/fonts/tfm/public/bgreek/bgxo2074.tfm + RELOC/fonts/tfm/public/bgreek/bgxo2488.tfm + RELOC/fonts/tfm/public/bgreek/bqmc0500.tfm + RELOC/fonts/tfm/public/bgreek/bqmc0600.tfm + RELOC/fonts/tfm/public/bgreek/bqmc0700.tfm + RELOC/fonts/tfm/public/bgreek/bqmc0800.tfm + RELOC/fonts/tfm/public/bgreek/bqmc0900.tfm + RELOC/fonts/tfm/public/bgreek/bqmc1000.tfm + RELOC/fonts/tfm/public/bgreek/bqmc1095.tfm + RELOC/fonts/tfm/public/bgreek/bqmc1200.tfm + RELOC/fonts/tfm/public/bgreek/bqmc1440.tfm + RELOC/fonts/tfm/public/bgreek/bqmc1728.tfm + RELOC/fonts/tfm/public/bgreek/bqmc2074.tfm + RELOC/fonts/tfm/public/bgreek/bqmc2488.tfm + RELOC/fonts/tfm/public/bgreek/bqmn0500.tfm + RELOC/fonts/tfm/public/bgreek/bqmn0600.tfm + RELOC/fonts/tfm/public/bgreek/bqmn0700.tfm + RELOC/fonts/tfm/public/bgreek/bqmn0800.tfm + RELOC/fonts/tfm/public/bgreek/bqmn0900.tfm + RELOC/fonts/tfm/public/bgreek/bqmn1000.tfm + RELOC/fonts/tfm/public/bgreek/bqmn1095.tfm + RELOC/fonts/tfm/public/bgreek/bqmn1200.tfm + RELOC/fonts/tfm/public/bgreek/bqmn1440.tfm + RELOC/fonts/tfm/public/bgreek/bqmn1728.tfm + RELOC/fonts/tfm/public/bgreek/bqmn2074.tfm + RELOC/fonts/tfm/public/bgreek/bqmn2488.tfm + RELOC/fonts/tfm/public/bgreek/bqmo0500.tfm + RELOC/fonts/tfm/public/bgreek/bqmo0600.tfm + RELOC/fonts/tfm/public/bgreek/bqmo0700.tfm + RELOC/fonts/tfm/public/bgreek/bqmo0800.tfm + RELOC/fonts/tfm/public/bgreek/bqmo0900.tfm + RELOC/fonts/tfm/public/bgreek/bqmo1000.tfm + RELOC/fonts/tfm/public/bgreek/bqmo1095.tfm + RELOC/fonts/tfm/public/bgreek/bqmo1200.tfm + RELOC/fonts/tfm/public/bgreek/bqmo1440.tfm + RELOC/fonts/tfm/public/bgreek/bqmo1728.tfm + RELOC/fonts/tfm/public/bgreek/bqmo2074.tfm + RELOC/fonts/tfm/public/bgreek/bqmo2488.tfm + RELOC/fonts/tfm/public/bgreek/bqxc0500.tfm + RELOC/fonts/tfm/public/bgreek/bqxc0600.tfm + RELOC/fonts/tfm/public/bgreek/bqxc0700.tfm + RELOC/fonts/tfm/public/bgreek/bqxc0800.tfm + RELOC/fonts/tfm/public/bgreek/bqxc0900.tfm + RELOC/fonts/tfm/public/bgreek/bqxc1000.tfm + RELOC/fonts/tfm/public/bgreek/bqxc1095.tfm + RELOC/fonts/tfm/public/bgreek/bqxc1200.tfm + RELOC/fonts/tfm/public/bgreek/bqxc1440.tfm + RELOC/fonts/tfm/public/bgreek/bqxc1728.tfm + RELOC/fonts/tfm/public/bgreek/bqxc2074.tfm + RELOC/fonts/tfm/public/bgreek/bqxc2488.tfm + RELOC/fonts/tfm/public/bgreek/bqxn0500.tfm + RELOC/fonts/tfm/public/bgreek/bqxn0600.tfm + RELOC/fonts/tfm/public/bgreek/bqxn0700.tfm + RELOC/fonts/tfm/public/bgreek/bqxn0800.tfm + RELOC/fonts/tfm/public/bgreek/bqxn0900.tfm + RELOC/fonts/tfm/public/bgreek/bqxn1000.tfm + RELOC/fonts/tfm/public/bgreek/bqxn1095.tfm + RELOC/fonts/tfm/public/bgreek/bqxn1200.tfm + RELOC/fonts/tfm/public/bgreek/bqxn1440.tfm + RELOC/fonts/tfm/public/bgreek/bqxn1728.tfm + RELOC/fonts/tfm/public/bgreek/bqxn2074.tfm + RELOC/fonts/tfm/public/bgreek/bqxn2488.tfm + RELOC/fonts/tfm/public/bgreek/bqxo0500.tfm + RELOC/fonts/tfm/public/bgreek/bqxo0600.tfm + RELOC/fonts/tfm/public/bgreek/bqxo0700.tfm + RELOC/fonts/tfm/public/bgreek/bqxo0800.tfm + RELOC/fonts/tfm/public/bgreek/bqxo0900.tfm + RELOC/fonts/tfm/public/bgreek/bqxo1000.tfm + RELOC/fonts/tfm/public/bgreek/bqxo1095.tfm + RELOC/fonts/tfm/public/bgreek/bqxo1200.tfm + RELOC/fonts/tfm/public/bgreek/bqxo1440.tfm + RELOC/fonts/tfm/public/bgreek/bqxo1728.tfm + RELOC/fonts/tfm/public/bgreek/bqxo2074.tfm + RELOC/fonts/tfm/public/bgreek/bqxo2488.tfm + RELOC/fonts/vf/public/bgreek/bgmc0500.vf + RELOC/fonts/vf/public/bgreek/bgmc0600.vf + RELOC/fonts/vf/public/bgreek/bgmc0700.vf + RELOC/fonts/vf/public/bgreek/bgmc0800.vf + RELOC/fonts/vf/public/bgreek/bgmc0900.vf + RELOC/fonts/vf/public/bgreek/bgmc1000.vf + RELOC/fonts/vf/public/bgreek/bgmc1095.vf + RELOC/fonts/vf/public/bgreek/bgmc1200.vf + RELOC/fonts/vf/public/bgreek/bgmc1440.vf + RELOC/fonts/vf/public/bgreek/bgmc1728.vf + RELOC/fonts/vf/public/bgreek/bgmc2074.vf + RELOC/fonts/vf/public/bgreek/bgmc2488.vf + RELOC/fonts/vf/public/bgreek/bgmn0500.vf + RELOC/fonts/vf/public/bgreek/bgmn0600.vf + RELOC/fonts/vf/public/bgreek/bgmn0700.vf + RELOC/fonts/vf/public/bgreek/bgmn0800.vf + RELOC/fonts/vf/public/bgreek/bgmn0900.vf + RELOC/fonts/vf/public/bgreek/bgmn1000.vf + RELOC/fonts/vf/public/bgreek/bgmn1095.vf + RELOC/fonts/vf/public/bgreek/bgmn1200.vf + RELOC/fonts/vf/public/bgreek/bgmn1440.vf + RELOC/fonts/vf/public/bgreek/bgmn1728.vf + RELOC/fonts/vf/public/bgreek/bgmn2074.vf + RELOC/fonts/vf/public/bgreek/bgmn2488.vf + RELOC/fonts/vf/public/bgreek/bgmo0500.vf + RELOC/fonts/vf/public/bgreek/bgmo0600.vf + RELOC/fonts/vf/public/bgreek/bgmo0700.vf + RELOC/fonts/vf/public/bgreek/bgmo0800.vf + RELOC/fonts/vf/public/bgreek/bgmo0900.vf + RELOC/fonts/vf/public/bgreek/bgmo1000.vf + RELOC/fonts/vf/public/bgreek/bgmo1095.vf + RELOC/fonts/vf/public/bgreek/bgmo1200.vf + RELOC/fonts/vf/public/bgreek/bgmo1440.vf + RELOC/fonts/vf/public/bgreek/bgmo1728.vf + RELOC/fonts/vf/public/bgreek/bgmo2074.vf + RELOC/fonts/vf/public/bgreek/bgmo2488.vf + RELOC/fonts/vf/public/bgreek/bgxc0500.vf + RELOC/fonts/vf/public/bgreek/bgxc0600.vf + RELOC/fonts/vf/public/bgreek/bgxc0700.vf + RELOC/fonts/vf/public/bgreek/bgxc0800.vf + RELOC/fonts/vf/public/bgreek/bgxc0900.vf + RELOC/fonts/vf/public/bgreek/bgxc1000.vf + RELOC/fonts/vf/public/bgreek/bgxc1095.vf + RELOC/fonts/vf/public/bgreek/bgxc1200.vf + RELOC/fonts/vf/public/bgreek/bgxc1440.vf + RELOC/fonts/vf/public/bgreek/bgxc1728.vf + RELOC/fonts/vf/public/bgreek/bgxc2074.vf + RELOC/fonts/vf/public/bgreek/bgxc2488.vf + RELOC/fonts/vf/public/bgreek/bgxn0500.vf + RELOC/fonts/vf/public/bgreek/bgxn0600.vf + RELOC/fonts/vf/public/bgreek/bgxn0700.vf + RELOC/fonts/vf/public/bgreek/bgxn0800.vf + RELOC/fonts/vf/public/bgreek/bgxn0900.vf + RELOC/fonts/vf/public/bgreek/bgxn1000.vf + RELOC/fonts/vf/public/bgreek/bgxn1095.vf + RELOC/fonts/vf/public/bgreek/bgxn1200.vf + RELOC/fonts/vf/public/bgreek/bgxn1440.vf + RELOC/fonts/vf/public/bgreek/bgxn1728.vf + RELOC/fonts/vf/public/bgreek/bgxn2074.vf + RELOC/fonts/vf/public/bgreek/bgxn2488.vf + RELOC/fonts/vf/public/bgreek/bgxo0500.vf + RELOC/fonts/vf/public/bgreek/bgxo0600.vf + RELOC/fonts/vf/public/bgreek/bgxo0700.vf + RELOC/fonts/vf/public/bgreek/bgxo0800.vf + RELOC/fonts/vf/public/bgreek/bgxo0900.vf + RELOC/fonts/vf/public/bgreek/bgxo1000.vf + RELOC/fonts/vf/public/bgreek/bgxo1095.vf + RELOC/fonts/vf/public/bgreek/bgxo1200.vf + RELOC/fonts/vf/public/bgreek/bgxo1440.vf + RELOC/fonts/vf/public/bgreek/bgxo1728.vf + RELOC/fonts/vf/public/bgreek/bgxo2074.vf + RELOC/fonts/vf/public/bgreek/bgxo2488.vf + RELOC/fonts/vf/public/bgreek/bqmc0500.vf + RELOC/fonts/vf/public/bgreek/bqmc0600.vf + RELOC/fonts/vf/public/bgreek/bqmc0700.vf + RELOC/fonts/vf/public/bgreek/bqmc0800.vf + RELOC/fonts/vf/public/bgreek/bqmc0900.vf + RELOC/fonts/vf/public/bgreek/bqmc1000.vf + RELOC/fonts/vf/public/bgreek/bqmc1095.vf + RELOC/fonts/vf/public/bgreek/bqmc1200.vf + RELOC/fonts/vf/public/bgreek/bqmc1440.vf + RELOC/fonts/vf/public/bgreek/bqmc1728.vf + RELOC/fonts/vf/public/bgreek/bqmc2074.vf + RELOC/fonts/vf/public/bgreek/bqmc2488.vf + RELOC/fonts/vf/public/bgreek/bqmn0500.vf + RELOC/fonts/vf/public/bgreek/bqmn0600.vf + RELOC/fonts/vf/public/bgreek/bqmn0700.vf + RELOC/fonts/vf/public/bgreek/bqmn0800.vf + RELOC/fonts/vf/public/bgreek/bqmn0900.vf + RELOC/fonts/vf/public/bgreek/bqmn1000.vf + RELOC/fonts/vf/public/bgreek/bqmn1095.vf + RELOC/fonts/vf/public/bgreek/bqmn1200.vf + RELOC/fonts/vf/public/bgreek/bqmn1440.vf + RELOC/fonts/vf/public/bgreek/bqmn1728.vf + RELOC/fonts/vf/public/bgreek/bqmn2074.vf + RELOC/fonts/vf/public/bgreek/bqmn2488.vf + RELOC/fonts/vf/public/bgreek/bqmo0500.vf + RELOC/fonts/vf/public/bgreek/bqmo0600.vf + RELOC/fonts/vf/public/bgreek/bqmo0700.vf + RELOC/fonts/vf/public/bgreek/bqmo0800.vf + RELOC/fonts/vf/public/bgreek/bqmo0900.vf + RELOC/fonts/vf/public/bgreek/bqmo1000.vf + RELOC/fonts/vf/public/bgreek/bqmo1095.vf + RELOC/fonts/vf/public/bgreek/bqmo1200.vf + RELOC/fonts/vf/public/bgreek/bqmo1440.vf + RELOC/fonts/vf/public/bgreek/bqmo1728.vf + RELOC/fonts/vf/public/bgreek/bqmo2074.vf + RELOC/fonts/vf/public/bgreek/bqmo2488.vf + RELOC/fonts/vf/public/bgreek/bqxc0500.vf + RELOC/fonts/vf/public/bgreek/bqxc0600.vf + RELOC/fonts/vf/public/bgreek/bqxc0700.vf + RELOC/fonts/vf/public/bgreek/bqxc0800.vf + RELOC/fonts/vf/public/bgreek/bqxc0900.vf + RELOC/fonts/vf/public/bgreek/bqxc1000.vf + RELOC/fonts/vf/public/bgreek/bqxc1095.vf + RELOC/fonts/vf/public/bgreek/bqxc1200.vf + RELOC/fonts/vf/public/bgreek/bqxc1440.vf + RELOC/fonts/vf/public/bgreek/bqxc1728.vf + RELOC/fonts/vf/public/bgreek/bqxc2074.vf + RELOC/fonts/vf/public/bgreek/bqxc2488.vf + RELOC/fonts/vf/public/bgreek/bqxn0500.vf + RELOC/fonts/vf/public/bgreek/bqxn0600.vf + RELOC/fonts/vf/public/bgreek/bqxn0700.vf + RELOC/fonts/vf/public/bgreek/bqxn0800.vf + RELOC/fonts/vf/public/bgreek/bqxn0900.vf + RELOC/fonts/vf/public/bgreek/bqxn1000.vf + RELOC/fonts/vf/public/bgreek/bqxn1095.vf + RELOC/fonts/vf/public/bgreek/bqxn1200.vf + RELOC/fonts/vf/public/bgreek/bqxn1440.vf + RELOC/fonts/vf/public/bgreek/bqxn1728.vf + RELOC/fonts/vf/public/bgreek/bqxn2074.vf + RELOC/fonts/vf/public/bgreek/bqxn2488.vf + RELOC/fonts/vf/public/bgreek/bqxo0500.vf + RELOC/fonts/vf/public/bgreek/bqxo0600.vf + RELOC/fonts/vf/public/bgreek/bqxo0700.vf + RELOC/fonts/vf/public/bgreek/bqxo0800.vf + RELOC/fonts/vf/public/bgreek/bqxo0900.vf + RELOC/fonts/vf/public/bgreek/bqxo1000.vf + RELOC/fonts/vf/public/bgreek/bqxo1095.vf + RELOC/fonts/vf/public/bgreek/bqxo1200.vf + RELOC/fonts/vf/public/bgreek/bqxo1440.vf + RELOC/fonts/vf/public/bgreek/bqxo1728.vf + RELOC/fonts/vf/public/bgreek/bqxo2074.vf + RELOC/fonts/vf/public/bgreek/bqxo2488.vf + RELOC/tex/latex/bgreek/bcgcmr.fd + RELOC/tex/latex/bgreek/bcgenc.def + RELOC/tex/latex/bgreek/bcglmr.fd + RELOC/tex/latex/bgreek/bcqcmr.fd + RELOC/tex/latex/bgreek/bcqenc.def + RELOC/tex/latex/bgreek/bcqlmr.fd + RELOC/tex/latex/bgreek/bgfonts.tex + 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-license lppl +catalogue-version 0.3 + +name bgteubner +category Package +revision 25892 +shortdesc Class for producing books for the publisher "Teubner Verlag". +relocated 1 +longdesc The bgteubner document class has been programmed by order of +longdesc the Teubner Verlag, Wiesbaden, Germany, to ensure that books of +longdesc this publisher have a unique layout. Unfortunately, most of the +longdesc documentation is only available in German. Since the document +longdesc class is intended to generate a unique layout, many things +longdesc (layout etc.) are fixed and cannot be altered by the user. If +longdesc you want to use the document class for another purpose than +longdesc publishing with the Teubner Verlag, this may 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 + 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/Makefile.hhsubfigure + RELOC/doc/latex/bgteubner/Makefile.source + RELOC/doc/latex/bgteubner/Makefile.src + RELOC/doc/latex/bgteubner/README + RELOC/doc/latex/bgteubner/README.hhsubfigure + RELOC/doc/latex/bgteubner/ToDo + RELOC/doc/latex/bgteubner/anhang.tex + RELOC/doc/latex/bgteubner/befehlsreferenz.tex + RELOC/doc/latex/bgteubner/beispiel1.tex + RELOC/doc/latex/bgteubner/bgteubner-17x24-cm.tex + RELOC/doc/latex/bgteubner/bgteubner-17x24-mathtime.tex + RELOC/doc/latex/bgteubner/bgteubner-17x24-times.tex + RELOC/doc/latex/bgteubner/bgteubner-a5-cm.tex + RELOC/doc/latex/bgteubner/bgteubner-a5-times.tex + RELOC/doc/latex/bgteubner/bgteubner-with-hyperref.tex + RELOC/doc/latex/bgteubner/bgteubner.pdf + RELOC/doc/latex/bgteubner/bgteubner.tex + RELOC/doc/latex/bgteubner/bgteucls.pdf + RELOC/doc/latex/bgteubner/bgteuversion.tex + RELOC/doc/latex/bgteubner/bild4c.png + RELOC/doc/latex/bgteubner/bild_ganz.eps + RELOC/doc/latex/bgteubner/bild_ganz.fig + RELOC/doc/latex/bgteubner/bild_ganz.pdf + RELOC/doc/latex/bgteubner/bild_mitte.eps + RELOC/doc/latex/bgteubner/bild_mitte.fig + RELOC/doc/latex/bgteubner/bild_mitte.pdf + RELOC/doc/latex/bgteubner/bild_oben.eps + RELOC/doc/latex/bgteubner/bild_oben.fig + RELOC/doc/latex/bgteubner/bild_oben.pdf + RELOC/doc/latex/bgteubner/bild_oben_unten.eps + RELOC/doc/latex/bgteubner/bild_oben_unten.fig + RELOC/doc/latex/bgteubner/bild_oben_unten.pdf + RELOC/doc/latex/bgteubner/bild_umflossen.eps + RELOC/doc/latex/bgteubner/bild_umflossen.fig + RELOC/doc/latex/bgteubner/bild_umflossen.pdf + RELOC/doc/latex/bgteubner/bild_unten.eps + RELOC/doc/latex/bgteubner/bild_unten.fig + RELOC/doc/latex/bgteubner/bild_unten.pdf + RELOC/doc/latex/bgteubner/bild_zu_lang.eps + RELOC/doc/latex/bgteubner/bild_zu_lang.fig + RELOC/doc/latex/bgteubner/bild_zu_lang.pdf + RELOC/doc/latex/bgteubner/bild_zu_lang2.eps + RELOC/doc/latex/bgteubner/bild_zu_lang2.fig + RELOC/doc/latex/bgteubner/bild_zu_lang2.pdf + RELOC/doc/latex/bgteubner/bilder.tex + RELOC/doc/latex/bgteubner/cdcover.tex + RELOC/doc/latex/bgteubner/checkliste.tex + RELOC/doc/latex/bgteubner/einleitung.tex + RELOC/doc/latex/bgteubner/formelzeichen.tex + RELOC/doc/latex/bgteubner/getversion.tex + RELOC/doc/latex/bgteubner/globales.tex + RELOC/doc/latex/bgteubner/hyphenation.tex + RELOC/doc/latex/bgteubner/index.tex + RELOC/doc/latex/bgteubner/installation.tex + RELOC/doc/latex/bgteubner/kapitel2.tex + RELOC/doc/latex/bgteubner/literatur.bib + RELOC/doc/latex/bgteubner/literatur.tex + RELOC/doc/latex/bgteubner/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 + RELOC/doc/latex/bgteubner/tex_bilder.tex + RELOC/doc/latex/bgteubner/tex_globales.tex + RELOC/doc/latex/bgteubner/tex_textelemente.tex + RELOC/doc/latex/bgteubner/tex_typographie.tex + RELOC/doc/latex/bgteubner/tex_verzeichnisse.tex + RELOC/doc/latex/bgteubner/textelemente.tex + RELOC/doc/latex/bgteubner/times-ja2.png + RELOC/doc/latex/bgteubner/times-nein2.png + RELOC/doc/latex/bgteubner/umbruch1.pdf + RELOC/doc/latex/bgteubner/umbruch1.tex + RELOC/doc/latex/bgteubner/umbruch1a.pdf + RELOC/doc/latex/bgteubner/umbruch1a.tex + RELOC/doc/latex/bgteubner/umbruch2.pdf + RELOC/doc/latex/bgteubner/umbruch2.tex + RELOC/doc/latex/bgteubner/umbruch2a.pdf + RELOC/doc/latex/bgteubner/umbruch2a.tex + RELOC/doc/latex/bgteubner/umbruch3.pdf + RELOC/doc/latex/bgteubner/umbruch3.tex + RELOC/doc/latex/bgteubner/umbruch3a.pdf + RELOC/doc/latex/bgteubner/umbruch3a.tex + RELOC/doc/latex/bgteubner/usefiles.txt + RELOC/doc/latex/bgteubner/verzeichnisse.tex + RELOC/doc/latex/bgteubner/vorwort.tex +srcfiles size=92 + RELOC/source/latex/bgteubner/bgteucls.dtx + RELOC/source/latex/bgteubner/bgteucls.ins + RELOC/source/latex/bgteubner/hhsubfigure.dtx + RELOC/source/latex/bgteubner/hhsubfigure.ins +catalogue-ctan /macros/latex/contrib/bgteubner +catalogue-date 2013-10-30 13:49:16 +0100 +catalogue-license lppl +catalogue-version 2.02 + +name bguq +category Package +revision 27401 +shortdesc Improved quantifier stroke for Begriffsschrift packages. +relocated 1 +longdesc The font contains a single character: the Begriffsschrift +longdesc quantifier (in several sizes), as used to set the +longdesc Begriffsschrift (concept notation) of Frege. The font is not +longdesc intended for end users; instead it is expected that it will be +longdesc used by other packages which implement the Begriffsschrift. An +longdesc (unofficial) modified version of Josh Parsons' begriff is +longdesc included as an example of implementation. +execute addMap bguq.map +runfiles size=43 + RELOC/fonts/map/dvips/bguq/bguq.map + RELOC/fonts/source/public/bguq/bguq.mf + RELOC/fonts/source/public/bguq/bguq10.mf + RELOC/fonts/source/public/bguq/bguq10t04.mf + RELOC/fonts/source/public/bguq/bguq10t05.mf + RELOC/fonts/source/public/bguq/bguq10t06.mf + RELOC/fonts/source/public/bguq/bguq10t07.mf + RELOC/fonts/source/public/bguq/bguq10t08.mf + RELOC/fonts/source/public/bguq/bguq10t09.mf + RELOC/fonts/source/public/bguq/bguq10t10.mf + RELOC/fonts/source/public/bguq/bguq10t11.mf + RELOC/fonts/source/public/bguq/bguq10t12.mf + RELOC/fonts/tfm/public/bguq/bguq10t04.tfm + RELOC/fonts/tfm/public/bguq/bguq10t05.tfm + RELOC/fonts/tfm/public/bguq/bguq10t06.tfm + RELOC/fonts/tfm/public/bguq/bguq10t07.tfm + RELOC/fonts/tfm/public/bguq/bguq10t08.tfm + RELOC/fonts/tfm/public/bguq/bguq10t09.tfm + RELOC/fonts/tfm/public/bguq/bguq10t10.tfm + RELOC/fonts/tfm/public/bguq/bguq10t11.tfm + RELOC/fonts/tfm/public/bguq/bguq10t12.tfm + RELOC/fonts/type1/public/bguq/bguq10t04.pfb + RELOC/fonts/type1/public/bguq/bguq10t05.pfb + RELOC/fonts/type1/public/bguq/bguq10t06.pfb + RELOC/fonts/type1/public/bguq/bguq10t07.pfb + RELOC/fonts/type1/public/bguq/bguq10t08.pfb + RELOC/fonts/type1/public/bguq/bguq10t09.pfb + RELOC/fonts/type1/public/bguq/bguq10t10.pfb + RELOC/fonts/type1/public/bguq/bguq10t11.pfb + RELOC/fonts/type1/public/bguq/bguq10t12.pfb + RELOC/tex/latex/bguq/Ubguq04.fd + RELOC/tex/latex/bguq/Ubguq05.fd + RELOC/tex/latex/bguq/Ubguq06.fd + RELOC/tex/latex/bguq/Ubguq07.fd + RELOC/tex/latex/bguq/Ubguq08.fd + RELOC/tex/latex/bguq/Ubguq09.fd + RELOC/tex/latex/bguq/Ubguq10.fd + RELOC/tex/latex/bguq/Ubguq11.fd + RELOC/tex/latex/bguq/Ubguq12.fd + RELOC/tex/latex/bguq/begriff-bguq.sty + RELOC/tex/latex/bguq/bguq.cfg + RELOC/tex/latex/bguq/bguq.sty +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-ctan /fonts/bguq +catalogue-date 2014-04-07 13:51:00 +0200 +catalogue-license lppl +catalogue-version 0.4 + +name bhcexam +category Package +revision 34360 +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 +srcfiles size=7 + RELOC/source/latex/bhcexam/BHCexam.dtx + RELOC/source/latex/bhcexam/BHCexam.ins +catalogue-ctan /macros/latex/contrib/bhcexam +catalogue-date 2014-06-23 06:40:38 +0200 +catalogue-license lppl +catalogue-version 0.3 + +name bibarts +category Package +revision 15878 +shortdesc "Arts"-style bibliographical information. +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 + 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 +catalogue-ctan /macros/latex/contrib/bibarts +catalogue-date 2012-04-10 13:05:36 +0200 +catalogue-license gpl + +name bibexport +category Package +revision 29349 +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. +depend bibexport.ARCH +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-license lppl1.3 +catalogue-version 3.01 + +name bibexport.i386-linux +category Package +revision 16219 +shortdesc i386-linux files of bibexport +binfiles arch=i386-linux size=1 + bin/i386-linux/bibexport + +name bib-fr +category Package +revision 15878 +shortdesc French translation of classical BibTeX styles +relocated 1 +longdesc These files are French translations of the classical BibTeX +longdesc style files. The translations can easily be modified by simply +longdesc redefining FUNCTIONs named fr.*, at the beginning (lines 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 + +name bibhtml +category Package +revision 31607 +shortdesc BibTeX support for HTML files. +relocated 1 +longdesc Bibhtml consists of a Perl script and a set of BibTeX style +longdesc files, which together allow you to output a bibliography as a +longdesc collection of HTML files. The references in the text are linked +longdesc directly to the corresponding bibliography entry, and if a URL +longdesc is defined in the entry within the BibTeX database file, then +longdesc the generated bibliography entry is linked to this. The package +longdesc provides three different style files derived from each of the +longdesc standard plain.bst and alpha.bst, as well as two style files +longdesc derived from abbrv.bst and unsrt.bst (i.e., eight in total). +runfiles size=57 + RELOC/bibtex/bst/bibhtml/abbrvhtml.bst + RELOC/bibtex/bst/bibhtml/alphahtml.bst + RELOC/bibtex/bst/bibhtml/alphahtmldate.bst + RELOC/bibtex/bst/bibhtml/alphahtmldater.bst + RELOC/bibtex/bst/bibhtml/plainhtml.bst + RELOC/bibtex/bst/bibhtml/plainhtmldate.bst + RELOC/bibtex/bst/bibhtml/plainhtmldater.bst + RELOC/bibtex/bst/bibhtml/unsrthtml.bst +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-license gpl +catalogue-version 2.0.2 + +name biblatex-anonymous +category Package +revision 35491 +shortdesc A tool to manage anonymous work with biblatex. +relocated 1 +longdesc The package provides tools to help manage anonymous work with +longdesc biblatex. It will be useful, for example, in history or +longdesc classical philology. +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 + RELOC/doc/latex/biblatex-anonymous/biblatex-anonymous.tex + RELOC/doc/latex/biblatex-anonymous/latexmkrc + RELOC/doc/latex/biblatex-anonymous/makefile +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-anonymous +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.3 +catalogue-version 2.1.0 + +name biblatex-apa +category Package +revision 36124 +shortdesc Biblatex citation and reference style for APA. +relocated 1 +longdesc This is a fairly complete biblatex style (citations and +longdesc references) for APA (American Psychological Association) +longdesc publications. It implements and automates most of the +longdesc guidelines in the APA 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 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 + RELOC/tex/latex/biblatex-apa/american-apa.lbx + RELOC/tex/latex/biblatex-apa/apa.bbx + RELOC/tex/latex/biblatex-apa/apa.cbx + RELOC/tex/latex/biblatex-apa/apa.dbx + RELOC/tex/latex/biblatex-apa/austrian-apa.lbx + RELOC/tex/latex/biblatex-apa/brazilian-apa.lbx + RELOC/tex/latex/biblatex-apa/british-apa.lbx + RELOC/tex/latex/biblatex-apa/dutch-apa.lbx + RELOC/tex/latex/biblatex-apa/english-apa.lbx + RELOC/tex/latex/biblatex-apa/french-apa.lbx + RELOC/tex/latex/biblatex-apa/german-apa.lbx + RELOC/tex/latex/biblatex-apa/greek-apa.lbx + RELOC/tex/latex/biblatex-apa/italian-apa.lbx + RELOC/tex/latex/biblatex-apa/naustrian-apa.lbx + RELOC/tex/latex/biblatex-apa/ngerman-apa.lbx + RELOC/tex/latex/biblatex-apa/norsk-apa.lbx + RELOC/tex/latex/biblatex-apa/norwegian-apa.lbx + RELOC/tex/latex/biblatex-apa/nynorsk-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 +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 + +name biblatex-bookinarticle +category Package +revision 36218 +shortdesc Manage book edited in article. +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 + RELOC/doc/latex/biblatex-bookinarticle/documentation/biblatex-bookinarticle.tex + RELOC/doc/latex/biblatex-bookinarticle/documentation/example-bookinincollection.bib + RELOC/doc/latex/biblatex-bookinarticle/documentation/example.bib + RELOC/doc/latex/biblatex-bookinarticle/documentation/makefile + RELOC/doc/latex/biblatex-bookinarticle/makefile +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bookinarticle +catalogue-date 2015-02-05 19:25:52 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1.2 + +name biblatex-bwl +category Package +revision 26556 +shortdesc Biblatex citations for FU Berlin. +relocated 1 +longdesc The bundle provides a set of biblatex implementations of +longdesc bibliography and citation styles for the Business +longdesc Administration Department of the Free University of Berlin. +runfiles size=2 + RELOC/tex/latex/biblatex-bwl/bwl-FU.bbx + RELOC/tex/latex/biblatex-bwl/bwl-FU.cbx +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.tex +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-bwl +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.02 + +name biblatex-caspervector +category Package +revision 37600 +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 + 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 +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-caspervector +catalogue-date 2015-06-18 15:07:31 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex chinese +catalogue-version 0.2.2 + +name biblatex-chem +category Package +revision 35614 +shortdesc A set of biblatex implementations of chemistry-related bibliography styles. +relocated 1 +longdesc The bundle offers a set of styles to allow chemists to use +longdesc biblatex. The package has complete styles for: all ACS +longdesc journals; RSC journals using standard (Chem. Commun.) style; +longdesc and Angewandte Chem. style, (thus covering a wide range of +longdesc journals). A comprehensive set of examples of use is included. +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 + RELOC/doc/latex/biblatex-chem/biblatex-chem-acs.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem-acs.tex + RELOC/doc/latex/biblatex-chem/biblatex-chem-angew.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem-angew.tex + RELOC/doc/latex/biblatex-chem/biblatex-chem-biochem.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem-biochem.tex + RELOC/doc/latex/biblatex-chem/biblatex-chem-rsc.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem-rsc.tex + RELOC/doc/latex/biblatex-chem/biblatex-chem.bib + RELOC/doc/latex/biblatex-chem/biblatex-chem.pdf + RELOC/doc/latex/biblatex-chem/biblatex-chem.tex +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chem +catalogue-date 2014-11-18 11:22:28 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1m + +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 + 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-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-british.lbx + RELOC/tex/latex/biblatex-chicago/cms-finnish.lbx + RELOC/tex/latex/biblatex-chicago/cms-french.lbx + RELOC/tex/latex/biblatex-chicago/cms-german.lbx + RELOC/tex/latex/biblatex-chicago/cms-icelandic.lbx + RELOC/tex/latex/biblatex-chicago/cms-ngerman.lbx + RELOC/tex/latex/biblatex-chicago/cms-norsk.lbx + RELOC/tex/latex/biblatex-chicago/cms-norwegian.lbx + RELOC/tex/latex/biblatex-chicago/cms-nynorsk.lbx +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 +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-chicago +catalogue-date 2014-08-22 11:24:45 +0200 +catalogue-license lppl1.3 +catalogue-version 0.9.9g + +name biblatex-dw +category Package +revision 31752 +shortdesc Humanities styles for biblatex. +relocated 1 +longdesc A small collection of styles for the biblatex package. It was +longdesc designed for citations in the humanities and offers some +longdesc features that are not provided by the standard biblatex styles. +longdesc The styles are dependent on biblatex (at least version 0.9b) +longdesc and cannot be used without it. Eine kleine Sammlung von Stilen +longdesc fur das Paket biblatex. Es ist auf geisteswissenschaftliche +longdesc Zitierweise zugeschnitten und bietet einige Funktionen, die von +longdesc den Standard-Stilen von biblatex nicht direkt bereitgestellt +longdesc werden. Biblatex-dw 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 + RELOC/doc/latex/biblatex-dw/CHANGES + RELOC/doc/latex/biblatex-dw/LIESMICH + RELOC/doc/latex/biblatex-dw/README + 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.tex + RELOC/doc/latex/biblatex-dw/de-biblatex-dw.pdf + RELOC/doc/latex/biblatex-dw/de-biblatex-dw.tex + RELOC/doc/latex/biblatex-dw/examples/de-authortitle-dw.pdf + RELOC/doc/latex/biblatex-dw/examples/de-authortitle-dw.tex + RELOC/doc/latex/biblatex-dw/examples/de-examples-dw.bib + RELOC/doc/latex/biblatex-dw/examples/de-footnote-dw.pdf + RELOC/doc/latex/biblatex-dw/examples/de-footnote-dw.tex + RELOC/doc/latex/biblatex-dw/examples/en-authortitle-dw.pdf + RELOC/doc/latex/biblatex-dw/examples/en-authortitle-dw.tex + RELOC/doc/latex/biblatex-dw/examples/en-footnote-dw.pdf + RELOC/doc/latex/biblatex-dw/examples/en-footnote-dw.tex + RELOC/doc/latex/biblatex-dw/examples/examples-dw.bib +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-dw +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.6a + +name biblatex-fiwi +category Package +revision 37721 +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 citations in German Humanities, especially film studies, and +longdesc offers some features that are not provided by the standard +longdesc biblatex styles. The style is highly optimized for documents +longdesc written in German, and the main documentation is only available +longdesc in German. +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 + RELOC/doc/latex/biblatex-fiwi/biblatex-fiwi.tex + 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.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/examples.bib +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-fiwi +catalogue-date 2015-06-30 13:33:30 +0200 +catalogue-license lppl1.3 +catalogue-topics biblatex humanities +catalogue-version 1.3 + +name biblatex-gost +category Package +revision 37210 +shortdesc Biblatex support for GOST standard bibliographies. +relocated 1 +longdesc The package provides biblatex support for Russian bibliography +longdesc style GOST 7.0.5-2008 +runfiles size=65 + RELOC/tex/latex/biblatex-gost/biblatex-gost.dbx + RELOC/tex/latex/biblatex-gost/biblatex-gost.def + RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.bbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.cbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic-min.dbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic.bbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic.cbx + RELOC/tex/latex/biblatex-gost/gost-alphabetic.dbx + RELOC/tex/latex/biblatex-gost/gost-authoryear-min.bbx + RELOC/tex/latex/biblatex-gost/gost-authoryear-min.cbx + RELOC/tex/latex/biblatex-gost/gost-authoryear-min.dbx + RELOC/tex/latex/biblatex-gost/gost-authoryear.bbx + RELOC/tex/latex/biblatex-gost/gost-authoryear.cbx + RELOC/tex/latex/biblatex-gost/gost-authoryear.dbx + RELOC/tex/latex/biblatex-gost/gost-footnote-min.bbx + RELOC/tex/latex/biblatex-gost/gost-footnote-min.cbx + RELOC/tex/latex/biblatex-gost/gost-footnote-min.dbx + RELOC/tex/latex/biblatex-gost/gost-footnote.bbx + RELOC/tex/latex/biblatex-gost/gost-footnote.cbx + RELOC/tex/latex/biblatex-gost/gost-footnote.dbx + RELOC/tex/latex/biblatex-gost/gost-inline-min.bbx + RELOC/tex/latex/biblatex-gost/gost-inline-min.cbx + RELOC/tex/latex/biblatex-gost/gost-inline-min.dbx + RELOC/tex/latex/biblatex-gost/gost-inline.bbx + RELOC/tex/latex/biblatex-gost/gost-inline.cbx + RELOC/tex/latex/biblatex-gost/gost-inline.dbx + RELOC/tex/latex/biblatex-gost/gost-numeric-min.bbx + RELOC/tex/latex/biblatex-gost/gost-numeric-min.cbx + RELOC/tex/latex/biblatex-gost/gost-numeric-min.dbx + RELOC/tex/latex/biblatex-gost/gost-numeric.bbx + RELOC/tex/latex/biblatex-gost/gost-numeric.cbx + RELOC/tex/latex/biblatex-gost/gost-numeric.dbx + RELOC/tex/latex/biblatex-gost/gost-standard.bbx + RELOC/tex/latex/biblatex-gost/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 +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 + +name biblatex-historian +category Package +revision 19787 +shortdesc A Biblatex style. +relocated 1 +longdesc A biblatex style, based on the Turabian Manual (a version of +longdesc Chicago). +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-license lppl +catalogue-version 0.4 + +name biblatex-ieee +category Package +revision 36497 +shortdesc Ieee style files for biblatex. +relocated 1 +longdesc This is a biblatex style that implements the bibliography style +longdesc of the IEEE for biblatex. The implementation follows standard +longdesc biblatex conventions, and can be used simply by loading +longdesc biblatex with the appropriate option: +longdesc \usepackage[style=ieee]{biblatex} A demonstration database is +longdesc provided to show how to format input for the style. +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 +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-ieee +catalogue-date 2015-03-12 17:10:44 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1k + +name biblatex-juradiss +category Package +revision 29252 +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 biblatex-dw and uses biber. +runfiles size=7 + RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.bbx + RELOC/tex/latex/biblatex-juradiss/biblatex-juradiss.cbx +docfiles size=60 + RELOC/doc/latex/biblatex-juradiss/README + RELOC/doc/latex/biblatex-juradiss/biber.conf + RELOC/doc/latex/biblatex-juradiss/biblatex-juradiss.pdf + RELOC/doc/latex/biblatex-juradiss/biblatex-juradiss.tex +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-juradiss +catalogue-date 2013-03-29 23:21:06 +0100 +catalogue-license lppl +catalogue-version 0.1g + +name biblatex-luh-ipw +category Package +revision 32180 +shortdesc Biblatex styles for social sciences. +relocated 1 +longdesc The bundle is a small collection of styles for biblatex. It was +longdesc designed for citations in the Humanities, following the +longdesc guidelines of style of the institutes for the social sciences +longdesc of the Leibniz University Hannover/LUH (especially the +longdesc Institute of Political Science). The bundle depends on biblatex +longdesc (version 1.1 at least) and cannot be used without it. +runfiles size=11 + RELOC/tex/latex/biblatex-luh-ipw/bbx/authoryear-luh-ipw.bbx + RELOC/tex/latex/biblatex-luh-ipw/bbx/standard-luh-ipw.bbx + RELOC/tex/latex/biblatex-luh-ipw/bbx/verbose-inote-luh-ipw.bbx + RELOC/tex/latex/biblatex-luh-ipw/cbx/authoryear-luh-ipw.cbx + RELOC/tex/latex/biblatex-luh-ipw/cbx/standard-luh-ipw.cbx + RELOC/tex/latex/biblatex-luh-ipw/cbx/verbose-inote-luh-ipw.cbx + RELOC/tex/latex/biblatex-luh-ipw/lbx/english-luh-ipw.lbx + RELOC/tex/latex/biblatex-luh-ipw/lbx/german-luh-ipw.lbx +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-license lppl1.3 +catalogue-version 0.3 + +name biblatex-manuscripts-philology +category Package +revision 37237 +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 + RELOC/tex/latex/biblatex-manuscripts-philology/english-manuscripts.lbx + RELOC/tex/latex/biblatex-manuscripts-philology/french-manuscripts.lbx + 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-ctan /macros/latex/contrib/biblatex-contrib/biblatex-manuscripts-philology +catalogue-date 2015-05-06 07:33:48 +0200 +catalogue-license lppl1.3 +catalogue-version 1.6.1a + +name biblatex-mla +category Package +revision 30249 +shortdesc MLA style files for biblatex. +relocated 1 +longdesc The package provides biblatex support for citations in the +longdesc format specified by the MLA handbook. +runfiles size=27 + 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.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-license lppl +catalogue-version 1.5 + +name biblatex-multiple-dm +category Package +revision 37081 +shortdesc Load multiple datamodels in biblatex +relocated 1 +longdesc The package adds the possibility to biblatex to load data +longdesc models from multiple sources. +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 +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/biblatex-multiple-dm.tex + RELOC/doc/latex/biblatex-multiple-dm/latexmkrc + RELOC/doc/latex/biblatex-multiple-dm/makefile +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-multiple-dm +catalogue-date 2015-04-26 21:10:32 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0.1 + +name biblatex-musuos +category Package +revision 24097 +shortdesc A biblatex style for citations in musuos.cls. +relocated 1 +longdesc The style is designed for use with the musuos class, but it +longdesc should be usable with other classes, too. +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-ctan /macros/latex/contrib/biblatex-contrib/biblatex-musuos +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name biblatex-nature +category Package +revision 30595 +shortdesc Biblatex support for Nature. +relocated 1 +longdesc The bundle offers styles that allow authors to use biblatex +longdesc when preparing papers for submission to the journal Nature. +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 + RELOC/doc/latex/biblatex-nature/biblatex-nature.bib + RELOC/doc/latex/biblatex-nature/biblatex-nature.pdf + RELOC/doc/latex/biblatex-nature/biblatex-nature.tex +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 + +name biblatex-nejm +category Package +revision 24011 +shortdesc Biblatex style for the New England Journal of Medicine (NEJM). +relocated 1 +longdesc This is a biblatex numeric style based on the design of the New +longdesc England Journal of Medicine (NEJM). +runfiles size=3 + 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-license lppl1.3 +catalogue-version 0.4 + +name biblatex-opcit-booktitle +category Package +revision 37733 +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 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 + 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.tex + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/latexmkrc + RELOC/doc/latex/biblatex-opcit-booktitle/documentation/makefile + RELOC/doc/latex/biblatex-opcit-booktitle/makefile +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-opcit-booktitle +catalogue-date 2015-07-02 16:01:04 +0200 +catalogue-license lppl1.3 +catalogue-topics biblio biblatex +catalogue-version 1.1.1 + +name biblatex-philosophy +category Package +revision 37527 +shortdesc Styles for using biblatex for work in philosophy. +relocated 1 +longdesc The bundle offers two styles - philosophy-classic and +longdesc philosophy-modern - that facilitate the production of two +longdesc different kinds of bibliography, based on the authoryear style, +longdesc with options and features to manage the information about the +longdesc translation of foreign texts or their reprints. Though the +longdesc package's default settings are based on the conventions used in +longdesc Italian publications, these styles can be used with every +longdesc language recognized by babel, possibly with some simple +longdesc redefinitions. +runfiles size=27 + RELOC/tex/latex/biblatex-philosophy/english-philosophy.lbx + RELOC/tex/latex/biblatex-philosophy/italian-philosophy.lbx + RELOC/tex/latex/biblatex-philosophy/philosophy-classic.bbx + RELOC/tex/latex/biblatex-philosophy/philosophy-classic.cbx + RELOC/tex/latex/biblatex-philosophy/philosophy-modern.bbx + RELOC/tex/latex/biblatex-philosophy/philosophy-modern.cbx + RELOC/tex/latex/biblatex-philosophy/philosophy-standard.bbx + RELOC/tex/latex/biblatex-philosophy/philosophy-verbose.bbx + RELOC/tex/latex/biblatex-philosophy/philosophy-verbose.cbx + RELOC/tex/latex/biblatex-philosophy/spanish-philosophy.lbx +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-license lppl1.3 +catalogue-topics humanities biblatex +catalogue-version 1.1 + +name biblatex-phys +category Package +revision 34035 +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 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. +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-license lppl1.3 +catalogue-version 0.9f + +name biblatex-publist +category Package +revision 35959 +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 + 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-ctan /macros/latex/contrib/biblatex-contrib/biblatex-publist +catalogue-date 2015-01-04 13:49:06 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name biblatex-realauthor +category Package +revision 37062 +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 + 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/makefile + RELOC/doc/latex/biblatex-realauthor/makefile +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-realauthor +catalogue-date 2015-04-26 20:06:01 +0200 +catalogue-license lppl1.3 +catalogue-version 2.2.0 + +name biblatex-science +category Package +revision 28970 +shortdesc Biblatex implementation of the Science bibliography style. +relocated 1 +longdesc The bundle offers styles that allow authors to use biblatex +longdesc when preparing papers for submission to the journal Science. +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 + +name biblatex-source-division +category Package +revision 37806 +shortdesc References by "division" in classical sources. +relocated 1 +longdesc The package enables the user to make reference to "division +longdesc marks" (such as book, chapter, section), in the document being +longdesc referenced, in addition to the page-based references that +longdesc BibTeX-based citations have always had. The citation is made in +longdesc the same way as the LaTeX standard, but what's inside the +longdesc square brackets may include the "division" specification, as in +longdesc \cite[()]{} +runfiles size=1 + RELOC/tex/latex/biblatex-source-division/biblatex-source-division.sty +docfiles size=27 + RELOC/doc/latex/biblatex-source-division/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.tex + RELOC/doc/latex/biblatex-source-division/issue1.pdf + RELOC/doc/latex/biblatex-source-division/latexmkrc + RELOC/doc/latex/biblatex-source-division/makefile +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-source-division +catalogue-date 2015-07-08 05:02:01 +0200 +catalogue-license lppl1.3 +catalogue-topics biblio biblatex +catalogue-version 2.3.1 + +name biblatex-subseries +category Package +revision 37415 +shortdesc Manages subseries with biblatex +relocated 1 +longdesc Some publishers organize book series with subseries. In this +longdesc case, two numbers are associated with one volume: the number +longdesc inside the series and the number inside the subseries. That is +longdesc the case of the series Corpus Scriptorium Christianorum +longdesc Orientalium published by Peeters. This package provides new +longdesc fields to manage such system. +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 + 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.tex + RELOC/doc/latex/biblatex-subseries/documentation/makefile + RELOC/doc/latex/biblatex-subseries/makefile +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-subseries +catalogue-date 2015-05-15 06:07:43 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0.0a + +name biblatex-swiss-legal +category Package +revision 32750 +shortdesc Bibliography and citation styles following Swiss legal practice. +relocated 1 +longdesc The package provides biblatex bibliography and citation styles +longdesc for documents written in accordance with Swiss legal citation +longdesc standards. Currently, the package is usable for French and +longdesc German documents. +runfiles size=28 + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-base.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-base.cbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-bibliography.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-bibliography.cbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-de.lbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-fr.lbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-general.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-general.cbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-longarticle.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-longarticle.cbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-shortarticle.bbx + RELOC/tex/latex/biblatex-swiss-legal/biblatex-swiss-legal-shortarticle.cbx +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-license lppl1.3 +catalogue-version 1.1.2a + +name biblatex +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. +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 + RELOC/doc/latex/biblatex-trad/biblatex-trad.tex +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 + +name biblatex-true-citepages-omit +category Package +revision 36047 +shortdesc Correction of some limitation of the citepages=omit option of biblatex styles +relocated 1 +longdesc This package deals with a limitation of the citepages=omit +longdesc option of the verbose family of biblatex citestyles. The option +longdesc works when you \cite[xx]{key}, but not when you \cite[\pno~xx, +longdesc some text]{key}. The package corrects this problem. +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 + 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.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 +catalogue-ctan /macros/latex/contrib/biblatex-contrib/biblatex-true-citepages-omit +catalogue-date 2015-01-13 06:25:52 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2.0a + +name bibleref-french +category Package +revision 35497 +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 +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.tex + RELOC/doc/latex/bibleref-french/bibleref-french.pdf + 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 +srcfiles size=12 + RELOC/source/latex/bibleref-french/bibleref-french.dtx + RELOC/source/latex/bibleref-french/bibleref-french.ins +catalogue-ctan /macros/latex/contrib/bibleref-french +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 2.3.1 + +name bibleref-german +category Package +revision 21923 +shortdesc German adaptation of bibleref. +relocated 1 +longdesc The package provides translations and various formats for the +longdesc use of bibleref in German documents. The German naming of the +longdesc bible books complies with the 'Loccumer Richtlinien' (Locum +longdesc guidelines). In addition, the Vulgate (Latin bible) is +longdesc supported. +runfiles size=17 + RELOC/tex/latex/bibleref-german/bibleref-german.sty +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/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.tex + RELOC/doc/latex/bibleref-german/en-bibleref-german.pdf + RELOC/doc/latex/bibleref-german/en-bibleref-german.tex +catalogue-ctan /macros/latex/contrib/bibleref-german +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0a + +name bibleref-lds +category Package +revision 25526 +shortdesc Bible references, including those to the scriptures of the Church of Jesus Christ of Latter Day Saints. +relocated 1 +longdesc The package extends the bibleref-mouth package to support +longdesc references to the scriptures of The Church of Jesus Christ of +longdesc Latter-day Saints (LDS). The package requires bibleref-mouth to +longdesc run, and its reference syntax is the same as that of the parent +longdesc package. +runfiles size=5 + RELOC/tex/latex/bibleref-lds/bibleref-lds.sty +docfiles size=74 + RELOC/doc/latex/bibleref-lds/README + RELOC/doc/latex/bibleref-lds/bibleref-lds.pdf +srcfiles size=11 + RELOC/source/latex/bibleref-lds/bibleref-lds.dtx + RELOC/source/latex/bibleref-lds/bibleref-lds.ins +catalogue-ctan /macros/latex/contrib/bibleref-lds +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name bibleref-mouth +category Package +revision 25527 +shortdesc Consistent formatting of Bible references. +relocated 1 +longdesc The package allows Bible references to be formatted in a +longdesc consistent way. It is similar to the bibleref package, except +longdesc that the formatting macros are all purely expandable -- that +longdesc is, they are all implemented in TeX's mouth. This means that +longdesc they can be used in any expandable context, such as an argument +longdesc to a \url command. +runfiles size=8 + RELOC/tex/latex/bibleref-mouth/bibleref-mouth.sty +docfiles size=102 + RELOC/doc/latex/bibleref-mouth/README + RELOC/doc/latex/bibleref-mouth/bibleref-mouth.pdf +srcfiles size=24 + RELOC/source/latex/bibleref-mouth/bibleref-mouth.dtx + RELOC/source/latex/bibleref-mouth/bibleref-mouth.ins +catalogue-ctan /macros/latex/contrib/bibleref-mouth +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name bibleref-parse +category Package +revision 22054 +shortdesc Specify Bible passages in human-readable format. +relocated 1 +longdesc The package parses Bible passages that are given in human +longdesc readable format. It accepts a wide variety of formats. This +longdesc allows for a simpler and more convenient interface to the +longdesc functionality of the bibleref package. +runfiles size=12 + RELOC/tex/latex/bibleref-parse/bibleref-parse.sty +docfiles size=35 + RELOC/doc/latex/bibleref-parse/README + RELOC/doc/latex/bibleref-parse/bibleref-parse.pdf + RELOC/doc/latex/bibleref-parse/bibleref-parse.tex +catalogue-ctan /macros/latex/contrib/bibleref-parse +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name bibleref +category Package +revision 21145 +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. +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 + +name biblist +category Package +revision 17116 +shortdesc Print a BibTeX database. +relocated 1 +longdesc The package provides the means of listing an entire BibTeX +longdesc database, avoiding the potentially large (macro) impact +longdesc associated with \nocite{*}. +runfiles size=6 + RELOC/tex/latex/biblist/biblist.sty +docfiles size=71 + RELOC/doc/latex/biblist/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.tex +catalogue-ctan /macros/latex209/contrib/biblist +catalogue-date 2012-04-27 14:49:55 +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 + +name bibtex +category Package +revision 37078 +shortdesc Process bibliographies for LaTeX, etc. +longdesc BibTeX allows the user to store his citation data in generic +longdesc form, while printing citations in a document in the form +longdesc specified by a BibTeX style, to be specified in the document +longdesc itself (one often needs a LaTeX citation-style package, such as +longdesc natbib as well). BibTeX itself is an ASCII-only program; there +longdesc is, however, a version that copes with 8-bit character sets. +longdesc However, BibTeX's facilities rapidly run out as one moves away +longdesc from simple ASCII (for example, in the various national sorting +longdesc rules for languages expressed in different parts of ISO-8859 -- +longdesc the "ISO Latin" series). For more flexibility, the user is +longdesc urged to consider using biber with biblatex to typeset its +longdesc output. In fact, it is best to avoid BibTeX in favour of biber +longdesc and biblatex, if at all possible. +depend kpathsea +depend bibtex.ARCH +runfiles size=48 + texmf-dist/bibtex/bib/base/xampl.bib + texmf-dist/bibtex/bst/base/abbrv.bst + texmf-dist/bibtex/bst/base/acm.bst + texmf-dist/bibtex/bst/base/alpha.bst + texmf-dist/bibtex/bst/base/apalike.bst + texmf-dist/bibtex/bst/base/ieeetr.bst + texmf-dist/bibtex/bst/base/plain.bst + texmf-dist/bibtex/bst/base/siam.bst + texmf-dist/bibtex/bst/base/unsrt.bst +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-ctan /biblio/bibtex/base +catalogue-date 2014-10-12 16:42:37 +0200 +catalogue-license knuth +catalogue-version 0.99d + +name bibtex.i386-linux +category Package +revision 36790 +shortdesc i386-linux files of bibtex +binfiles arch=i386-linux size=56 + bin/i386-linux/bibtex + +name bibtexu +category TLCore +revision 29743 +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 + +name bibtexu.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of bibtexu +binfiles arch=i386-linux size=4616 + 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 bibtopic +category Package +revision 15878 +shortdesc Include multiple bibliographies in a document. +relocated 1 +longdesc The package allows the user to include several bibliographies +longdesc covering different 'topics' or bibliographic material into a +longdesc document (e.g., one bibliography for primary literature and one +longdesc for secondary literature). The package provides commands to +longdesc include either all references from a .bib file, only the +longdesc references actually cited or those not cited in your document. +longdesc The user has to construct a separate .bib file for each +longdesc bibliographic 'topic', each of which will be processed +longdesc separately by BibTeX. If you want to have bibliographies +longdesc specific to one part of a document, see the packages bibunits +longdesc or chapterbib. +runfiles size=9 + RELOC/tex/latex/bibtopic/bibtopic.sty +docfiles size=66 + RELOC/doc/latex/bibtopic/README + RELOC/doc/latex/bibtopic/articles.bib + RELOC/doc/latex/bibtopic/bibtopic.pdf + RELOC/doc/latex/bibtopic/books.bib + RELOC/doc/latex/bibtopic/sample.tex +srcfiles size=42 + RELOC/source/latex/bibtopic/bibtopic.dtx + RELOC/source/latex/bibtopic/bibtopic.ins +catalogue-ctan /macros/latex/contrib/bibtopic +catalogue-date 2012-06-03 12:03:29 +0200 +catalogue-license gpl +catalogue-version 1.1a + +name bibunits +category Package +revision 15878 +shortdesc Multiple bibliographies in one document. +relocated 1 +longdesc The package provide a mechanism to generate separate +longdesc bibliographies for different units (chapters, sections or +longdesc bibunit-environments) of a text. The package separates the +longdesc citations of each unit of text into a separate file to be +longdesc processed by BibTeX. The global bibliography section produced +longdesc by LaTeX may also appear in the document and citations can be +longdesc placed in both the local unit and the global bibliographies at +longdesc the same time. The package is compatible with koma-script and +longdesc with the babel French option frenchb. +runfiles size=3 + RELOC/tex/latex/bibunits/bibunits.sty +docfiles size=68 + RELOC/doc/latex/bibunits/README + RELOC/doc/latex/bibunits/bibtexall + RELOC/doc/latex/bibunits/bibunits.pdf +srcfiles size=18 + RELOC/source/latex/bibunits/bibunits.dtx + RELOC/source/latex/bibunits/bibunits.ins +catalogue-ctan /macros/latex/contrib/bibunits +catalogue-date 2012-06-03 12:03:29 +0200 +catalogue-license lppl +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 +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 + RELOC/tex/xelatex/bidi/adjmulticol-xetex-bidi.def + RELOC/tex/xelatex/bidi/algorithm2e-xetex-bidi.def + RELOC/tex/xelatex/bidi/amsart-xetex-bidi.def + RELOC/tex/xelatex/bidi/amsbook-xetex-bidi.def + RELOC/tex/xelatex/bidi/amsmath-xetex-bidi.def + RELOC/tex/xelatex/bidi/amstext-xetex-bidi.def + RELOC/tex/xelatex/bidi/amsthm-xetex-bidi.def + RELOC/tex/xelatex/bidi/array-xetex-bidi.def + RELOC/tex/xelatex/bidi/article-xetex-bidi.def + RELOC/tex/xelatex/bidi/artikel1-xetex-bidi.def + RELOC/tex/xelatex/bidi/artikel2-xetex-bidi.def + RELOC/tex/xelatex/bidi/artikel3-xetex-bidi.def + RELOC/tex/xelatex/bidi/arydshln-xetex-bidi.def + RELOC/tex/xelatex/bidi/bibitem.pdf + RELOC/tex/xelatex/bidi/bidi-longtable.sty + RELOC/tex/xelatex/bidi/bidi.sty + RELOC/tex/xelatex/bidi/bidi.tex + RELOC/tex/xelatex/bidi/bidi2in1.sty + RELOC/tex/xelatex/bidi/bidicode.sty + RELOC/tex/xelatex/bidi/bidiftnxtra.sty + RELOC/tex/xelatex/bidi/bidimoderncv.cls + RELOC/tex/xelatex/bidi/bidipoem.sty + RELOC/tex/xelatex/bidi/biditools.sty + RELOC/tex/xelatex/bidi/biditufte-book.cls + RELOC/tex/xelatex/bidi/biditufte-handout.cls + RELOC/tex/xelatex/bidi/bidituftefloat.sty + RELOC/tex/xelatex/bidi/bidituftegeneralstructure.sty + RELOC/tex/xelatex/bidi/bidituftehyperref.sty + RELOC/tex/xelatex/bidi/bidituftesidenote.sty + RELOC/tex/xelatex/bidi/bidituftetitle.sty + RELOC/tex/xelatex/bidi/bidituftetoc.sty + RELOC/tex/xelatex/bidi/boek-xetex-bidi.def + RELOC/tex/xelatex/bidi/boek3-xetex-bidi.def + RELOC/tex/xelatex/bidi/book-xetex-bidi.def + RELOC/tex/xelatex/bidi/bookest-xetex-bidi.def + RELOC/tex/xelatex/bidi/breqn-xetex-bidi.def + RELOC/tex/xelatex/bidi/cals-xetex-bidi.def + RELOC/tex/xelatex/bidi/caption-xetex-bidi.def + RELOC/tex/xelatex/bidi/caption3-xetex-bidi.def + RELOC/tex/xelatex/bidi/color-xetex-bidi.def + RELOC/tex/xelatex/bidi/colortbl-xetex-bidi.def + RELOC/tex/xelatex/bidi/combine-xetex-bidi.def + RELOC/tex/xelatex/bidi/crop-xetex-bidi.def + RELOC/tex/xelatex/bidi/cuted-xetex-bidi.def + RELOC/tex/xelatex/bidi/cutwin-xetex-bidi.def + RELOC/tex/xelatex/bidi/cvthemebidicasual.sty + RELOC/tex/xelatex/bidi/cvthemebidiclassic.sty + RELOC/tex/xelatex/bidi/dblfnote-xetex-bidi.def + RELOC/tex/xelatex/bidi/draftwatermark-xetex-bidi.def + RELOC/tex/xelatex/bidi/empheq-xetex-bidi.def + RELOC/tex/xelatex/bidi/eso-pic-xetex-bidi.def + RELOC/tex/xelatex/bidi/extarticle-xetex-bidi.def + RELOC/tex/xelatex/bidi/extbook-xetex-bidi.def + RELOC/tex/xelatex/bidi/extletter-xetex-bidi.def + RELOC/tex/xelatex/bidi/extrafootnotefeatures-xetex-bidi.def + RELOC/tex/xelatex/bidi/extreport-xetex-bidi.def + RELOC/tex/xelatex/bidi/fancybox-xetex-bidi.def + RELOC/tex/xelatex/bidi/fancyhdr-xetex-bidi.def + RELOC/tex/xelatex/bidi/fix2col-xetex-bidi.def + RELOC/tex/xelatex/bidi/fleqn-xetex-bidi.def + RELOC/tex/xelatex/bidi/float-xetex-bidi.def + RELOC/tex/xelatex/bidi/floatrow-xetex-bidi.def + RELOC/tex/xelatex/bidi/flowfram-xetex-bidi.def + RELOC/tex/xelatex/bidi/footnote-xetex-bidi.def + RELOC/tex/xelatex/bidi/framed-xetex-bidi.def + RELOC/tex/xelatex/bidi/ftnright-xetex-bidi.def + RELOC/tex/xelatex/bidi/geometry-xetex-bidi.def + RELOC/tex/xelatex/bidi/graphicx-xetex-bidi.def + RELOC/tex/xelatex/bidi/hvfloat-xetex-bidi.def + RELOC/tex/xelatex/bidi/hyperref-xetex-bidi.def + RELOC/tex/xelatex/bidi/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/listings-xetex-bidi.def + RELOC/tex/xelatex/bidi/loadingorder-xetex-bidi.def + RELOC/tex/xelatex/bidi/longtable-xetex-bidi.def + RELOC/tex/xelatex/bidi/mdframed-xetex-bidi.def + RELOC/tex/xelatex/bidi/memoir-xetex-bidi.def + RELOC/tex/xelatex/bidi/midfloat-xetex-bidi.def + RELOC/tex/xelatex/bidi/minitoc-xetex-bidi.def + RELOC/tex/xelatex/bidi/multicol-xetex-bidi.def + RELOC/tex/xelatex/bidi/multienum-xetex-bidi.def + RELOC/tex/xelatex/bidi/natbib-xetex-bidi.def + RELOC/tex/xelatex/bidi/newfloat-xetex-bidi.def + RELOC/tex/xelatex/bidi/ntheorem-hyper-xetex-bidi.def + RELOC/tex/xelatex/bidi/ntheorem-xetex-bidi.def + RELOC/tex/xelatex/bidi/pdfpages-xetex-bidi.def + RELOC/tex/xelatex/bidi/pgf-xetex-bidi.def + RELOC/tex/xelatex/bidi/picinpar-xetex-bidi.def + RELOC/tex/xelatex/bidi/plain-xetex-bidi.def + RELOC/tex/xelatex/bidi/pstricks-xetex-bidi.def + RELOC/tex/xelatex/bidi/quotchap-xetex-bidi.def + RELOC/tex/xelatex/bidi/ragged2e-xetex-bidi.def + RELOC/tex/xelatex/bidi/rapport1-xetex-bidi.def + RELOC/tex/xelatex/bidi/rapport3-xetex-bidi.def + RELOC/tex/xelatex/bidi/refrep-xetex-bidi.def + RELOC/tex/xelatex/bidi/report-xetex-bidi.def + RELOC/tex/xelatex/bidi/rotating-xetex-bidi.def + RELOC/tex/xelatex/bidi/scrartcl-xetex-bidi.def + RELOC/tex/xelatex/bidi/scrbook-xetex-bidi.def + RELOC/tex/xelatex/bidi/scrlettr-xetex-bidi.def + RELOC/tex/xelatex/bidi/scrreprt-xetex-bidi.def + RELOC/tex/xelatex/bidi/sidecap-xetex-bidi.def + RELOC/tex/xelatex/bidi/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/titlesec-xetex-bidi.def + RELOC/tex/xelatex/bidi/titletoc-xetex-bidi.def + RELOC/tex/xelatex/bidi/tocbibind-xetex-bidi.def + RELOC/tex/xelatex/bidi/tocloft-xetex-bidi.def + RELOC/tex/xelatex/bidi/tocstyle-xetex-bidi.def + RELOC/tex/xelatex/bidi/todonotes-xetex-bidi.def + RELOC/tex/xelatex/bidi/wrapfig-xetex-bidi.def + RELOC/tex/xelatex/bidi/xcolor-xetex-bidi.def + RELOC/tex/xelatex/bidi/xltxtra-xetex-bidi.def +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-ctan /macros/xetex/latex/bidi +catalogue-date 2015-08-23 08:07:08 +0200 +catalogue-license lppl1.3 +catalogue-topics typesetting xetex bidi class +catalogue-version 17.6 + +name bigfoot +category Package +revision 38248 +shortdesc Footnotes for critical editions +relocated 1 +longdesc The package aims to provide a 'one-stop' solution to +longdesc requirements for footnotes. It offers: Multiple footnote +longdesc apparatus superior to that of manyfoot Footnotes can be +longdesc formatted in separate paragraphs, or be run into a single +longdesc paragraph (this choice may be selected per footnote series); +longdesc Things you might have expected (such as \verb-like material in +longdesc footnotes, and colour selections over page breaks) now work. +longdesc Note that the majority of the bigfoot package's interface is +longdesc identical to that of manyfoot; users should seek information +longdesc from that package's documentation. The bigfoot bundle also +longdesc provides the perpage and suffix packages. +runfiles size=14 + RELOC/tex/latex/bigfoot/bigfoot.sty + RELOC/tex/latex/bigfoot/perpage.sty + RELOC/tex/latex/bigfoot/suffix.sty +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/perpage.pdf + RELOC/doc/latex/bigfoot/suffix.pdf +srcfiles size=49 + RELOC/source/latex/bigfoot/bigfoot.drv + RELOC/source/latex/bigfoot/bigfoot.dtx + RELOC/source/latex/bigfoot/bigfoot.ins + RELOC/source/latex/bigfoot/perpage.drv + RELOC/source/latex/bigfoot/perpage.dtx + RELOC/source/latex/bigfoot/suffix.drv + RELOC/source/latex/bigfoot/suffix.dtx +catalogue-ctan /macros/latex/contrib/bigfoot +catalogue-date 2015-08-30 19:17:38 +0200 +catalogue-license gpl2 +catalogue-topics footnote +catalogue-version 2.1 + +name bigints +category Package +revision 29803 +shortdesc Writing big integrals. +relocated 1 +longdesc The package provides facilities for drawing big integral signs +longdesc when needed. An example would be when the integrand is a +longdesc matrix. +runfiles size=2 + RELOC/tex/latex/bigints/bigints.sty +docfiles size=61 + RELOC/doc/latex/bigints/Makefile + RELOC/doc/latex/bigints/README + RELOC/doc/latex/bigints/bigints.forlisting + RELOC/doc/latex/bigints/bigints.pdf + RELOC/doc/latex/bigints/bigints.tex + RELOC/doc/latex/bigints/perso.ist +catalogue-ctan /macros/latex/contrib/bigints +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name binomexp +category Package +revision 15878 +shortdesc Calculate Pascal's triangle. +relocated 1 +longdesc The package calculates and prints rows of Pascal's triangle. It +longdesc may be used: simply to print successive rows of the triangle, +longdesc or to print the rows inside an array or tabular. +runfiles size=2 + RELOC/tex/latex/binomexp/binomexp.sty +docfiles size=22 + RELOC/doc/latex/binomexp/README + RELOC/doc/latex/binomexp/binomexp.pdf +srcfiles size=5 + RELOC/source/latex/binomexp/binomexp.dtx + RELOC/source/latex/binomexp/binomexp.ins +catalogue-ctan /macros/latex/contrib/binomexp +catalogue-date 2014-10-16 09:43:46 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name biocon +category Package +revision 15878 +shortdesc Typesetting biological species names +relocated 1 +longdesc The biocon--biological conventions--package aids the +longdesc typesetting of some biological conventions. At the moment, it +longdesc makes a good job of typesetting species names (and ranks below +longdesc the species level). A distinction is made between the Plant, +longdesc Fungi, Animalia and Bacteria kingdoms. There are default +longdesc settings for the way species names are typeset, but they can be +longdesc customized. Different default styles are used in different +longdesc situations. +runfiles size=4 + RELOC/tex/latex/biocon/biocon-old.sty + RELOC/tex/latex/biocon/biocon.sty +docfiles size=121 + RELOC/doc/latex/biocon/COPYING + RELOC/doc/latex/biocon/INSTALL + RELOC/doc/latex/biocon/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.tex + RELOC/doc/latex/biocon/source.pdf + RELOC/doc/latex/biocon/source.tex +catalogue-ctan /macros/latex/contrib/biocon +catalogue-date 2012-04-28 20:54:25 +0200 +catalogue-license gpl + +name bitelist +category Package +revision 25779 +shortdesc Split list, in TeX's mouth. +relocated 1 +longdesc The package provides commands for "splitting" a token list at +longdesc the first occurrence of another (specified) token list. I.e., +longdesc for given token lists s, t return b and the shortest a, such +longdesc that t = a s b. The package's mechanism differs from those of +longdesc packages providing similar features, in the following ways: the +longdesc method uses TeX's mechanism of reading delimited macro +longdesc parameters; splitting macros work by pure expansion, without +longdesc assignments; the operation is carried out in a single macro +longdesc call. A variant of the operation is provided, that retains +longdesc outer braces. +runfiles size=4 + RELOC/tex/generic/bitelist/bitedemo.tex + RELOC/tex/generic/bitelist/bitelist.sty +docfiles size=100 + RELOC/doc/generic/bitelist/README + RELOC/doc/generic/bitelist/bitelist.pdf +srcfiles size=5 + RELOC/source/generic/bitelist/bitelist.tex + RELOC/source/generic/bitelist/srcfiles.tex +catalogue-ctan /macros/generic/bitelist +catalogue-date 2014-10-16 09:43:46 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name bizcard +category Package +revision 15878 +shortdesc Typeset business cards. +relocated 1 +longdesc This is an adaption for current LaTeX of a LaTeX 2.09 style by +longdesc Silvano Balemi. It produces cards at the normal US card size, +longdesc 76.2mm x 50.8mm. +runfiles size=1 + RELOC/tex/latex/bizcard/bizcard.sty +docfiles size=25 + RELOC/doc/latex/bizcard/bizcard.pdf + RELOC/doc/latex/bizcard/bizex.pdf + RELOC/doc/latex/bizcard/bizex.tex +srcfiles size=5 + RELOC/source/latex/bizcard/bizcard.drv + RELOC/source/latex/bizcard/bizcard.dtx + RELOC/source/latex/bizcard/bizcard.ins +catalogue-ctan /macros/latex/contrib/bizcard +catalogue-date 2012-04-28 23:45:30 +0200 +catalogue-license gpl +catalogue-version 1.1 + +name blacklettert1 +category Package +revision 15878 +shortdesc T1-encoded versions of Haralambous old German fonts. +relocated 1 +longdesc This package contains virtual fonts that offer T1-alike encoded +longdesc variants of Yannis Haralambous's old German fonts Gothic, +longdesc Schwabacher and Fraktur (which are also available in Adobe type +longdesc 1 format). The package includes LaTeX macros to embed the fonts +longdesc into the LaTeX font selection scheme. +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 +docfiles size=29 + RELOC/doc/fonts/blacklettert1/COPYING + RELOC/doc/fonts/blacklettert1/INSTALL + RELOC/doc/fonts/blacklettert1/README + RELOC/doc/fonts/blacklettert1/blacklettert1.pdf +srcfiles size=155 + RELOC/source/fonts/blacklettert1/Makefile + RELOC/source/fonts/blacklettert1/blacklettert1.dtx + RELOC/source/fonts/blacklettert1/blacklettert1.ins + RELOC/source/fonts/blacklettert1/cmbsy10.pl + RELOC/source/fonts/blacklettert1/cmbx10.pl + RELOC/source/fonts/blacklettert1/cmmi10.pl + RELOC/source/fonts/blacklettert1/cmmib10.pl + RELOC/source/fonts/blacklettert1/cmr10.pl + RELOC/source/fonts/blacklettert1/cmr7.pl + RELOC/source/fonts/blacklettert1/cmsy10.pl + RELOC/source/fonts/blacklettert1/cmu10.pl + RELOC/source/fonts/blacklettert1/ecbx1000.pl + RELOC/source/fonts/blacklettert1/ecrm0700.pl + RELOC/source/fonts/blacklettert1/ecrm1000.pl + RELOC/source/fonts/blacklettert1/yfrak.pl + RELOC/source/fonts/blacklettert1/ygoth.pl + RELOC/source/fonts/blacklettert1/yswab.pl +catalogue-ctan /fonts/gothic/blacklettert1 +catalogue-date 2014-04-07 13:51:00 +0200 +catalogue-license other-free + +name blindtext +category Package +revision 25039 +shortdesc Producing 'blind' text for testing. +relocated 1 +longdesc The package provides the commands \blindtext and \Blindtext for +longdesc creating 'blind' text useful in testing new classes and +longdesc packages, and \blinddocument, \Blinddocument for creating an +longdesc entire random document with sections, lists, mathematics, etc. +longdesc The package supports three languages, english, (n)german and +longdesc latin; the latin option provides a short "lorem ipsum" (for a +longdesc fuller lorem ipsum text, see the lipsum package). +runfiles size=12 + RELOC/tex/latex/blindtext/blindtext.sty +docfiles size=85 + RELOC/doc/latex/blindtext/README + RELOC/doc/latex/blindtext/blindtext.pdf +srcfiles size=25 + RELOC/source/latex/blindtext/blindtext.dtx + RELOC/source/latex/blindtext/blindtext.ins + RELOC/source/latex/blindtext/blindtext_american.dtx + RELOC/source/latex/blindtext/blindtext_catalan.dtx + RELOC/source/latex/blindtext/blindtext_english.dtx + RELOC/source/latex/blindtext/blindtext_french.dtx + RELOC/source/latex/blindtext/blindtext_german.dtx + RELOC/source/latex/blindtext/blindtext_latin.dtx + RELOC/source/latex/blindtext/blindtext_ngerman.dtx +catalogue-ctan /macros/latex/contrib/blindtext +catalogue-date 2012-03-12 20:01:10 +0100 +catalogue-license lppl +catalogue-version 2.0 + +name blkarray +category Package +revision 36406 +shortdesc Extended array and tabular. +relocated 1 +longdesc An experimental package which implements an environment, +longdesc blockarray, that may be used in the same way as the array or +longdesc tabular environments of standard LaTeX, or their extended +longdesc versions defined in array. If used in math-mode, blockarray +longdesc acts like array, otherwise it acts like tabular. The package +longdesc implements a new method of defining column types, and also +longdesc block and block* environments, for specifying sub-arrays of the +longdesc main array. What's more, the \footnote command works inside a +longdesc blockarray. +runfiles size=18 + RELOC/tex/latex/blkarray/blkarray.sty +docfiles size=75 + RELOC/doc/latex/blkarray/README + RELOC/doc/latex/blkarray/blkarray.pdf + RELOC/doc/latex/blkarray/blkarray.tex +catalogue-ctan /macros/latex/contrib/blkarray +catalogue-date 2015-02-28 13:23:59 +0100 +catalogue-license lppl +catalogue-version 0.07 + +name blochsphere +category Package +revision 38137 +shortdesc Draw pseudo-3D diagrams of Bloch spheres +relocated 1 +longdesc This package is used to draw pseudo-3D Blochsphere diagrams. It +longdesc supports various annotations, such as great and small circles, +longdesc axes, rotation markings and state vectors. It can be used in a +longdesc standalone fashion, or nested within a tikzpicture environment +longdesc by setting the environment option nested to true. +runfiles size=5 + RELOC/tex/latex/blochsphere/blochsphere.sty +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/example.tex +srcfiles size=9 + RELOC/source/latex/blochsphere/blochsphere.dtx + RELOC/source/latex/blochsphere/blochsphere.ins +catalogue-ctan /graphics/pgf/contrib/blochsphere +catalogue-date 2015-08-17 17:33:55 +0200 +catalogue-license lppl1.3 +catalogue-topics physics pgf-tikz +catalogue-version 1.0 + +name blockdraw_mp +category Package +revision 15878 +shortdesc Block diagrams and bond graphs, with MetaPost. +relocated 1 +longdesc A set of simple MetaPost macros for the task. While the task is +longdesc not itself difficult to program, it is felt that many users +longdesc will be happy to have a library for the job.. +runfiles size=8 + RELOC/metapost/blockdraw_mp/blockdraw.mp + RELOC/metapost/blockdraw_mp/bonddemo.mp + RELOC/metapost/blockdraw_mp/bondgraph.mp + RELOC/metapost/blockdraw_mp/cascadedemo.mp + RELOC/metapost/blockdraw_mp/docblockprefs.mp + RELOC/metapost/blockdraw_mp/shiftoff.mp +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-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 + +name bloques +category Package +revision 22490 +shortdesc Generate control diagrams. +relocated 1 +longdesc The package uses TikZ to provide commands for generating +longdesc control diagrams (specially in power electronics). +runfiles size=3 + RELOC/tex/latex/bloques/bloques.sty +docfiles size=35 + RELOC/doc/latex/bloques/README + RELOC/doc/latex/bloques/example.pdf + RELOC/doc/latex/bloques/example.tex +catalogue-ctan /graphics/pgf/contrib/bloques +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name blowup +category Package +revision 15878 +shortdesc Upscale or downscale all pages of a document. +relocated 1 +longdesc The package blowup only defines the user-level macro \blowup, +longdesc which can be used to upscale or downscale all pages of a +longdesc document. It is similar to the TeX primitive \magnification but +longdesc more accurate and user-friendly. +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 +srcfiles size=5 + RELOC/source/latex/blowup/blowup.dtx + RELOC/source/latex/blowup/blowup.ins +catalogue-ctan /macros/latex/contrib/blowup +catalogue-date 2012-04-23 23:26:21 +0200 +catalogue-license lppl +catalogue-version 0.1j + +name blox +category Package +revision 35014 +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 +docfiles size=105 + RELOC/doc/latex/blox/README + RELOC/doc/latex/blox/blox.pdf +srcfiles size=14 + RELOC/source/latex/blox/blox.dtx +catalogue-ctan /graphics/pgf/contrib/blox +catalogue-date 2014-09-09 12:05:44 +0200 +catalogue-license lppl +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 + RELOC/source/latex/bnumexpr/bnumexpr.dtx + RELOC/source/latex/bnumexpr/bnumexpr.ins +catalogue-ctan /macros/latex/contrib/bnumexpr +catalogue-date 2014-11-04 18:49:30 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1b + +name bodegraph +category Package +revision 20047 +shortdesc Draw Bode, Nyquist and Black plots with gnuplot and TikZ. +relocated 1 +longdesc The package provides facilities to draw Bode, Nyquist and Black +longdesc plots using Gnuplot and Tikz. Elementary Transfer Functions and +longdesc basic correctors are preprogrammed for use. +runfiles size=18 + RELOC/tex/latex/bodegraph/bodegraph.sty +docfiles size=281 + RELOC/doc/latex/bodegraph/README + RELOC/doc/latex/bodegraph/bodegraph.pdf + RELOC/doc/latex/bodegraph/bodegraph.tex + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/1.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/1.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/10.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/10.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/11.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/11.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/12.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/12.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/13.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/13.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/14.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/14.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/15.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/15.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/16.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/16.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/17.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/17.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/18.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/18.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/19.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/19.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/20.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/20.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/21.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/21.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/22.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/22.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/23.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/23.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/24.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/24.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/25.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/25.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/26.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/26.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/27.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/27.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/28.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/28.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/29.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/29.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/3.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/3.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/30.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/30.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/31.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/31.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/32.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/32.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/33.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/33.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/34.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/34.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/35.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/35.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/36.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/36.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/37.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/37.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/38.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/38.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/39.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/39.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/4.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/4.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/40.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/40.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/41.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/41.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/42.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/42.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/43.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/43.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/44.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/44.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/45.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/45.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/46.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/46.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/47.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/47.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/48.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/48.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/49.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/49.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/5.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/5.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/50.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/50.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/51.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/51.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/52.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/52.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/53.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/53.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/54.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/54.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/55.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/55.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/56.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/56.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/57.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/57.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/58.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/58.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/59.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/59.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/6.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/6.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/60.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/60.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/61.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/61.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/62.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/62.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/63.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/63.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/64.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/64.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/66.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/66.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/67.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/67.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/68.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/68.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/69.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/69.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/7.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/7.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/70.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/70.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/72.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/72.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/73.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/73.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/74.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/74.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/75.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/75.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/76.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/76.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/78.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/78.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/79.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/79.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/8.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/8.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/81.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/81.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/82.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/82.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/83.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/83.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/84.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/84.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/85.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/85.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/86.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/86.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/87.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/87.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/89.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/89.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/9.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/9.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/90.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/90.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/91.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/91.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/93.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/93.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/94.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/94.table + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/95.gnuplot + RELOC/doc/latex/bodegraph/gnuplot/bodegraph/95.table +catalogue-ctan /graphics/pgf/contrib/bodegraph +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.4 + +name bohr +category Package +revision 37657 +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 +docfiles size=107 + RELOC/doc/latex/bohr/README + RELOC/doc/latex/bohr/bohr_en.pdf + RELOC/doc/latex/bohr/bohr_en.tex +catalogue-ctan /macros/latex/contrib/bohr +catalogue-date 2015-06-24 13:13:16 +0200 +catalogue-license lppl1.3 +catalogue-topics chemistry +catalogue-version 1.0 + +name boisik +category Package +revision 15878 +shortdesc A font inspired by Baskerville design. +relocated 1 +longdesc Boisik is a serif font set (inspired by the Baskerville +longdesc typeface), written in Metafont. The set comprises roman and +longdesc italic text fonts and maths fonts. LaTeX support is offered for +longdesc use with OT1, IL2 and OM* encodings. +runfiles size=670 + RELOC/fonts/source/public/boisik/bskarr10.mf + RELOC/fonts/source/public/boisik/bskarrows.mf + RELOC/fonts/source/public/boisik/bskbase.mf + RELOC/fonts/source/public/boisik/bskex10.mf + RELOC/fonts/source/public/boisik/bskext.mf + RELOC/fonts/source/public/boisik/bskhc10.mf + RELOC/fonts/source/public/boisik/bski10-TS1.mf + RELOC/fonts/source/public/boisik/bski10.mf + RELOC/fonts/source/public/boisik/bskib10.mf + RELOC/fonts/source/public/boisik/bskiol10.mf + RELOC/fonts/source/public/boisik/bskital.mf + RELOC/fonts/source/public/boisik/bskiu10.mf + RELOC/fonts/source/public/boisik/bskiub10.mf + RELOC/fonts/source/public/boisik/bskletters-i.mf + RELOC/fonts/source/public/boisik/bskletters-o.mf + RELOC/fonts/source/public/boisik/bskletters-r.mf + RELOC/fonts/source/public/boisik/bskligtab-i.mf + RELOC/fonts/source/public/boisik/bskligtab-sc.mf + RELOC/fonts/source/public/boisik/bskligtab.mf + RELOC/fonts/source/public/boisik/bsklist-T1.mf + RELOC/fonts/source/public/boisik/bsklist-TS1.mf + RELOC/fonts/source/public/boisik/bsklist-ar.mf + RELOC/fonts/source/public/boisik/bsklist-bb.mf + RELOC/fonts/source/public/boisik/bsklist-ex.mf + RELOC/fonts/source/public/boisik/bsklist-lc.mf + RELOC/fonts/source/public/boisik/bsklist-ma.mf + RELOC/fonts/source/public/boisik/bsklist-mi-up.mf + RELOC/fonts/source/public/boisik/bsklist-mi.mf + RELOC/fonts/source/public/boisik/bsklist-ms.mf + RELOC/fonts/source/public/boisik/bsklist-sc.mf + RELOC/fonts/source/public/boisik/bsklist-sy.mf + RELOC/fonts/source/public/boisik/bsklist-uc.mf + RELOC/fonts/source/public/boisik/bskma10.mf + RELOC/fonts/source/public/boisik/bskmab10.mf + RELOC/fonts/source/public/boisik/bskmath.mf + RELOC/fonts/source/public/boisik/bskmathma.mf + RELOC/fonts/source/public/boisik/bskmathms.mf + RELOC/fonts/source/public/boisik/bskmathsy.mf + RELOC/fonts/source/public/boisik/bskmi10.mf + RELOC/fonts/source/public/boisik/bskmib10.mf + RELOC/fonts/source/public/boisik/bskms10.mf + RELOC/fonts/source/public/boisik/bskmsb10.mf + RELOC/fonts/source/public/boisik/bskmsbsl10.mf + RELOC/fonts/source/public/boisik/bskmssl10.mf + RELOC/fonts/source/public/boisik/bskr10-T1.mf + RELOC/fonts/source/public/boisik/bskr10-TS1.mf + RELOC/fonts/source/public/boisik/bskr10.mf + RELOC/fonts/source/public/boisik/bskrb10.mf + RELOC/fonts/source/public/boisik/bskrc10.mf + RELOC/fonts/source/public/boisik/bskrcb10.mf + RELOC/fonts/source/public/boisik/bskrf10.mf + RELOC/fonts/source/public/boisik/bskrl10.mf + RELOC/fonts/source/public/boisik/bskrol10.mf + RELOC/fonts/source/public/boisik/bskroman.mf + RELOC/fonts/source/public/boisik/bskrsb10.mf + RELOC/fonts/source/public/boisik/bskrsl10.mf + RELOC/fonts/source/public/boisik/bskrw10.mf + RELOC/fonts/source/public/boisik/bsksc.mf + RELOC/fonts/source/public/boisik/bsksc10.mf + RELOC/fonts/source/public/boisik/bsksy10.mf + RELOC/fonts/source/public/boisik/bsksyb10.mf + RELOC/fonts/source/public/boisik/bsksybsl10.mf + RELOC/fonts/source/public/boisik/bsksymbols.mf + RELOC/fonts/source/public/boisik/bsksyol10.mf + RELOC/fonts/source/public/boisik/bsksysl10.mf + RELOC/fonts/tfm/public/boisik/bskarr10.tfm + RELOC/fonts/tfm/public/boisik/bskex10.tfm + RELOC/fonts/tfm/public/boisik/bskhc10.tfm + RELOC/fonts/tfm/public/boisik/bski10-TS1.tfm + RELOC/fonts/tfm/public/boisik/bski10.tfm + RELOC/fonts/tfm/public/boisik/bskib10.tfm + RELOC/fonts/tfm/public/boisik/bskiol10.tfm + RELOC/fonts/tfm/public/boisik/bskiu10.tfm + RELOC/fonts/tfm/public/boisik/bskiub10.tfm + RELOC/fonts/tfm/public/boisik/bskma10.tfm + RELOC/fonts/tfm/public/boisik/bskmab10.tfm + RELOC/fonts/tfm/public/boisik/bskmi10.tfm + RELOC/fonts/tfm/public/boisik/bskmib10.tfm + RELOC/fonts/tfm/public/boisik/bskms10.tfm + RELOC/fonts/tfm/public/boisik/bskmsb10.tfm + RELOC/fonts/tfm/public/boisik/bskmsbsl10.tfm + RELOC/fonts/tfm/public/boisik/bskmssl10.tfm + RELOC/fonts/tfm/public/boisik/bskr10-T1.tfm + RELOC/fonts/tfm/public/boisik/bskr10-TS1.tfm + RELOC/fonts/tfm/public/boisik/bskr10.tfm + RELOC/fonts/tfm/public/boisik/bskrb10.tfm + RELOC/fonts/tfm/public/boisik/bskrc10.tfm + RELOC/fonts/tfm/public/boisik/bskrcb10.tfm + RELOC/fonts/tfm/public/boisik/bskrf10.tfm + RELOC/fonts/tfm/public/boisik/bskrl10.tfm + RELOC/fonts/tfm/public/boisik/bskrol10.tfm + RELOC/fonts/tfm/public/boisik/bskrsb10.tfm + RELOC/fonts/tfm/public/boisik/bskrsl10.tfm + RELOC/fonts/tfm/public/boisik/bskrw10.tfm + RELOC/fonts/tfm/public/boisik/bsksc10.tfm + RELOC/fonts/tfm/public/boisik/bsksy10.tfm + RELOC/fonts/tfm/public/boisik/bsksyol10.tfm + RELOC/fonts/tfm/public/boisik/bsksysl10.tfm + RELOC/tex/latex/boisik/boisik.sty + RELOC/tex/latex/boisik/il2bsk.fd + RELOC/tex/latex/boisik/il2bskf.fd + RELOC/tex/latex/boisik/lblbskm.fd + RELOC/tex/latex/boisik/lblcmr.fd + RELOC/tex/latex/boisik/lblenc.def + RELOC/tex/latex/boisik/lbmbsk.fd + RELOC/tex/latex/boisik/lbmbskms.fd + RELOC/tex/latex/boisik/lbmcmr.fd + RELOC/tex/latex/boisik/lbmenc.def + RELOC/tex/latex/boisik/lbsbsk.fd + RELOC/tex/latex/boisik/lbsbsksy.fd + RELOC/tex/latex/boisik/lbscmr.fd + RELOC/tex/latex/boisik/lbsenc.def + RELOC/tex/latex/boisik/ot1bsk.fd + RELOC/tex/latex/boisik/ot1bskf.fd + RELOC/tex/latex/boisik/ts1bsk.fd + RELOC/tex/latex/boisik/ubskex.fd +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-license gpl2 +catalogue-version 0.5 + +name boites +category Package +revision 32235 +shortdesc Boxes that may break across pages +relocated 1 +longdesc Defines environments that allow page breaks inside framed boxes +longdesc whose edges may be variously fancy. The bundle includes a few +longdesc examples (shaded box, box with a wavy line on its side, etc). +runfiles size=4 + RELOC/tex/latex/boites/boites.sty + RELOC/tex/latex/boites/boites_exemples.sty +docfiles size=94 + RELOC/doc/latex/boites/Makefile + RELOC/doc/latex/boites/README + RELOC/doc/latex/boites/README.docu + RELOC/doc/latex/boites/boites.pdf + RELOC/doc/latex/boites/demo.pdf + RELOC/doc/latex/boites/demo.tex + RELOC/doc/latex/boites/ligne_qui_ondule_sur_la_gauche.eps +srcfiles size=5 + RELOC/source/latex/boites/boites.dtx +catalogue-ctan /macros/latex/contrib/boites +catalogue-date 2013-11-23 08:21:35 +0100 +catalogue-license gpl +catalogue-version 1.1 + +name bold-extra +category Package +revision 17076 +shortdesc Use bold small caps and typewriter fonts. +relocated 1 +longdesc Allows access to 'extra' bold fonts for Computer Modern OT1 +longdesc encoding (the fonts are available in Metafont source). Since +longdesc there is more than one bold tt-family font set, the version +longdesc required is selected by a package option. +runfiles size=1 + RELOC/tex/latex/bold-extra/bold-extra.sty +docfiles size=56 + RELOC/doc/latex/bold-extra/bold-extra.pdf + RELOC/doc/latex/bold-extra/bold-extra.tex +catalogue-ctan /macros/latex/contrib/bold-extra +catalogue-date 2012-06-14 23:01:55 +0200 +catalogue-license lppl +catalogue-version 0.1 + +name boldtensors +category Package +revision 15878 +shortdesc Bold latin and greek characters through simple prefix characters. +relocated 1 +longdesc This package provides bold latin and greek characters within +longdesc \mathversion{normal}, by using ~ and " as prefix characters. +runfiles size=3 + RELOC/tex/latex/boldtensors/boldtensors.sty +docfiles size=17 + RELOC/doc/latex/boldtensors/boldtensors.pdf + RELOC/doc/latex/boldtensors/boldtensors.tex +catalogue-ctan /macros/latex/contrib/boldtensors +catalogue-date 2012-06-15 00:14:06 +0200 +catalogue-license gpl + +name bondgraphs +category Package +revision 36605 +shortdesc Draws bond graphs in LaTeX, using pgf/TikZ. +relocated 1 +longdesc The package is used to draw bond graphs in LaTeX. It uses a +longdesc recent version (3.0+) of PGF and TikZ for the drawing, hence, +longdesc it is mainly a set of TikZ styles that makes the drawing of +longdesc bond graphs easier. Compared to the bondgraph package this +longdesc package relies more on TikZ styles and less on macros, to +longdesc generate the drawings. As such it can be more flexible than +longdesc his, but requires more TikZ knowledge of the user. +runfiles size=2 + RELOC/tex/latex/bondgraphs/bondgraphs.sty +docfiles size=91 + RELOC/doc/latex/bondgraphs/Makefile + RELOC/doc/latex/bondgraphs/README + RELOC/doc/latex/bondgraphs/bondgraphs.pdf +srcfiles size=10 + RELOC/source/latex/bondgraphs/bondgraphs.dtx + RELOC/source/latex/bondgraphs/bondgraphs.ins +catalogue-ctan /macros/latex/contrib/bondgraphs +catalogue-date 2015-03-23 13:37:48 +0100 +catalogue-license lppl1.3 +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. +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 + 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/bg.jpg + 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/result.pdf + RELOC/doc/latex/bookcover/figures/sizes.pdf + RELOC/doc/latex/bookcover/figures/summa.pdf +srcfiles size=10 + RELOC/source/latex/bookcover/bookcover.dtx + RELOC/source/latex/bookcover/bookcover.ins +catalogue-ctan /macros/latex/contrib/bookcover +catalogue-date 2015-03-11 05:49:32 +0100 +catalogue-license lppl1.2 +catalogue-version 1.0 + +name bookdb +category Package +revision 37536 +shortdesc A BibTeX style file for cataloguing a home library. +relocated 1 +longdesc This package provides an extended book entry for use in +longdesc cataloguing a home library. The extensions include fields for +longdesc binding, category, collator, condition, copy, illustrations, +longdesc introduction, location, pages, size, value, volumes. +runfiles size=9 + RELOC/bibtex/bst/bookdb/bookdb.bst +docfiles size=55 + RELOC/doc/bibtex/bookdb/README + RELOC/doc/bibtex/bookdb/bookdb.pdf + RELOC/doc/bibtex/bookdb/bookdb.tex +catalogue-ctan /biblio/bibtex/contrib/bookdb +catalogue-date 2015-06-04 20:56:45 +0200 +catalogue-license lppl1.3 +catalogue-topics bibtex-sty catalogue +catalogue-version 0.2 + +name bookest +category Package +revision 15878 +shortdesc Extended book class. +relocated 1 +longdesc The class extends the standard book class, in the areas of +longdesc colour scheme management, document layout, headings and +longdesc footers, front page layout, and other minor items. +runfiles size=5 + RELOC/tex/latex/bookest/bookest.cls +docfiles size=76 + RELOC/doc/latex/bookest/README + RELOC/doc/latex/bookest/bookestdoc-en.pdf + RELOC/doc/latex/bookest/bookestdoc-en.tex + RELOC/doc/latex/bookest/bookestdoc-it.pdf + RELOC/doc/latex/bookest/bookestdoc-it.tex +catalogue-ctan /macros/latex/contrib/bookest +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name bookhands +category Package +revision 23609 +shortdesc A collection of book-hand fonts. +relocated 1 +longdesc This is a set of book-hand (MetaFont) fonts and packages +longdesc covering manuscript scripts from the 1st century until +longdesc Gutenberg and Caxton. The included hands are: Square Capitals +longdesc (1st century onwards); Roman Rustic (1st-6th centuries); +longdesc Insular Minuscule (6th cenury onwards); Carolingian Minuscule +longdesc (8th-12th centuries); Early Gothic (11th-12th centuries); +longdesc Gothic Textura Quadrata (13th-15th centuries); Gothic Textura +longdesc Prescisus vel sine pedibus (13th century onwards); Rotunda (13- +longdesc 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 + RELOC/fonts/afm/public/bookhands/sqrc10.afm + RELOC/fonts/afm/public/bookhands/sqrcb10.afm + RELOC/fonts/map/dvips/bookhands/sqrcaps.map + RELOC/fonts/source/public/bookhands/auncl10.mf + RELOC/fonts/source/public/bookhands/auncl17.mf + RELOC/fonts/source/public/bookhands/auncl7.mf + RELOC/fonts/source/public/bookhands/aunclb10.mf + RELOC/fonts/source/public/bookhands/aunclb17.mf + RELOC/fonts/source/public/bookhands/aunclb7.mf + RELOC/fonts/source/public/bookhands/auncldig.mf + RELOC/fonts/source/public/bookhands/auncll.mf + RELOC/fonts/source/public/bookhands/auncllig.mf + RELOC/fonts/source/public/bookhands/aunclpunct.mf + RELOC/fonts/source/public/bookhands/auncltitle.mf + RELOC/fonts/source/public/bookhands/aunclu.mf + RELOC/fonts/source/public/bookhands/cmin10.mf + RELOC/fonts/source/public/bookhands/cmin17.mf + RELOC/fonts/source/public/bookhands/cmin7.mf + RELOC/fonts/source/public/bookhands/cminb10.mf + RELOC/fonts/source/public/bookhands/cminb17.mf + RELOC/fonts/source/public/bookhands/cminb7.mf + RELOC/fonts/source/public/bookhands/cmindig.mf + RELOC/fonts/source/public/bookhands/cminl.mf + RELOC/fonts/source/public/bookhands/cminlig.mf + RELOC/fonts/source/public/bookhands/cminpunct.mf + RELOC/fonts/source/public/bookhands/cmintitle.mf + RELOC/fonts/source/public/bookhands/cminu.mf + RELOC/fonts/source/public/bookhands/egoth10.mf + RELOC/fonts/source/public/bookhands/egoth17.mf + RELOC/fonts/source/public/bookhands/egoth7.mf + RELOC/fonts/source/public/bookhands/egothb10.mf + RELOC/fonts/source/public/bookhands/egothb17.mf + RELOC/fonts/source/public/bookhands/egothb7.mf + RELOC/fonts/source/public/bookhands/egothdig.mf + RELOC/fonts/source/public/bookhands/egothl.mf + RELOC/fonts/source/public/bookhands/egothlig.mf + RELOC/fonts/source/public/bookhands/egothpunct.mf + RELOC/fonts/source/public/bookhands/egothtitle.mf + RELOC/fonts/source/public/bookhands/egothu.mf + RELOC/fonts/source/public/bookhands/hmin10.mf + RELOC/fonts/source/public/bookhands/hmin17.mf + RELOC/fonts/source/public/bookhands/hmin7.mf + RELOC/fonts/source/public/bookhands/hminb10.mf + RELOC/fonts/source/public/bookhands/hminb17.mf + RELOC/fonts/source/public/bookhands/hminb7.mf + RELOC/fonts/source/public/bookhands/hmindig.mf + RELOC/fonts/source/public/bookhands/hminl.mf + RELOC/fonts/source/public/bookhands/hminlig.mf + RELOC/fonts/source/public/bookhands/hminpunct.mf + RELOC/fonts/source/public/bookhands/hmintitle.mf + RELOC/fonts/source/public/bookhands/hminu.mf + RELOC/fonts/source/public/bookhands/huncl10.mf + RELOC/fonts/source/public/bookhands/huncl17.mf + RELOC/fonts/source/public/bookhands/huncl7.mf + RELOC/fonts/source/public/bookhands/hunclb10.mf + RELOC/fonts/source/public/bookhands/hunclb17.mf + RELOC/fonts/source/public/bookhands/hunclb7.mf + RELOC/fonts/source/public/bookhands/huncldig.mf + RELOC/fonts/source/public/bookhands/huncll.mf + RELOC/fonts/source/public/bookhands/huncllig.mf + RELOC/fonts/source/public/bookhands/hunclpunct.mf + RELOC/fonts/source/public/bookhands/huncltitle.mf + RELOC/fonts/source/public/bookhands/hunclu.mf + RELOC/fonts/source/public/bookhands/imaj10.mf + RELOC/fonts/source/public/bookhands/imaj17.mf + RELOC/fonts/source/public/bookhands/imaj7.mf + RELOC/fonts/source/public/bookhands/imajb10.mf + RELOC/fonts/source/public/bookhands/imajb17.mf + RELOC/fonts/source/public/bookhands/imajb7.mf + RELOC/fonts/source/public/bookhands/imajdig.mf + RELOC/fonts/source/public/bookhands/imajl.mf + RELOC/fonts/source/public/bookhands/imajlig.mf + RELOC/fonts/source/public/bookhands/imajpunct.mf + RELOC/fonts/source/public/bookhands/imajtitle.mf + RELOC/fonts/source/public/bookhands/imaju.mf + RELOC/fonts/source/public/bookhands/imin10.mf + RELOC/fonts/source/public/bookhands/imin17.mf + RELOC/fonts/source/public/bookhands/imin7.mf + RELOC/fonts/source/public/bookhands/iminb10.mf + RELOC/fonts/source/public/bookhands/iminb17.mf + RELOC/fonts/source/public/bookhands/iminb7.mf + RELOC/fonts/source/public/bookhands/imindig.mf + RELOC/fonts/source/public/bookhands/iminl.mf + RELOC/fonts/source/public/bookhands/iminlig.mf + RELOC/fonts/source/public/bookhands/iminpunct.mf + RELOC/fonts/source/public/bookhands/imintitle.mf + RELOC/fonts/source/public/bookhands/iminu.mf + RELOC/fonts/source/public/bookhands/pgoth10.mf + RELOC/fonts/source/public/bookhands/pgoth17.mf + RELOC/fonts/source/public/bookhands/pgoth7.mf + RELOC/fonts/source/public/bookhands/pgothb10.mf + RELOC/fonts/source/public/bookhands/pgothb17.mf + RELOC/fonts/source/public/bookhands/pgothb7.mf + RELOC/fonts/source/public/bookhands/pgothdig.mf + RELOC/fonts/source/public/bookhands/pgothl.mf + RELOC/fonts/source/public/bookhands/pgothlig.mf + RELOC/fonts/source/public/bookhands/pgothpunct.mf + RELOC/fonts/source/public/bookhands/pgothtitle.mf + RELOC/fonts/source/public/bookhands/pgothu.mf + RELOC/fonts/source/public/bookhands/rtnd10.mf + RELOC/fonts/source/public/bookhands/rtnd17.mf + RELOC/fonts/source/public/bookhands/rtnd7.mf + RELOC/fonts/source/public/bookhands/rtndb10.mf + RELOC/fonts/source/public/bookhands/rtndb17.mf + RELOC/fonts/source/public/bookhands/rtndb7.mf + RELOC/fonts/source/public/bookhands/rtnddig.mf + RELOC/fonts/source/public/bookhands/rtndl.mf + RELOC/fonts/source/public/bookhands/rtndlig.mf + RELOC/fonts/source/public/bookhands/rtndpunct.mf + RELOC/fonts/source/public/bookhands/rtndtitle.mf + RELOC/fonts/source/public/bookhands/rtndu.mf + RELOC/fonts/source/public/bookhands/rust10.mf + RELOC/fonts/source/public/bookhands/rust17.mf + RELOC/fonts/source/public/bookhands/rust7.mf + RELOC/fonts/source/public/bookhands/rustb10.mf + RELOC/fonts/source/public/bookhands/rustb17.mf + RELOC/fonts/source/public/bookhands/rustb7.mf + RELOC/fonts/source/public/bookhands/rustdig.mf + RELOC/fonts/source/public/bookhands/rustl.mf + RELOC/fonts/source/public/bookhands/rustlig.mf + RELOC/fonts/source/public/bookhands/rustpunct.mf + RELOC/fonts/source/public/bookhands/rusttitle.mf + RELOC/fonts/source/public/bookhands/rustu.mf + RELOC/fonts/source/public/bookhands/uncl10.mf + RELOC/fonts/source/public/bookhands/uncl17.mf + RELOC/fonts/source/public/bookhands/uncl7.mf + RELOC/fonts/source/public/bookhands/unclb10.mf + RELOC/fonts/source/public/bookhands/unclb17.mf + RELOC/fonts/source/public/bookhands/unclb7.mf + RELOC/fonts/source/public/bookhands/uncldig.mf + RELOC/fonts/source/public/bookhands/uncll.mf + RELOC/fonts/source/public/bookhands/uncllig.mf + RELOC/fonts/source/public/bookhands/unclpunct.mf + RELOC/fonts/source/public/bookhands/uncltitle.mf + RELOC/fonts/source/public/bookhands/unclu.mf + RELOC/fonts/tfm/public/bookhands/auncl17.tfm + RELOC/fonts/tfm/public/bookhands/auncl7.tfm + RELOC/fonts/tfm/public/bookhands/aunclb17.tfm + RELOC/fonts/tfm/public/bookhands/aunclb7.tfm + RELOC/fonts/tfm/public/bookhands/cmin10.tfm + RELOC/fonts/tfm/public/bookhands/cmin17.tfm + RELOC/fonts/tfm/public/bookhands/cmin7.tfm + RELOC/fonts/tfm/public/bookhands/cminb10.tfm + RELOC/fonts/tfm/public/bookhands/cminb17.tfm + RELOC/fonts/tfm/public/bookhands/cminb7.tfm + RELOC/fonts/tfm/public/bookhands/egoth10.tfm + RELOC/fonts/tfm/public/bookhands/egoth17.tfm + RELOC/fonts/tfm/public/bookhands/egoth7.tfm + RELOC/fonts/tfm/public/bookhands/egothb10.tfm + RELOC/fonts/tfm/public/bookhands/egothb17.tfm + RELOC/fonts/tfm/public/bookhands/egothb7.tfm + RELOC/fonts/tfm/public/bookhands/hmin10.tfm + RELOC/fonts/tfm/public/bookhands/hmin17.tfm + RELOC/fonts/tfm/public/bookhands/hmin7.tfm + RELOC/fonts/tfm/public/bookhands/hminb10.tfm + RELOC/fonts/tfm/public/bookhands/hminb17.tfm + RELOC/fonts/tfm/public/bookhands/hminb7.tfm + RELOC/fonts/tfm/public/bookhands/huncl10.tfm + RELOC/fonts/tfm/public/bookhands/huncl17.tfm + RELOC/fonts/tfm/public/bookhands/huncl7.tfm + RELOC/fonts/tfm/public/bookhands/hunclb10.tfm + RELOC/fonts/tfm/public/bookhands/hunclb17.tfm + RELOC/fonts/tfm/public/bookhands/hunclb7.tfm + RELOC/fonts/tfm/public/bookhands/imaj10.tfm + RELOC/fonts/tfm/public/bookhands/imaj17.tfm + RELOC/fonts/tfm/public/bookhands/imaj7.tfm + RELOC/fonts/tfm/public/bookhands/imajb10.tfm + RELOC/fonts/tfm/public/bookhands/imajb17.tfm + RELOC/fonts/tfm/public/bookhands/imajb7.tfm + RELOC/fonts/tfm/public/bookhands/imin10.tfm + RELOC/fonts/tfm/public/bookhands/imin17.tfm + RELOC/fonts/tfm/public/bookhands/imin7.tfm + RELOC/fonts/tfm/public/bookhands/iminb10.tfm + RELOC/fonts/tfm/public/bookhands/iminb17.tfm + RELOC/fonts/tfm/public/bookhands/iminb7.tfm + RELOC/fonts/tfm/public/bookhands/pgoth10.tfm + RELOC/fonts/tfm/public/bookhands/pgoth17.tfm + RELOC/fonts/tfm/public/bookhands/pgoth7.tfm + RELOC/fonts/tfm/public/bookhands/pgothb10.tfm + RELOC/fonts/tfm/public/bookhands/pgothb17.tfm + RELOC/fonts/tfm/public/bookhands/rtnd10.tfm + RELOC/fonts/tfm/public/bookhands/rtnd17.tfm + RELOC/fonts/tfm/public/bookhands/rtnd7.tfm + RELOC/fonts/tfm/public/bookhands/rtndb10.tfm + RELOC/fonts/tfm/public/bookhands/rtndb17.tfm + RELOC/fonts/tfm/public/bookhands/rtndb7.tfm + RELOC/fonts/tfm/public/bookhands/rust10.tfm + RELOC/fonts/tfm/public/bookhands/rust17.tfm + RELOC/fonts/tfm/public/bookhands/rust7.tfm + RELOC/fonts/tfm/public/bookhands/rustb10.tfm + RELOC/fonts/tfm/public/bookhands/rustb17.tfm + RELOC/fonts/tfm/public/bookhands/rustb7.tfm + RELOC/fonts/tfm/public/bookhands/sqrc10.tfm + RELOC/fonts/tfm/public/bookhands/sqrcb10.tfm + RELOC/fonts/tfm/public/bookhands/uncl10.tfm + RELOC/fonts/tfm/public/bookhands/uncl17.tfm + RELOC/fonts/tfm/public/bookhands/uncl7.tfm + RELOC/fonts/tfm/public/bookhands/unclb10.tfm + RELOC/fonts/tfm/public/bookhands/unclb17.tfm + RELOC/fonts/tfm/public/bookhands/unclb7.tfm + RELOC/fonts/type1/public/bookhands/sqrc10.pfb + RELOC/fonts/type1/public/bookhands/sqrcb10.pfb + RELOC/tex/latex/bookhands/allcmin.sty + RELOC/tex/latex/bookhands/allegoth.sty + RELOC/tex/latex/bookhands/allhmin.sty + RELOC/tex/latex/bookhands/allhuncl.sty + RELOC/tex/latex/bookhands/allimaj.sty + RELOC/tex/latex/bookhands/allimin.sty + RELOC/tex/latex/bookhands/allpgoth.sty + RELOC/tex/latex/bookhands/allrtnd.sty + RELOC/tex/latex/bookhands/allrust.sty + RELOC/tex/latex/bookhands/allsqrc.sty + RELOC/tex/latex/bookhands/alluncl.sty + RELOC/tex/latex/bookhands/carolmin.sty + RELOC/tex/latex/bookhands/egothic.sty + RELOC/tex/latex/bookhands/humanist.sty + RELOC/tex/latex/bookhands/huncial.sty + RELOC/tex/latex/bookhands/inslrmaj.sty + RELOC/tex/latex/bookhands/inslrmin.sty + RELOC/tex/latex/bookhands/ot1auncl.fd + RELOC/tex/latex/bookhands/ot1cmin.fd + RELOC/tex/latex/bookhands/ot1egoth.fd + RELOC/tex/latex/bookhands/ot1hmin.fd + RELOC/tex/latex/bookhands/ot1huncl.fd + RELOC/tex/latex/bookhands/ot1imaj.fd + RELOC/tex/latex/bookhands/ot1imin.fd + RELOC/tex/latex/bookhands/ot1pgoth.fd + RELOC/tex/latex/bookhands/ot1rtnd.fd + RELOC/tex/latex/bookhands/ot1rust.fd + RELOC/tex/latex/bookhands/ot1sqrc.fd + RELOC/tex/latex/bookhands/ot1uncl.fd + RELOC/tex/latex/bookhands/pgothic.sty + RELOC/tex/latex/bookhands/rotunda.sty + RELOC/tex/latex/bookhands/rustic.sty + RELOC/tex/latex/bookhands/sqrcaps.sty + RELOC/tex/latex/bookhands/t1auncl.fd + RELOC/tex/latex/bookhands/t1cmin.fd + RELOC/tex/latex/bookhands/t1egoth.fd + RELOC/tex/latex/bookhands/t1hmin.fd + RELOC/tex/latex/bookhands/t1huncl.fd + RELOC/tex/latex/bookhands/t1imaj.fd + RELOC/tex/latex/bookhands/t1imin.fd + RELOC/tex/latex/bookhands/t1pgoth.fd + RELOC/tex/latex/bookhands/t1rtnd.fd + RELOC/tex/latex/bookhands/t1rust.fd + RELOC/tex/latex/bookhands/t1sqrc.fd + RELOC/tex/latex/bookhands/t1uncl.fd + 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-license lppl + +name booklet +category Package +revision 15878 +shortdesc Aids for printing simple booklets. +relocated 1 +longdesc Pages of a document processed with the booklet package will be +longdesc reordered and scaled so that they can be printed as four pages +longdesc per physical sheet of paper, two pages per side. The resulting +longdesc sheets will, when folded in half, assemble into a booklet. +longdesc Instructions on producing the manual itself as a booklet are +longdesc included. +runfiles size=3 + RELOC/tex/latex/booklet/bkltprnt.sty + RELOC/tex/latex/booklet/booklet.sty +docfiles size=63 + RELOC/doc/latex/booklet/README + RELOC/doc/latex/booklet/booklet.pdf +srcfiles size=23 + RELOC/source/latex/booklet/booklet.dtx + RELOC/source/latex/booklet/booklet.ins +catalogue-ctan /macros/latex/contrib/booklet +catalogue-date 2012-04-26 14:33:15 +0200 +catalogue-license lppl1.3 +catalogue-version 0.7b + +name bookman +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX. +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap ubk.map +runfiles size=400 + RELOC/dvips/bookman/config.ubk + RELOC/fonts/afm/adobe/bookman/pbkd8a.afm + RELOC/fonts/afm/adobe/bookman/pbkdi8a.afm + RELOC/fonts/afm/adobe/bookman/pbkl8a.afm + RELOC/fonts/afm/adobe/bookman/pbkli8a.afm + RELOC/fonts/afm/urw/bookman/ubkd8a.afm + RELOC/fonts/afm/urw/bookman/ubkdi8a.afm + RELOC/fonts/afm/urw/bookman/ubkl8a.afm + RELOC/fonts/afm/urw/bookman/ubkli8a.afm + RELOC/fonts/map/dvips/bookman/ubk.map + RELOC/fonts/tfm/adobe/bookman/pbkd.tfm + RELOC/fonts/tfm/adobe/bookman/pbkd7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkd8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkd8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkd8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdc.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdc7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdc8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdi8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkdo8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkl8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbklc.tfm + RELOC/fonts/tfm/adobe/bookman/pbklc7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbklc8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbkli8t.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo7t.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo8c.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo8r.tfm + RELOC/fonts/tfm/adobe/bookman/pbklo8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkb7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkb8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkb8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkb8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbc7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbc8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbi7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbi8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbi8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbi8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbo7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbo8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbo8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkbo8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkd7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkd8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkd8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkd8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdc7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdc8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdi7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdi8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdi8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdi8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdo7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdo8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdo8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkdo8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkl7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkl8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkl8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkl8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklc7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklc8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkli7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkli8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkli8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkli8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklo7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklo8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklo8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubklo8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkr7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkr8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkr8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkr8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkrc7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkrc8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkri7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkri8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkri8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkri8t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkro7t.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkro8c.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkro8r.tfm + RELOC/fonts/tfm/urw35vf/bookman/ubkro8t.tfm + RELOC/fonts/type1/urw/bookman/ubkd8a.pfb + RELOC/fonts/type1/urw/bookman/ubkd8a.pfm + RELOC/fonts/type1/urw/bookman/ubkdi8a.pfb + RELOC/fonts/type1/urw/bookman/ubkdi8a.pfm + RELOC/fonts/type1/urw/bookman/ubkl8a.pfb + RELOC/fonts/type1/urw/bookman/ubkl8a.pfm + RELOC/fonts/type1/urw/bookman/ubkli8a.pfb + RELOC/fonts/type1/urw/bookman/ubkli8a.pfm + RELOC/fonts/vf/adobe/bookman/pbkd.vf + RELOC/fonts/vf/adobe/bookman/pbkd7t.vf + RELOC/fonts/vf/adobe/bookman/pbkd8c.vf + RELOC/fonts/vf/adobe/bookman/pbkd8t.vf + RELOC/fonts/vf/adobe/bookman/pbkdc.vf + RELOC/fonts/vf/adobe/bookman/pbkdc7t.vf + RELOC/fonts/vf/adobe/bookman/pbkdc8t.vf + RELOC/fonts/vf/adobe/bookman/pbkdi.vf + RELOC/fonts/vf/adobe/bookman/pbkdi7t.vf + RELOC/fonts/vf/adobe/bookman/pbkdi8c.vf + RELOC/fonts/vf/adobe/bookman/pbkdi8t.vf + RELOC/fonts/vf/adobe/bookman/pbkdo.vf + RELOC/fonts/vf/adobe/bookman/pbkdo7t.vf + RELOC/fonts/vf/adobe/bookman/pbkdo8c.vf + RELOC/fonts/vf/adobe/bookman/pbkdo8t.vf + RELOC/fonts/vf/adobe/bookman/pbkl.vf + RELOC/fonts/vf/adobe/bookman/pbkl7t.vf + RELOC/fonts/vf/adobe/bookman/pbkl8c.vf + RELOC/fonts/vf/adobe/bookman/pbkl8t.vf + RELOC/fonts/vf/adobe/bookman/pbklc.vf + RELOC/fonts/vf/adobe/bookman/pbklc7t.vf + RELOC/fonts/vf/adobe/bookman/pbklc8t.vf + RELOC/fonts/vf/adobe/bookman/pbkli.vf + RELOC/fonts/vf/adobe/bookman/pbkli7t.vf + RELOC/fonts/vf/adobe/bookman/pbkli8c.vf + RELOC/fonts/vf/adobe/bookman/pbkli8t.vf + RELOC/fonts/vf/adobe/bookman/pbklo.vf + RELOC/fonts/vf/adobe/bookman/pbklo7t.vf + RELOC/fonts/vf/adobe/bookman/pbklo8c.vf + RELOC/fonts/vf/adobe/bookman/pbklo8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkb7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkb8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkb8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbc7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbc8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbi7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbi8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbi8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbo7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbo8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkbo8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkd7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkd8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkd8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdc7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdc8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdi7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdi8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdi8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdo7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdo8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkdo8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkl7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkl8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkl8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubklc7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubklc8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkli7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkli8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkli8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubklo7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubklo8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubklo8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkr7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkr8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkr8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkrc7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkrc8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkri7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkri8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkri8t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkro7t.vf + RELOC/fonts/vf/urw35vf/bookman/ubkro8c.vf + RELOC/fonts/vf/urw35vf/bookman/ubkro8t.vf + RELOC/tex/latex/bookman/8rubk.fd + RELOC/tex/latex/bookman/omlubk.fd + RELOC/tex/latex/bookman/omsubk.fd + RELOC/tex/latex/bookman/ot1ubk.fd + RELOC/tex/latex/bookman/t1ubk.fd + RELOC/tex/latex/bookman/ts1ubk.fd +catalogue-ctan /fonts/urw/base35 +catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-license gpl + +name booktabs-de +category Package +revision 21907 +shortdesc German version of booktabs. +relocated 1 +longdesc This is a "translation" of the booktabs. +docfiles size=82 + RELOC/doc/latex/booktabs-de/README-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 +catalogue-ctan /macros/latex/contrib/booktabs-de +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 1.61803 + +name booktabs-fr +category Package +revision 21948 +shortdesc French translation of booktabs documentation. +relocated 1 +longdesc The translation comes from a collection provided by Benjamin +longdesc Bayart. +docfiles size=67 + RELOC/doc/latex/booktabs-fr/README + RELOC/doc/latex/booktabs-fr/f-booktabs.dtx + RELOC/doc/latex/booktabs-fr/f-booktabs.pdf + RELOC/doc/latex/booktabs-fr/ltxdoc.cfg +catalogue-ctan /info/translations/booktabs/fr +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +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. +relocated 1 +longdesc The \boolexpr macro evaluates boolean expressions in a purely +longdesc expandable way. \boolexpr{ A \OR B \AND C } expands to 0 if the +longdesc logical expression is TRUE. A, B, C may be: numeric expressions +longdesc such as: x=y, x<>y, x>y or x} ... \case{} ... ... \otherwise ... \endswitch +runfiles size=2 + RELOC/tex/latex/boolexpr/boolexpr.sty +docfiles size=55 + RELOC/doc/latex/boolexpr/README + RELOC/doc/latex/boolexpr/boolexpr.pdf +srcfiles size=12 + RELOC/source/latex/boolexpr/boolexpr.dtx + RELOC/source/latex/boolexpr/boolexpr.ins +catalogue-ctan /macros/latex/contrib/boolexpr +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 3.14 + +name boondox +category Package +revision 22313 +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. +execute addMap boondox.map +runfiles size=66 + RELOC/fonts/map/dvips/boondox/boondox.map + RELOC/fonts/tfm/public/boondox/BOONDOX-b-cal.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-b-calo.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-b-ds.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-b-frak.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-r-cal.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-r-calo.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-r-ds.tfm + RELOC/fonts/tfm/public/boondox/BOONDOX-r-frak.tfm + RELOC/fonts/tfm/public/boondox/zxxbf7z.tfm + RELOC/fonts/tfm/public/boondox/zxxbf8a.tfm + RELOC/fonts/tfm/public/boondox/zxxbl7z.tfm + RELOC/fonts/tfm/public/boondox/zxxbl8a.tfm + RELOC/fonts/tfm/public/boondox/zxxbow7z.tfm + RELOC/fonts/tfm/public/boondox/zxxbw7z.tfm + RELOC/fonts/tfm/public/boondox/zxxbw8a.tfm + RELOC/fonts/tfm/public/boondox/zxxrf7z.tfm + RELOC/fonts/tfm/public/boondox/zxxrf8a.tfm + RELOC/fonts/tfm/public/boondox/zxxrl7z.tfm + RELOC/fonts/tfm/public/boondox/zxxrl8a.tfm + RELOC/fonts/tfm/public/boondox/zxxrow7z.tfm + RELOC/fonts/tfm/public/boondox/zxxrw7z.tfm + RELOC/fonts/tfm/public/boondox/zxxrw8a.tfm + RELOC/fonts/type1/public/boondox/zxxbf8a.pfb + RELOC/fonts/type1/public/boondox/zxxbl8a.pfb + RELOC/fonts/type1/public/boondox/zxxbw8a.pfb + RELOC/fonts/type1/public/boondox/zxxrf8a.pfb + RELOC/fonts/type1/public/boondox/zxxrl8a.pfb + RELOC/fonts/type1/public/boondox/zxxrw8a.pfb + RELOC/fonts/vf/public/boondox/BOONDOX-b-cal.vf + RELOC/fonts/vf/public/boondox/BOONDOX-b-calo.vf + RELOC/fonts/vf/public/boondox/BOONDOX-b-ds.vf + RELOC/fonts/vf/public/boondox/BOONDOX-b-frak.vf + RELOC/fonts/vf/public/boondox/BOONDOX-r-cal.vf + RELOC/fonts/vf/public/boondox/BOONDOX-r-calo.vf + RELOC/fonts/vf/public/boondox/BOONDOX-r-ds.vf + RELOC/fonts/vf/public/boondox/BOONDOX-r-frak.vf + RELOC/tex/latex/boondox/BOONDOX-cal.sty + RELOC/tex/latex/boondox/BOONDOX-calo.sty + RELOC/tex/latex/boondox/BOONDOX-ds.sty + RELOC/tex/latex/boondox/BOONDOX-frak.sty + RELOC/tex/latex/boondox/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 +catalogue-ctan /fonts/boondox +catalogue-date 2014-04-07 13:51:00 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name bophook +category Package +revision 17062 +shortdesc Provides an At-Begin-Page hook. +relocated 1 +longdesc Using the \AtBeginPage hook, you can add material in the +longdesc background of a page. \PageLayout can be used to give page +longdesc makeup commands to be executed on every page (e.g., depending +longdesc on the page style). +runfiles size=1 + RELOC/tex/latex/bophook/bophook.sty +docfiles size=16 + RELOC/doc/latex/bophook/bophook.pdf +srcfiles size=4 + RELOC/source/latex/bophook/bophook.dtx + RELOC/source/latex/bophook/bophook.ins +catalogue-ctan /macros/latex/contrib/bophook +catalogue-date 2012-04-26 14:33:15 +0200 +catalogue-license lppl +catalogue-version 0.02 + +name borceux +category Package +revision 21047 +shortdesc Diagram macros by Francois Borceux. +relocated 1 +longdesc The macros support the construction of diagrams, such as those +longdesc that appear in category theory texts. The user gives the list +longdesc of vertices and arrows to be included, just as when composing a +longdesc matrix, and the program takes care of computing the dimensions +longdesc of the arrows and realizing the pagesetting. All the user has +longdesc to do about the arrows is to specify their type (monomorphism, +longdesc pair of adjoint arrows, etc.) and their direction (north, 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 +docfiles size=23 + RELOC/doc/generic/borceux/Diagram_Mode_d_Emploi + RELOC/doc/generic/borceux/Diagram_Read_Me + RELOC/doc/generic/borceux/README + RELOC/doc/generic/borceux/compatibility/OldDiagram + RELOC/doc/generic/borceux/compatibility/OldMaxiDiagram + RELOC/doc/generic/borceux/compatibility/OldMicroDiagram + RELOC/doc/generic/borceux/compatibility/OldMiniDiagram + RELOC/doc/generic/borceux/compatibility/OldMultipleArrows +catalogue-ctan /macros/generic/diagrams/borceux +catalogue-date 2012-02-21 12:29:07 +0100 +catalogue-license other-free + +name bosisio +category Package +revision 16989 +shortdesc A collection of packages by Francesco Bosisio. +relocated 1 +longdesc A collection of packages containing: accenti dblfont; envmath; +longdesc evenpage; graphfig; mathcmd; quotes; and sobolev. +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 +docfiles size=172 + RELOC/doc/latex/bosisio/README + RELOC/doc/latex/bosisio/accenti.html + RELOC/doc/latex/bosisio/accenti.pdf + RELOC/doc/latex/bosisio/dblfont.html + RELOC/doc/latex/bosisio/dblfont.pdf + RELOC/doc/latex/bosisio/envmath.html + RELOC/doc/latex/bosisio/envmath.pdf + RELOC/doc/latex/bosisio/evenpage.html + RELOC/doc/latex/bosisio/evenpage.pdf + RELOC/doc/latex/bosisio/graphfig.html + RELOC/doc/latex/bosisio/graphfig.pdf + RELOC/doc/latex/bosisio/index.html + RELOC/doc/latex/bosisio/makedoc + RELOC/doc/latex/bosisio/mathcmd.html + RELOC/doc/latex/bosisio/mathcmd.pdf + RELOC/doc/latex/bosisio/quotes.html + RELOC/doc/latex/bosisio/quotes.pdf + RELOC/doc/latex/bosisio/sobolev.html + RELOC/doc/latex/bosisio/sobolev.pdf +srcfiles size=41 + RELOC/source/latex/bosisio/accenti.drv + RELOC/source/latex/bosisio/accenti.dtx + RELOC/source/latex/bosisio/dblfont.drv + RELOC/source/latex/bosisio/dblfont.dtx + RELOC/source/latex/bosisio/envmath.drv + RELOC/source/latex/bosisio/envmath.dtx + RELOC/source/latex/bosisio/evenpage.drv + RELOC/source/latex/bosisio/evenpage.dtx + RELOC/source/latex/bosisio/graphfig.drv + RELOC/source/latex/bosisio/graphfig.dtx + RELOC/source/latex/bosisio/mathcmd.drv + RELOC/source/latex/bosisio/mathcmd.dtx + RELOC/source/latex/bosisio/quotes.drv + RELOC/source/latex/bosisio/quotes.dtx + RELOC/source/latex/bosisio/sobolev.drv + RELOC/source/latex/bosisio/sobolev.dtx +catalogue-ctan /macros/latex/contrib/bosisio +catalogue-date 2012-04-24 13:27:55 +0200 +catalogue-license lppl + +name boxedminipage2e +category Package +revision 36477 +shortdesc Framed minipages of a specified total width (text and frame combined) +relocated 1 +longdesc The package essentially just wraps a minipage within an \fbox. +longdesc However, while +longdesc \fbox{\begin{minipage}{\linewidth}...\end{minipage}} just out +longdesc into the margin, \begin{boxedminipage}...\end{boxedminipage} +longdesc does not. Instead, it subtracts the frame's dimensions from the +longdesc specified dimensions of the minipage before typesetting the +longdesc minipage. +runfiles size=1 + RELOC/tex/latex/boxedminipage2e/boxedminipage2e.sty +docfiles size=53 + RELOC/doc/latex/boxedminipage2e/README + RELOC/doc/latex/boxedminipage2e/boxedminipage2e.pdf +srcfiles size=4 + RELOC/source/latex/boxedminipage2e/boxedminipage2e.dtx + RELOC/source/latex/boxedminipage2e/boxedminipage2e.ins +catalogue-ctan /macros/latex/contrib/boxedminipage2e +catalogue-date 2015-03-14 05:22:36 +0100 +catalogue-license lppl1.3 +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. +relocated 1 +longdesc The package allows the user to optimise presentation of LaTeX +longdesc tables and figures. Boxhandler will lay out table and figure +longdesc captions with a variety of stylistic apperances, and will also +longdesc allow figures and tables to be "wrapped" in a manner consistent +longdesc with many business and government documents. For a document +longdesc that might appear in different venues with different +longdesc formatting, boxhandler permits the creation of a LaTeX source +longdesc document that can, with a single-line change in the source +longdesc code, produce an output that has very different layout from the +longdesc baseline configuration, not only in terms of caption style, but +longdesc more importantly in terms of the locations where figures, +longdesc tables and lists appear (or not) in the document. Deferral +longdesc routines also allow one to keep all figure and table data in a +longdesc separate source file, while nonetheless producing a document +longdesc with figures and tables appearing in the desired location. +runfiles size=6 + RELOC/tex/latex/boxhandler/boxhandler.sty +docfiles size=87 + RELOC/doc/latex/boxhandler/README + RELOC/doc/latex/boxhandler/boxhandler.pdf +srcfiles size=24 + RELOC/source/latex/boxhandler/boxhandler.dtx + RELOC/source/latex/boxhandler/boxhandler.ins +catalogue-ctan /macros/latex/contrib/boxhandler +catalogue-date 2013-04-25 17:41:24 +0200 +catalogue-license lppl +catalogue-version 1.30 + +name bpchem +category Package +revision 15878 +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 +srcfiles size=5 + RELOC/source/latex/bpchem/bpchem.dtx + RELOC/source/latex/bpchem/bpchem.ins +catalogue-ctan /macros/latex/contrib/bpchem +catalogue-date 2011-09-27 19:59:36 +0200 +catalogue-license lppl +catalogue-version v1.06 + +name bpolynomial +category Package +revision 15878 +shortdesc Drawing polynomial functions of up to order 3. +relocated 1 +longdesc This MetaPost package helps plotting polynomial and root +longdesc functions up to order three. The package provides macros to +longdesc calculate Bezier curves exactly matching a given constant, +longdesc linear, quadratic or cubic polynomial, or square or cubic root +longdesc function. In addition, tangents on all functions and +longdesc derivatives of polynomials can be calculated. +runfiles size=3 + RELOC/metapost/bpolynomial/bpolynomial.mp +docfiles size=67 + RELOC/doc/metapost/bpolynomial/CHANGES + RELOC/doc/metapost/bpolynomial/README + RELOC/doc/metapost/bpolynomial/TODO + RELOC/doc/metapost/bpolynomial/bpolynomial.pdf + RELOC/doc/metapost/bpolynomial/bpolynomial.tex + RELOC/doc/metapost/bpolynomial/examples.mp +catalogue-ctan /graphics/metapost/contrib/macros/bpolynomial +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.5 + +name bracketkey +category Package +revision 17129 +shortdesc Produce bracketed identification keys. +relocated 1 +longdesc The package provides an environment bracketkey for use when +longdesc producing lists of species. +runfiles size=1 + RELOC/tex/latex/bracketkey/bracketkey.sty +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/bracketkey.tex +catalogue-ctan /macros/latex/contrib/bracketkey +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name braids +category Package +revision 23790 +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 + 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 +catalogue-ctan /graphics/pgf/contrib/braids +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name braille +category Package +revision 20655 +shortdesc Support for braille. +relocated 1 +longdesc This package allows the user to produce Braille documents on +longdesc paper for the blind without knowing Braille (which can take +longdesc years to learn). Python scripts grade1.py and grade2.py convert +longdesc ordinary text to grade 1 and 2 Braille tags; then, the LaTeX +longdesc package takes the tags and prints out corresponding Braille +longdesc symbols. +runfiles size=5 + RELOC/tex/latex/braille/braille.sty +docfiles size=53 + RELOC/doc/latex/braille/README + RELOC/doc/latex/braille/braille.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.tex +catalogue-ctan /macros/latex/contrib/braille +catalogue-date 2012-04-29 15:53:50 +0200 +catalogue-license lppl1.3 + +name braket +category Package +revision 17127 +shortdesc Dirac bra-ket and set notations. +relocated 1 +longdesc Provides macros to typeset bra-ket notation, as well as set +longdesc specifiers, with a single ("|") or a double ("||" or ("\|") +longdesc vertical bar specifier in between two bracketed parts. Each +longdesc macro comes in a fixed-size version and an expanding version. +longdesc If the package finds itself operating under e-tex, it uses the +longdesc extended primitive \middle for more reliable results +runfiles size=1 + RELOC/tex/latex/braket/braket.sty +docfiles size=56 + RELOC/doc/latex/braket/braket.pdf + RELOC/doc/latex/braket/braket.tex +catalogue-ctan /macros/latex/contrib/braket +catalogue-date 2012-04-29 15:53:50 +0200 +catalogue-license pd + +name brandeis-dissertation +category Package +revision 32047 +shortdesc Class for Brandeis University dissertations. +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 +docfiles size=64 + RELOC/doc/latex/brandeis-dissertation/README + RELOC/doc/latex/brandeis-dissertation/brandeis-dissertation.pdf + RELOC/doc/latex/brandeis-dissertation/brandeis-dissertation.tex +srcfiles size=13 + RELOC/source/latex/brandeis-dissertation/brandeis-dissertation.dtx + RELOC/source/latex/brandeis-dissertation/brandeis-dissertation.ins +catalogue-ctan /macros/latex/contrib/brandeis-dissertation +catalogue-date 2015-03-11 20:35:39 +0100 +catalogue-license lppl1.2 +catalogue-version 2.0 + +name breakurl +category Package +revision 29901 +shortdesc Line-breakable \url-like links in hyperref when compiling via dvips/ps2pdf. +relocated 1 +longdesc This package provides a command much like hyperref's \url that +longdesc typesets a URL using a typewriter-like font. However, if the +longdesc dvips driver is being used, the original \url doesn't allow +longdesc line breaks in the middle of the created link: the link comes +longdesc in one atomic piece. This package allows such line breaks in +longdesc the generated links. +runfiles size=3 + RELOC/tex/latex/breakurl/breakurl.sty +docfiles size=32 + RELOC/doc/latex/breakurl/README + RELOC/doc/latex/breakurl/breakurl.pdf +srcfiles size=9 + RELOC/source/latex/breakurl/breakurl.dtx + RELOC/source/latex/breakurl/breakurl.ins +catalogue-ctan /macros/latex/contrib/breakurl +catalogue-date 2013-04-12 10:31:24 +0200 +catalogue-license lppl +catalogue-version 1.40 + +name breqn +category Package +revision 38099 +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. +runfiles size=42 + RELOC/tex/latex/breqn/breqn.sty + RELOC/tex/latex/breqn/cmbase.sym + RELOC/tex/latex/breqn/flexisym.sty + RELOC/tex/latex/breqn/mathpazo.sym + RELOC/tex/latex/breqn/mathptmx.sym + RELOC/tex/latex/breqn/mathstyle.sty + RELOC/tex/latex/breqn/msabm.sym +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-ctan /macros/latex/contrib/breqn +catalogue-date 2015-08-11 18:03:08 +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 + +name bropd +category Package +revision 35383 +shortdesc Simplified brackets and differentials in LaTeX. +relocated 1 +longdesc The package simplifies the process of writing differential +longdesc operators and brackets in LaTeX. The commands facilitate the +longdesc easy manipulation of equations involving brackets and allow +longdesc partial differentials to be expressed in an alternate form. +runfiles size=1 + RELOC/tex/latex/bropd/bropd.sty +docfiles size=17 + RELOC/doc/latex/bropd/README + RELOC/doc/latex/bropd/bropd.pdf +srcfiles size=4 + RELOC/source/latex/bropd/bropd.dtx +catalogue-ctan /macros/latex/contrib/bropd +catalogue-date 2014-10-14 21:37:00 +0200 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name brushscr +category Package +revision 28363 +shortdesc A handwriting script font. +relocated 1 +longdesc The BrushScript font simulates hand-written characters; it is +longdesc distributed in Adobe Type 1 format (but is available in italic +longdesc shape only). The package includes the files needed by LaTeX in +longdesc order to use that font. The file AAA_readme.tex fully describes +longdesc the package and sample.tex illustrates its use. +execute addMap pbsi.map +runfiles size=31 + RELOC/dvips/brushscr/config.pbsi + RELOC/fonts/afm/public/brushscr/BrushScriptX-Italic.afm + RELOC/fonts/map/dvips/brushscr/pbsi.map + RELOC/fonts/tfm/public/brushscr/pbsi.tfm + RELOC/fonts/tfm/public/brushscr/pbsi8r.tfm + RELOC/fonts/tfm/public/brushscr/pbsi8t.tfm + RELOC/fonts/type1/public/brushscr/BrushScriptX-Italic.pfa + RELOC/fonts/vf/public/brushscr/pbsi8t.vf + RELOC/tex/latex/brushscr/pbsi.sty + RELOC/tex/latex/brushscr/t1pbsi.fd +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-license pd + +name bullcntr +category Package +revision 15878 +shortdesc Display list item counter as regular pattern of bullets. +relocated 1 +longdesc The bullcntr package defines the command bullcntr, which may be +longdesc thought of as an analogue of the \fnsymbol command: like the +longdesc latter, it displays the value of a counter lying between 1 and +longdesc 9, but uses, for the purpose, a regular pattern of bullets. +runfiles size=3 + RELOC/tex/latex/bullcntr/bullcntr.sty + RELOC/tex/latex/bullcntr/bullenum.sty +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/bullcntr-man.tex + RELOC/doc/latex/bullcntr/bullcntr-sam.tex + RELOC/doc/latex/bullcntr/bullenum-sam.tex + RELOC/doc/latex/bullcntr/manifest.txt +srcfiles size=17 + RELOC/source/latex/bullcntr/bullcntr.dtx + RELOC/source/latex/bullcntr/bullcntr.ins +catalogue-ctan /macros/latex/contrib/bullcntr +catalogue-date 2012-04-29 18:30:38 +0200 +catalogue-license lppl1.3 +catalogue-version 0.04 + +name bundledoc +category Package +revision 35041 +shortdesc Bundle together all the files needed to build a LaTeX document. +longdesc The bundledoc package is a post-processor for the snapshot +longdesc package that bundles together all the classes, packages and +longdesc files needed to build a given LaTeX document. It reads the .dep +longdesc file that snapshot produces, finds each of the files mentioned +longdesc therein, and archives them into a single .tar.gz (or .zip, or +longdesc whatever) file, suitable for moving across systems, +longdesc transmitting to a colleague, etc. A script, arlatex, provides +longdesc an alternative "archiving" mechanism, creating a single LaTeX +longdesc file that contains all of the ancillary files of a LaTeX +longdesc document, together with the document itself, using the +longdesc filecontents* environment. +depend bundledoc.ARCH +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 + +name bundledoc.i386-linux +category Package +revision 17794 +shortdesc i386-linux files of bundledoc +binfiles arch=i386-linux size=2 + bin/i386-linux/arlatex + bin/i386-linux/bundledoc + +name burmese +category Package +revision 25185 +shortdesc Basic Support for Writing Burmese. +relocated 1 +longdesc This package provides basic support for writing Burmese. The +longdesc package provides a preprocessor (written in Perl), an Adobe +longdesc Type 1 font, and LaTeX macros. +execute addMap burmese.map +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 + +name bussproofs +category Package +revision 27488 +shortdesc Proof trees in the style of the sequent calculus. +relocated 1 +longdesc The package allows the construction of proof trees in the style +longdesc of the sequent calculus and many other proof systems. One novel +longdesc feature of the macros is they support the horizontal alignment +longdesc according to some centre point specified with the command +longdesc \fCenter. This is the style often used in sequent calculus +longdesc proofs. The package works in a Plain TeX document, as well as +longdesc in LaTeX; an exposition of the commands available is given in +longdesc the package file itself. +runfiles size=10 + RELOC/tex/latex/bussproofs/bussproofs.sty +docfiles size=42 + RELOC/doc/latex/bussproofs/BussGuide2.pdf + RELOC/doc/latex/bussproofs/BussGuide2.tex + RELOC/doc/latex/bussproofs/README.txt + RELOC/doc/latex/bussproofs/testbp2.pdf + RELOC/doc/latex/bussproofs/testbp2.tex +catalogue-ctan /macros/latex/contrib/bussproofs +catalogue-date 2015-02-03 17:14:53 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name bxbase +category Package +revision 28825 +shortdesc BX bundle base components. +relocated 1 +runfiles size=14 + RELOC/tex/latex/bxbase/bxbase.def + RELOC/tex/latex/bxbase/bxbase.sty + RELOC/tex/latex/bxbase/bxucs.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-ctan /language/japanese/BX/bxbase +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 0.5 + +name bxcjkjatype +category Package +revision 32048 +shortdesc Typeset Japanese with pdfLaTeX and CJK. +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 + 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/sample-bxcjkjatype-beamer.tex + RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype.pdf + RELOC/doc/latex/bxcjkjatype/sample-bxcjkjatype.tex +catalogue-ctan /language/japanese/bxcjkjatype +catalogue-date 2014-11-17 07:39:31 +0100 +catalogue-license other-free +catalogue-version 0.2c + +name bxdpx-beamer +category Package +revision 30220 +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 +docfiles size=4 + RELOC/doc/latex/bxdpx-beamer/LICENSE + RELOC/doc/latex/bxdpx-beamer/README + RELOC/doc/latex/bxdpx-beamer/sample/test-framezoom.tex + RELOC/doc/latex/bxdpx-beamer/sample/test-navisymbol.tex +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 + +name bxeepic +category Package +revision 30559 +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 +docfiles size=6 + RELOC/doc/latex/bxeepic/LICENSE + RELOC/doc/latex/bxeepic/README + RELOC/doc/latex/bxeepic/sample-bxeepic.pdf + RELOC/doc/latex/bxeepic/sample-bxeepic.tex +catalogue-ctan /macros/latex/contrib/bxeepic +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 0.2 + +name bxjscls +category Package +revision 38324 +shortdesc Japanese document class collection for all major engines +relocated 1 +longdesc This package provides an extended version of the Japanese +longdesc document class collection provided by jsclasses. While the +longdesc original version supports only pLaTeX and upLaTeX, the extended +longdesc version also supports pdfLaTeX, XeLaTeX and LuaLaTeX, with the +longdesc aid of suitable packages that provide capability of Japanese +longdesc typesetting. +runfiles size=62 + RELOC/tex/latex/bxjscls/bxjsarticle.cls + RELOC/tex/latex/bxjscls/bxjsbook.cls + RELOC/tex/latex/bxjscls/bxjsja-minimal.def + RELOC/tex/latex/bxjscls/bxjsja-standard.def + 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-ctan /language/japanese/BX/bxjscls +catalogue-date 2015-09-08 13:12:40 +0200 +catalogue-license bsd2 +catalogue-topics japanese class +catalogue-version 1.0b + +name bxpdfver +category Package +revision 38050 +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 + RELOC/doc/latex/bxpdfver/LICENSE + RELOC/doc/latex/bxpdfver/README + RELOC/doc/latex/bxpdfver/README-ja + RELOC/doc/latex/bxpdfver/sample-bxpdfver.tex +catalogue-ctan /macros/latex/contrib/bxpdfver +catalogue-date 2015-08-05 08:59:43 +0200 +catalogue-license other-free +catalogue-topics pdf-feat +catalogue-version 0.2a + +name bytefield +category Package +revision 34336 +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 + RELOC/doc/latex/bytefield/bf-example.pdf + RELOC/doc/latex/bytefield/bf-example.tex + RELOC/doc/latex/bytefield/bytefield.pdf +srcfiles size=33 + RELOC/source/latex/bytefield/bytefield.dtx + RELOC/source/latex/bytefield/bytefield.ins +catalogue-ctan /macros/latex/contrib/bytefield +catalogue-date 2014-06-06 21:33:06 +0200 +catalogue-license lppl +catalogue-version 2.2 + +name c90 +category Package +revision 37676 +relocated 1 +runfiles size=1 + RELOC/fonts/enc/dvips/c90/c90.enc +docfiles size=22 + RELOC/doc/fonts/enc/c90/c90.pdf +srcfiles size=17 + RELOC/source/fonts/enc/c90/c90.etx + RELOC/source/fonts/enc/c90/c90.mtx + +name cabin +category Package +revision 31265 +shortdesc A humanist Sans Serif font, with LaTeX support. +relocated 1 +longdesc Cabin is a humanist sans with four weights and true italics and +longdesc small capitals. According to the designer, Pablo Impallari, +longdesc Cabin was inspired by Edward Johnston's and Eric Gill's +longdesc typefaces, with a touch of modernism. Cabin incorporates modern +longdesc proportions, optical adjustments, and some elements of the +longdesc geometric sans. cabin.sty supports use of the font under LaTeX, +longdesc pdfLaTeX, xeLaTeX and luaLaTeX; it uses the mweights, to manage +longdesc the user's view of all those font weights. An sfdefault option +longdesc is provided to enable Cabin as the default text font. The +longdesc fontaxes package is required for use with [pdf]LaTeX. +execute addMap cabin.map +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 + 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-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-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-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-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-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 + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Bold-tlf-t1--base.tfm + 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-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-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 + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-BoldItalic-tlf-t1--base.tfm + 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-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-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 + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Medium-tlf-t1--base.tfm + 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-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-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 + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-MediumItalic-tlf-t1--base.tfm + 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-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-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 + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-Regular-tlf-t1--base.tfm + 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-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-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 + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBold-tlf-t1--base.tfm + 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-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-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 + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/cabin/CabinCondensed-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/type1/impallari/cabin/Cabin-Bold.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-BoldItalic.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-Italic.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-Medium.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-MediumItalic.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-Regular.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-SemiBold.pfb + RELOC/fonts/type1/impallari/cabin/Cabin-SemiBoldItalic.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-Bold.pfb + RELOC/fonts/type1/impallari/cabin/CabinCondensed-BoldItalic.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-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Medium-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-Regular-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/cabin/Cabin-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/cabin/CabinCondensed-Bold-tlf-ly1.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-tlf-ly1.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-Medium-tlf-ly1.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-tlf-ly1.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-tlf-ly1.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-tlf-ly1.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-tlf-ly1.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-TLF.fd + RELOC/tex/latex/cabin/LY1CabinCondensed-TLF.fd + RELOC/tex/latex/cabin/OT1Cabin-TLF.fd + RELOC/tex/latex/cabin/OT1CabinCondensed-TLF.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-license ofl + +name cachepic +category Package +revision 26313 +shortdesc Convert document fragments into graphics. +longdesc The bundle simplifies and automates conversion of document +longdesc fragments into external EPS or PDF files. The bundle consists +longdesc of two parts: a LaTeX package that implements a document level +longdesc interface, and a command line tool (written in lua) that +longdesc generates the external graphics. +depend cachepic.ARCH +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-license lppl1.3 +catalogue-version 1.0 + +name cachepic.i386-linux +category Package +revision 15543 +shortdesc i386-linux files of cachepic +binfiles arch=i386-linux size=1 + bin/i386-linux/cachepic + +name caladea +category Package +revision 34991 +shortdesc Support for the Caladea family of fonts +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Caladea family of fonts, designed by Carolina +longdesc Giovagnoli and Andres Torresi of the Huerta Tipografica foundry +longdesc and adopted by Google for ChromeOS as a font-metric compatible +longdesc replacement for Cambria. +execute addMap caladea.map +runfiles size=204 + RELOC/fonts/enc/dvips/caladea/cld_cb3g7n.enc + RELOC/fonts/enc/dvips/caladea/cld_fjy5hl.enc + RELOC/fonts/enc/dvips/caladea/cld_prieif.enc + RELOC/fonts/enc/dvips/caladea/cld_w45fff.enc + RELOC/fonts/map/dvips/caladea/caladea.map + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-t1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-t1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-t1.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/huerta/caladea/Caladea-Regular-tlf-ts1.tfm + RELOC/fonts/truetype/huerta/caladea/Caladea-Bold.ttf + RELOC/fonts/truetype/huerta/caladea/Caladea-BoldItalic.ttf + RELOC/fonts/truetype/huerta/caladea/Caladea-Italic.ttf + RELOC/fonts/truetype/huerta/caladea/Caladea-Regular.ttf + RELOC/fonts/type1/huerta/caladea/Caladea-Bold.pfb + RELOC/fonts/type1/huerta/caladea/Caladea-BoldItalic.pfb + RELOC/fonts/type1/huerta/caladea/Caladea-Italic.pfb + RELOC/fonts/type1/huerta/caladea/Caladea-Regular.pfb + RELOC/fonts/vf/huerta/caladea/Caladea-Bold-tlf-ly1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Bold-tlf-t1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Bold-tlf-ts1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Italic-tlf-ly1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Italic-tlf-t1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Italic-tlf-ts1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Regular-tlf-ly1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Regular-tlf-t1.vf + RELOC/fonts/vf/huerta/caladea/Caladea-Regular-tlf-ts1.vf + RELOC/tex/latex/caladea/LY1Caladea-TLF.fd + RELOC/tex/latex/caladea/OT1Caladea-TLF.fd + RELOC/tex/latex/caladea/T1Caladea-TLF.fd + RELOC/tex/latex/caladea/TS1Caladea-TLF.fd + RELOC/tex/latex/caladea/caladea.sty +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-license apache2 + +name calcage +category Package +revision 27725 +shortdesc Calculate the age of something, in years. +relocated 1 +longdesc The package calculates the age of someone or something in +longdesc years. Internally it uses the datenumber package to calculate +longdesc the age in days; conversion from days to years is then +longdesc performed, taking care of leap years and such odd things. +runfiles size=1 + RELOC/tex/latex/calcage/calcage.sty +docfiles size=70 + RELOC/doc/latex/calcage/README + RELOC/doc/latex/calcage/calcage.pdf +srcfiles size=5 + RELOC/source/latex/calcage/calcage.dtx + RELOC/source/latex/calcage/calcage.ins +catalogue-ctan /macros/latex/contrib/calcage +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.90 + +name calctab +category Package +revision 15878 +shortdesc Language for numeric tables. +relocated 1 +longdesc The calctab package helps the user to typeset a kind of +longdesc economic table such as invoices, expense notes and liquidation, +longdesc or other tabular material with a values column. The code +longdesc computes sum and percentage with floating point numeric methods +longdesc (using the fltpoint package) and builds the render table task. +runfiles size=5 + RELOC/tex/latex/calctab/calctab.sty +docfiles size=115 + RELOC/doc/latex/calctab/README + RELOC/doc/latex/calctab/calctab_manual.pdf + RELOC/doc/latex/calctab/calctab_manual.tex +catalogue-ctan /macros/latex/contrib/calctab +catalogue-date 2012-06-13 20:28:58 +0200 +catalogue-license lppl +catalogue-version v0.6.1 + +name calculation +category Package +revision 35973 +shortdesc Typesetting reasoned calculations, also called calculational proofs. +relocated 1 +longdesc The calculation environment formats reasoned calculations, also +longdesc called calculational proofs. The notion of reasoned +longdesc calculations or calculational proofs was originally advocated +longdesc by Wim Feijen and Edsger Dijkstra. The package accepts options +longdesc fleqn and leqno (with the same effect as the LaTeX options +longdesc fleqn and leqno, or may inherit the options from the document +longdesc class). It allows steps and expressions to be numbered (by +longdesc LaTeX equation numbers, obeying the LaTeX \label command to +longdesc refer to these numbers), and a step doesn't take vertical space +longdesc if its hint is empty. An expression in a calculation can be +longdesc given a comment; it is placed at the side opposite to the +longdesc equation numbers. Calculations are allowed inside hints +longdesc although numbering and commenting is then disabled. +runfiles size=3 + RELOC/tex/latex/calculation/calculation.sty +docfiles size=29 + RELOC/doc/latex/calculation/README + RELOC/doc/latex/calculation/calculation.pdf +srcfiles size=10 + RELOC/source/latex/calculation/calculation.drv + RELOC/source/latex/calculation/calculation.dtx + RELOC/source/latex/calculation/calculation.ins +catalogue-ctan /macros/latex/contrib/calculation +catalogue-date 2015-01-14 14:16:00 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name calculator +category Package +revision 33041 +shortdesc Use LaTeX as a scientific calculator. +relocated 1 +longdesc The calculator and calculus packages define several +longdesc instructions which allow us to realise algebraic operations and +longdesc to evaluate elementary functions and derivatives in our +longdesc documents. The package's main goal is to define the arithmetic +longdesc and functional calculations need in the author's package +longdesc xpicture, but the numeric abilities of "calculator" and +longdesc "calculus" may be useful in other contexts. +runfiles size=19 + RELOC/tex/latex/calculator/calculator.sty + RELOC/tex/latex/calculator/calculus.sty +docfiles size=203 + RELOC/doc/latex/calculator/README + RELOC/doc/latex/calculator/calculator.pdf + RELOC/doc/latex/calculator/examples/calculator1.tex + RELOC/doc/latex/calculator/examples/calculator10.tex + RELOC/doc/latex/calculator/examples/calculator11.tex + RELOC/doc/latex/calculator/examples/calculator12.tex + RELOC/doc/latex/calculator/examples/calculator13.tex + RELOC/doc/latex/calculator/examples/calculator14.tex + RELOC/doc/latex/calculator/examples/calculator15.tex + RELOC/doc/latex/calculator/examples/calculator16.tex + RELOC/doc/latex/calculator/examples/calculator17.tex + RELOC/doc/latex/calculator/examples/calculator18.tex + RELOC/doc/latex/calculator/examples/calculator19.tex + RELOC/doc/latex/calculator/examples/calculator2.tex + RELOC/doc/latex/calculator/examples/calculator20.tex + RELOC/doc/latex/calculator/examples/calculator21.tex + RELOC/doc/latex/calculator/examples/calculator22.tex + RELOC/doc/latex/calculator/examples/calculator23.tex + RELOC/doc/latex/calculator/examples/calculator24.tex + RELOC/doc/latex/calculator/examples/calculator25.tex + RELOC/doc/latex/calculator/examples/calculator26.tex + RELOC/doc/latex/calculator/examples/calculator27.tex + RELOC/doc/latex/calculator/examples/calculator28.tex + RELOC/doc/latex/calculator/examples/calculator29.tex + RELOC/doc/latex/calculator/examples/calculator3.tex + RELOC/doc/latex/calculator/examples/calculator30.tex + RELOC/doc/latex/calculator/examples/calculator31.tex + RELOC/doc/latex/calculator/examples/calculator32.tex + RELOC/doc/latex/calculator/examples/calculator33.tex + RELOC/doc/latex/calculator/examples/calculator34.tex + RELOC/doc/latex/calculator/examples/calculator35.tex + RELOC/doc/latex/calculator/examples/calculator36.tex + RELOC/doc/latex/calculator/examples/calculator37.tex + RELOC/doc/latex/calculator/examples/calculator38.tex + RELOC/doc/latex/calculator/examples/calculator39.tex + RELOC/doc/latex/calculator/examples/calculator4.tex + RELOC/doc/latex/calculator/examples/calculator40.tex + RELOC/doc/latex/calculator/examples/calculator41.tex + RELOC/doc/latex/calculator/examples/calculator42.tex + RELOC/doc/latex/calculator/examples/calculator43.tex + RELOC/doc/latex/calculator/examples/calculator44.tex + RELOC/doc/latex/calculator/examples/calculator45.tex + RELOC/doc/latex/calculator/examples/calculator46.tex + RELOC/doc/latex/calculator/examples/calculator47.tex + RELOC/doc/latex/calculator/examples/calculator48.tex + RELOC/doc/latex/calculator/examples/calculator49.tex + RELOC/doc/latex/calculator/examples/calculator5.tex + RELOC/doc/latex/calculator/examples/calculator50.tex + RELOC/doc/latex/calculator/examples/calculator51.tex + RELOC/doc/latex/calculator/examples/calculator52.tex + RELOC/doc/latex/calculator/examples/calculator53.tex + RELOC/doc/latex/calculator/examples/calculator54.tex + RELOC/doc/latex/calculator/examples/calculator55.tex + RELOC/doc/latex/calculator/examples/calculator56.tex + RELOC/doc/latex/calculator/examples/calculator57.tex + RELOC/doc/latex/calculator/examples/calculator58.tex + RELOC/doc/latex/calculator/examples/calculator59.tex + RELOC/doc/latex/calculator/examples/calculator6.tex + RELOC/doc/latex/calculator/examples/calculator60.tex + RELOC/doc/latex/calculator/examples/calculator61.tex + RELOC/doc/latex/calculator/examples/calculator62.tex + RELOC/doc/latex/calculator/examples/calculator7.tex + RELOC/doc/latex/calculator/examples/calculator8.tex + RELOC/doc/latex/calculator/examples/calculator9.tex +srcfiles size=45 + RELOC/source/latex/calculator/calculator.dtx + RELOC/source/latex/calculator/calculator.ins +catalogue-ctan /macros/latex/contrib/calculator +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 2.0 + +name calligra +category Package +revision 15878 +shortdesc Calligraphic font. +relocated 1 +longdesc A calligraphic font in the handwriting style of the author, +longdesc Peter Vanroose. The font is supplied as Metafont source. LaTeX +longdesc support of the font is provided in the calligra package in the +longdesc fundus bundle. +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-ctan /fonts/calligra +catalogue-date 2014-04-07 15:39:41 +0200 +catalogue-license other-free + +name calligra-type1 +category Package +revision 24302 +shortdesc Type 1 version of Calligra. +relocated 1 +longdesc This is a conversion (using mf2pt1) of Peter Vanroose's +longdesc handwriting font. +execute addMap calligra.map +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-license other-free +catalogue-version 001.000 + +name calrsfs +category Package +revision 17125 +shortdesc Copperplate calligraphic letters in LaTeX. +relocated 1 +longdesc Provides a maths interface to the rsfs fonts. +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-license pd + +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 + 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/test/cell/test_10_create.chk + RELOC/doc/latex/cals/test/cell/test_10_create.tex + RELOC/doc/latex/cals/test/cell/test_20_colwidth.chk + RELOC/doc/latex/cals/test/cell/test_20_colwidth.tex + RELOC/doc/latex/cals/test/cell/test_30_decor.chk + RELOC/doc/latex/cals/test/cell/test_30_decor.tex + RELOC/doc/latex/cals/test/cell/test_40_width.chk + RELOC/doc/latex/cals/test/cell/test_40_width.tex + RELOC/doc/latex/cals/test/cell/test_50_hooks.chk + RELOC/doc/latex/cals/test/cell/test_50_hooks.tex + RELOC/doc/latex/cals/test/colsep/test_10_outone.chk + RELOC/doc/latex/cals/test/colsep/test_10_outone.tex + RELOC/doc/latex/cals/test/colsep/test_20_row.chk + RELOC/doc/latex/cals/test/colsep/test_20_row.tex + RELOC/doc/latex/cals/test/decoration/test_10_withwidth2.chk + RELOC/doc/latex/cals/test/decoration/test_10_withwidth2.tex + RELOC/doc/latex/cals/test/decoration/test_20_withcolor2.chk + RELOC/doc/latex/cals/test/decoration/test_20_withcolor2.tex + RELOC/doc/latex/cals/test/decoration/test_30_halfwidth.chk + RELOC/doc/latex/cals/test/decoration/test_30_halfwidth.tex + RELOC/doc/latex/cals/test/decoration/test_50_maxwidth.chk + RELOC/doc/latex/cals/test/decoration/test_50_maxwidth.tex + RELOC/doc/latex/cals/test/decoration/test_60_row.chk + RELOC/doc/latex/cals/test/decoration/test_60_row.tex + RELOC/doc/latex/cals/test/decoration/test_70_align.chk + RELOC/doc/latex/cals/test/decoration/test_70_align.tex + RELOC/doc/latex/cals/test/llt/test_10_cons_rot.chk + RELOC/doc/latex/cals/test/llt/test_10_cons_rot.tex + RELOC/doc/latex/cals/test/llt/test_20_snoc_decons.chk + RELOC/doc/latex/cals/test/llt/test_20_snoc_decons.tex + RELOC/doc/latex/cals/test/llt/test_30_all.chk + RELOC/doc/latex/cals/test/llt/test_30_all.tex + RELOC/doc/latex/cals/test/regression/test_010_wrongbreak.chk + RELOC/doc/latex/cals/test/regression/test_010_wrongbreak.tex + RELOC/doc/latex/cals/test/regression/test_020_wrongnobreak.chk + RELOC/doc/latex/cals/test/regression/test_020_wrongnobreak.tex + RELOC/doc/latex/cals/test/regression/test_030_spanbreak.chk + RELOC/doc/latex/cals/test/regression/test_030_spanbreak.tex + RELOC/doc/latex/cals/test/regression/test_040_rowheight.chk + RELOC/doc/latex/cals/test/regression/test_040_rowheight.tex + RELOC/doc/latex/cals/test/regression/test_050_leftskip_rowspan.chk + RELOC/doc/latex/cals/test/regression/test_050_leftskip_rowspan.tex + RELOC/doc/latex/cals/test/regression/test_060_alignment.chk + RELOC/doc/latex/cals/test/regression/test_060_alignment.tex + RELOC/doc/latex/cals/test/regression/test_065_alignment.chk + RELOC/doc/latex/cals/test/regression/test_065_alignment.tex + RELOC/doc/latex/cals/test/rowsep/test_10_waitrule.chk + RELOC/doc/latex/cals/test/rowsep/test_10_waitrule.tex + RELOC/doc/latex/cals/test/rowsep/test_15_waitover.chk + RELOC/doc/latex/cals/test/rowsep/test_15_waitover.tex + RELOC/doc/latex/cals/test/rowsep/test_20_pack.chk + RELOC/doc/latex/cals/test/rowsep/test_20_pack.tex + RELOC/doc/latex/cals/test/rowsep/test_30_jointwo.chk + RELOC/doc/latex/cals/test/rowsep/test_30_jointwo.tex + RELOC/doc/latex/cals/test/rowsep/test_35_joinone.chk + RELOC/doc/latex/cals/test/rowsep/test_35_joinone.tex + RELOC/doc/latex/cals/test/rowsep/test_40_construct.chk + RELOC/doc/latex/cals/test/rowsep/test_40_construct.tex + RELOC/doc/latex/cals/test/span/test_10_queue.chk + RELOC/doc/latex/cals/test/span/test_10_queue.tex + RELOC/doc/latex/cals/test/span/test_20_decor.chk + RELOC/doc/latex/cals/test/span/test_20_decor.tex + RELOC/doc/latex/cals/test/span/test_30_iftlrb.chk + RELOC/doc/latex/cals/test/span/test_30_iftlrb.tex + RELOC/doc/latex/cals/test/span/test_40_lr_queue.chk + RELOC/doc/latex/cals/test/span/test_40_lr_queue.tex + RELOC/doc/latex/cals/test/span/test_50_dimen.chk + RELOC/doc/latex/cals/test/span/test_50_dimen.tex + RELOC/doc/latex/cals/test/span/test_60_content.chk + RELOC/doc/latex/cals/test/span/test_60_content.tex + RELOC/doc/latex/cals/test/span/test_70_intercept.chk + RELOC/doc/latex/cals/test/span/test_70_intercept.tex + RELOC/doc/latex/cals/test/span/test_80_marker.chk + RELOC/doc/latex/cals/test/span/test_80_marker.tex + RELOC/doc/latex/cals/test/support/LatexTest.py + RELOC/doc/latex/cals/test/support/run_tests.py + RELOC/doc/latex/cals/test/table/test_10_ifbreak.chk + RELOC/doc/latex/cals/test/table/test_10_ifbreak.tex + RELOC/doc/latex/cals/test/table/test_20_dispatch.chk + RELOC/doc/latex/cals/test/table/test_20_dispatch.tex + RELOC/doc/latex/cals/test/table/test_30_issue_rowsep.chk + RELOC/doc/latex/cals/test/table/test_30_issue_rowsep.tex + RELOC/doc/latex/cals/test/table/test_40_issuerow.chk + RELOC/doc/latex/cals/test/table/test_40_issuerow.tex + RELOC/doc/latex/cals/test/table/test_50_row.chk + RELOC/doc/latex/cals/test/table/test_50_row.tex + RELOC/doc/latex/cals/test/table/test_60_whitespace.chk + RELOC/doc/latex/cals/test/table/test_60_whitespace.tex + RELOC/doc/latex/cals/test/table/test_70_lrskip.chk + RELOC/doc/latex/cals/test/table/test_70_lrskip.tex + RELOC/doc/latex/cals/test/template.txt + RELOC/doc/latex/cals/test/visual_tables/test_10_simple_2x2_with_parbreak.chk + RELOC/doc/latex/cals/test/visual_tables/test_10_simple_2x2_with_parbreak.png + RELOC/doc/latex/cals/test/visual_tables/test_10_simple_2x2_with_parbreak.tex + RELOC/doc/latex/cals/test/visual_tables/test_20_thead_tfoot.chk + RELOC/doc/latex/cals/test/visual_tables/test_20_thead_tfoot.png + RELOC/doc/latex/cals/test/visual_tables/test_20_thead_tfoot.tex + RELOC/doc/latex/cals/test/visual_tables/test_30_tbreak.chk + RELOC/doc/latex/cals/test/visual_tables/test_30_tbreak.png + RELOC/doc/latex/cals/test/visual_tables/test_30_tbreak.tex + RELOC/doc/latex/cals/test/visual_tables/test_40_span.chk + RELOC/doc/latex/cals/test/visual_tables/test_40_span.png + RELOC/doc/latex/cals/test/visual_tables/test_40_span.tex +srcfiles size=21 + RELOC/source/latex/cals/cals.dtx + RELOC/source/latex/cals/cals.ins + RELOC/source/latex/cals/cell.dtx + RELOC/source/latex/cals/colsep.dtx + RELOC/source/latex/cals/decor.dtx + RELOC/source/latex/cals/lltokens.dtx + RELOC/source/latex/cals/rowsep.dtx + RELOC/source/latex/cals/span.dtx + RELOC/source/latex/cals/table.dtx +catalogue-ctan /macros/latex/contrib/cals +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 2.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 + 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-ctan /macros/latex/contrib/calxxxx-yyyy +catalogue-date 2015-03-30 14:27:48 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0h + +name cancel +category Package +revision 32508 +shortdesc Place lines through maths formulae. +relocated 1 +longdesc A package to draw diagonal lines ("cancelling" a term) and +longdesc arrows with limits (cancelling a term "to a value") through +longdesc parts of maths formulae. +runfiles size=2 + RELOC/tex/latex/cancel/cancel.sty +docfiles size=65 + RELOC/doc/latex/cancel/cancel.pdf + RELOC/doc/latex/cancel/cancel.tex +catalogue-ctan /macros/latex/contrib/cancel +catalogue-date 2013-12-30 10:37:07 +0100 +catalogue-license pd +catalogue-version 2.2 + +name canoniclayout +category Package +revision 24523 +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 +docfiles size=117 + RELOC/doc/latex/canoniclayout/README + RELOC/doc/latex/canoniclayout/canoniclayout.pdf +srcfiles size=7 + RELOC/source/latex/canoniclayout/canoniclayout.dtx +catalogue-ctan /macros/latex/contrib/canoniclayout +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.4 + +name cantarell +category Package +revision 27066 +shortdesc LaTeX support for the Cantarell font family. +relocated 1 +longdesc Cantarell is a contemporary Humanist sans serif designed by +longdesc Dave Crossland and Jakub Steiner. This font, delivered under +longdesc the OFL version 1.1, is available on the GNOME download server. +longdesc The present package provides support for this font in LaTeX. It +longdesc includes Type 1 versions of the fonts, converted for this +longdesc package using FontForge from its sources, for full support with +longdesc Dvips. +execute addMap cantarell.map +runfiles size=196 + RELOC/fonts/afm/public/cantarell/Cantarell-Bold.afm + RELOC/fonts/afm/public/cantarell/Cantarell-Regular.afm + RELOC/fonts/enc/dvips/cantarell/cantarell-01.enc + RELOC/fonts/enc/dvips/cantarell/cantarell-02.enc + RELOC/fonts/enc/dvips/cantarell/cantarell-03.enc + RELOC/fonts/map/dvips/cantarell/cantarell.map + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-01.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-02.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-03.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-01.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-02.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-03.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-ot1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-t1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-t2a.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-t2b.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-t2c.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-ts1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-Slanted-x2.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-ot1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-t1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-t2a.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-t2b.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-t2c.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-ts1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Bold-x2.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-01.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-02.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-03.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-01.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-02.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-03.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-ot1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-t1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-t2a.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-t2b.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-t2c.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-ts1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-Slanted-x2.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-ot1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-t1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-t2a.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-t2b.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-t2c.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-ts1.tfm + RELOC/fonts/tfm/public/cantarell/Cantarell-Regular-x2.tfm + RELOC/fonts/type1/public/cantarell/Cantarell-Bold.pfb + RELOC/fonts/type1/public/cantarell/Cantarell-Regular.pfb + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-ot1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-t1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-t2a.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-t2b.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-t2c.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-ts1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-Slanted-x2.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-SmallCaps-ot1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-SmallCaps-t1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-SmallCaps-t2a.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-SmallCaps-t2b.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-SmallCaps-t2c.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-SmallCaps-x2.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-ot1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-t1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-t2a.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-t2b.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-t2c.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-ts1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Bold-x2.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-ot1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-t1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-t2a.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-t2b.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-t2c.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-ts1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-Slanted-x2.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-SmallCaps-ot1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-SmallCaps-t1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-SmallCaps-t2a.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-SmallCaps-t2b.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-SmallCaps-t2c.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-SmallCaps-x2.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-ot1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-t1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-t2a.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-t2b.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-t2c.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-ts1.vf + RELOC/fonts/vf/public/cantarell/Cantarell-Regular-x2.vf + RELOC/tex/latex/cantarell/cantarell.sty + RELOC/tex/latex/cantarell/ot1fca.fd + RELOC/tex/latex/cantarell/t1fca.fd + RELOC/tex/latex/cantarell/t2afca.fd + RELOC/tex/latex/cantarell/t2bfca.fd + 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-license lppl1.3 +catalogue-version 2.4 + +name captcont +category Package +revision 15878 +shortdesc Retain float number across several floats. +relocated 1 +longdesc The captcont package provides the ability to continue the +longdesc numbering in your float environment (figure, table, etc.) with +longdesc minimal overhead. This package adds three commands: \caption*, +longdesc \captcont, and \captcont*. Along with the \caption command, +longdesc these give full control over the caption numbering, caption +longdesc text and the entries in the list-of pages. The \caption and +longdesc \captcont commands generate list-of page entries. The \caption +longdesc and \caption* commands increment the figure or table counter. +longdesc Captcont also fully supports the subfigure package. +runfiles size=2 + RELOC/tex/latex/captcont/captcont.sty +docfiles size=36 + RELOC/doc/latex/captcont/README + RELOC/doc/latex/captcont/captcont.pdf + RELOC/doc/latex/captcont/ltxdoc.cfg + RELOC/doc/latex/captcont/test.tex +srcfiles size=11 + RELOC/source/latex/captcont/Makefile + RELOC/source/latex/captcont/captcont.dtx + RELOC/source/latex/captcont/captcont.ins +catalogue-ctan /macros/latex/contrib/captcont +catalogue-date 2012-04-27 20:27:12 +0200 +catalogue-license lppl +catalogue-version 2.0 + +name captdef +category Package +revision 17353 +shortdesc Declare free-standing \caption commands. +relocated 1 +longdesc The \DeclareCaption command defines a class of caption command +longdesc associated with the counter specified to the command. These +longdesc commands are free-standing (i.e., don't need to be inside a +longdesc float environment). The package uses \DeclareCaption to define +longdesc \figcaption and \tabcaption, which can be used outside figure +longdesc or table environments. +runfiles size=1 + RELOC/tex/latex/captdef/captdef.sty +docfiles size=57 + RELOC/doc/latex/captdef/captdef.pdf + RELOC/doc/latex/captdef/captdef.tex + RELOC/doc/latex/captdef/miscdoc.sty +catalogue-ctan /macros/latex/contrib/captdef +catalogue-date 2012-04-27 20:27:12 +0200 +catalogue-license lppl + +name caption +category Package +revision 30449 +shortdesc Customising captions in floating environments. +relocated 1 +longdesc The caption package provides many ways to customise the +longdesc captions in floating environments like figure and table, and +longdesc cooperates with many other packages. Facilities include +longdesc rotating captions, sideways captions, continued captions (for +longdesc tables or figures that come in several parts). A list of +longdesc compatibility notes, for other packages, is provided in the +longdesc documentation. The package also provides the "caption outside +longdesc float" facility, in the same way that simpler packages like +longdesc capt-of do. The package supersedes caption2. +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 +docfiles size=456 + RELOC/doc/latex/caption/CHANGELOG + RELOC/doc/latex/caption/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/ltcaption.pdf + RELOC/doc/latex/caption/newfloat.pdf + RELOC/doc/latex/caption/subcaption.pdf + RELOC/doc/latex/caption/totalcount.pdf +srcfiles size=296 + RELOC/source/latex/caption/bicaption.dtx + RELOC/source/latex/caption/caption-deu.tex + RELOC/source/latex/caption/caption-eng.tex + RELOC/source/latex/caption/caption-rus.tex + RELOC/source/latex/caption/caption.dtx + RELOC/source/latex/caption/caption.ins + RELOC/source/latex/caption/caption2.dtx + RELOC/source/latex/caption/caption3.dtx + RELOC/source/latex/caption/cat.eps + RELOC/source/latex/caption/elephant.eps + RELOC/source/latex/caption/ltcaption.dtx + RELOC/source/latex/caption/newfloat.dtx + RELOC/source/latex/caption/subcaption.dtx + RELOC/source/latex/caption/totalcount.dtx +catalogue-ctan /macros/latex/contrib/caption +catalogue-date 2015-02-23 19:45:15 +0100 +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 + +name carlisle +category Package +revision 18258 +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 contains: Making dotless 'j' characters for fonts that don't +longdesc have them; Fix marks in 2-column output; A method for combining +longdesc the capabilities of longtable and tabularx; A proforma for +longdesc building personalised LaTeX formats; A jiffy to suppress page +longdesc numbers; An environment for including Plain TeX in LaTeX +longdesc documents; A jiffy to remove counters from other counters' +longdesc reset lists; A package to rescale fonts to arbitrary sizes; A +longdesc jiffy to create 'slashed' characters for physicists; and An +longdesc environment for including HTML in LaTeX documents. +runfiles size=11 + RELOC/tex/latex/carlisle/dotlessj.sty + RELOC/tex/latex/carlisle/ltxtable.sty + RELOC/tex/latex/carlisle/mylatex.ltx + RELOC/tex/latex/carlisle/plain.sty + 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-license lppl + +name carlito +category Package +revision 35002 +shortdesc Support for Carlito sans-serif fonts +relocated 1 +longdesc The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Carlito family of sans serif fonts, designed by +longdesc Lukasz Dziedzic of the tyPoland foundry and adopted by Google +longdesc for ChromeOS as a font-metric compatible replacement for +longdesc Calibri. +execute addMap carlito.map +runfiles size=1561 + RELOC/fonts/enc/dvips/carlito/crlt_57h366.enc + RELOC/fonts/enc/dvips/carlito/crlt_bxv5ge.enc + RELOC/fonts/enc/dvips/carlito/crlt_cegsyz.enc + RELOC/fonts/enc/dvips/carlito/crlt_csjzgd.enc + RELOC/fonts/enc/dvips/carlito/crlt_eckivh.enc + RELOC/fonts/enc/dvips/carlito/crlt_houcxd.enc + RELOC/fonts/enc/dvips/carlito/crlt_ibktmo.enc + RELOC/fonts/enc/dvips/carlito/crlt_lllwh4.enc + RELOC/fonts/enc/dvips/carlito/crlt_llspvt.enc + RELOC/fonts/enc/dvips/carlito/crlt_n2dr37.enc + RELOC/fonts/enc/dvips/carlito/crlt_n75whf.enc + RELOC/fonts/enc/dvips/carlito/crlt_ntvnfo.enc + RELOC/fonts/enc/dvips/carlito/crlt_o4ofpw.enc + RELOC/fonts/enc/dvips/carlito/crlt_orgsld.enc + RELOC/fonts/enc/dvips/carlito/crlt_rekp6x.enc + RELOC/fonts/enc/dvips/carlito/crlt_sghv4p.enc + RELOC/fonts/enc/dvips/carlito/crlt_ssbojb.enc + RELOC/fonts/enc/dvips/carlito/crlt_uuhkl6.enc + RELOC/fonts/enc/dvips/carlito/crlt_ynpzot.enc + RELOC/fonts/enc/dvips/carlito/crlt_z7vml3.enc + RELOC/fonts/map/dvips/carlito/carlito.map + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-inf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-inf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-inf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-lf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-osf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-sup-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-sup-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-sup-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-inf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-inf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-inf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-inf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-lf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-osf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-sup-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-sup-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-sup-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-inf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-inf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-inf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-inf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-lf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-osf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-sup-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-sup-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-sup-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-sup-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tlf-ts1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-ly1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-ot1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-t1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-t1.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-ts1--base.tfm + RELOC/fonts/tfm/typoland/carlito/Carlito-tosf-ts1.tfm + RELOC/fonts/truetype/typoland/carlito/Carlito-Bold.ttf + RELOC/fonts/truetype/typoland/carlito/Carlito-BoldItalic.ttf + RELOC/fonts/truetype/typoland/carlito/Carlito-Italic.ttf + RELOC/fonts/truetype/typoland/carlito/Carlito-Regular.ttf + RELOC/fonts/type1/typoland/carlito/Carlito-Bold.pfb + RELOC/fonts/type1/typoland/carlito/Carlito-BoldItalic.pfb + RELOC/fonts/type1/typoland/carlito/Carlito-Italic.pfb + RELOC/fonts/type1/typoland/carlito/Carlito.pfb + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-inf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-lf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-lf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-osf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-osf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-sup-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-tlf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-tlf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-tosf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Bold-tosf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-inf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-lf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-osf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-sup-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-inf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-lf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-lf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-osf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-osf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-sup-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-tlf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-tlf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-tosf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-Italic-tosf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-inf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-lf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-lf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-osf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-osf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-sup-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-tlf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-tlf-ts1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-tosf-t1.vf + RELOC/fonts/vf/typoland/carlito/Carlito-tosf-ts1.vf + RELOC/tex/latex/carlito/LY1Carlito-Inf.fd + RELOC/tex/latex/carlito/LY1Carlito-LF.fd + RELOC/tex/latex/carlito/LY1Carlito-OsF.fd + RELOC/tex/latex/carlito/LY1Carlito-Sup.fd + RELOC/tex/latex/carlito/LY1Carlito-TLF.fd + RELOC/tex/latex/carlito/LY1Carlito-TOsF.fd + RELOC/tex/latex/carlito/OT1Carlito-Inf.fd + RELOC/tex/latex/carlito/OT1Carlito-LF.fd + RELOC/tex/latex/carlito/OT1Carlito-OsF.fd + RELOC/tex/latex/carlito/OT1Carlito-Sup.fd + RELOC/tex/latex/carlito/OT1Carlito-TLF.fd + RELOC/tex/latex/carlito/OT1Carlito-TOsF.fd + RELOC/tex/latex/carlito/T1Carlito-Inf.fd + RELOC/tex/latex/carlito/T1Carlito-LF.fd + RELOC/tex/latex/carlito/T1Carlito-OsF.fd + RELOC/tex/latex/carlito/T1Carlito-Sup.fd + RELOC/tex/latex/carlito/T1Carlito-TLF.fd + RELOC/tex/latex/carlito/T1Carlito-TOsF.fd + RELOC/tex/latex/carlito/TS1Carlito-LF.fd + RELOC/tex/latex/carlito/TS1Carlito-OsF.fd + RELOC/tex/latex/carlito/TS1Carlito-TLF.fd + RELOC/tex/latex/carlito/TS1Carlito-TOsF.fd + RELOC/tex/latex/carlito/carlito.sty +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-ctan /fonts/carlito +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license ofl + +name carolmin-ps +category Package +revision 15878 +catalogue carolmin-t1 +shortdesc Adobe Type 1 format of Carolingian Minuscule fonts. +relocated 1 +longdesc The bundle offers Adobe Type 1 format versions of Peter +longdesc Wilson's Carolingian Minuscule font set (part of the bookhands +longdesc collection). The fonts in the bundle are ready-to-use +longdesc replacements for the Metafont originals. +execute addMap cmin.map +runfiles size=38 + RELOC/fonts/afm/public/carolmin-ps/cmin10.afm + RELOC/fonts/afm/public/carolmin-ps/cmin17.afm + RELOC/fonts/afm/public/carolmin-ps/cmin7.afm + RELOC/fonts/afm/public/carolmin-ps/cminb10.afm + RELOC/fonts/afm/public/carolmin-ps/cminb17.afm + RELOC/fonts/afm/public/carolmin-ps/cminb7.afm + RELOC/fonts/map/dvips/carolmin-ps/cmin.map + RELOC/fonts/type1/public/carolmin-ps/cmin10.pfb + RELOC/fonts/type1/public/carolmin-ps/cmin17.pfb + RELOC/fonts/type1/public/carolmin-ps/cmin7.pfb + RELOC/fonts/type1/public/carolmin-ps/cminb10.pfb + RELOC/fonts/type1/public/carolmin-ps/cminb17.pfb + RELOC/fonts/type1/public/carolmin-ps/cminb7.pfb +docfiles size=1 + RELOC/doc/fonts/carolmin-ps/README +catalogue-ctan /fonts/carolmin-ps +catalogue-date 2014-04-07 15:39:41 +0200 +catalogue-license lppl + +name cascadilla +category Package +revision 25144 +shortdesc Typeset papers conforming to the stylesheet of the Cascadilla Proceedings Project. +relocated 1 +longdesc The class provides an extension of the standard LaTeX article +longdesc class that may be used to typeset papers conforming to the +longdesc stylesheet of the Cascadilla Proceedings Project, which is used +longdesc by a number of linguistics conference proceedings (e.g., +longdesc WCCFL). +runfiles size=11 + RELOC/bibtex/bst/cascadilla/cascadilla.bst + RELOC/tex/latex/cascadilla/cascadilla.cls +docfiles size=32 + RELOC/doc/latex/cascadilla/LICENSE.txt + RELOC/doc/latex/cascadilla/README + RELOC/doc/latex/cascadilla/example.pdf + RELOC/doc/latex/cascadilla/example.tex + RELOC/doc/latex/cascadilla/exampleref.bib +catalogue-ctan /macros/latex/contrib/cascadilla +catalogue-date 2012-01-18 17:26:55 +0100 +catalogue-license lppl +catalogue-version 1.8.2 + +name cases +category Package +revision 17123 +shortdesc Numbered cases environment +relocated 1 +longdesc Define the environment numcases: equations with several +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 +docfiles size=81 + RELOC/doc/latex/cases/cases.pdf + RELOC/doc/latex/cases/cases.tex +catalogue-ctan /macros/latex/contrib/cases +catalogue-date 2012-11-14 11:01:29 +0100 +catalogue-license pd +catalogue-version 2.5 + +name casyl +category Package +revision 15878 +shortdesc Typeset Cree/Inuktitut in Canadian Aboriginal Syllabics. +relocated 1 +longdesc The bundle constitutes a font (as Metafont source) and LaTeX +longdesc macros for its use within a document. +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-ctan /language/casyl +catalogue-date 2012-04-27 22:37:01 +0200 +catalogue-license pd +catalogue-version 2.0 + +name catchfilebetweentags +category Package +revision 21476 +shortdesc Catch text delimited by docstrip tags. +relocated 1 +longdesc This package (built using the facilities of catchfile) provides +longdesc a macro \catchfilebetweentags acts like the original \catchfile +longdesc but only extracts a portion of the file instead of the complete +longdesc file. The extracted portion can be delimited by strings or by +longdesc docstrip tags: %<*tag> .... % (comments in the caught +longdesc region may be included or dropped). +runfiles size=1 + RELOC/tex/latex/catchfilebetweentags/catchfilebetweentags.sty +docfiles size=48 + RELOC/doc/latex/catchfilebetweentags/README + RELOC/doc/latex/catchfilebetweentags/catchfilebetweentags.pdf +srcfiles size=10 + RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.drv + RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.dtx + RELOC/source/latex/catchfilebetweentags/catchfilebetweentags.ins +catalogue-ctan /macros/latex/contrib/catchfilebetweentags +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name catcodes +category Package +revision 28210 +shortdesc Generic handling of TeX category codes. +relocated 1 +longdesc The bundle deals with category code switching; the packages of +longdesc the bundle should work with any TeX format (with the support of +longdesc the plainpkg package). The bundle provides: stacklet.sty, which +longdesc supports stacks that control the use of different catcodes; +longdesc actcodes.sty, which deals with active characters; and +longdesc catchdq.sty, which provides a simple quotation character +longdesc control mechanism. +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 + RELOC/doc/generic/catcodes/SrcFILEs.txt + RELOC/doc/generic/catcodes/catcodes.pdf +srcfiles size=7 + 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 +catalogue-ctan /macros/generic/catcodes +catalogue-date 2014-10-16 15:02:48 +0200 +catalogue-license lppl1.3 +catalogue-version 0.3a + +name catechis +category Package +revision 15878 +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 + RELOC/source/latex/catechis/catechis.ins +catalogue-ctan /macros/latex/contrib/catechis +catalogue-date 2014-10-16 15:02:48 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name catoptions +category Package +revision 35069 +shortdesc Preserving and recalling standard catcodes. +relocated 1 +longdesc The package changes package loading internals so that all +longdesc subsequently loaded packages can rely on normal/standard +longdesc catcodes of all ASCII characters. The package defines canonical +longdesc control sequences to represent all the visible ASCII +longdesc characters. It also provides robust option parsing mechanisms +longdesc (XDeclareOption, XExecuteOptions and XProcessOptions, which +longdesc will be used by \documentclass if the package has already been +longdesc loaded). The package also provides a range of other TeX +longdesc programming tools. +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-license lppl1.3 +catalogue-version 0.2.7h + +name cbcoptic +category Package +revision 16666 +shortdesc Coptic fonts and LaTeX macros for general usage and for philology. +relocated 1 +longdesc CBcoptic is a bundle of files for typesetting Coptic +longdesc philological text with the proper fonts and hyphenation. The +longdesc fonts are based on, but much extend, the fonts of the original +longdesc coptic bundle. The CBcoptic bundle includes font description +longdesc files, Metafont sources and equivalent Adobe Type 1 fonts in +longdesc pfb format. The bundle also includes a package that provides +longdesc some macros of philological interest. +runfiles size=72 + RELOC/fonts/source/public/cbcoptic/coptbase.mf + RELOC/fonts/source/public/cbcoptic/copti.mf + RELOC/fonts/source/public/cbcoptic/copto.mf + RELOC/fonts/tfm/public/cbcoptic/copti.tfm + RELOC/fonts/tfm/public/cbcoptic/copto.tfm + RELOC/fonts/type1/public/cbcoptic/copti.pfb + RELOC/fonts/type1/public/cbcoptic/copto.pfb + RELOC/tex/latex/cbcoptic/coptic.sty + RELOC/tex/latex/cbcoptic/lcopcoptic.fd + RELOC/tex/latex/cbcoptic/prnthyph.sty +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-license lppl +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. +relocated 1 +longdesc This bundle presents the whole of Beccari's original Greek font +longdesc set, which use the 'Lispiakos' font shape derived from the +longdesc shape of the fonts used in printers' shops in Lispia. The fonts +longdesc are available both as Metafont source and in Adobe Type 1 +longdesc format, and at the same wide set of design sizes as are such +longdesc font sets as the EC fonts. +depend cbfonts-fd +execute addMixedMap cbgreek-full.map +runfiles size=20512 + RELOC/fonts/enc/dvips/cbfonts/CB.enc + RELOC/fonts/enc/dvips/cbfonts/gmtr.enc + RELOC/fonts/map/dvips/cbfonts/cbgreek-full.map + RELOC/fonts/source/public/cbfonts/cbaccent.mf + RELOC/fonts/source/public/cbfonts/cbbase.mf + RELOC/fonts/source/public/cbfonts/cbdigits.mf + RELOC/fonts/source/public/cbfonts/cbgreek.mf + RELOC/fonts/source/public/cbfonts/cblig.mf + RELOC/fonts/source/public/cbfonts/cbligit.mf + RELOC/fonts/source/public/cbfonts/cbligrm.mf + RELOC/fonts/source/public/cbfonts/cbligsc.mf + RELOC/fonts/source/public/cbfonts/cbligtt.mf + RELOC/fonts/source/public/cbfonts/cblower.mf + RELOC/fonts/source/public/cbfonts/cbmetre.mf + RELOC/fonts/source/public/cbfonts/cbpunct.mf + RELOC/fonts/source/public/cbfonts/cbspline.mf + RELOC/fonts/source/public/cbfonts/cbupper.mf + RELOC/fonts/source/public/cbfonts/glic.mf + RELOC/fonts/source/public/cbfonts/glic0700.mf + RELOC/fonts/source/public/cbfonts/glic0800.mf + RELOC/fonts/source/public/cbfonts/glic1000.mf + RELOC/fonts/source/public/cbfonts/glic1200.mf + RELOC/fonts/source/public/cbfonts/glic1382.mf + RELOC/fonts/source/public/cbfonts/glic1659.mf + RELOC/fonts/source/public/cbfonts/glic1991.mf + RELOC/fonts/source/public/cbfonts/glic2389.mf + RELOC/fonts/source/public/cbfonts/glic2866.mf + RELOC/fonts/source/public/cbfonts/glic3440.mf + RELOC/fonts/source/public/cbfonts/glic4128.mf + RELOC/fonts/source/public/cbfonts/glii.mf + RELOC/fonts/source/public/cbfonts/glii0700.mf + RELOC/fonts/source/public/cbfonts/glii0800.mf + RELOC/fonts/source/public/cbfonts/glii1000.mf + RELOC/fonts/source/public/cbfonts/glii1200.mf + RELOC/fonts/source/public/cbfonts/glii1382.mf + RELOC/fonts/source/public/cbfonts/glii1659.mf + RELOC/fonts/source/public/cbfonts/glii1991.mf + RELOC/fonts/source/public/cbfonts/glii2389.mf + RELOC/fonts/source/public/cbfonts/glii2866.mf + RELOC/fonts/source/public/cbfonts/glii3440.mf + RELOC/fonts/source/public/cbfonts/glii4128.mf + RELOC/fonts/source/public/cbfonts/glin.mf + RELOC/fonts/source/public/cbfonts/glin0700.mf + RELOC/fonts/source/public/cbfonts/glin0800.mf + RELOC/fonts/source/public/cbfonts/glin1000.mf + RELOC/fonts/source/public/cbfonts/glin1200.mf + RELOC/fonts/source/public/cbfonts/glin1382.mf + RELOC/fonts/source/public/cbfonts/glin1659.mf + RELOC/fonts/source/public/cbfonts/glin1991.mf + RELOC/fonts/source/public/cbfonts/glin2389.mf + RELOC/fonts/source/public/cbfonts/glin2866.mf + RELOC/fonts/source/public/cbfonts/glin3440.mf + RELOC/fonts/source/public/cbfonts/glin4128.mf + RELOC/fonts/source/public/cbfonts/glio.mf + RELOC/fonts/source/public/cbfonts/glio0700.mf + RELOC/fonts/source/public/cbfonts/glio0800.mf + RELOC/fonts/source/public/cbfonts/glio1000.mf + RELOC/fonts/source/public/cbfonts/glio1200.mf + RELOC/fonts/source/public/cbfonts/glio1382.mf + RELOC/fonts/source/public/cbfonts/glio1659.mf + RELOC/fonts/source/public/cbfonts/glio1991.mf + RELOC/fonts/source/public/cbfonts/glio2389.mf + RELOC/fonts/source/public/cbfonts/glio2866.mf + RELOC/fonts/source/public/cbfonts/glio3440.mf + RELOC/fonts/source/public/cbfonts/glio4128.mf + RELOC/fonts/source/public/cbfonts/gliu.mf + RELOC/fonts/source/public/cbfonts/gliu0700.mf + RELOC/fonts/source/public/cbfonts/gliu0800.mf + RELOC/fonts/source/public/cbfonts/gliu1000.mf + RELOC/fonts/source/public/cbfonts/gliu1200.mf + RELOC/fonts/source/public/cbfonts/gliu1382.mf + RELOC/fonts/source/public/cbfonts/gliu1659.mf + RELOC/fonts/source/public/cbfonts/gliu1991.mf + RELOC/fonts/source/public/cbfonts/gliu2389.mf + RELOC/fonts/source/public/cbfonts/gliu2866.mf + RELOC/fonts/source/public/cbfonts/gliu3440.mf + RELOC/fonts/source/public/cbfonts/gliu4128.mf + RELOC/fonts/source/public/cbfonts/gljc.mf + RELOC/fonts/source/public/cbfonts/gljc0700.mf + RELOC/fonts/source/public/cbfonts/gljc0800.mf + RELOC/fonts/source/public/cbfonts/gljc1000.mf + RELOC/fonts/source/public/cbfonts/gljc1200.mf + RELOC/fonts/source/public/cbfonts/gljc1382.mf + RELOC/fonts/source/public/cbfonts/gljc1659.mf + RELOC/fonts/source/public/cbfonts/gljc1991.mf + RELOC/fonts/source/public/cbfonts/gljc2389.mf + RELOC/fonts/source/public/cbfonts/gljc2866.mf + RELOC/fonts/source/public/cbfonts/gljc3440.mf + RELOC/fonts/source/public/cbfonts/gljc4128.mf + RELOC/fonts/source/public/cbfonts/gljn.mf + RELOC/fonts/source/public/cbfonts/gljn0700.mf + RELOC/fonts/source/public/cbfonts/gljn0800.mf + RELOC/fonts/source/public/cbfonts/gljn1000.mf + RELOC/fonts/source/public/cbfonts/gljn1200.mf + RELOC/fonts/source/public/cbfonts/gljn1382.mf + RELOC/fonts/source/public/cbfonts/gljn1659.mf + RELOC/fonts/source/public/cbfonts/gljn1991.mf + RELOC/fonts/source/public/cbfonts/gljn2389.mf + RELOC/fonts/source/public/cbfonts/gljn2866.mf + RELOC/fonts/source/public/cbfonts/gljn3440.mf + RELOC/fonts/source/public/cbfonts/gljn4128.mf + RELOC/fonts/source/public/cbfonts/gljo.mf + RELOC/fonts/source/public/cbfonts/gljo0700.mf + RELOC/fonts/source/public/cbfonts/gljo0800.mf + RELOC/fonts/source/public/cbfonts/gljo1000.mf + RELOC/fonts/source/public/cbfonts/gljo1200.mf + RELOC/fonts/source/public/cbfonts/gljo1382.mf + RELOC/fonts/source/public/cbfonts/gljo1659.mf + RELOC/fonts/source/public/cbfonts/gljo1991.mf + RELOC/fonts/source/public/cbfonts/gljo2389.mf + RELOC/fonts/source/public/cbfonts/gljo2866.mf + RELOC/fonts/source/public/cbfonts/gljo3440.mf + RELOC/fonts/source/public/cbfonts/gljo4128.mf + RELOC/fonts/source/public/cbfonts/glmc.mf + RELOC/fonts/source/public/cbfonts/glmc0700.mf + RELOC/fonts/source/public/cbfonts/glmc0800.mf + RELOC/fonts/source/public/cbfonts/glmc1000.mf + RELOC/fonts/source/public/cbfonts/glmc1200.mf + RELOC/fonts/source/public/cbfonts/glmc1382.mf + RELOC/fonts/source/public/cbfonts/glmc1659.mf + RELOC/fonts/source/public/cbfonts/glmc1991.mf + RELOC/fonts/source/public/cbfonts/glmc2389.mf + RELOC/fonts/source/public/cbfonts/glmc2866.mf + RELOC/fonts/source/public/cbfonts/glmc3440.mf + RELOC/fonts/source/public/cbfonts/glmc4128.mf + RELOC/fonts/source/public/cbfonts/glmi.mf + RELOC/fonts/source/public/cbfonts/glmi0700.mf + RELOC/fonts/source/public/cbfonts/glmi0800.mf + RELOC/fonts/source/public/cbfonts/glmi1000.mf + RELOC/fonts/source/public/cbfonts/glmi1200.mf + RELOC/fonts/source/public/cbfonts/glmi1382.mf + RELOC/fonts/source/public/cbfonts/glmi1659.mf + RELOC/fonts/source/public/cbfonts/glmi1991.mf + RELOC/fonts/source/public/cbfonts/glmi2389.mf + RELOC/fonts/source/public/cbfonts/glmi2866.mf + RELOC/fonts/source/public/cbfonts/glmi3440.mf + RELOC/fonts/source/public/cbfonts/glmi4128.mf + RELOC/fonts/source/public/cbfonts/glmn.mf + RELOC/fonts/source/public/cbfonts/glmn0700.mf + RELOC/fonts/source/public/cbfonts/glmn0800.mf + RELOC/fonts/source/public/cbfonts/glmn1000.mf + RELOC/fonts/source/public/cbfonts/glmn1200.mf + RELOC/fonts/source/public/cbfonts/glmn1382.mf + RELOC/fonts/source/public/cbfonts/glmn1659.mf + RELOC/fonts/source/public/cbfonts/glmn1991.mf + RELOC/fonts/source/public/cbfonts/glmn2389.mf + RELOC/fonts/source/public/cbfonts/glmn2866.mf + RELOC/fonts/source/public/cbfonts/glmn3440.mf + RELOC/fonts/source/public/cbfonts/glmn4128.mf + RELOC/fonts/source/public/cbfonts/glmo.mf + RELOC/fonts/source/public/cbfonts/glmo0700.mf + RELOC/fonts/source/public/cbfonts/glmo0800.mf + RELOC/fonts/source/public/cbfonts/glmo1000.mf + RELOC/fonts/source/public/cbfonts/glmo1200.mf + RELOC/fonts/source/public/cbfonts/glmo1382.mf + RELOC/fonts/source/public/cbfonts/glmo1659.mf + RELOC/fonts/source/public/cbfonts/glmo1991.mf + RELOC/fonts/source/public/cbfonts/glmo2389.mf + RELOC/fonts/source/public/cbfonts/glmo2866.mf + RELOC/fonts/source/public/cbfonts/glmo3440.mf + RELOC/fonts/source/public/cbfonts/glmo4128.mf + RELOC/fonts/source/public/cbfonts/glmu.mf + RELOC/fonts/source/public/cbfonts/glmu0700.mf + RELOC/fonts/source/public/cbfonts/glmu0800.mf + RELOC/fonts/source/public/cbfonts/glmu1000.mf + RELOC/fonts/source/public/cbfonts/glmu1200.mf + RELOC/fonts/source/public/cbfonts/glmu1382.mf + RELOC/fonts/source/public/cbfonts/glmu1659.mf + RELOC/fonts/source/public/cbfonts/glmu1991.mf + RELOC/fonts/source/public/cbfonts/glmu2389.mf + RELOC/fonts/source/public/cbfonts/glmu2866.mf + RELOC/fonts/source/public/cbfonts/glmu3440.mf + RELOC/fonts/source/public/cbfonts/glmu4128.mf + RELOC/fonts/source/public/cbfonts/gltc.mf + RELOC/fonts/source/public/cbfonts/gltc0700.mf + RELOC/fonts/source/public/cbfonts/gltc0800.mf + RELOC/fonts/source/public/cbfonts/gltc1000.mf + RELOC/fonts/source/public/cbfonts/gltc1200.mf + RELOC/fonts/source/public/cbfonts/gltc1382.mf + RELOC/fonts/source/public/cbfonts/gltc1659.mf + RELOC/fonts/source/public/cbfonts/gltc1991.mf + RELOC/fonts/source/public/cbfonts/gltc2389.mf + RELOC/fonts/source/public/cbfonts/gltc2866.mf + RELOC/fonts/source/public/cbfonts/gltc3440.mf + RELOC/fonts/source/public/cbfonts/gltc4128.mf + RELOC/fonts/source/public/cbfonts/gltn.mf + RELOC/fonts/source/public/cbfonts/gltn0700.mf + RELOC/fonts/source/public/cbfonts/gltn0800.mf + RELOC/fonts/source/public/cbfonts/gltn1000.mf + RELOC/fonts/source/public/cbfonts/gltn1200.mf + RELOC/fonts/source/public/cbfonts/gltn1382.mf + RELOC/fonts/source/public/cbfonts/gltn1659.mf + RELOC/fonts/source/public/cbfonts/gltn1991.mf + RELOC/fonts/source/public/cbfonts/gltn2389.mf + RELOC/fonts/source/public/cbfonts/gltn2866.mf + RELOC/fonts/source/public/cbfonts/gltn3440.mf + RELOC/fonts/source/public/cbfonts/gltn4128.mf + RELOC/fonts/source/public/cbfonts/glto.mf + RELOC/fonts/source/public/cbfonts/glto0700.mf + RELOC/fonts/source/public/cbfonts/glto0800.mf + RELOC/fonts/source/public/cbfonts/glto1000.mf + RELOC/fonts/source/public/cbfonts/glto1200.mf + RELOC/fonts/source/public/cbfonts/glto1382.mf + RELOC/fonts/source/public/cbfonts/glto1659.mf + RELOC/fonts/source/public/cbfonts/glto1991.mf + RELOC/fonts/source/public/cbfonts/glto2389.mf + RELOC/fonts/source/public/cbfonts/glto2866.mf + RELOC/fonts/source/public/cbfonts/glto3440.mf + RELOC/fonts/source/public/cbfonts/glto4128.mf + RELOC/fonts/source/public/cbfonts/glwc.mf + RELOC/fonts/source/public/cbfonts/glwc0700.mf + RELOC/fonts/source/public/cbfonts/glwc0800.mf + RELOC/fonts/source/public/cbfonts/glwc1000.mf + RELOC/fonts/source/public/cbfonts/glwc1200.mf + RELOC/fonts/source/public/cbfonts/glwc1382.mf + RELOC/fonts/source/public/cbfonts/glwc1659.mf + RELOC/fonts/source/public/cbfonts/glwc1991.mf + RELOC/fonts/source/public/cbfonts/glwc2389.mf + RELOC/fonts/source/public/cbfonts/glwc2866.mf + RELOC/fonts/source/public/cbfonts/glwc3440.mf + RELOC/fonts/source/public/cbfonts/glwc4128.mf + RELOC/fonts/source/public/cbfonts/glwi.mf + RELOC/fonts/source/public/cbfonts/glwi0700.mf + RELOC/fonts/source/public/cbfonts/glwi0800.mf + RELOC/fonts/source/public/cbfonts/glwi1000.mf + RELOC/fonts/source/public/cbfonts/glwi1200.mf + RELOC/fonts/source/public/cbfonts/glwi1382.mf + RELOC/fonts/source/public/cbfonts/glwi1659.mf + RELOC/fonts/source/public/cbfonts/glwi1991.mf + RELOC/fonts/source/public/cbfonts/glwi2389.mf + RELOC/fonts/source/public/cbfonts/glwi2866.mf + RELOC/fonts/source/public/cbfonts/glwi3440.mf + RELOC/fonts/source/public/cbfonts/glwi4128.mf + RELOC/fonts/source/public/cbfonts/glwn.mf + RELOC/fonts/source/public/cbfonts/glwn0700.mf + RELOC/fonts/source/public/cbfonts/glwn0800.mf + RELOC/fonts/source/public/cbfonts/glwn1000.mf + RELOC/fonts/source/public/cbfonts/glwn1200.mf + RELOC/fonts/source/public/cbfonts/glwn1382.mf + RELOC/fonts/source/public/cbfonts/glwn1659.mf + RELOC/fonts/source/public/cbfonts/glwn1991.mf + RELOC/fonts/source/public/cbfonts/glwn2389.mf + RELOC/fonts/source/public/cbfonts/glwn2866.mf + RELOC/fonts/source/public/cbfonts/glwn3440.mf + RELOC/fonts/source/public/cbfonts/glwn4128.mf + RELOC/fonts/source/public/cbfonts/glwo.mf + RELOC/fonts/source/public/cbfonts/glwo0700.mf + RELOC/fonts/source/public/cbfonts/glwo0800.mf + RELOC/fonts/source/public/cbfonts/glwo1000.mf + RELOC/fonts/source/public/cbfonts/glwo1200.mf + RELOC/fonts/source/public/cbfonts/glwo1382.mf + RELOC/fonts/source/public/cbfonts/glwo1659.mf + RELOC/fonts/source/public/cbfonts/glwo1991.mf + RELOC/fonts/source/public/cbfonts/glwo2389.mf + RELOC/fonts/source/public/cbfonts/glwo2866.mf + RELOC/fonts/source/public/cbfonts/glwo3440.mf + RELOC/fonts/source/public/cbfonts/glwo4128.mf + RELOC/fonts/source/public/cbfonts/glwu.mf + RELOC/fonts/source/public/cbfonts/glwu0700.mf + RELOC/fonts/source/public/cbfonts/glwu0800.mf + RELOC/fonts/source/public/cbfonts/glwu1000.mf + RELOC/fonts/source/public/cbfonts/glwu1200.mf + RELOC/fonts/source/public/cbfonts/glwu1382.mf + RELOC/fonts/source/public/cbfonts/glwu1659.mf + RELOC/fonts/source/public/cbfonts/glwu1991.mf + RELOC/fonts/source/public/cbfonts/glwu2389.mf + RELOC/fonts/source/public/cbfonts/glwu2866.mf + RELOC/fonts/source/public/cbfonts/glwu3440.mf + RELOC/fonts/source/public/cbfonts/glwu4128.mf + RELOC/fonts/source/public/cbfonts/glxc.mf + RELOC/fonts/source/public/cbfonts/glxc0700.mf + RELOC/fonts/source/public/cbfonts/glxc0800.mf + RELOC/fonts/source/public/cbfonts/glxc1000.mf + RELOC/fonts/source/public/cbfonts/glxc1200.mf + RELOC/fonts/source/public/cbfonts/glxc1382.mf + RELOC/fonts/source/public/cbfonts/glxc1659.mf + RELOC/fonts/source/public/cbfonts/glxc1991.mf + RELOC/fonts/source/public/cbfonts/glxc2389.mf + RELOC/fonts/source/public/cbfonts/glxc2866.mf + RELOC/fonts/source/public/cbfonts/glxc3440.mf + RELOC/fonts/source/public/cbfonts/glxc4128.mf + RELOC/fonts/source/public/cbfonts/glxi.mf + RELOC/fonts/source/public/cbfonts/glxi0700.mf + RELOC/fonts/source/public/cbfonts/glxi0800.mf + RELOC/fonts/source/public/cbfonts/glxi1000.mf + RELOC/fonts/source/public/cbfonts/glxi1200.mf + RELOC/fonts/source/public/cbfonts/glxi1382.mf + RELOC/fonts/source/public/cbfonts/glxi1659.mf + RELOC/fonts/source/public/cbfonts/glxi1991.mf + RELOC/fonts/source/public/cbfonts/glxi2389.mf + RELOC/fonts/source/public/cbfonts/glxi2866.mf + RELOC/fonts/source/public/cbfonts/glxi3440.mf + RELOC/fonts/source/public/cbfonts/glxi4128.mf + RELOC/fonts/source/public/cbfonts/glxn.mf + RELOC/fonts/source/public/cbfonts/glxn0700.mf + RELOC/fonts/source/public/cbfonts/glxn0800.mf + RELOC/fonts/source/public/cbfonts/glxn1000.mf + RELOC/fonts/source/public/cbfonts/glxn1200.mf + RELOC/fonts/source/public/cbfonts/glxn1382.mf + RELOC/fonts/source/public/cbfonts/glxn1659.mf + RELOC/fonts/source/public/cbfonts/glxn1991.mf + RELOC/fonts/source/public/cbfonts/glxn2389.mf + RELOC/fonts/source/public/cbfonts/glxn2866.mf + RELOC/fonts/source/public/cbfonts/glxn3440.mf + RELOC/fonts/source/public/cbfonts/glxn4128.mf + RELOC/fonts/source/public/cbfonts/glxo.mf + RELOC/fonts/source/public/cbfonts/glxo0700.mf + RELOC/fonts/source/public/cbfonts/glxo0800.mf + RELOC/fonts/source/public/cbfonts/glxo1000.mf + RELOC/fonts/source/public/cbfonts/glxo1200.mf + RELOC/fonts/source/public/cbfonts/glxo1382.mf + RELOC/fonts/source/public/cbfonts/glxo1659.mf + RELOC/fonts/source/public/cbfonts/glxo1991.mf + RELOC/fonts/source/public/cbfonts/glxo2389.mf + RELOC/fonts/source/public/cbfonts/glxo2866.mf + RELOC/fonts/source/public/cbfonts/glxo3440.mf + RELOC/fonts/source/public/cbfonts/glxo4128.mf + RELOC/fonts/source/public/cbfonts/glxu.mf + RELOC/fonts/source/public/cbfonts/glxu0700.mf + RELOC/fonts/source/public/cbfonts/glxu0800.mf + RELOC/fonts/source/public/cbfonts/glxu1000.mf + RELOC/fonts/source/public/cbfonts/glxu1200.mf + RELOC/fonts/source/public/cbfonts/glxu1382.mf + RELOC/fonts/source/public/cbfonts/glxu1659.mf + RELOC/fonts/source/public/cbfonts/glxu1991.mf + RELOC/fonts/source/public/cbfonts/glxu2389.mf + RELOC/fonts/source/public/cbfonts/glxu2866.mf + RELOC/fonts/source/public/cbfonts/glxu3440.mf + RELOC/fonts/source/public/cbfonts/glxu4128.mf + RELOC/fonts/source/public/cbfonts/gmmn.mf + RELOC/fonts/source/public/cbfonts/gmmn0500.mf + RELOC/fonts/source/public/cbfonts/gmmn0600.mf + RELOC/fonts/source/public/cbfonts/gmmn0700.mf + RELOC/fonts/source/public/cbfonts/gmmn0800.mf + RELOC/fonts/source/public/cbfonts/gmmn0900.mf + RELOC/fonts/source/public/cbfonts/gmmn1000.mf + RELOC/fonts/source/public/cbfonts/gmmn1095.mf + RELOC/fonts/source/public/cbfonts/gmmn1200.mf + RELOC/fonts/source/public/cbfonts/gmmn1440.mf + RELOC/fonts/source/public/cbfonts/gmmn1728.mf + RELOC/fonts/source/public/cbfonts/gmmn2074.mf + RELOC/fonts/source/public/cbfonts/gmmn2488.mf + RELOC/fonts/source/public/cbfonts/gmmn2986.mf + RELOC/fonts/source/public/cbfonts/gmmn3583.mf + RELOC/fonts/source/public/cbfonts/gmmo.mf + RELOC/fonts/source/public/cbfonts/gmmo0500.mf + RELOC/fonts/source/public/cbfonts/gmmo0600.mf + RELOC/fonts/source/public/cbfonts/gmmo0700.mf + RELOC/fonts/source/public/cbfonts/gmmo0800.mf + RELOC/fonts/source/public/cbfonts/gmmo0900.mf + RELOC/fonts/source/public/cbfonts/gmmo1000.mf + RELOC/fonts/source/public/cbfonts/gmmo1095.mf + RELOC/fonts/source/public/cbfonts/gmmo1200.mf + RELOC/fonts/source/public/cbfonts/gmmo1440.mf + RELOC/fonts/source/public/cbfonts/gmmo1728.mf + RELOC/fonts/source/public/cbfonts/gmmo2074.mf + RELOC/fonts/source/public/cbfonts/gmmo2488.mf + RELOC/fonts/source/public/cbfonts/gmmo2986.mf + RELOC/fonts/source/public/cbfonts/gmmo3583.mf + RELOC/fonts/source/public/cbfonts/gmtr.mf + RELOC/fonts/source/public/cbfonts/gmtr0500.mf + RELOC/fonts/source/public/cbfonts/gmtr0600.mf + RELOC/fonts/source/public/cbfonts/gmtr0700.mf + RELOC/fonts/source/public/cbfonts/gmtr0800.mf + RELOC/fonts/source/public/cbfonts/gmtr0900.mf + RELOC/fonts/source/public/cbfonts/gmtr1000.mf + RELOC/fonts/source/public/cbfonts/gmtr1095.mf + RELOC/fonts/source/public/cbfonts/gmtr1200.mf + RELOC/fonts/source/public/cbfonts/gmtr1440.mf + RELOC/fonts/source/public/cbfonts/gmtr1728.mf + RELOC/fonts/source/public/cbfonts/gmtr2074.mf + RELOC/fonts/source/public/cbfonts/gmtr2488.mf + RELOC/fonts/source/public/cbfonts/gmtr2986.mf + RELOC/fonts/source/public/cbfonts/gmtr3583.mf + RELOC/fonts/source/public/cbfonts/gmxn.mf + RELOC/fonts/source/public/cbfonts/gmxn0500.mf + RELOC/fonts/source/public/cbfonts/gmxn0600.mf + RELOC/fonts/source/public/cbfonts/gmxn0700.mf + RELOC/fonts/source/public/cbfonts/gmxn0800.mf + RELOC/fonts/source/public/cbfonts/gmxn0900.mf + RELOC/fonts/source/public/cbfonts/gmxn1000.mf + RELOC/fonts/source/public/cbfonts/gmxn1095.mf + RELOC/fonts/source/public/cbfonts/gmxn1200.mf + RELOC/fonts/source/public/cbfonts/gmxn1440.mf + RELOC/fonts/source/public/cbfonts/gmxn1728.mf + RELOC/fonts/source/public/cbfonts/gmxn2074.mf + RELOC/fonts/source/public/cbfonts/gmxn2488.mf + RELOC/fonts/source/public/cbfonts/gmxn2986.mf + RELOC/fonts/source/public/cbfonts/gmxn3583.mf + RELOC/fonts/source/public/cbfonts/gmxo.mf + RELOC/fonts/source/public/cbfonts/gmxo0500.mf + RELOC/fonts/source/public/cbfonts/gmxo0600.mf + RELOC/fonts/source/public/cbfonts/gmxo0700.mf + RELOC/fonts/source/public/cbfonts/gmxo0800.mf + RELOC/fonts/source/public/cbfonts/gmxo0900.mf + RELOC/fonts/source/public/cbfonts/gmxo1000.mf + RELOC/fonts/source/public/cbfonts/gmxo1095.mf + RELOC/fonts/source/public/cbfonts/gmxo1200.mf + RELOC/fonts/source/public/cbfonts/gmxo1440.mf + RELOC/fonts/source/public/cbfonts/gmxo1728.mf + RELOC/fonts/source/public/cbfonts/gmxo2074.mf + RELOC/fonts/source/public/cbfonts/gmxo2488.mf + RELOC/fonts/source/public/cbfonts/gmxo2986.mf + RELOC/fonts/source/public/cbfonts/gmxo3583.mf + RELOC/fonts/source/public/cbfonts/gomc.mf + RELOC/fonts/source/public/cbfonts/gomc0500.mf + RELOC/fonts/source/public/cbfonts/gomc0600.mf + RELOC/fonts/source/public/cbfonts/gomc0700.mf + RELOC/fonts/source/public/cbfonts/gomc0800.mf + RELOC/fonts/source/public/cbfonts/gomc0900.mf + RELOC/fonts/source/public/cbfonts/gomc1000.mf + RELOC/fonts/source/public/cbfonts/gomc1095.mf + RELOC/fonts/source/public/cbfonts/gomc1200.mf + RELOC/fonts/source/public/cbfonts/gomc1440.mf + RELOC/fonts/source/public/cbfonts/gomc1728.mf + RELOC/fonts/source/public/cbfonts/gomc2074.mf + RELOC/fonts/source/public/cbfonts/gomc2488.mf + RELOC/fonts/source/public/cbfonts/gomc2986.mf + RELOC/fonts/source/public/cbfonts/gomc3583.mf + RELOC/fonts/source/public/cbfonts/gomi.mf + RELOC/fonts/source/public/cbfonts/gomi0500.mf + RELOC/fonts/source/public/cbfonts/gomi0600.mf + RELOC/fonts/source/public/cbfonts/gomi0700.mf + RELOC/fonts/source/public/cbfonts/gomi0800.mf + RELOC/fonts/source/public/cbfonts/gomi0900.mf + RELOC/fonts/source/public/cbfonts/gomi1000.mf + RELOC/fonts/source/public/cbfonts/gomi1095.mf + RELOC/fonts/source/public/cbfonts/gomi1200.mf + RELOC/fonts/source/public/cbfonts/gomi1440.mf + RELOC/fonts/source/public/cbfonts/gomi1728.mf + RELOC/fonts/source/public/cbfonts/gomi2074.mf + RELOC/fonts/source/public/cbfonts/gomi2488.mf + RELOC/fonts/source/public/cbfonts/gomi2986.mf + RELOC/fonts/source/public/cbfonts/gomi3583.mf + RELOC/fonts/source/public/cbfonts/gomn.mf + RELOC/fonts/source/public/cbfonts/gomn0500.mf + RELOC/fonts/source/public/cbfonts/gomn0600.mf + RELOC/fonts/source/public/cbfonts/gomn0700.mf + RELOC/fonts/source/public/cbfonts/gomn0800.mf + RELOC/fonts/source/public/cbfonts/gomn0900.mf + RELOC/fonts/source/public/cbfonts/gomn1000.mf + RELOC/fonts/source/public/cbfonts/gomn1095.mf + RELOC/fonts/source/public/cbfonts/gomn1200.mf + RELOC/fonts/source/public/cbfonts/gomn1440.mf + RELOC/fonts/source/public/cbfonts/gomn1728.mf + RELOC/fonts/source/public/cbfonts/gomn2074.mf + RELOC/fonts/source/public/cbfonts/gomn2488.mf + RELOC/fonts/source/public/cbfonts/gomn2986.mf + RELOC/fonts/source/public/cbfonts/gomn3583.mf + RELOC/fonts/source/public/cbfonts/gomo.mf + RELOC/fonts/source/public/cbfonts/gomo0500.mf + RELOC/fonts/source/public/cbfonts/gomo0600.mf + RELOC/fonts/source/public/cbfonts/gomo0700.mf + RELOC/fonts/source/public/cbfonts/gomo0800.mf + RELOC/fonts/source/public/cbfonts/gomo0900.mf + RELOC/fonts/source/public/cbfonts/gomo1000.mf + RELOC/fonts/source/public/cbfonts/gomo1095.mf + RELOC/fonts/source/public/cbfonts/gomo1200.mf + RELOC/fonts/source/public/cbfonts/gomo1440.mf + RELOC/fonts/source/public/cbfonts/gomo1728.mf + RELOC/fonts/source/public/cbfonts/gomo2074.mf + RELOC/fonts/source/public/cbfonts/gomo2488.mf + RELOC/fonts/source/public/cbfonts/gomo2986.mf + RELOC/fonts/source/public/cbfonts/gomo3583.mf + RELOC/fonts/source/public/cbfonts/gomu.mf + RELOC/fonts/source/public/cbfonts/gomu0500.mf + RELOC/fonts/source/public/cbfonts/gomu0600.mf + RELOC/fonts/source/public/cbfonts/gomu0700.mf + RELOC/fonts/source/public/cbfonts/gomu0800.mf + RELOC/fonts/source/public/cbfonts/gomu0900.mf + RELOC/fonts/source/public/cbfonts/gomu1000.mf + RELOC/fonts/source/public/cbfonts/gomu1095.mf + RELOC/fonts/source/public/cbfonts/gomu1200.mf + RELOC/fonts/source/public/cbfonts/gomu1440.mf + RELOC/fonts/source/public/cbfonts/gomu1728.mf + RELOC/fonts/source/public/cbfonts/gomu2074.mf + RELOC/fonts/source/public/cbfonts/gomu2488.mf + RELOC/fonts/source/public/cbfonts/gomu2986.mf + RELOC/fonts/source/public/cbfonts/gomu3583.mf + RELOC/fonts/source/public/cbfonts/goxc.mf + RELOC/fonts/source/public/cbfonts/goxc0500.mf + RELOC/fonts/source/public/cbfonts/goxc0600.mf + RELOC/fonts/source/public/cbfonts/goxc0700.mf + RELOC/fonts/source/public/cbfonts/goxc0800.mf + RELOC/fonts/source/public/cbfonts/goxc0900.mf + RELOC/fonts/source/public/cbfonts/goxc1000.mf + RELOC/fonts/source/public/cbfonts/goxc1095.mf + RELOC/fonts/source/public/cbfonts/goxc1200.mf + RELOC/fonts/source/public/cbfonts/goxc1440.mf + RELOC/fonts/source/public/cbfonts/goxc1728.mf + RELOC/fonts/source/public/cbfonts/goxc2074.mf + RELOC/fonts/source/public/cbfonts/goxc2488.mf + RELOC/fonts/source/public/cbfonts/goxc2986.mf + RELOC/fonts/source/public/cbfonts/goxc3583.mf + RELOC/fonts/source/public/cbfonts/goxi.mf + RELOC/fonts/source/public/cbfonts/goxi0500.mf + RELOC/fonts/source/public/cbfonts/goxi0600.mf + RELOC/fonts/source/public/cbfonts/goxi0700.mf + RELOC/fonts/source/public/cbfonts/goxi0800.mf + RELOC/fonts/source/public/cbfonts/goxi0900.mf + RELOC/fonts/source/public/cbfonts/goxi1000.mf + RELOC/fonts/source/public/cbfonts/goxi1095.mf + RELOC/fonts/source/public/cbfonts/goxi1200.mf + RELOC/fonts/source/public/cbfonts/goxi1440.mf + RELOC/fonts/source/public/cbfonts/goxi1728.mf + RELOC/fonts/source/public/cbfonts/goxi2074.mf + RELOC/fonts/source/public/cbfonts/goxi2488.mf + RELOC/fonts/source/public/cbfonts/goxi2986.mf + RELOC/fonts/source/public/cbfonts/goxi3583.mf + RELOC/fonts/source/public/cbfonts/goxn.mf + RELOC/fonts/source/public/cbfonts/goxn0500.mf + RELOC/fonts/source/public/cbfonts/goxn0600.mf + RELOC/fonts/source/public/cbfonts/goxn0700.mf + RELOC/fonts/source/public/cbfonts/goxn0800.mf + RELOC/fonts/source/public/cbfonts/goxn0900.mf + RELOC/fonts/source/public/cbfonts/goxn1000.mf + RELOC/fonts/source/public/cbfonts/goxn1095.mf + RELOC/fonts/source/public/cbfonts/goxn1200.mf + RELOC/fonts/source/public/cbfonts/goxn1440.mf + RELOC/fonts/source/public/cbfonts/goxn1728.mf + RELOC/fonts/source/public/cbfonts/goxn2074.mf + RELOC/fonts/source/public/cbfonts/goxn2488.mf + RELOC/fonts/source/public/cbfonts/goxn2986.mf + RELOC/fonts/source/public/cbfonts/goxn3583.mf + RELOC/fonts/source/public/cbfonts/goxo.mf + RELOC/fonts/source/public/cbfonts/goxo0500.mf + RELOC/fonts/source/public/cbfonts/goxo0600.mf + RELOC/fonts/source/public/cbfonts/goxo0700.mf + RELOC/fonts/source/public/cbfonts/goxo0800.mf + RELOC/fonts/source/public/cbfonts/goxo0900.mf + RELOC/fonts/source/public/cbfonts/goxo1000.mf + RELOC/fonts/source/public/cbfonts/goxo1095.mf + RELOC/fonts/source/public/cbfonts/goxo1200.mf + RELOC/fonts/source/public/cbfonts/goxo1440.mf + RELOC/fonts/source/public/cbfonts/goxo1728.mf + RELOC/fonts/source/public/cbfonts/goxo2074.mf + RELOC/fonts/source/public/cbfonts/goxo2488.mf + RELOC/fonts/source/public/cbfonts/goxo2986.mf + RELOC/fonts/source/public/cbfonts/goxo3583.mf + RELOC/fonts/source/public/cbfonts/goxu.mf + RELOC/fonts/source/public/cbfonts/goxu0500.mf + RELOC/fonts/source/public/cbfonts/goxu0600.mf + RELOC/fonts/source/public/cbfonts/goxu0700.mf + RELOC/fonts/source/public/cbfonts/goxu0800.mf + RELOC/fonts/source/public/cbfonts/goxu0900.mf + RELOC/fonts/source/public/cbfonts/goxu1000.mf + RELOC/fonts/source/public/cbfonts/goxu1095.mf + RELOC/fonts/source/public/cbfonts/goxu1200.mf + RELOC/fonts/source/public/cbfonts/goxu1440.mf + RELOC/fonts/source/public/cbfonts/goxu1728.mf + RELOC/fonts/source/public/cbfonts/goxu2074.mf + RELOC/fonts/source/public/cbfonts/goxu2488.mf + RELOC/fonts/source/public/cbfonts/goxu2986.mf + RELOC/fonts/source/public/cbfonts/goxu3583.mf + RELOC/fonts/source/public/cbfonts/grbl.mf + RELOC/fonts/source/public/cbfonts/grbl0500.mf + RELOC/fonts/source/public/cbfonts/grbl0600.mf + RELOC/fonts/source/public/cbfonts/grbl0700.mf + RELOC/fonts/source/public/cbfonts/grbl0800.mf + RELOC/fonts/source/public/cbfonts/grbl0900.mf + RELOC/fonts/source/public/cbfonts/grbl1000.mf + RELOC/fonts/source/public/cbfonts/grbl1095.mf + RELOC/fonts/source/public/cbfonts/grbl1200.mf + RELOC/fonts/source/public/cbfonts/grbl1440.mf + RELOC/fonts/source/public/cbfonts/grbl1728.mf + RELOC/fonts/source/public/cbfonts/grbl2074.mf + RELOC/fonts/source/public/cbfonts/grbl2488.mf + RELOC/fonts/source/public/cbfonts/grbl2986.mf + RELOC/fonts/source/public/cbfonts/grbl3583.mf + RELOC/fonts/source/public/cbfonts/grmc.mf + RELOC/fonts/source/public/cbfonts/grmc0500.mf + RELOC/fonts/source/public/cbfonts/grmc0600.mf + RELOC/fonts/source/public/cbfonts/grmc0700.mf + RELOC/fonts/source/public/cbfonts/grmc0800.mf + RELOC/fonts/source/public/cbfonts/grmc0900.mf + RELOC/fonts/source/public/cbfonts/grmc1000.mf + RELOC/fonts/source/public/cbfonts/grmc1095.mf + RELOC/fonts/source/public/cbfonts/grmc1200.mf + RELOC/fonts/source/public/cbfonts/grmc1440.mf + RELOC/fonts/source/public/cbfonts/grmc1728.mf + RELOC/fonts/source/public/cbfonts/grmc2074.mf + RELOC/fonts/source/public/cbfonts/grmc2488.mf + RELOC/fonts/source/public/cbfonts/grmc2986.mf + RELOC/fonts/source/public/cbfonts/grmc3583.mf + RELOC/fonts/source/public/cbfonts/grmi.mf + RELOC/fonts/source/public/cbfonts/grmi0500.mf + RELOC/fonts/source/public/cbfonts/grmi0600.mf + RELOC/fonts/source/public/cbfonts/grmi0700.mf + RELOC/fonts/source/public/cbfonts/grmi0800.mf + RELOC/fonts/source/public/cbfonts/grmi0900.mf + RELOC/fonts/source/public/cbfonts/grmi1000.mf + RELOC/fonts/source/public/cbfonts/grmi1095.mf + RELOC/fonts/source/public/cbfonts/grmi1200.mf + RELOC/fonts/source/public/cbfonts/grmi1440.mf + RELOC/fonts/source/public/cbfonts/grmi1728.mf + RELOC/fonts/source/public/cbfonts/grmi2074.mf + RELOC/fonts/source/public/cbfonts/grmi2488.mf + RELOC/fonts/source/public/cbfonts/grmi2986.mf + RELOC/fonts/source/public/cbfonts/grmi3583.mf + RELOC/fonts/source/public/cbfonts/grml.mf + RELOC/fonts/source/public/cbfonts/grml0500.mf + RELOC/fonts/source/public/cbfonts/grml0600.mf + RELOC/fonts/source/public/cbfonts/grml0700.mf + RELOC/fonts/source/public/cbfonts/grml0800.mf + RELOC/fonts/source/public/cbfonts/grml0900.mf + RELOC/fonts/source/public/cbfonts/grml1000.mf + RELOC/fonts/source/public/cbfonts/grml1095.mf + RELOC/fonts/source/public/cbfonts/grml1200.mf + RELOC/fonts/source/public/cbfonts/grml1440.mf + RELOC/fonts/source/public/cbfonts/grml1728.mf + RELOC/fonts/source/public/cbfonts/grml2074.mf + RELOC/fonts/source/public/cbfonts/grml2488.mf + RELOC/fonts/source/public/cbfonts/grml2986.mf + RELOC/fonts/source/public/cbfonts/grml3583.mf + RELOC/fonts/source/public/cbfonts/grmn.mf + RELOC/fonts/source/public/cbfonts/grmn0500.mf + RELOC/fonts/source/public/cbfonts/grmn0600.mf + RELOC/fonts/source/public/cbfonts/grmn0700.mf + RELOC/fonts/source/public/cbfonts/grmn0800.mf + RELOC/fonts/source/public/cbfonts/grmn0900.mf + RELOC/fonts/source/public/cbfonts/grmn1000.mf + RELOC/fonts/source/public/cbfonts/grmn1095.mf + RELOC/fonts/source/public/cbfonts/grmn1200.mf + RELOC/fonts/source/public/cbfonts/grmn1440.mf + RELOC/fonts/source/public/cbfonts/grmn1728.mf + RELOC/fonts/source/public/cbfonts/grmn2074.mf + RELOC/fonts/source/public/cbfonts/grmn2488.mf + RELOC/fonts/source/public/cbfonts/grmn2986.mf + RELOC/fonts/source/public/cbfonts/grmn3583.mf + RELOC/fonts/source/public/cbfonts/grmo.mf + RELOC/fonts/source/public/cbfonts/grmo0500.mf + RELOC/fonts/source/public/cbfonts/grmo0600.mf + RELOC/fonts/source/public/cbfonts/grmo0700.mf + RELOC/fonts/source/public/cbfonts/grmo0800.mf + RELOC/fonts/source/public/cbfonts/grmo0900.mf + RELOC/fonts/source/public/cbfonts/grmo1000.mf + RELOC/fonts/source/public/cbfonts/grmo1095.mf + RELOC/fonts/source/public/cbfonts/grmo1200.mf + RELOC/fonts/source/public/cbfonts/grmo1440.mf + RELOC/fonts/source/public/cbfonts/grmo1728.mf + RELOC/fonts/source/public/cbfonts/grmo2074.mf + RELOC/fonts/source/public/cbfonts/grmo2488.mf + RELOC/fonts/source/public/cbfonts/grmo2986.mf + RELOC/fonts/source/public/cbfonts/grmo3583.mf + RELOC/fonts/source/public/cbfonts/grmu.mf + RELOC/fonts/source/public/cbfonts/grmu0500.mf + RELOC/fonts/source/public/cbfonts/grmu0600.mf + RELOC/fonts/source/public/cbfonts/grmu0700.mf + RELOC/fonts/source/public/cbfonts/grmu0800.mf + RELOC/fonts/source/public/cbfonts/grmu0900.mf + RELOC/fonts/source/public/cbfonts/grmu1000.mf + RELOC/fonts/source/public/cbfonts/grmu1095.mf + RELOC/fonts/source/public/cbfonts/grmu1200.mf + RELOC/fonts/source/public/cbfonts/grmu1440.mf + RELOC/fonts/source/public/cbfonts/grmu1728.mf + RELOC/fonts/source/public/cbfonts/grmu2074.mf + RELOC/fonts/source/public/cbfonts/grmu2488.mf + RELOC/fonts/source/public/cbfonts/grmu2986.mf + RELOC/fonts/source/public/cbfonts/grmu3583.mf + RELOC/fonts/source/public/cbfonts/grxc.mf + RELOC/fonts/source/public/cbfonts/grxc0500.mf + RELOC/fonts/source/public/cbfonts/grxc0600.mf + RELOC/fonts/source/public/cbfonts/grxc0700.mf + RELOC/fonts/source/public/cbfonts/grxc0800.mf + RELOC/fonts/source/public/cbfonts/grxc0900.mf + RELOC/fonts/source/public/cbfonts/grxc1000.mf + RELOC/fonts/source/public/cbfonts/grxc1095.mf + RELOC/fonts/source/public/cbfonts/grxc1200.mf + RELOC/fonts/source/public/cbfonts/grxc1440.mf + RELOC/fonts/source/public/cbfonts/grxc1728.mf + RELOC/fonts/source/public/cbfonts/grxc2074.mf + RELOC/fonts/source/public/cbfonts/grxc2488.mf + RELOC/fonts/source/public/cbfonts/grxc2986.mf + RELOC/fonts/source/public/cbfonts/grxc3583.mf + RELOC/fonts/source/public/cbfonts/grxi.mf + RELOC/fonts/source/public/cbfonts/grxi0500.mf + RELOC/fonts/source/public/cbfonts/grxi0600.mf + RELOC/fonts/source/public/cbfonts/grxi0700.mf + RELOC/fonts/source/public/cbfonts/grxi0800.mf + RELOC/fonts/source/public/cbfonts/grxi0900.mf + RELOC/fonts/source/public/cbfonts/grxi1000.mf + RELOC/fonts/source/public/cbfonts/grxi1095.mf + RELOC/fonts/source/public/cbfonts/grxi1200.mf + RELOC/fonts/source/public/cbfonts/grxi1440.mf + RELOC/fonts/source/public/cbfonts/grxi1728.mf + RELOC/fonts/source/public/cbfonts/grxi2074.mf + RELOC/fonts/source/public/cbfonts/grxi2488.mf + RELOC/fonts/source/public/cbfonts/grxi2986.mf + RELOC/fonts/source/public/cbfonts/grxi3583.mf + RELOC/fonts/source/public/cbfonts/grxl.mf + RELOC/fonts/source/public/cbfonts/grxl0500.mf + RELOC/fonts/source/public/cbfonts/grxl0600.mf + RELOC/fonts/source/public/cbfonts/grxl0700.mf + RELOC/fonts/source/public/cbfonts/grxl0800.mf + RELOC/fonts/source/public/cbfonts/grxl0900.mf + RELOC/fonts/source/public/cbfonts/grxl1000.mf + RELOC/fonts/source/public/cbfonts/grxl1095.mf + RELOC/fonts/source/public/cbfonts/grxl1200.mf + RELOC/fonts/source/public/cbfonts/grxl1440.mf + RELOC/fonts/source/public/cbfonts/grxl1728.mf + RELOC/fonts/source/public/cbfonts/grxl2074.mf + RELOC/fonts/source/public/cbfonts/grxl2488.mf + RELOC/fonts/source/public/cbfonts/grxl2986.mf + RELOC/fonts/source/public/cbfonts/grxl3583.mf + RELOC/fonts/source/public/cbfonts/grxn.mf + RELOC/fonts/source/public/cbfonts/grxn0500.mf + RELOC/fonts/source/public/cbfonts/grxn0600.mf + RELOC/fonts/source/public/cbfonts/grxn0700.mf + RELOC/fonts/source/public/cbfonts/grxn0800.mf + RELOC/fonts/source/public/cbfonts/grxn0900.mf + RELOC/fonts/source/public/cbfonts/grxn1000.mf + RELOC/fonts/source/public/cbfonts/grxn1095.mf + RELOC/fonts/source/public/cbfonts/grxn1200.mf + RELOC/fonts/source/public/cbfonts/grxn1440.mf + RELOC/fonts/source/public/cbfonts/grxn1728.mf + RELOC/fonts/source/public/cbfonts/grxn2074.mf + RELOC/fonts/source/public/cbfonts/grxn2488.mf + RELOC/fonts/source/public/cbfonts/grxn2986.mf + RELOC/fonts/source/public/cbfonts/grxn3583.mf + RELOC/fonts/source/public/cbfonts/grxo.mf + RELOC/fonts/source/public/cbfonts/grxo0500.mf + RELOC/fonts/source/public/cbfonts/grxo0600.mf + RELOC/fonts/source/public/cbfonts/grxo0700.mf + RELOC/fonts/source/public/cbfonts/grxo0800.mf + RELOC/fonts/source/public/cbfonts/grxo0900.mf + RELOC/fonts/source/public/cbfonts/grxo1000.mf + RELOC/fonts/source/public/cbfonts/grxo1095.mf + RELOC/fonts/source/public/cbfonts/grxo1200.mf + RELOC/fonts/source/public/cbfonts/grxo1440.mf + RELOC/fonts/source/public/cbfonts/grxo1728.mf + RELOC/fonts/source/public/cbfonts/grxo2074.mf + RELOC/fonts/source/public/cbfonts/grxo2488.mf + RELOC/fonts/source/public/cbfonts/grxo2986.mf + RELOC/fonts/source/public/cbfonts/grxo3583.mf + RELOC/fonts/source/public/cbfonts/grxu.mf + RELOC/fonts/source/public/cbfonts/grxu0500.mf + RELOC/fonts/source/public/cbfonts/grxu0600.mf + RELOC/fonts/source/public/cbfonts/grxu0700.mf + RELOC/fonts/source/public/cbfonts/grxu0800.mf + RELOC/fonts/source/public/cbfonts/grxu0900.mf + RELOC/fonts/source/public/cbfonts/grxu1000.mf + RELOC/fonts/source/public/cbfonts/grxu1095.mf + RELOC/fonts/source/public/cbfonts/grxu1200.mf + RELOC/fonts/source/public/cbfonts/grxu1440.mf + RELOC/fonts/source/public/cbfonts/grxu1728.mf + RELOC/fonts/source/public/cbfonts/grxu2074.mf + RELOC/fonts/source/public/cbfonts/grxu2488.mf + RELOC/fonts/source/public/cbfonts/grxu2986.mf + RELOC/fonts/source/public/cbfonts/grxu3583.mf + RELOC/fonts/source/public/cbfonts/gsma.mf + RELOC/fonts/source/public/cbfonts/gsma0500.mf + RELOC/fonts/source/public/cbfonts/gsma0600.mf + RELOC/fonts/source/public/cbfonts/gsma0700.mf + RELOC/fonts/source/public/cbfonts/gsma0800.mf + RELOC/fonts/source/public/cbfonts/gsma0900.mf + RELOC/fonts/source/public/cbfonts/gsma1000.mf + RELOC/fonts/source/public/cbfonts/gsma1095.mf + RELOC/fonts/source/public/cbfonts/gsma1200.mf + RELOC/fonts/source/public/cbfonts/gsma1440.mf + RELOC/fonts/source/public/cbfonts/gsma1728.mf + RELOC/fonts/source/public/cbfonts/gsma2074.mf + RELOC/fonts/source/public/cbfonts/gsma2488.mf + RELOC/fonts/source/public/cbfonts/gsma2986.mf + RELOC/fonts/source/public/cbfonts/gsma3583.mf + RELOC/fonts/source/public/cbfonts/gsmc.mf + RELOC/fonts/source/public/cbfonts/gsmc0500.mf + RELOC/fonts/source/public/cbfonts/gsmc0600.mf + RELOC/fonts/source/public/cbfonts/gsmc0700.mf + RELOC/fonts/source/public/cbfonts/gsmc0800.mf + RELOC/fonts/source/public/cbfonts/gsmc0900.mf + RELOC/fonts/source/public/cbfonts/gsmc1000.mf + RELOC/fonts/source/public/cbfonts/gsmc1095.mf + RELOC/fonts/source/public/cbfonts/gsmc1200.mf + RELOC/fonts/source/public/cbfonts/gsmc1440.mf + RELOC/fonts/source/public/cbfonts/gsmc1728.mf + RELOC/fonts/source/public/cbfonts/gsmc2074.mf + RELOC/fonts/source/public/cbfonts/gsmc2488.mf + RELOC/fonts/source/public/cbfonts/gsmc2986.mf + RELOC/fonts/source/public/cbfonts/gsmc3583.mf + RELOC/fonts/source/public/cbfonts/gsme.mf + RELOC/fonts/source/public/cbfonts/gsme0500.mf + RELOC/fonts/source/public/cbfonts/gsme0600.mf + RELOC/fonts/source/public/cbfonts/gsme0700.mf + RELOC/fonts/source/public/cbfonts/gsme0800.mf + RELOC/fonts/source/public/cbfonts/gsme0900.mf + RELOC/fonts/source/public/cbfonts/gsme1000.mf + RELOC/fonts/source/public/cbfonts/gsme1095.mf + RELOC/fonts/source/public/cbfonts/gsme1200.mf + RELOC/fonts/source/public/cbfonts/gsme1440.mf + RELOC/fonts/source/public/cbfonts/gsme1728.mf + RELOC/fonts/source/public/cbfonts/gsme2074.mf + RELOC/fonts/source/public/cbfonts/gsme2488.mf + RELOC/fonts/source/public/cbfonts/gsme2986.mf + RELOC/fonts/source/public/cbfonts/gsme3583.mf + RELOC/fonts/source/public/cbfonts/gsmi.mf + RELOC/fonts/source/public/cbfonts/gsmi0500.mf + RELOC/fonts/source/public/cbfonts/gsmi0600.mf + RELOC/fonts/source/public/cbfonts/gsmi0700.mf + RELOC/fonts/source/public/cbfonts/gsmi0800.mf + RELOC/fonts/source/public/cbfonts/gsmi0900.mf + RELOC/fonts/source/public/cbfonts/gsmi1000.mf + RELOC/fonts/source/public/cbfonts/gsmi1095.mf + RELOC/fonts/source/public/cbfonts/gsmi1200.mf + RELOC/fonts/source/public/cbfonts/gsmi1440.mf + RELOC/fonts/source/public/cbfonts/gsmi1728.mf + RELOC/fonts/source/public/cbfonts/gsmi2074.mf + RELOC/fonts/source/public/cbfonts/gsmi2488.mf + RELOC/fonts/source/public/cbfonts/gsmi2986.mf + RELOC/fonts/source/public/cbfonts/gsmi3583.mf + RELOC/fonts/source/public/cbfonts/gsmn.mf + RELOC/fonts/source/public/cbfonts/gsmn0500.mf + RELOC/fonts/source/public/cbfonts/gsmn0600.mf + RELOC/fonts/source/public/cbfonts/gsmn0700.mf + RELOC/fonts/source/public/cbfonts/gsmn0800.mf + RELOC/fonts/source/public/cbfonts/gsmn0900.mf + RELOC/fonts/source/public/cbfonts/gsmn1000.mf + RELOC/fonts/source/public/cbfonts/gsmn1095.mf + RELOC/fonts/source/public/cbfonts/gsmn1200.mf + RELOC/fonts/source/public/cbfonts/gsmn1440.mf + RELOC/fonts/source/public/cbfonts/gsmn1728.mf + RELOC/fonts/source/public/cbfonts/gsmn2074.mf + RELOC/fonts/source/public/cbfonts/gsmn2488.mf + RELOC/fonts/source/public/cbfonts/gsmn2986.mf + RELOC/fonts/source/public/cbfonts/gsmn3583.mf + RELOC/fonts/source/public/cbfonts/gsmo.mf + RELOC/fonts/source/public/cbfonts/gsmo0500.mf + RELOC/fonts/source/public/cbfonts/gsmo0600.mf + RELOC/fonts/source/public/cbfonts/gsmo0700.mf + RELOC/fonts/source/public/cbfonts/gsmo0800.mf + RELOC/fonts/source/public/cbfonts/gsmo0900.mf + RELOC/fonts/source/public/cbfonts/gsmo1000.mf + RELOC/fonts/source/public/cbfonts/gsmo1095.mf + RELOC/fonts/source/public/cbfonts/gsmo1200.mf + RELOC/fonts/source/public/cbfonts/gsmo1440.mf + RELOC/fonts/source/public/cbfonts/gsmo1728.mf + RELOC/fonts/source/public/cbfonts/gsmo2074.mf + RELOC/fonts/source/public/cbfonts/gsmo2488.mf + RELOC/fonts/source/public/cbfonts/gsmo2986.mf + RELOC/fonts/source/public/cbfonts/gsmo3583.mf + RELOC/fonts/source/public/cbfonts/gsmu.mf + RELOC/fonts/source/public/cbfonts/gsmu0500.mf + RELOC/fonts/source/public/cbfonts/gsmu0600.mf + RELOC/fonts/source/public/cbfonts/gsmu0700.mf + RELOC/fonts/source/public/cbfonts/gsmu0800.mf + RELOC/fonts/source/public/cbfonts/gsmu0900.mf + RELOC/fonts/source/public/cbfonts/gsmu1000.mf + RELOC/fonts/source/public/cbfonts/gsmu1095.mf + RELOC/fonts/source/public/cbfonts/gsmu1200.mf + RELOC/fonts/source/public/cbfonts/gsmu1440.mf + RELOC/fonts/source/public/cbfonts/gsmu1728.mf + RELOC/fonts/source/public/cbfonts/gsmu2074.mf + RELOC/fonts/source/public/cbfonts/gsmu2488.mf + RELOC/fonts/source/public/cbfonts/gsmu2986.mf + RELOC/fonts/source/public/cbfonts/gsmu3583.mf + RELOC/fonts/source/public/cbfonts/gsxa.mf + RELOC/fonts/source/public/cbfonts/gsxa0500.mf + RELOC/fonts/source/public/cbfonts/gsxa0600.mf + RELOC/fonts/source/public/cbfonts/gsxa0700.mf + RELOC/fonts/source/public/cbfonts/gsxa0800.mf + RELOC/fonts/source/public/cbfonts/gsxa0900.mf + RELOC/fonts/source/public/cbfonts/gsxa1000.mf + RELOC/fonts/source/public/cbfonts/gsxa1095.mf + RELOC/fonts/source/public/cbfonts/gsxa1200.mf + RELOC/fonts/source/public/cbfonts/gsxa1440.mf + RELOC/fonts/source/public/cbfonts/gsxa1728.mf + RELOC/fonts/source/public/cbfonts/gsxa2074.mf + RELOC/fonts/source/public/cbfonts/gsxa2488.mf + RELOC/fonts/source/public/cbfonts/gsxa2986.mf + RELOC/fonts/source/public/cbfonts/gsxa3583.mf + RELOC/fonts/source/public/cbfonts/gsxc.mf + RELOC/fonts/source/public/cbfonts/gsxc0500.mf + RELOC/fonts/source/public/cbfonts/gsxc0600.mf + RELOC/fonts/source/public/cbfonts/gsxc0700.mf + RELOC/fonts/source/public/cbfonts/gsxc0800.mf + RELOC/fonts/source/public/cbfonts/gsxc0900.mf + RELOC/fonts/source/public/cbfonts/gsxc1000.mf + RELOC/fonts/source/public/cbfonts/gsxc1095.mf + RELOC/fonts/source/public/cbfonts/gsxc1200.mf + RELOC/fonts/source/public/cbfonts/gsxc1440.mf + RELOC/fonts/source/public/cbfonts/gsxc1728.mf + RELOC/fonts/source/public/cbfonts/gsxc2074.mf + RELOC/fonts/source/public/cbfonts/gsxc2488.mf + RELOC/fonts/source/public/cbfonts/gsxc2986.mf + RELOC/fonts/source/public/cbfonts/gsxc3583.mf + RELOC/fonts/source/public/cbfonts/gsxe.mf + RELOC/fonts/source/public/cbfonts/gsxe0500.mf + RELOC/fonts/source/public/cbfonts/gsxe0600.mf + RELOC/fonts/source/public/cbfonts/gsxe0700.mf + RELOC/fonts/source/public/cbfonts/gsxe0800.mf + RELOC/fonts/source/public/cbfonts/gsxe0900.mf + RELOC/fonts/source/public/cbfonts/gsxe1000.mf + RELOC/fonts/source/public/cbfonts/gsxe1095.mf + RELOC/fonts/source/public/cbfonts/gsxe1200.mf + RELOC/fonts/source/public/cbfonts/gsxe1440.mf + RELOC/fonts/source/public/cbfonts/gsxe1728.mf + RELOC/fonts/source/public/cbfonts/gsxe2074.mf + RELOC/fonts/source/public/cbfonts/gsxe2488.mf + RELOC/fonts/source/public/cbfonts/gsxe2986.mf + RELOC/fonts/source/public/cbfonts/gsxe3583.mf + RELOC/fonts/source/public/cbfonts/gsxi.mf + RELOC/fonts/source/public/cbfonts/gsxi0500.mf + RELOC/fonts/source/public/cbfonts/gsxi0600.mf + RELOC/fonts/source/public/cbfonts/gsxi0700.mf + RELOC/fonts/source/public/cbfonts/gsxi0800.mf + RELOC/fonts/source/public/cbfonts/gsxi0900.mf + RELOC/fonts/source/public/cbfonts/gsxi1000.mf + RELOC/fonts/source/public/cbfonts/gsxi1095.mf + RELOC/fonts/source/public/cbfonts/gsxi1200.mf + RELOC/fonts/source/public/cbfonts/gsxi1440.mf + RELOC/fonts/source/public/cbfonts/gsxi1728.mf + RELOC/fonts/source/public/cbfonts/gsxi2074.mf + RELOC/fonts/source/public/cbfonts/gsxi2488.mf + RELOC/fonts/source/public/cbfonts/gsxi2986.mf + RELOC/fonts/source/public/cbfonts/gsxi3583.mf + RELOC/fonts/source/public/cbfonts/gsxn.mf + RELOC/fonts/source/public/cbfonts/gsxn0500.mf + RELOC/fonts/source/public/cbfonts/gsxn0600.mf + RELOC/fonts/source/public/cbfonts/gsxn0700.mf + RELOC/fonts/source/public/cbfonts/gsxn0800.mf + RELOC/fonts/source/public/cbfonts/gsxn0900.mf + RELOC/fonts/source/public/cbfonts/gsxn1000.mf + RELOC/fonts/source/public/cbfonts/gsxn1095.mf + RELOC/fonts/source/public/cbfonts/gsxn1200.mf + RELOC/fonts/source/public/cbfonts/gsxn1440.mf + RELOC/fonts/source/public/cbfonts/gsxn1728.mf + RELOC/fonts/source/public/cbfonts/gsxn2074.mf + RELOC/fonts/source/public/cbfonts/gsxn2488.mf + RELOC/fonts/source/public/cbfonts/gsxn2986.mf + RELOC/fonts/source/public/cbfonts/gsxn3583.mf + RELOC/fonts/source/public/cbfonts/gsxo.mf + RELOC/fonts/source/public/cbfonts/gsxo0500.mf + RELOC/fonts/source/public/cbfonts/gsxo0600.mf + RELOC/fonts/source/public/cbfonts/gsxo0700.mf + RELOC/fonts/source/public/cbfonts/gsxo0800.mf + RELOC/fonts/source/public/cbfonts/gsxo0900.mf + RELOC/fonts/source/public/cbfonts/gsxo1000.mf + RELOC/fonts/source/public/cbfonts/gsxo1095.mf + RELOC/fonts/source/public/cbfonts/gsxo1200.mf + RELOC/fonts/source/public/cbfonts/gsxo1440.mf + RELOC/fonts/source/public/cbfonts/gsxo1728.mf + RELOC/fonts/source/public/cbfonts/gsxo2074.mf + RELOC/fonts/source/public/cbfonts/gsxo2488.mf + RELOC/fonts/source/public/cbfonts/gsxo2986.mf + RELOC/fonts/source/public/cbfonts/gsxo3583.mf + RELOC/fonts/source/public/cbfonts/gsxu.mf + RELOC/fonts/source/public/cbfonts/gsxu0500.mf + RELOC/fonts/source/public/cbfonts/gsxu0600.mf + RELOC/fonts/source/public/cbfonts/gsxu0700.mf + RELOC/fonts/source/public/cbfonts/gsxu0800.mf + RELOC/fonts/source/public/cbfonts/gsxu0900.mf + RELOC/fonts/source/public/cbfonts/gsxu1000.mf + RELOC/fonts/source/public/cbfonts/gsxu1095.mf + RELOC/fonts/source/public/cbfonts/gsxu1200.mf + RELOC/fonts/source/public/cbfonts/gsxu1440.mf + RELOC/fonts/source/public/cbfonts/gsxu1728.mf + RELOC/fonts/source/public/cbfonts/gsxu2074.mf + RELOC/fonts/source/public/cbfonts/gsxu2488.mf + RELOC/fonts/source/public/cbfonts/gsxu2986.mf + RELOC/fonts/source/public/cbfonts/gsxu3583.mf + RELOC/fonts/source/public/cbfonts/gttc.mf + RELOC/fonts/source/public/cbfonts/gttc0500.mf + RELOC/fonts/source/public/cbfonts/gttc0600.mf + RELOC/fonts/source/public/cbfonts/gttc0700.mf + RELOC/fonts/source/public/cbfonts/gttc0800.mf + RELOC/fonts/source/public/cbfonts/gttc0900.mf + RELOC/fonts/source/public/cbfonts/gttc1000.mf + RELOC/fonts/source/public/cbfonts/gttc1095.mf + RELOC/fonts/source/public/cbfonts/gttc1200.mf + RELOC/fonts/source/public/cbfonts/gttc1440.mf + RELOC/fonts/source/public/cbfonts/gttc1728.mf + RELOC/fonts/source/public/cbfonts/gttc2074.mf + RELOC/fonts/source/public/cbfonts/gttc2488.mf + RELOC/fonts/source/public/cbfonts/gttc2986.mf + RELOC/fonts/source/public/cbfonts/gttc3583.mf + RELOC/fonts/source/public/cbfonts/gtti.mf + RELOC/fonts/source/public/cbfonts/gtti0500.mf + RELOC/fonts/source/public/cbfonts/gtti0600.mf + RELOC/fonts/source/public/cbfonts/gtti0700.mf + RELOC/fonts/source/public/cbfonts/gtti0800.mf + RELOC/fonts/source/public/cbfonts/gtti0900.mf + RELOC/fonts/source/public/cbfonts/gtti1000.mf + RELOC/fonts/source/public/cbfonts/gtti1095.mf + RELOC/fonts/source/public/cbfonts/gtti1200.mf + RELOC/fonts/source/public/cbfonts/gtti1440.mf + RELOC/fonts/source/public/cbfonts/gtti1728.mf + RELOC/fonts/source/public/cbfonts/gtti2074.mf + RELOC/fonts/source/public/cbfonts/gtti2488.mf + RELOC/fonts/source/public/cbfonts/gtti2986.mf + RELOC/fonts/source/public/cbfonts/gtti3583.mf + RELOC/fonts/source/public/cbfonts/gttn.mf + RELOC/fonts/source/public/cbfonts/gttn0500.mf + RELOC/fonts/source/public/cbfonts/gttn0600.mf + RELOC/fonts/source/public/cbfonts/gttn0700.mf + RELOC/fonts/source/public/cbfonts/gttn0800.mf + RELOC/fonts/source/public/cbfonts/gttn0900.mf + RELOC/fonts/source/public/cbfonts/gttn1000.mf + RELOC/fonts/source/public/cbfonts/gttn1095.mf + RELOC/fonts/source/public/cbfonts/gttn1200.mf + RELOC/fonts/source/public/cbfonts/gttn1440.mf + RELOC/fonts/source/public/cbfonts/gttn1728.mf + RELOC/fonts/source/public/cbfonts/gttn2074.mf + RELOC/fonts/source/public/cbfonts/gttn2488.mf + RELOC/fonts/source/public/cbfonts/gttn2986.mf + RELOC/fonts/source/public/cbfonts/gttn3583.mf + RELOC/fonts/source/public/cbfonts/gtto.mf + RELOC/fonts/source/public/cbfonts/gtto0500.mf + RELOC/fonts/source/public/cbfonts/gtto0600.mf + RELOC/fonts/source/public/cbfonts/gtto0700.mf + RELOC/fonts/source/public/cbfonts/gtto0800.mf + RELOC/fonts/source/public/cbfonts/gtto0900.mf + RELOC/fonts/source/public/cbfonts/gtto1000.mf + RELOC/fonts/source/public/cbfonts/gtto1095.mf + RELOC/fonts/source/public/cbfonts/gtto1200.mf + RELOC/fonts/source/public/cbfonts/gtto1440.mf + RELOC/fonts/source/public/cbfonts/gtto1728.mf + RELOC/fonts/source/public/cbfonts/gtto2074.mf + RELOC/fonts/source/public/cbfonts/gtto2488.mf + RELOC/fonts/source/public/cbfonts/gtto2986.mf + RELOC/fonts/source/public/cbfonts/gtto3583.mf + RELOC/fonts/source/public/cbfonts/gttu.mf + RELOC/fonts/source/public/cbfonts/gttu0500.mf + RELOC/fonts/source/public/cbfonts/gttu0600.mf + RELOC/fonts/source/public/cbfonts/gttu0700.mf + RELOC/fonts/source/public/cbfonts/gttu0800.mf + RELOC/fonts/source/public/cbfonts/gttu0900.mf + RELOC/fonts/source/public/cbfonts/gttu1000.mf + RELOC/fonts/source/public/cbfonts/gttu1095.mf + RELOC/fonts/source/public/cbfonts/gttu1200.mf + RELOC/fonts/source/public/cbfonts/gttu1440.mf + RELOC/fonts/source/public/cbfonts/gttu1728.mf + RELOC/fonts/source/public/cbfonts/gttu2074.mf + RELOC/fonts/source/public/cbfonts/gttu2488.mf + RELOC/fonts/source/public/cbfonts/gttu2986.mf + RELOC/fonts/source/public/cbfonts/gttu3583.mf + RELOC/fonts/tfm/public/cbfonts/glic0700.tfm + RELOC/fonts/tfm/public/cbfonts/glic0800.tfm + RELOC/fonts/tfm/public/cbfonts/glic1000.tfm + RELOC/fonts/tfm/public/cbfonts/glic1200.tfm + RELOC/fonts/tfm/public/cbfonts/glic1382.tfm + RELOC/fonts/tfm/public/cbfonts/glic1659.tfm + RELOC/fonts/tfm/public/cbfonts/glic1991.tfm + RELOC/fonts/tfm/public/cbfonts/glic2389.tfm + RELOC/fonts/tfm/public/cbfonts/glic2866.tfm + RELOC/fonts/tfm/public/cbfonts/glic3440.tfm + RELOC/fonts/tfm/public/cbfonts/glic4128.tfm + RELOC/fonts/tfm/public/cbfonts/glii0700.tfm + RELOC/fonts/tfm/public/cbfonts/glii0800.tfm + RELOC/fonts/tfm/public/cbfonts/glii1000.tfm + RELOC/fonts/tfm/public/cbfonts/glii1200.tfm + RELOC/fonts/tfm/public/cbfonts/glii1382.tfm + RELOC/fonts/tfm/public/cbfonts/glii1659.tfm + RELOC/fonts/tfm/public/cbfonts/glii1991.tfm + RELOC/fonts/tfm/public/cbfonts/glii2389.tfm + RELOC/fonts/tfm/public/cbfonts/glii2866.tfm + RELOC/fonts/tfm/public/cbfonts/glii3440.tfm + RELOC/fonts/tfm/public/cbfonts/glii4128.tfm + RELOC/fonts/tfm/public/cbfonts/glin0700.tfm + RELOC/fonts/tfm/public/cbfonts/glin0800.tfm + RELOC/fonts/tfm/public/cbfonts/glin1000.tfm + RELOC/fonts/tfm/public/cbfonts/glin1200.tfm + RELOC/fonts/tfm/public/cbfonts/glin1382.tfm + RELOC/fonts/tfm/public/cbfonts/glin1659.tfm + RELOC/fonts/tfm/public/cbfonts/glin1991.tfm + RELOC/fonts/tfm/public/cbfonts/glin2389.tfm + RELOC/fonts/tfm/public/cbfonts/glin2866.tfm + RELOC/fonts/tfm/public/cbfonts/glin3440.tfm + RELOC/fonts/tfm/public/cbfonts/glin4128.tfm + RELOC/fonts/tfm/public/cbfonts/glio0700.tfm + RELOC/fonts/tfm/public/cbfonts/glio0800.tfm + RELOC/fonts/tfm/public/cbfonts/glio1000.tfm + RELOC/fonts/tfm/public/cbfonts/glio1200.tfm + RELOC/fonts/tfm/public/cbfonts/glio1382.tfm + RELOC/fonts/tfm/public/cbfonts/glio1659.tfm + RELOC/fonts/tfm/public/cbfonts/glio1991.tfm + RELOC/fonts/tfm/public/cbfonts/glio2389.tfm + RELOC/fonts/tfm/public/cbfonts/glio2866.tfm + RELOC/fonts/tfm/public/cbfonts/glio3440.tfm + RELOC/fonts/tfm/public/cbfonts/glio4128.tfm + RELOC/fonts/tfm/public/cbfonts/gliu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gliu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1382.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1659.tfm + RELOC/fonts/tfm/public/cbfonts/gliu1991.tfm + RELOC/fonts/tfm/public/cbfonts/gliu2389.tfm + RELOC/fonts/tfm/public/cbfonts/gliu2866.tfm + RELOC/fonts/tfm/public/cbfonts/gliu3440.tfm + RELOC/fonts/tfm/public/cbfonts/gliu4128.tfm + RELOC/fonts/tfm/public/cbfonts/gljc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gljc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1382.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1659.tfm + RELOC/fonts/tfm/public/cbfonts/gljc1991.tfm + RELOC/fonts/tfm/public/cbfonts/gljc2389.tfm + RELOC/fonts/tfm/public/cbfonts/gljc2866.tfm + RELOC/fonts/tfm/public/cbfonts/gljc3440.tfm + RELOC/fonts/tfm/public/cbfonts/gljc4128.tfm + RELOC/fonts/tfm/public/cbfonts/gljn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gljn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1382.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1659.tfm + RELOC/fonts/tfm/public/cbfonts/gljn1991.tfm + RELOC/fonts/tfm/public/cbfonts/gljn2389.tfm + RELOC/fonts/tfm/public/cbfonts/gljn2866.tfm + RELOC/fonts/tfm/public/cbfonts/gljn3440.tfm + RELOC/fonts/tfm/public/cbfonts/gljn4128.tfm + RELOC/fonts/tfm/public/cbfonts/gljo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gljo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1382.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1659.tfm + RELOC/fonts/tfm/public/cbfonts/gljo1991.tfm + RELOC/fonts/tfm/public/cbfonts/gljo2389.tfm + RELOC/fonts/tfm/public/cbfonts/gljo2866.tfm + RELOC/fonts/tfm/public/cbfonts/gljo3440.tfm + RELOC/fonts/tfm/public/cbfonts/gljo4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmc0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmc0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmc1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmc2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmc2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmc3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmc4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmi0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmi0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmi1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmi2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmi2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmi3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmi4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmn0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmn0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmn1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmn2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmn2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmn3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmn4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmo0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmo0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmo1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmo2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmo2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmo3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmo4128.tfm + RELOC/fonts/tfm/public/cbfonts/glmu0700.tfm + RELOC/fonts/tfm/public/cbfonts/glmu0800.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1000.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1200.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1382.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1659.tfm + RELOC/fonts/tfm/public/cbfonts/glmu1991.tfm + RELOC/fonts/tfm/public/cbfonts/glmu2389.tfm + RELOC/fonts/tfm/public/cbfonts/glmu2866.tfm + RELOC/fonts/tfm/public/cbfonts/glmu3440.tfm + RELOC/fonts/tfm/public/cbfonts/glmu4128.tfm + RELOC/fonts/tfm/public/cbfonts/gltc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gltc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1382.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1659.tfm + RELOC/fonts/tfm/public/cbfonts/gltc1991.tfm + RELOC/fonts/tfm/public/cbfonts/gltc2389.tfm + RELOC/fonts/tfm/public/cbfonts/gltc2866.tfm + RELOC/fonts/tfm/public/cbfonts/gltc3440.tfm + RELOC/fonts/tfm/public/cbfonts/gltc4128.tfm + RELOC/fonts/tfm/public/cbfonts/gltn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gltn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1382.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1659.tfm + RELOC/fonts/tfm/public/cbfonts/gltn1991.tfm + RELOC/fonts/tfm/public/cbfonts/gltn2389.tfm + RELOC/fonts/tfm/public/cbfonts/gltn2866.tfm + RELOC/fonts/tfm/public/cbfonts/gltn3440.tfm + RELOC/fonts/tfm/public/cbfonts/gltn4128.tfm + RELOC/fonts/tfm/public/cbfonts/glto0700.tfm + RELOC/fonts/tfm/public/cbfonts/glto0800.tfm + RELOC/fonts/tfm/public/cbfonts/glto1000.tfm + RELOC/fonts/tfm/public/cbfonts/glto1200.tfm + RELOC/fonts/tfm/public/cbfonts/glto1382.tfm + RELOC/fonts/tfm/public/cbfonts/glto1659.tfm + RELOC/fonts/tfm/public/cbfonts/glto1991.tfm + RELOC/fonts/tfm/public/cbfonts/glto2389.tfm + RELOC/fonts/tfm/public/cbfonts/glto2866.tfm + RELOC/fonts/tfm/public/cbfonts/glto3440.tfm + RELOC/fonts/tfm/public/cbfonts/glto4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwc0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwc0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwc1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwc2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwc2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwc3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwc4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwi0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwi0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwi1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwi2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwi2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwi3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwi4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwn0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwn0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwn1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwn2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwn2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwn3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwn4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwo0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwo0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwo1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwo2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwo2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwo3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwo4128.tfm + RELOC/fonts/tfm/public/cbfonts/glwu0700.tfm + RELOC/fonts/tfm/public/cbfonts/glwu0800.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1000.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1200.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1382.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1659.tfm + RELOC/fonts/tfm/public/cbfonts/glwu1991.tfm + RELOC/fonts/tfm/public/cbfonts/glwu2389.tfm + RELOC/fonts/tfm/public/cbfonts/glwu2866.tfm + RELOC/fonts/tfm/public/cbfonts/glwu3440.tfm + RELOC/fonts/tfm/public/cbfonts/glwu4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxc0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxc0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxc1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxc2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxc2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxc3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxc4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxi0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxi0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxi1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxi2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxi2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxi3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxi4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxn1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxn2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxn2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxn3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxn4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxo1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxo2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxo2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxo3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxo4128.tfm + RELOC/fonts/tfm/public/cbfonts/glxu0700.tfm + RELOC/fonts/tfm/public/cbfonts/glxu0800.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1000.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1200.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1382.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1659.tfm + RELOC/fonts/tfm/public/cbfonts/glxu1991.tfm + RELOC/fonts/tfm/public/cbfonts/glxu2389.tfm + RELOC/fonts/tfm/public/cbfonts/glxu2866.tfm + RELOC/fonts/tfm/public/cbfonts/glxu3440.tfm + RELOC/fonts/tfm/public/cbfonts/glxu4128.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmmn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmmo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmtr3583.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmxn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gmxo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomc0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomc1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomc2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomc2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomc2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomc3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomi0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomi1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomi2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomi2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomi2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomi3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0500.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0600.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gomu0900.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1095.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1440.tfm + RELOC/fonts/tfm/public/cbfonts/gomu1728.tfm + RELOC/fonts/tfm/public/cbfonts/gomu2074.tfm + RELOC/fonts/tfm/public/cbfonts/gomu2488.tfm + RELOC/fonts/tfm/public/cbfonts/gomu2986.tfm + RELOC/fonts/tfm/public/cbfonts/gomu3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxc0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxc1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxc2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxc2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxc2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxc3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxi0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxi1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxi2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxi2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxi2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxi3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxn0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxn1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxn2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxn2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxn2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxn3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxo0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxo1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxo2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxo2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxo2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxo3583.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0500.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0600.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0700.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0800.tfm + RELOC/fonts/tfm/public/cbfonts/goxu0900.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1000.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1095.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1200.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1440.tfm + RELOC/fonts/tfm/public/cbfonts/goxu1728.tfm + RELOC/fonts/tfm/public/cbfonts/goxu2074.tfm + RELOC/fonts/tfm/public/cbfonts/goxu2488.tfm + RELOC/fonts/tfm/public/cbfonts/goxu2986.tfm + RELOC/fonts/tfm/public/cbfonts/goxu3583.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0500.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0600.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0700.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0800.tfm + RELOC/fonts/tfm/public/cbfonts/grbl0900.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1000.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1095.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1200.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1440.tfm + RELOC/fonts/tfm/public/cbfonts/grbl1728.tfm + RELOC/fonts/tfm/public/cbfonts/grbl2074.tfm + RELOC/fonts/tfm/public/cbfonts/grbl2488.tfm + RELOC/fonts/tfm/public/cbfonts/grbl2986.tfm + RELOC/fonts/tfm/public/cbfonts/grbl3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmc0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmc1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmc2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmc2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmc2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmc3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmi0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmi1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmi2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmi2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmi2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmi3583.tfm + RELOC/fonts/tfm/public/cbfonts/grml0500.tfm + RELOC/fonts/tfm/public/cbfonts/grml0600.tfm + RELOC/fonts/tfm/public/cbfonts/grml0700.tfm + RELOC/fonts/tfm/public/cbfonts/grml0800.tfm + RELOC/fonts/tfm/public/cbfonts/grml0900.tfm + RELOC/fonts/tfm/public/cbfonts/grml1000.tfm + RELOC/fonts/tfm/public/cbfonts/grml1095.tfm + RELOC/fonts/tfm/public/cbfonts/grml1200.tfm + RELOC/fonts/tfm/public/cbfonts/grml1440.tfm + RELOC/fonts/tfm/public/cbfonts/grml1728.tfm + RELOC/fonts/tfm/public/cbfonts/grml2074.tfm + RELOC/fonts/tfm/public/cbfonts/grml2488.tfm + RELOC/fonts/tfm/public/cbfonts/grml2986.tfm + RELOC/fonts/tfm/public/cbfonts/grml3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmn0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmn1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmn2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmn2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmn2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmn3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmo0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmo1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmo2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmo2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmo2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmo3583.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0500.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0600.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0700.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0800.tfm + RELOC/fonts/tfm/public/cbfonts/grmu0900.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1000.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1095.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1200.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1440.tfm + RELOC/fonts/tfm/public/cbfonts/grmu1728.tfm + RELOC/fonts/tfm/public/cbfonts/grmu2074.tfm + RELOC/fonts/tfm/public/cbfonts/grmu2488.tfm + RELOC/fonts/tfm/public/cbfonts/grmu2986.tfm + RELOC/fonts/tfm/public/cbfonts/grmu3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxc0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxc1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxc2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxc2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxc2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxc3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxi0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxi1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxi2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxi2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxi2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxi3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxl0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxl1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxl2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxl2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxl2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxl3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxn0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxn1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxn2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxn2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxn2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxn3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxo0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxo1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxo2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxo2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxo2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxo3583.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0500.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0600.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0700.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0800.tfm + RELOC/fonts/tfm/public/cbfonts/grxu0900.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1000.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1095.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1200.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1440.tfm + RELOC/fonts/tfm/public/cbfonts/grxu1728.tfm + RELOC/fonts/tfm/public/cbfonts/grxu2074.tfm + RELOC/fonts/tfm/public/cbfonts/grxu2488.tfm + RELOC/fonts/tfm/public/cbfonts/grxu2986.tfm + RELOC/fonts/tfm/public/cbfonts/grxu3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsma0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsma1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsma2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsma2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsma2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsma3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmc3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsme0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsme1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsme2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsme2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsme2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsme3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmi3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsmu3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxa3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxc3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxe3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxi3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxo3583.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0500.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0600.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu0900.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1095.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1440.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu1728.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu2074.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu2488.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu2986.tfm + RELOC/fonts/tfm/public/cbfonts/gsxu3583.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0500.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0600.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0700.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0800.tfm + RELOC/fonts/tfm/public/cbfonts/gttc0900.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1000.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1095.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1200.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1440.tfm + RELOC/fonts/tfm/public/cbfonts/gttc1728.tfm + RELOC/fonts/tfm/public/cbfonts/gttc2074.tfm + RELOC/fonts/tfm/public/cbfonts/gttc2488.tfm + RELOC/fonts/tfm/public/cbfonts/gttc2986.tfm + RELOC/fonts/tfm/public/cbfonts/gttc3583.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0500.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0600.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0700.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0800.tfm + RELOC/fonts/tfm/public/cbfonts/gtti0900.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1000.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1095.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1200.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1440.tfm + RELOC/fonts/tfm/public/cbfonts/gtti1728.tfm + RELOC/fonts/tfm/public/cbfonts/gtti2074.tfm + RELOC/fonts/tfm/public/cbfonts/gtti2488.tfm + RELOC/fonts/tfm/public/cbfonts/gtti2986.tfm + RELOC/fonts/tfm/public/cbfonts/gtti3583.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0500.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0600.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0700.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0800.tfm + RELOC/fonts/tfm/public/cbfonts/gttn0900.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1000.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1095.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1200.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1440.tfm + RELOC/fonts/tfm/public/cbfonts/gttn1728.tfm + RELOC/fonts/tfm/public/cbfonts/gttn2074.tfm + RELOC/fonts/tfm/public/cbfonts/gttn2488.tfm + RELOC/fonts/tfm/public/cbfonts/gttn2986.tfm + RELOC/fonts/tfm/public/cbfonts/gttn3583.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0500.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0600.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0700.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0800.tfm + RELOC/fonts/tfm/public/cbfonts/gtto0900.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1000.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1095.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1200.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1440.tfm + RELOC/fonts/tfm/public/cbfonts/gtto1728.tfm + RELOC/fonts/tfm/public/cbfonts/gtto2074.tfm + RELOC/fonts/tfm/public/cbfonts/gtto2488.tfm + RELOC/fonts/tfm/public/cbfonts/gtto2986.tfm + RELOC/fonts/tfm/public/cbfonts/gtto3583.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0500.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0600.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0700.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0800.tfm + RELOC/fonts/tfm/public/cbfonts/gttu0900.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1000.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1095.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1200.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1440.tfm + RELOC/fonts/tfm/public/cbfonts/gttu1728.tfm + RELOC/fonts/tfm/public/cbfonts/gttu2074.tfm + RELOC/fonts/tfm/public/cbfonts/gttu2488.tfm + RELOC/fonts/tfm/public/cbfonts/gttu2986.tfm + RELOC/fonts/tfm/public/cbfonts/gttu3583.tfm + RELOC/fonts/type1/public/cbfonts/glic0700.pfb + RELOC/fonts/type1/public/cbfonts/glic0800.pfb + RELOC/fonts/type1/public/cbfonts/glic1000.pfb + RELOC/fonts/type1/public/cbfonts/glic1200.pfb + RELOC/fonts/type1/public/cbfonts/glic1382.pfb + RELOC/fonts/type1/public/cbfonts/glic1659.pfb + RELOC/fonts/type1/public/cbfonts/glic1991.pfb + RELOC/fonts/type1/public/cbfonts/glic2389.pfb + RELOC/fonts/type1/public/cbfonts/glic2866.pfb + RELOC/fonts/type1/public/cbfonts/glic3440.pfb + RELOC/fonts/type1/public/cbfonts/glic4128.pfb + RELOC/fonts/type1/public/cbfonts/glii0700.pfb + RELOC/fonts/type1/public/cbfonts/glii0800.pfb + RELOC/fonts/type1/public/cbfonts/glii1000.pfb + RELOC/fonts/type1/public/cbfonts/glii1200.pfb + RELOC/fonts/type1/public/cbfonts/glii1382.pfb + RELOC/fonts/type1/public/cbfonts/glii1659.pfb + RELOC/fonts/type1/public/cbfonts/glii1991.pfb + RELOC/fonts/type1/public/cbfonts/glii2389.pfb + RELOC/fonts/type1/public/cbfonts/glii2866.pfb + RELOC/fonts/type1/public/cbfonts/glii3440.pfb + RELOC/fonts/type1/public/cbfonts/glii4128.pfb + RELOC/fonts/type1/public/cbfonts/glin0700.pfb + RELOC/fonts/type1/public/cbfonts/glin0800.pfb + RELOC/fonts/type1/public/cbfonts/glin1000.pfb + RELOC/fonts/type1/public/cbfonts/glin1200.pfb + RELOC/fonts/type1/public/cbfonts/glin1382.pfb + RELOC/fonts/type1/public/cbfonts/glin1659.pfb + RELOC/fonts/type1/public/cbfonts/glin1991.pfb + RELOC/fonts/type1/public/cbfonts/glin2389.pfb + RELOC/fonts/type1/public/cbfonts/glin2866.pfb + RELOC/fonts/type1/public/cbfonts/glin3440.pfb + RELOC/fonts/type1/public/cbfonts/glin4128.pfb + RELOC/fonts/type1/public/cbfonts/glio0700.pfb + RELOC/fonts/type1/public/cbfonts/glio0800.pfb + RELOC/fonts/type1/public/cbfonts/glio1000.pfb + RELOC/fonts/type1/public/cbfonts/glio1200.pfb + RELOC/fonts/type1/public/cbfonts/glio1382.pfb + RELOC/fonts/type1/public/cbfonts/glio1659.pfb + RELOC/fonts/type1/public/cbfonts/glio1991.pfb + RELOC/fonts/type1/public/cbfonts/glio2389.pfb + RELOC/fonts/type1/public/cbfonts/glio2866.pfb + RELOC/fonts/type1/public/cbfonts/glio3440.pfb + RELOC/fonts/type1/public/cbfonts/glio4128.pfb + RELOC/fonts/type1/public/cbfonts/gliu0700.pfb + RELOC/fonts/type1/public/cbfonts/gliu0800.pfb + RELOC/fonts/type1/public/cbfonts/gliu1000.pfb + RELOC/fonts/type1/public/cbfonts/gliu1200.pfb + RELOC/fonts/type1/public/cbfonts/gliu1382.pfb + RELOC/fonts/type1/public/cbfonts/gliu1659.pfb + RELOC/fonts/type1/public/cbfonts/gliu1991.pfb + RELOC/fonts/type1/public/cbfonts/gliu2389.pfb + RELOC/fonts/type1/public/cbfonts/gliu2866.pfb + RELOC/fonts/type1/public/cbfonts/gliu3440.pfb + RELOC/fonts/type1/public/cbfonts/gliu4128.pfb + RELOC/fonts/type1/public/cbfonts/gljc0700.pfb + RELOC/fonts/type1/public/cbfonts/gljc0800.pfb + RELOC/fonts/type1/public/cbfonts/gljc1000.pfb + RELOC/fonts/type1/public/cbfonts/gljc1200.pfb + RELOC/fonts/type1/public/cbfonts/gljc1382.pfb + RELOC/fonts/type1/public/cbfonts/gljc1659.pfb + RELOC/fonts/type1/public/cbfonts/gljc1991.pfb + RELOC/fonts/type1/public/cbfonts/gljc2389.pfb + RELOC/fonts/type1/public/cbfonts/gljc2866.pfb + RELOC/fonts/type1/public/cbfonts/gljc3440.pfb + RELOC/fonts/type1/public/cbfonts/gljc4128.pfb + RELOC/fonts/type1/public/cbfonts/gljn0700.pfb + RELOC/fonts/type1/public/cbfonts/gljn0800.pfb + RELOC/fonts/type1/public/cbfonts/gljn1000.pfb + RELOC/fonts/type1/public/cbfonts/gljn1200.pfb + RELOC/fonts/type1/public/cbfonts/gljn1382.pfb + RELOC/fonts/type1/public/cbfonts/gljn1659.pfb + RELOC/fonts/type1/public/cbfonts/gljn1991.pfb + RELOC/fonts/type1/public/cbfonts/gljn2389.pfb + RELOC/fonts/type1/public/cbfonts/gljn2866.pfb + RELOC/fonts/type1/public/cbfonts/gljn3440.pfb + RELOC/fonts/type1/public/cbfonts/gljn4128.pfb + RELOC/fonts/type1/public/cbfonts/gljo0700.pfb + RELOC/fonts/type1/public/cbfonts/gljo0800.pfb + RELOC/fonts/type1/public/cbfonts/gljo1000.pfb + RELOC/fonts/type1/public/cbfonts/gljo1200.pfb + RELOC/fonts/type1/public/cbfonts/gljo1382.pfb + RELOC/fonts/type1/public/cbfonts/gljo1659.pfb + RELOC/fonts/type1/public/cbfonts/gljo1991.pfb + RELOC/fonts/type1/public/cbfonts/gljo2389.pfb + RELOC/fonts/type1/public/cbfonts/gljo2866.pfb + RELOC/fonts/type1/public/cbfonts/gljo3440.pfb + RELOC/fonts/type1/public/cbfonts/gljo4128.pfb + RELOC/fonts/type1/public/cbfonts/glmc0700.pfb + RELOC/fonts/type1/public/cbfonts/glmc0800.pfb + RELOC/fonts/type1/public/cbfonts/glmc1000.pfb + RELOC/fonts/type1/public/cbfonts/glmc1200.pfb + RELOC/fonts/type1/public/cbfonts/glmc1382.pfb + RELOC/fonts/type1/public/cbfonts/glmc1659.pfb + RELOC/fonts/type1/public/cbfonts/glmc1991.pfb + RELOC/fonts/type1/public/cbfonts/glmc2389.pfb + RELOC/fonts/type1/public/cbfonts/glmc2866.pfb + RELOC/fonts/type1/public/cbfonts/glmc3440.pfb + RELOC/fonts/type1/public/cbfonts/glmc4128.pfb + RELOC/fonts/type1/public/cbfonts/glmi0700.pfb + RELOC/fonts/type1/public/cbfonts/glmi0800.pfb + RELOC/fonts/type1/public/cbfonts/glmi1000.pfb + RELOC/fonts/type1/public/cbfonts/glmi1200.pfb + RELOC/fonts/type1/public/cbfonts/glmi1382.pfb + RELOC/fonts/type1/public/cbfonts/glmi1659.pfb + RELOC/fonts/type1/public/cbfonts/glmi1991.pfb + RELOC/fonts/type1/public/cbfonts/glmi2389.pfb + RELOC/fonts/type1/public/cbfonts/glmi2866.pfb + RELOC/fonts/type1/public/cbfonts/glmi3440.pfb + RELOC/fonts/type1/public/cbfonts/glmi4128.pfb + RELOC/fonts/type1/public/cbfonts/glmn0700.pfb + RELOC/fonts/type1/public/cbfonts/glmn0800.pfb + RELOC/fonts/type1/public/cbfonts/glmn1000.pfb + RELOC/fonts/type1/public/cbfonts/glmn1200.pfb + RELOC/fonts/type1/public/cbfonts/glmn1382.pfb + RELOC/fonts/type1/public/cbfonts/glmn1659.pfb + RELOC/fonts/type1/public/cbfonts/glmn1991.pfb + RELOC/fonts/type1/public/cbfonts/glmn2389.pfb + RELOC/fonts/type1/public/cbfonts/glmn2866.pfb + RELOC/fonts/type1/public/cbfonts/glmn3440.pfb + RELOC/fonts/type1/public/cbfonts/glmn4128.pfb + RELOC/fonts/type1/public/cbfonts/glmo0700.pfb + RELOC/fonts/type1/public/cbfonts/glmo0800.pfb + RELOC/fonts/type1/public/cbfonts/glmo1000.pfb + RELOC/fonts/type1/public/cbfonts/glmo1200.pfb + RELOC/fonts/type1/public/cbfonts/glmo1382.pfb + RELOC/fonts/type1/public/cbfonts/glmo1659.pfb + RELOC/fonts/type1/public/cbfonts/glmo1991.pfb + RELOC/fonts/type1/public/cbfonts/glmo2389.pfb + RELOC/fonts/type1/public/cbfonts/glmo2866.pfb + RELOC/fonts/type1/public/cbfonts/glmo3440.pfb + RELOC/fonts/type1/public/cbfonts/glmo4128.pfb + RELOC/fonts/type1/public/cbfonts/glmu0700.pfb + RELOC/fonts/type1/public/cbfonts/glmu0800.pfb + RELOC/fonts/type1/public/cbfonts/glmu1000.pfb + RELOC/fonts/type1/public/cbfonts/glmu1200.pfb + RELOC/fonts/type1/public/cbfonts/glmu1382.pfb + RELOC/fonts/type1/public/cbfonts/glmu1659.pfb + RELOC/fonts/type1/public/cbfonts/glmu1991.pfb + RELOC/fonts/type1/public/cbfonts/glmu2389.pfb + RELOC/fonts/type1/public/cbfonts/glmu2866.pfb + RELOC/fonts/type1/public/cbfonts/glmu3440.pfb + RELOC/fonts/type1/public/cbfonts/glmu4128.pfb + RELOC/fonts/type1/public/cbfonts/gltc0700.pfb + RELOC/fonts/type1/public/cbfonts/gltc0800.pfb + RELOC/fonts/type1/public/cbfonts/gltc1000.pfb + RELOC/fonts/type1/public/cbfonts/gltc1200.pfb + RELOC/fonts/type1/public/cbfonts/gltc1382.pfb + RELOC/fonts/type1/public/cbfonts/gltc1659.pfb + RELOC/fonts/type1/public/cbfonts/gltc1991.pfb + RELOC/fonts/type1/public/cbfonts/gltc2389.pfb + RELOC/fonts/type1/public/cbfonts/gltc2866.pfb + RELOC/fonts/type1/public/cbfonts/gltc3440.pfb + RELOC/fonts/type1/public/cbfonts/gltc4128.pfb + RELOC/fonts/type1/public/cbfonts/gltn0700.pfb + RELOC/fonts/type1/public/cbfonts/gltn0800.pfb + RELOC/fonts/type1/public/cbfonts/gltn1000.pfb + RELOC/fonts/type1/public/cbfonts/gltn1200.pfb + RELOC/fonts/type1/public/cbfonts/gltn1382.pfb + RELOC/fonts/type1/public/cbfonts/gltn1659.pfb + RELOC/fonts/type1/public/cbfonts/gltn1991.pfb + RELOC/fonts/type1/public/cbfonts/gltn2389.pfb + RELOC/fonts/type1/public/cbfonts/gltn2866.pfb + RELOC/fonts/type1/public/cbfonts/gltn3440.pfb + RELOC/fonts/type1/public/cbfonts/gltn4128.pfb + RELOC/fonts/type1/public/cbfonts/glto0700.pfb + RELOC/fonts/type1/public/cbfonts/glto0800.pfb + RELOC/fonts/type1/public/cbfonts/glto1000.pfb + RELOC/fonts/type1/public/cbfonts/glto1200.pfb + RELOC/fonts/type1/public/cbfonts/glto1382.pfb + RELOC/fonts/type1/public/cbfonts/glto1659.pfb + RELOC/fonts/type1/public/cbfonts/glto1991.pfb + RELOC/fonts/type1/public/cbfonts/glto2389.pfb + RELOC/fonts/type1/public/cbfonts/glto2866.pfb + RELOC/fonts/type1/public/cbfonts/glto3440.pfb + RELOC/fonts/type1/public/cbfonts/glto4128.pfb + RELOC/fonts/type1/public/cbfonts/glwc0700.pfb + RELOC/fonts/type1/public/cbfonts/glwc0800.pfb + RELOC/fonts/type1/public/cbfonts/glwc1000.pfb + RELOC/fonts/type1/public/cbfonts/glwc1200.pfb + RELOC/fonts/type1/public/cbfonts/glwc1382.pfb + RELOC/fonts/type1/public/cbfonts/glwc1659.pfb + RELOC/fonts/type1/public/cbfonts/glwc1991.pfb + RELOC/fonts/type1/public/cbfonts/glwc2389.pfb + RELOC/fonts/type1/public/cbfonts/glwc2866.pfb + RELOC/fonts/type1/public/cbfonts/glwc3440.pfb + RELOC/fonts/type1/public/cbfonts/glwc4128.pfb + RELOC/fonts/type1/public/cbfonts/glwi0700.pfb + RELOC/fonts/type1/public/cbfonts/glwi0800.pfb + RELOC/fonts/type1/public/cbfonts/glwi1000.pfb + RELOC/fonts/type1/public/cbfonts/glwi1200.pfb + RELOC/fonts/type1/public/cbfonts/glwi1382.pfb + RELOC/fonts/type1/public/cbfonts/glwi1659.pfb + RELOC/fonts/type1/public/cbfonts/glwi1991.pfb + RELOC/fonts/type1/public/cbfonts/glwi2389.pfb + RELOC/fonts/type1/public/cbfonts/glwi2866.pfb + RELOC/fonts/type1/public/cbfonts/glwi3440.pfb + RELOC/fonts/type1/public/cbfonts/glwi4128.pfb + RELOC/fonts/type1/public/cbfonts/glwn0700.pfb + RELOC/fonts/type1/public/cbfonts/glwn0800.pfb + RELOC/fonts/type1/public/cbfonts/glwn1000.pfb + RELOC/fonts/type1/public/cbfonts/glwn1200.pfb + RELOC/fonts/type1/public/cbfonts/glwn1382.pfb + RELOC/fonts/type1/public/cbfonts/glwn1659.pfb + RELOC/fonts/type1/public/cbfonts/glwn1991.pfb + RELOC/fonts/type1/public/cbfonts/glwn2389.pfb + RELOC/fonts/type1/public/cbfonts/glwn2866.pfb + RELOC/fonts/type1/public/cbfonts/glwn3440.pfb + RELOC/fonts/type1/public/cbfonts/glwn4128.pfb + RELOC/fonts/type1/public/cbfonts/glwo0700.pfb + RELOC/fonts/type1/public/cbfonts/glwo0800.pfb + RELOC/fonts/type1/public/cbfonts/glwo1000.pfb + RELOC/fonts/type1/public/cbfonts/glwo1200.pfb + RELOC/fonts/type1/public/cbfonts/glwo1382.pfb + RELOC/fonts/type1/public/cbfonts/glwo1659.pfb + RELOC/fonts/type1/public/cbfonts/glwo1991.pfb + RELOC/fonts/type1/public/cbfonts/glwo2389.pfb + RELOC/fonts/type1/public/cbfonts/glwo2866.pfb + RELOC/fonts/type1/public/cbfonts/glwo3440.pfb + RELOC/fonts/type1/public/cbfonts/glwo4128.pfb + RELOC/fonts/type1/public/cbfonts/glwu0700.pfb + RELOC/fonts/type1/public/cbfonts/glwu0800.pfb + RELOC/fonts/type1/public/cbfonts/glwu1000.pfb + RELOC/fonts/type1/public/cbfonts/glwu1200.pfb + RELOC/fonts/type1/public/cbfonts/glwu1382.pfb + RELOC/fonts/type1/public/cbfonts/glwu1659.pfb + RELOC/fonts/type1/public/cbfonts/glwu1991.pfb + RELOC/fonts/type1/public/cbfonts/glwu2389.pfb + RELOC/fonts/type1/public/cbfonts/glwu2866.pfb + RELOC/fonts/type1/public/cbfonts/glwu3440.pfb + RELOC/fonts/type1/public/cbfonts/glwu4128.pfb + RELOC/fonts/type1/public/cbfonts/glxc0700.pfb + RELOC/fonts/type1/public/cbfonts/glxc0800.pfb + RELOC/fonts/type1/public/cbfonts/glxc1000.pfb + RELOC/fonts/type1/public/cbfonts/glxc1200.pfb + RELOC/fonts/type1/public/cbfonts/glxc1382.pfb + RELOC/fonts/type1/public/cbfonts/glxc1659.pfb + RELOC/fonts/type1/public/cbfonts/glxc1991.pfb + RELOC/fonts/type1/public/cbfonts/glxc2389.pfb + RELOC/fonts/type1/public/cbfonts/glxc2866.pfb + RELOC/fonts/type1/public/cbfonts/glxc3440.pfb + RELOC/fonts/type1/public/cbfonts/glxc4128.pfb + RELOC/fonts/type1/public/cbfonts/glxi0700.pfb + RELOC/fonts/type1/public/cbfonts/glxi0800.pfb + RELOC/fonts/type1/public/cbfonts/glxi1000.pfb + RELOC/fonts/type1/public/cbfonts/glxi1200.pfb + RELOC/fonts/type1/public/cbfonts/glxi1382.pfb + RELOC/fonts/type1/public/cbfonts/glxi1659.pfb + RELOC/fonts/type1/public/cbfonts/glxi1991.pfb + RELOC/fonts/type1/public/cbfonts/glxi2389.pfb + RELOC/fonts/type1/public/cbfonts/glxi2866.pfb + RELOC/fonts/type1/public/cbfonts/glxi3440.pfb + RELOC/fonts/type1/public/cbfonts/glxi4128.pfb + RELOC/fonts/type1/public/cbfonts/glxn0700.pfb + RELOC/fonts/type1/public/cbfonts/glxn0800.pfb + RELOC/fonts/type1/public/cbfonts/glxn1000.pfb + RELOC/fonts/type1/public/cbfonts/glxn1200.pfb + RELOC/fonts/type1/public/cbfonts/glxn1382.pfb + RELOC/fonts/type1/public/cbfonts/glxn1659.pfb + RELOC/fonts/type1/public/cbfonts/glxn1991.pfb + RELOC/fonts/type1/public/cbfonts/glxn2389.pfb + RELOC/fonts/type1/public/cbfonts/glxn2866.pfb + RELOC/fonts/type1/public/cbfonts/glxn3440.pfb + RELOC/fonts/type1/public/cbfonts/glxn4128.pfb + RELOC/fonts/type1/public/cbfonts/glxo0700.pfb + RELOC/fonts/type1/public/cbfonts/glxo0800.pfb + RELOC/fonts/type1/public/cbfonts/glxo1000.pfb + RELOC/fonts/type1/public/cbfonts/glxo1200.pfb + RELOC/fonts/type1/public/cbfonts/glxo1382.pfb + RELOC/fonts/type1/public/cbfonts/glxo1659.pfb + RELOC/fonts/type1/public/cbfonts/glxo1991.pfb + RELOC/fonts/type1/public/cbfonts/glxo2389.pfb + RELOC/fonts/type1/public/cbfonts/glxo2866.pfb + RELOC/fonts/type1/public/cbfonts/glxo3440.pfb + RELOC/fonts/type1/public/cbfonts/glxo4128.pfb + RELOC/fonts/type1/public/cbfonts/glxu0700.pfb + RELOC/fonts/type1/public/cbfonts/glxu0800.pfb + RELOC/fonts/type1/public/cbfonts/glxu1000.pfb + RELOC/fonts/type1/public/cbfonts/glxu1200.pfb + RELOC/fonts/type1/public/cbfonts/glxu1382.pfb + RELOC/fonts/type1/public/cbfonts/glxu1659.pfb + RELOC/fonts/type1/public/cbfonts/glxu1991.pfb + RELOC/fonts/type1/public/cbfonts/glxu2389.pfb + RELOC/fonts/type1/public/cbfonts/glxu2866.pfb + RELOC/fonts/type1/public/cbfonts/glxu3440.pfb + RELOC/fonts/type1/public/cbfonts/glxu4128.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0500.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0600.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0700.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0800.pfb + RELOC/fonts/type1/public/cbfonts/gmmn0900.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1000.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1095.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1200.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1440.pfb + RELOC/fonts/type1/public/cbfonts/gmmn1728.pfb + RELOC/fonts/type1/public/cbfonts/gmmn2074.pfb + RELOC/fonts/type1/public/cbfonts/gmmn2488.pfb + RELOC/fonts/type1/public/cbfonts/gmmn2986.pfb + RELOC/fonts/type1/public/cbfonts/gmmn3583.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0500.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0600.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0700.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0800.pfb + RELOC/fonts/type1/public/cbfonts/gmmo0900.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1000.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1095.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1200.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1440.pfb + RELOC/fonts/type1/public/cbfonts/gmmo1728.pfb + RELOC/fonts/type1/public/cbfonts/gmmo2074.pfb + RELOC/fonts/type1/public/cbfonts/gmmo2488.pfb + RELOC/fonts/type1/public/cbfonts/gmmo2986.pfb + RELOC/fonts/type1/public/cbfonts/gmmo3583.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0500.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0600.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0700.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0800.pfb + RELOC/fonts/type1/public/cbfonts/gmtr0900.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1000.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1095.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1200.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1440.pfb + RELOC/fonts/type1/public/cbfonts/gmtr1728.pfb + RELOC/fonts/type1/public/cbfonts/gmtr2074.pfb + RELOC/fonts/type1/public/cbfonts/gmtr2488.pfb + RELOC/fonts/type1/public/cbfonts/gmtr2986.pfb + RELOC/fonts/type1/public/cbfonts/gmtr3583.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0500.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0600.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0700.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0800.pfb + RELOC/fonts/type1/public/cbfonts/gmxn0900.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1000.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1095.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1200.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1440.pfb + RELOC/fonts/type1/public/cbfonts/gmxn1728.pfb + RELOC/fonts/type1/public/cbfonts/gmxn2074.pfb + RELOC/fonts/type1/public/cbfonts/gmxn2488.pfb + RELOC/fonts/type1/public/cbfonts/gmxn2986.pfb + RELOC/fonts/type1/public/cbfonts/gmxn3583.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0500.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0600.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0700.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0800.pfb + RELOC/fonts/type1/public/cbfonts/gmxo0900.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1000.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1095.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1200.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1440.pfb + RELOC/fonts/type1/public/cbfonts/gmxo1728.pfb + RELOC/fonts/type1/public/cbfonts/gmxo2074.pfb + RELOC/fonts/type1/public/cbfonts/gmxo2488.pfb + RELOC/fonts/type1/public/cbfonts/gmxo2986.pfb + RELOC/fonts/type1/public/cbfonts/gmxo3583.pfb + RELOC/fonts/type1/public/cbfonts/gomc0500.pfb + RELOC/fonts/type1/public/cbfonts/gomc0600.pfb + RELOC/fonts/type1/public/cbfonts/gomc0700.pfb + RELOC/fonts/type1/public/cbfonts/gomc0800.pfb + RELOC/fonts/type1/public/cbfonts/gomc0900.pfb + RELOC/fonts/type1/public/cbfonts/gomc1000.pfb + RELOC/fonts/type1/public/cbfonts/gomc1095.pfb + RELOC/fonts/type1/public/cbfonts/gomc1200.pfb + RELOC/fonts/type1/public/cbfonts/gomc1440.pfb + RELOC/fonts/type1/public/cbfonts/gomc1728.pfb + RELOC/fonts/type1/public/cbfonts/gomc2074.pfb + RELOC/fonts/type1/public/cbfonts/gomc2488.pfb + RELOC/fonts/type1/public/cbfonts/gomc2986.pfb + RELOC/fonts/type1/public/cbfonts/gomc3583.pfb + RELOC/fonts/type1/public/cbfonts/gomi0500.pfb + RELOC/fonts/type1/public/cbfonts/gomi0600.pfb + RELOC/fonts/type1/public/cbfonts/gomi0700.pfb + RELOC/fonts/type1/public/cbfonts/gomi0800.pfb + RELOC/fonts/type1/public/cbfonts/gomi0900.pfb + RELOC/fonts/type1/public/cbfonts/gomi1000.pfb + RELOC/fonts/type1/public/cbfonts/gomi1095.pfb + RELOC/fonts/type1/public/cbfonts/gomi1200.pfb + RELOC/fonts/type1/public/cbfonts/gomi1440.pfb + RELOC/fonts/type1/public/cbfonts/gomi1728.pfb + RELOC/fonts/type1/public/cbfonts/gomi2074.pfb + RELOC/fonts/type1/public/cbfonts/gomi2488.pfb + RELOC/fonts/type1/public/cbfonts/gomi2986.pfb + RELOC/fonts/type1/public/cbfonts/gomi3583.pfb + RELOC/fonts/type1/public/cbfonts/gomn0500.pfb + RELOC/fonts/type1/public/cbfonts/gomn0600.pfb + RELOC/fonts/type1/public/cbfonts/gomn0700.pfb + RELOC/fonts/type1/public/cbfonts/gomn0800.pfb + RELOC/fonts/type1/public/cbfonts/gomn0900.pfb + RELOC/fonts/type1/public/cbfonts/gomn1000.pfb + RELOC/fonts/type1/public/cbfonts/gomn1095.pfb + RELOC/fonts/type1/public/cbfonts/gomn1200.pfb + RELOC/fonts/type1/public/cbfonts/gomn1440.pfb + RELOC/fonts/type1/public/cbfonts/gomn1728.pfb + RELOC/fonts/type1/public/cbfonts/gomn2074.pfb + RELOC/fonts/type1/public/cbfonts/gomn2488.pfb + RELOC/fonts/type1/public/cbfonts/gomn2986.pfb + RELOC/fonts/type1/public/cbfonts/gomn3583.pfb + RELOC/fonts/type1/public/cbfonts/gomo0500.pfb + RELOC/fonts/type1/public/cbfonts/gomo0600.pfb + RELOC/fonts/type1/public/cbfonts/gomo0700.pfb + RELOC/fonts/type1/public/cbfonts/gomo0800.pfb + RELOC/fonts/type1/public/cbfonts/gomo0900.pfb + RELOC/fonts/type1/public/cbfonts/gomo1000.pfb + RELOC/fonts/type1/public/cbfonts/gomo1095.pfb + RELOC/fonts/type1/public/cbfonts/gomo1200.pfb + RELOC/fonts/type1/public/cbfonts/gomo1440.pfb + RELOC/fonts/type1/public/cbfonts/gomo1728.pfb + RELOC/fonts/type1/public/cbfonts/gomo2074.pfb + RELOC/fonts/type1/public/cbfonts/gomo2488.pfb + RELOC/fonts/type1/public/cbfonts/gomo2986.pfb + RELOC/fonts/type1/public/cbfonts/gomo3583.pfb + RELOC/fonts/type1/public/cbfonts/gomu0500.pfb + RELOC/fonts/type1/public/cbfonts/gomu0600.pfb + RELOC/fonts/type1/public/cbfonts/gomu0700.pfb + RELOC/fonts/type1/public/cbfonts/gomu0800.pfb + RELOC/fonts/type1/public/cbfonts/gomu0900.pfb + RELOC/fonts/type1/public/cbfonts/gomu1000.pfb + RELOC/fonts/type1/public/cbfonts/gomu1095.pfb + RELOC/fonts/type1/public/cbfonts/gomu1200.pfb + RELOC/fonts/type1/public/cbfonts/gomu1440.pfb + RELOC/fonts/type1/public/cbfonts/gomu1728.pfb + RELOC/fonts/type1/public/cbfonts/gomu2074.pfb + RELOC/fonts/type1/public/cbfonts/gomu2488.pfb + RELOC/fonts/type1/public/cbfonts/gomu2986.pfb + RELOC/fonts/type1/public/cbfonts/gomu3583.pfb + RELOC/fonts/type1/public/cbfonts/goxc0500.pfb + RELOC/fonts/type1/public/cbfonts/goxc0600.pfb + RELOC/fonts/type1/public/cbfonts/goxc0700.pfb + RELOC/fonts/type1/public/cbfonts/goxc0800.pfb + RELOC/fonts/type1/public/cbfonts/goxc0900.pfb + RELOC/fonts/type1/public/cbfonts/goxc1000.pfb + RELOC/fonts/type1/public/cbfonts/goxc1095.pfb + RELOC/fonts/type1/public/cbfonts/goxc1200.pfb + RELOC/fonts/type1/public/cbfonts/goxc1440.pfb + RELOC/fonts/type1/public/cbfonts/goxc1728.pfb + RELOC/fonts/type1/public/cbfonts/goxc2074.pfb + RELOC/fonts/type1/public/cbfonts/goxc2488.pfb + RELOC/fonts/type1/public/cbfonts/goxc2986.pfb + RELOC/fonts/type1/public/cbfonts/goxc3583.pfb + RELOC/fonts/type1/public/cbfonts/goxi0500.pfb + RELOC/fonts/type1/public/cbfonts/goxi0600.pfb + RELOC/fonts/type1/public/cbfonts/goxi0700.pfb + RELOC/fonts/type1/public/cbfonts/goxi0800.pfb + RELOC/fonts/type1/public/cbfonts/goxi0900.pfb + RELOC/fonts/type1/public/cbfonts/goxi1000.pfb + RELOC/fonts/type1/public/cbfonts/goxi1095.pfb + RELOC/fonts/type1/public/cbfonts/goxi1200.pfb + RELOC/fonts/type1/public/cbfonts/goxi1440.pfb + RELOC/fonts/type1/public/cbfonts/goxi1728.pfb + RELOC/fonts/type1/public/cbfonts/goxi2074.pfb + RELOC/fonts/type1/public/cbfonts/goxi2488.pfb + RELOC/fonts/type1/public/cbfonts/goxi2986.pfb + RELOC/fonts/type1/public/cbfonts/goxi3583.pfb + RELOC/fonts/type1/public/cbfonts/goxn0500.pfb + RELOC/fonts/type1/public/cbfonts/goxn0600.pfb + RELOC/fonts/type1/public/cbfonts/goxn0700.pfb + RELOC/fonts/type1/public/cbfonts/goxn0800.pfb + RELOC/fonts/type1/public/cbfonts/goxn0900.pfb + RELOC/fonts/type1/public/cbfonts/goxn1000.pfb + RELOC/fonts/type1/public/cbfonts/goxn1095.pfb + RELOC/fonts/type1/public/cbfonts/goxn1200.pfb + RELOC/fonts/type1/public/cbfonts/goxn1440.pfb + RELOC/fonts/type1/public/cbfonts/goxn1728.pfb + RELOC/fonts/type1/public/cbfonts/goxn2074.pfb + RELOC/fonts/type1/public/cbfonts/goxn2488.pfb + RELOC/fonts/type1/public/cbfonts/goxn2986.pfb + RELOC/fonts/type1/public/cbfonts/goxn3583.pfb + RELOC/fonts/type1/public/cbfonts/goxo0500.pfb + RELOC/fonts/type1/public/cbfonts/goxo0600.pfb + RELOC/fonts/type1/public/cbfonts/goxo0700.pfb + RELOC/fonts/type1/public/cbfonts/goxo0800.pfb + RELOC/fonts/type1/public/cbfonts/goxo0900.pfb + RELOC/fonts/type1/public/cbfonts/goxo1000.pfb + RELOC/fonts/type1/public/cbfonts/goxo1095.pfb + RELOC/fonts/type1/public/cbfonts/goxo1200.pfb + RELOC/fonts/type1/public/cbfonts/goxo1440.pfb + RELOC/fonts/type1/public/cbfonts/goxo1728.pfb + RELOC/fonts/type1/public/cbfonts/goxo2074.pfb + RELOC/fonts/type1/public/cbfonts/goxo2488.pfb + RELOC/fonts/type1/public/cbfonts/goxo2986.pfb + RELOC/fonts/type1/public/cbfonts/goxo3583.pfb + RELOC/fonts/type1/public/cbfonts/goxu0500.pfb + RELOC/fonts/type1/public/cbfonts/goxu0600.pfb + RELOC/fonts/type1/public/cbfonts/goxu0700.pfb + RELOC/fonts/type1/public/cbfonts/goxu0800.pfb + RELOC/fonts/type1/public/cbfonts/goxu0900.pfb + RELOC/fonts/type1/public/cbfonts/goxu1000.pfb + RELOC/fonts/type1/public/cbfonts/goxu1095.pfb + RELOC/fonts/type1/public/cbfonts/goxu1200.pfb + RELOC/fonts/type1/public/cbfonts/goxu1440.pfb + RELOC/fonts/type1/public/cbfonts/goxu1728.pfb + RELOC/fonts/type1/public/cbfonts/goxu2074.pfb + RELOC/fonts/type1/public/cbfonts/goxu2488.pfb + RELOC/fonts/type1/public/cbfonts/goxu2986.pfb + RELOC/fonts/type1/public/cbfonts/goxu3583.pfb + RELOC/fonts/type1/public/cbfonts/grbl0500.pfb + RELOC/fonts/type1/public/cbfonts/grbl0600.pfb + RELOC/fonts/type1/public/cbfonts/grbl0700.pfb + RELOC/fonts/type1/public/cbfonts/grbl0800.pfb + RELOC/fonts/type1/public/cbfonts/grbl0900.pfb + RELOC/fonts/type1/public/cbfonts/grbl1000.pfb + RELOC/fonts/type1/public/cbfonts/grbl1095.pfb + RELOC/fonts/type1/public/cbfonts/grbl1200.pfb + RELOC/fonts/type1/public/cbfonts/grbl1440.pfb + RELOC/fonts/type1/public/cbfonts/grbl1728.pfb + RELOC/fonts/type1/public/cbfonts/grbl2074.pfb + RELOC/fonts/type1/public/cbfonts/grbl2488.pfb + RELOC/fonts/type1/public/cbfonts/grbl2986.pfb + RELOC/fonts/type1/public/cbfonts/grbl3583.pfb + RELOC/fonts/type1/public/cbfonts/grmc0500.pfb + RELOC/fonts/type1/public/cbfonts/grmc0600.pfb + RELOC/fonts/type1/public/cbfonts/grmc0700.pfb + RELOC/fonts/type1/public/cbfonts/grmc0800.pfb + RELOC/fonts/type1/public/cbfonts/grmc0900.pfb + RELOC/fonts/type1/public/cbfonts/grmc1000.pfb + RELOC/fonts/type1/public/cbfonts/grmc1095.pfb + RELOC/fonts/type1/public/cbfonts/grmc1200.pfb + RELOC/fonts/type1/public/cbfonts/grmc1440.pfb + RELOC/fonts/type1/public/cbfonts/grmc1728.pfb + RELOC/fonts/type1/public/cbfonts/grmc2074.pfb + RELOC/fonts/type1/public/cbfonts/grmc2488.pfb + RELOC/fonts/type1/public/cbfonts/grmc2986.pfb + RELOC/fonts/type1/public/cbfonts/grmc3583.pfb + RELOC/fonts/type1/public/cbfonts/grmi0500.pfb + RELOC/fonts/type1/public/cbfonts/grmi0600.pfb + RELOC/fonts/type1/public/cbfonts/grmi0700.pfb + RELOC/fonts/type1/public/cbfonts/grmi0800.pfb + RELOC/fonts/type1/public/cbfonts/grmi0900.pfb + RELOC/fonts/type1/public/cbfonts/grmi1000.pfb + RELOC/fonts/type1/public/cbfonts/grmi1095.pfb + RELOC/fonts/type1/public/cbfonts/grmi1200.pfb + RELOC/fonts/type1/public/cbfonts/grmi1440.pfb + RELOC/fonts/type1/public/cbfonts/grmi1728.pfb + RELOC/fonts/type1/public/cbfonts/grmi2074.pfb + RELOC/fonts/type1/public/cbfonts/grmi2488.pfb + RELOC/fonts/type1/public/cbfonts/grmi2986.pfb + RELOC/fonts/type1/public/cbfonts/grmi3583.pfb + RELOC/fonts/type1/public/cbfonts/grml0500.pfb + RELOC/fonts/type1/public/cbfonts/grml0600.pfb + RELOC/fonts/type1/public/cbfonts/grml0700.pfb + RELOC/fonts/type1/public/cbfonts/grml0800.pfb + RELOC/fonts/type1/public/cbfonts/grml0900.pfb + RELOC/fonts/type1/public/cbfonts/grml1000.pfb + RELOC/fonts/type1/public/cbfonts/grml1095.pfb + RELOC/fonts/type1/public/cbfonts/grml1200.pfb + RELOC/fonts/type1/public/cbfonts/grml1440.pfb + RELOC/fonts/type1/public/cbfonts/grml1728.pfb + RELOC/fonts/type1/public/cbfonts/grml2074.pfb + RELOC/fonts/type1/public/cbfonts/grml2488.pfb + RELOC/fonts/type1/public/cbfonts/grml2986.pfb + RELOC/fonts/type1/public/cbfonts/grml3583.pfb + RELOC/fonts/type1/public/cbfonts/grmn0500.pfb + RELOC/fonts/type1/public/cbfonts/grmn0600.pfb + RELOC/fonts/type1/public/cbfonts/grmn0700.pfb + RELOC/fonts/type1/public/cbfonts/grmn0800.pfb + RELOC/fonts/type1/public/cbfonts/grmn0900.pfb + RELOC/fonts/type1/public/cbfonts/grmn1000.pfb + RELOC/fonts/type1/public/cbfonts/grmn1095.pfb + RELOC/fonts/type1/public/cbfonts/grmn1200.pfb + RELOC/fonts/type1/public/cbfonts/grmn1440.pfb + RELOC/fonts/type1/public/cbfonts/grmn1728.pfb + RELOC/fonts/type1/public/cbfonts/grmn2074.pfb + RELOC/fonts/type1/public/cbfonts/grmn2488.pfb + RELOC/fonts/type1/public/cbfonts/grmn2986.pfb + RELOC/fonts/type1/public/cbfonts/grmn3583.pfb + RELOC/fonts/type1/public/cbfonts/grmo0500.pfb + RELOC/fonts/type1/public/cbfonts/grmo0600.pfb + RELOC/fonts/type1/public/cbfonts/grmo0700.pfb + RELOC/fonts/type1/public/cbfonts/grmo0800.pfb + RELOC/fonts/type1/public/cbfonts/grmo0900.pfb + RELOC/fonts/type1/public/cbfonts/grmo1000.pfb + RELOC/fonts/type1/public/cbfonts/grmo1095.pfb + RELOC/fonts/type1/public/cbfonts/grmo1200.pfb + RELOC/fonts/type1/public/cbfonts/grmo1440.pfb + RELOC/fonts/type1/public/cbfonts/grmo1728.pfb + RELOC/fonts/type1/public/cbfonts/grmo2074.pfb + RELOC/fonts/type1/public/cbfonts/grmo2488.pfb + RELOC/fonts/type1/public/cbfonts/grmo2986.pfb + RELOC/fonts/type1/public/cbfonts/grmo3583.pfb + RELOC/fonts/type1/public/cbfonts/grmu0500.pfb + RELOC/fonts/type1/public/cbfonts/grmu0600.pfb + RELOC/fonts/type1/public/cbfonts/grmu0700.pfb + RELOC/fonts/type1/public/cbfonts/grmu0800.pfb + RELOC/fonts/type1/public/cbfonts/grmu0900.pfb + RELOC/fonts/type1/public/cbfonts/grmu1000.pfb + RELOC/fonts/type1/public/cbfonts/grmu1095.pfb + RELOC/fonts/type1/public/cbfonts/grmu1200.pfb + RELOC/fonts/type1/public/cbfonts/grmu1440.pfb + RELOC/fonts/type1/public/cbfonts/grmu1728.pfb + RELOC/fonts/type1/public/cbfonts/grmu2074.pfb + RELOC/fonts/type1/public/cbfonts/grmu2488.pfb + RELOC/fonts/type1/public/cbfonts/grmu2986.pfb + RELOC/fonts/type1/public/cbfonts/grmu3583.pfb + RELOC/fonts/type1/public/cbfonts/grxc0500.pfb + RELOC/fonts/type1/public/cbfonts/grxc0600.pfb + RELOC/fonts/type1/public/cbfonts/grxc0700.pfb + RELOC/fonts/type1/public/cbfonts/grxc0800.pfb + RELOC/fonts/type1/public/cbfonts/grxc0900.pfb + RELOC/fonts/type1/public/cbfonts/grxc1000.pfb + RELOC/fonts/type1/public/cbfonts/grxc1095.pfb + RELOC/fonts/type1/public/cbfonts/grxc1200.pfb + RELOC/fonts/type1/public/cbfonts/grxc1440.pfb + RELOC/fonts/type1/public/cbfonts/grxc1728.pfb + RELOC/fonts/type1/public/cbfonts/grxc2074.pfb + RELOC/fonts/type1/public/cbfonts/grxc2488.pfb + RELOC/fonts/type1/public/cbfonts/grxc2986.pfb + RELOC/fonts/type1/public/cbfonts/grxc3583.pfb + RELOC/fonts/type1/public/cbfonts/grxi0500.pfb + RELOC/fonts/type1/public/cbfonts/grxi0600.pfb + RELOC/fonts/type1/public/cbfonts/grxi0700.pfb + RELOC/fonts/type1/public/cbfonts/grxi0800.pfb + RELOC/fonts/type1/public/cbfonts/grxi0900.pfb + RELOC/fonts/type1/public/cbfonts/grxi1000.pfb + RELOC/fonts/type1/public/cbfonts/grxi1095.pfb + RELOC/fonts/type1/public/cbfonts/grxi1200.pfb + RELOC/fonts/type1/public/cbfonts/grxi1440.pfb + RELOC/fonts/type1/public/cbfonts/grxi1728.pfb + RELOC/fonts/type1/public/cbfonts/grxi2074.pfb + RELOC/fonts/type1/public/cbfonts/grxi2488.pfb + RELOC/fonts/type1/public/cbfonts/grxi2986.pfb + RELOC/fonts/type1/public/cbfonts/grxi3583.pfb + RELOC/fonts/type1/public/cbfonts/grxl0500.pfb + RELOC/fonts/type1/public/cbfonts/grxl0600.pfb + RELOC/fonts/type1/public/cbfonts/grxl0700.pfb + RELOC/fonts/type1/public/cbfonts/grxl0800.pfb + RELOC/fonts/type1/public/cbfonts/grxl0900.pfb + RELOC/fonts/type1/public/cbfonts/grxl1000.pfb + RELOC/fonts/type1/public/cbfonts/grxl1095.pfb + RELOC/fonts/type1/public/cbfonts/grxl1200.pfb + RELOC/fonts/type1/public/cbfonts/grxl1440.pfb + RELOC/fonts/type1/public/cbfonts/grxl1728.pfb + RELOC/fonts/type1/public/cbfonts/grxl2074.pfb + RELOC/fonts/type1/public/cbfonts/grxl2488.pfb + RELOC/fonts/type1/public/cbfonts/grxl2986.pfb + RELOC/fonts/type1/public/cbfonts/grxl3583.pfb + RELOC/fonts/type1/public/cbfonts/grxn0500.pfb + RELOC/fonts/type1/public/cbfonts/grxn0600.pfb + RELOC/fonts/type1/public/cbfonts/grxn0700.pfb + RELOC/fonts/type1/public/cbfonts/grxn0800.pfb + RELOC/fonts/type1/public/cbfonts/grxn0900.pfb + RELOC/fonts/type1/public/cbfonts/grxn1000.pfb + RELOC/fonts/type1/public/cbfonts/grxn1095.pfb + RELOC/fonts/type1/public/cbfonts/grxn1200.pfb + RELOC/fonts/type1/public/cbfonts/grxn1440.pfb + RELOC/fonts/type1/public/cbfonts/grxn1728.pfb + RELOC/fonts/type1/public/cbfonts/grxn2074.pfb + RELOC/fonts/type1/public/cbfonts/grxn2488.pfb + RELOC/fonts/type1/public/cbfonts/grxn2986.pfb + RELOC/fonts/type1/public/cbfonts/grxn3583.pfb + RELOC/fonts/type1/public/cbfonts/grxo0500.pfb + RELOC/fonts/type1/public/cbfonts/grxo0600.pfb + RELOC/fonts/type1/public/cbfonts/grxo0700.pfb + RELOC/fonts/type1/public/cbfonts/grxo0800.pfb + RELOC/fonts/type1/public/cbfonts/grxo0900.pfb + RELOC/fonts/type1/public/cbfonts/grxo1000.pfb + RELOC/fonts/type1/public/cbfonts/grxo1095.pfb + RELOC/fonts/type1/public/cbfonts/grxo1200.pfb + RELOC/fonts/type1/public/cbfonts/grxo1440.pfb + RELOC/fonts/type1/public/cbfonts/grxo1728.pfb + RELOC/fonts/type1/public/cbfonts/grxo2074.pfb + RELOC/fonts/type1/public/cbfonts/grxo2488.pfb + RELOC/fonts/type1/public/cbfonts/grxo2986.pfb + RELOC/fonts/type1/public/cbfonts/grxo3583.pfb + RELOC/fonts/type1/public/cbfonts/grxu0500.pfb + RELOC/fonts/type1/public/cbfonts/grxu0600.pfb + RELOC/fonts/type1/public/cbfonts/grxu0700.pfb + RELOC/fonts/type1/public/cbfonts/grxu0800.pfb + RELOC/fonts/type1/public/cbfonts/grxu0900.pfb + RELOC/fonts/type1/public/cbfonts/grxu1000.pfb + RELOC/fonts/type1/public/cbfonts/grxu1095.pfb + RELOC/fonts/type1/public/cbfonts/grxu1200.pfb + RELOC/fonts/type1/public/cbfonts/grxu1440.pfb + RELOC/fonts/type1/public/cbfonts/grxu1728.pfb + RELOC/fonts/type1/public/cbfonts/grxu2074.pfb + RELOC/fonts/type1/public/cbfonts/grxu2488.pfb + RELOC/fonts/type1/public/cbfonts/grxu2986.pfb + RELOC/fonts/type1/public/cbfonts/grxu3583.pfb + RELOC/fonts/type1/public/cbfonts/gsma0500.pfb + RELOC/fonts/type1/public/cbfonts/gsma0600.pfb + RELOC/fonts/type1/public/cbfonts/gsma0700.pfb + RELOC/fonts/type1/public/cbfonts/gsma0800.pfb + RELOC/fonts/type1/public/cbfonts/gsma0900.pfb + RELOC/fonts/type1/public/cbfonts/gsma1000.pfb + RELOC/fonts/type1/public/cbfonts/gsma1095.pfb + RELOC/fonts/type1/public/cbfonts/gsma1200.pfb + RELOC/fonts/type1/public/cbfonts/gsma1440.pfb + RELOC/fonts/type1/public/cbfonts/gsma1728.pfb + RELOC/fonts/type1/public/cbfonts/gsma2074.pfb + RELOC/fonts/type1/public/cbfonts/gsma2488.pfb + RELOC/fonts/type1/public/cbfonts/gsma2986.pfb + RELOC/fonts/type1/public/cbfonts/gsma3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmc0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmc1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmc2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmc2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmc2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmc3583.pfb + RELOC/fonts/type1/public/cbfonts/gsme0500.pfb + RELOC/fonts/type1/public/cbfonts/gsme0600.pfb + RELOC/fonts/type1/public/cbfonts/gsme0700.pfb + RELOC/fonts/type1/public/cbfonts/gsme0800.pfb + RELOC/fonts/type1/public/cbfonts/gsme0900.pfb + RELOC/fonts/type1/public/cbfonts/gsme1000.pfb + RELOC/fonts/type1/public/cbfonts/gsme1095.pfb + RELOC/fonts/type1/public/cbfonts/gsme1200.pfb + RELOC/fonts/type1/public/cbfonts/gsme1440.pfb + RELOC/fonts/type1/public/cbfonts/gsme1728.pfb + RELOC/fonts/type1/public/cbfonts/gsme2074.pfb + RELOC/fonts/type1/public/cbfonts/gsme2488.pfb + RELOC/fonts/type1/public/cbfonts/gsme2986.pfb + RELOC/fonts/type1/public/cbfonts/gsme3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmi0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmi1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmi2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmi2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmi2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmi3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmn0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmn1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmn2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmn2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmn2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmn3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmo0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmo1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmo2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmo2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmo2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmo3583.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0500.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0600.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0700.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0800.pfb + RELOC/fonts/type1/public/cbfonts/gsmu0900.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1000.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1095.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1200.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1440.pfb + RELOC/fonts/type1/public/cbfonts/gsmu1728.pfb + RELOC/fonts/type1/public/cbfonts/gsmu2074.pfb + RELOC/fonts/type1/public/cbfonts/gsmu2488.pfb + RELOC/fonts/type1/public/cbfonts/gsmu2986.pfb + RELOC/fonts/type1/public/cbfonts/gsmu3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxa0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxa1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxa2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxa2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxa2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxa3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxc0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxc1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxc2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxc2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxc2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxc3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxe0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxe1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxe2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxe2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxe2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxe3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxi0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxi1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxi2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxi2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxi2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxi3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxn0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxn1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxn2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxn2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxn2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxn3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxo0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxo1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxo2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxo2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxo2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxo3583.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0500.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0600.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0700.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0800.pfb + RELOC/fonts/type1/public/cbfonts/gsxu0900.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1000.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1095.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1200.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1440.pfb + RELOC/fonts/type1/public/cbfonts/gsxu1728.pfb + RELOC/fonts/type1/public/cbfonts/gsxu2074.pfb + RELOC/fonts/type1/public/cbfonts/gsxu2488.pfb + RELOC/fonts/type1/public/cbfonts/gsxu2986.pfb + RELOC/fonts/type1/public/cbfonts/gsxu3583.pfb + RELOC/fonts/type1/public/cbfonts/gttc0500.pfb + RELOC/fonts/type1/public/cbfonts/gttc0600.pfb + RELOC/fonts/type1/public/cbfonts/gttc0700.pfb + RELOC/fonts/type1/public/cbfonts/gttc0800.pfb + RELOC/fonts/type1/public/cbfonts/gttc0900.pfb + RELOC/fonts/type1/public/cbfonts/gttc1000.pfb + RELOC/fonts/type1/public/cbfonts/gttc1095.pfb + RELOC/fonts/type1/public/cbfonts/gttc1200.pfb + RELOC/fonts/type1/public/cbfonts/gttc1440.pfb + RELOC/fonts/type1/public/cbfonts/gttc1728.pfb + RELOC/fonts/type1/public/cbfonts/gttc2074.pfb + RELOC/fonts/type1/public/cbfonts/gttc2488.pfb + RELOC/fonts/type1/public/cbfonts/gttc2986.pfb + RELOC/fonts/type1/public/cbfonts/gttc3583.pfb + RELOC/fonts/type1/public/cbfonts/gtti0500.pfb + RELOC/fonts/type1/public/cbfonts/gtti0600.pfb + RELOC/fonts/type1/public/cbfonts/gtti0700.pfb + RELOC/fonts/type1/public/cbfonts/gtti0800.pfb + RELOC/fonts/type1/public/cbfonts/gtti0900.pfb + RELOC/fonts/type1/public/cbfonts/gtti1000.pfb + RELOC/fonts/type1/public/cbfonts/gtti1095.pfb + RELOC/fonts/type1/public/cbfonts/gtti1200.pfb + RELOC/fonts/type1/public/cbfonts/gtti1440.pfb + RELOC/fonts/type1/public/cbfonts/gtti1728.pfb + RELOC/fonts/type1/public/cbfonts/gtti2074.pfb + RELOC/fonts/type1/public/cbfonts/gtti2488.pfb + RELOC/fonts/type1/public/cbfonts/gtti2986.pfb + RELOC/fonts/type1/public/cbfonts/gtti3583.pfb + RELOC/fonts/type1/public/cbfonts/gttn0500.pfb + RELOC/fonts/type1/public/cbfonts/gttn0600.pfb + RELOC/fonts/type1/public/cbfonts/gttn0700.pfb + RELOC/fonts/type1/public/cbfonts/gttn0800.pfb + RELOC/fonts/type1/public/cbfonts/gttn0900.pfb + RELOC/fonts/type1/public/cbfonts/gttn1000.pfb + RELOC/fonts/type1/public/cbfonts/gttn1095.pfb + RELOC/fonts/type1/public/cbfonts/gttn1200.pfb + RELOC/fonts/type1/public/cbfonts/gttn1440.pfb + RELOC/fonts/type1/public/cbfonts/gttn1728.pfb + RELOC/fonts/type1/public/cbfonts/gttn2074.pfb + RELOC/fonts/type1/public/cbfonts/gttn2488.pfb + RELOC/fonts/type1/public/cbfonts/gttn2986.pfb + RELOC/fonts/type1/public/cbfonts/gttn3583.pfb + RELOC/fonts/type1/public/cbfonts/gtto0500.pfb + RELOC/fonts/type1/public/cbfonts/gtto0600.pfb + RELOC/fonts/type1/public/cbfonts/gtto0700.pfb + RELOC/fonts/type1/public/cbfonts/gtto0800.pfb + RELOC/fonts/type1/public/cbfonts/gtto0900.pfb + RELOC/fonts/type1/public/cbfonts/gtto1000.pfb + RELOC/fonts/type1/public/cbfonts/gtto1095.pfb + RELOC/fonts/type1/public/cbfonts/gtto1200.pfb + RELOC/fonts/type1/public/cbfonts/gtto1440.pfb + RELOC/fonts/type1/public/cbfonts/gtto1728.pfb + RELOC/fonts/type1/public/cbfonts/gtto2074.pfb + RELOC/fonts/type1/public/cbfonts/gtto2488.pfb + RELOC/fonts/type1/public/cbfonts/gtto2986.pfb + RELOC/fonts/type1/public/cbfonts/gtto3583.pfb + RELOC/fonts/type1/public/cbfonts/gttu0500.pfb + RELOC/fonts/type1/public/cbfonts/gttu0600.pfb + RELOC/fonts/type1/public/cbfonts/gttu0700.pfb + RELOC/fonts/type1/public/cbfonts/gttu0800.pfb + RELOC/fonts/type1/public/cbfonts/gttu0900.pfb + RELOC/fonts/type1/public/cbfonts/gttu1000.pfb + RELOC/fonts/type1/public/cbfonts/gttu1095.pfb + RELOC/fonts/type1/public/cbfonts/gttu1200.pfb + RELOC/fonts/type1/public/cbfonts/gttu1440.pfb + RELOC/fonts/type1/public/cbfonts/gttu1728.pfb + RELOC/fonts/type1/public/cbfonts/gttu2074.pfb + RELOC/fonts/type1/public/cbfonts/gttu2488.pfb + RELOC/fonts/type1/public/cbfonts/gttu2986.pfb + RELOC/fonts/type1/public/cbfonts/gttu3583.pfb +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-license lppl + +name ccaption +category Package +revision 23443 +shortdesc Continuation headings and legends for floats. +relocated 1 +longdesc A package providing commands for 'continuation captions', +longdesc unnumbered captions, and also a non-specific legend heading for +longdesc any environment. Methods are also provided to define captions +longdesc for use outside float (e.g., figure and table) environments, +longdesc and to define new float environments and Lists of Floats. Tools +longdesc are provided for specifying your own captioning styles. +runfiles size=6 + RELOC/tex/latex/ccaption/ccaption.sty +docfiles size=116 + RELOC/doc/latex/ccaption/README + RELOC/doc/latex/ccaption/ccaption.pdf +srcfiles size=37 + RELOC/source/latex/ccaption/ccaption.dtx + RELOC/source/latex/ccaption/ccaption.ins +catalogue-ctan /macros/latex/contrib/ccaption +catalogue-date 2012-05-15 20:34:46 +0200 +catalogue-license lppl1.3 +catalogue-version 3.2c + +name ccfonts +category Package +revision 17122 +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 +docfiles size=52 + RELOC/doc/latex/ccfonts/ccfonts.pdf + RELOC/doc/latex/ccfonts/readme +srcfiles size=6 + RELOC/source/latex/ccfonts/cc.fdd + RELOC/source/latex/ccfonts/ccfonts.dtx + RELOC/source/latex/ccfonts/ccfonts.ins +catalogue-ctan /macros/latex/contrib/ccfonts +catalogue-date 2012-05-15 20:34:46 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name ccicons +category Package +revision 30020 +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 +runfiles size=10 + RELOC/fonts/enc/dvips/ccicons/ccicons-u.enc + RELOC/fonts/map/dvips/ccicons/ccicons.map + RELOC/fonts/opentype/public/ccicons/ccicons.otf + RELOC/fonts/tfm/public/ccicons/ccicons.tfm + RELOC/fonts/type1/public/ccicons/ccicons.pfb + RELOC/tex/latex/ccicons/ccicons.sty +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-ctan /fonts/ccicons +catalogue-date 2014-04-14 00:53:06 +0200 +catalogue-license lppl1.3 +catalogue-version 1.5 + +name cclicenses +category Package +revision 15878 +shortdesc Typeset Creative Commons licence logos. +relocated 1 +longdesc The cclicenses package helps users typesetting Creative Commons +longdesc logos in LaTeX. It defines some commands useful to quickly +longdesc write these logos, related to CC licences versions 1.0 and 2.0. +runfiles size=2 + RELOC/tex/latex/cclicenses/cclicenses.sty +docfiles size=25 + RELOC/doc/latex/cclicenses/README + RELOC/doc/latex/cclicenses/cclicenses_short.pdf +srcfiles size=4 + RELOC/source/latex/cclicenses/cclicenses.dtx + RELOC/source/latex/cclicenses/cclicenses.ins +catalogue-ctan /macros/latex/contrib/cclicenses +catalogue-date 2012-04-30 17:40:04 +0200 +catalogue-license lppl + +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 +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 + +name cd-cover +category Package +revision 17121 +catalogue cdcover +shortdesc Typeset CD covers. +relocated 1 +longdesc The CD-cover class will typeset front and back cover sheets for +longdesc CD jewel cases, or an entire paper cover, or a label for a +longdesc plastic slip-cover. +runfiles size=4 + RELOC/tex/latex/cd-cover/cd-cover.cls +docfiles size=82 + RELOC/doc/latex/cd-cover/README + RELOC/doc/latex/cd-cover/cd-cover.pdf +srcfiles size=12 + RELOC/source/latex/cd-cover/cd-cover.dtx + RELOC/source/latex/cd-cover/cd-cover.ins +catalogue-ctan /macros/latex/contrib/cd-cover +catalogue-date 2012-05-15 20:34:46 +0200 +catalogue-license gpl +catalogue-version 1.0 + +name cdpbundl +category Package +revision 36697 +shortdesc Business letters in the Italian style. +relocated 1 +longdesc The C.D.P. Bundle can be used to typeset high-quality business +longdesc letters formatted according to Italian style conventions. It is +longdesc highly configurable, and its modular structure provides you +longdesc with building blocks of increasing level, by means of which you +longdesc can compose a large variety of letters. It is also possible to +longdesc write letters divided into sections and paragraphs, to include +longdesc floating figures and tables, and to have the relevant indexes +longdesc compiled automatically. A single input file can contain several +longdesc letters, and each letter will have its own table of contents, +longdesc etc., independant from the other ones. +runfiles size=28 + RELOC/tex/latex/cdpbundl/articoletteracdp.cls + RELOC/tex/latex/cdpbundl/cdpaddon.sty + RELOC/tex/latex/cdpbundl/cdpbabel.sty + RELOC/tex/latex/cdpbundl/cdpnamesenglish.ldf + RELOC/tex/latex/cdpbundl/cdpnamesitalian.ldf + RELOC/tex/latex/cdpbundl/cdpshues-example.def + RELOC/tex/latex/cdpbundl/cdpshues.cfg + RELOC/tex/latex/cdpbundl/epson-stylus-740.def + RELOC/tex/latex/cdpbundl/hp-laserjet-4500.def + RELOC/tex/latex/cdpbundl/letteracdp.cls +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-license lppl +catalogue-version 0.36 + +name cd +category Package +revision 34452 +shortdesc Typeset CD covers. +relocated 1 +longdesc Normal usage will ordinarily require no more than a simple data +longdesc file per cover; the package will make a full insert for a CD +longdesc case (it copes with both normal and slim cases). +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 +catalogue-version 1.4 + +name cellspace +category Package +revision 15878 +shortdesc Ensure minimal spacing of table cells. +relocated 1 +longdesc It is well known that high or deep cells tend to touch the +longdesc \hlines of a tabular. This package provides a modifier S acting +longdesc on usual column types so that to ensure a minimal distance that +longdesc can be controlled through two parameters \cellspacetoplimit and +longdesc \cellspacebottomlimit. The approach employed by this package is +longdesc noticeably simpler than that of tabls, which considers the +longdesc dimensions of each entire row; whereas you can ask the +longdesc cellspace only to look at the cells of potentially difficult +longdesc columns. +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-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 + +name celtic +category Package +revision 34676 +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 + RELOC/doc/latex/celtic/celtic_code.pdf + RELOC/doc/latex/celtic/celtic_doc.tex +srcfiles size=10 + RELOC/source/latex/celtic/celtic.dtx + RELOC/source/latex/celtic/celtic.ins +catalogue-ctan /graphics/pgf/contrib/celtic +catalogue-date 2014-08-05 11:12:00 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +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. +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-license lppl1.3 +catalogue-version 3.21 + +name cfr-initials +category Package +revision 36728 +shortdesc LaTeX packages for use of initials. +relocated 1 +longdesc This is a set of 23 tiny packages designed to make it easier to +longdesc use fonts from the initials package in LaTeX, e.g. with the +longdesc lettrine package. It is a response to comments on an answer at +longdesc TeX Stack Exchange (http://tex.stackexchange.com/a/236410/) +longdesc requesting sample package files for others to copy. I had +longdesc previously assumed these were too trivial to be of interest, +longdesc but if they would be useful, then I would prefer them to be +longdesc generally available via CTAN. +runfiles size=23 + RELOC/tex/latex/cfr-initials/Acorn.sty + RELOC/tex/latex/cfr-initials/AnnSton.sty + RELOC/tex/latex/cfr-initials/ArtNouv.sty + RELOC/tex/latex/cfr-initials/ArtNouvc.sty + RELOC/tex/latex/cfr-initials/Carrickc.sty + RELOC/tex/latex/cfr-initials/Eichenla.sty + RELOC/tex/latex/cfr-initials/Eileen.sty + RELOC/tex/latex/cfr-initials/EileenBl.sty + RELOC/tex/latex/cfr-initials/Elzevier.sty + RELOC/tex/latex/cfr-initials/GotIn.sty + RELOC/tex/latex/cfr-initials/GoudyIn.sty + RELOC/tex/latex/cfr-initials/Kinigcap.sty + RELOC/tex/latex/cfr-initials/Konanur.sty + RELOC/tex/latex/cfr-initials/Kramer.sty + RELOC/tex/latex/cfr-initials/MorrisIn.sty + RELOC/tex/latex/cfr-initials/Nouveaud.sty + RELOC/tex/latex/cfr-initials/Romantik.sty + RELOC/tex/latex/cfr-initials/Rothdn.sty + RELOC/tex/latex/cfr-initials/Royal.sty + RELOC/tex/latex/cfr-initials/Sanremo.sty + RELOC/tex/latex/cfr-initials/Starburst.sty + RELOC/tex/latex/cfr-initials/Typocaps.sty + RELOC/tex/latex/cfr-initials/Zallman.sty +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-license lppl1.3 +catalogue-version 1.01 + +name cfr-lm +category Package +revision 36195 +shortdesc Enhanced support for the Latin Modern fonts. +relocated 1 +longdesc The package supports a number of features of the Latin Modern +longdesc fonts which are not easily accessible via the default (La)TeX +longdesc support provided in the official distribution. In particular, +longdesc the package supports the use of the various styles of digits +longdesc available, small-caps and upright italic shapes, and +longdesc alternative weights and widths. It also supports variable width +longdesc typewriter and the "quotation" font. Version 2.004 of the Latin +longdesc Modern fonts is supported. By default, the package uses +longdesc proportional oldstyle digits and variable width typewriter but +longdesc this can be changed by passing appropriate options to the +longdesc package. The package also supports using (for example) +longdesc different styles of digits within a document so it is possible +longdesc to use proportional oldstyle digits by default, say, but +longdesc tabular lining digits within a particular table. The package +longdesc requires the official Latin Modern distribution, including its +longdesc (La)TeX support. The package relies on the availability of both +longdesc the fonts themselves and the official font support files. The +longdesc package also makes use of the nfssext-cfr package. Only the T1 +longdesc and TS1 encodings are supported for text fonts. The set up of +longdesc fonts for mathematics is identical to that provided by Latin +longdesc Modern. +execute addMap clm.map +runfiles size=1536 + RELOC/fonts/enc/dvips/cfr-lm/dotdigits-clm.enc + RELOC/fonts/enc/dvips/cfr-lm/t1-clm.enc + RELOC/fonts/map/dvips/cfr-lm/clm.map + RELOC/fonts/tfm/public/cfr-lm/clmb28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmb2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmb2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmb2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmb8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx28t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2i8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2ij8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2j8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbx8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxi8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxj8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxji8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmbxo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsc8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcscj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcscjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmcsco8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdun2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdun2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunh28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunh2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunh8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunhj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmdunjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmduno8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr28t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2i8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2ij8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2j8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2jo8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr2o8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmr8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmri8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t5.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t6.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrj8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t7.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrji8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmrjo8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmro8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss28t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2j8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss2jo8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmss8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssb2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssb2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbx28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbx2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbx8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssbxj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssd2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssd2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdc28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdc2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdc8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdcj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssdo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssj8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssjo8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso28t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t17.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmsso8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq2jo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq2o8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssq8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqb2jo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqb2o8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbjo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbx28t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbx2j8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbx8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqbxj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqjo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmssqo8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtcsc8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtcscj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtcsjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtcso8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtk8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtkj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtkjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtko8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtl8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlc8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlcj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlcjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlco8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtljo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtlo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtt8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtt8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtt8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtt8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtti8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttij8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttj8t12.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttj8t8.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttj8t9.tfm + RELOC/fonts/tfm/public/cfr-lm/clmttjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmtto8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmu28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmu2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmu8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmuj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtk8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtkj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtkjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtko8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtl8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtlj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtljo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtlo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt28t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt2j8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt2jo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt2o8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtt8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvttj8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvttjo8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/clmvtto8t10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmb10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx5.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx6.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx7.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbx9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbxi10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmbxo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmcsc10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmcsco10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmdunh10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmduno10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr17.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr5.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr6.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr7.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmr9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri7.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmri9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro17.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmro9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss17.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmss9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssbo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssbx10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssdc10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssdo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso17.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmsso9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssq8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssqbo8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssqbx8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmssqo8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtcsc10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtcso10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtk10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtko10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtl10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtlc10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtlco10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtlo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtt10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtt12.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtt8.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtt9.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtti10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmtto10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmu10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtk10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtko10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtl10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtlo10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtt10.tfm + RELOC/fonts/tfm/public/cfr-lm/dd-lmvtto10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmb8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl5.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl6.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl7.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbx8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbxi8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmbxo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmcsc8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmcsco8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmdunh8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmduno8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl17.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl5.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl6.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl7.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmr8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl7.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmri8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl17.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmro8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl17.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmss8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssbo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssbx8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssdc8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssdo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl17.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmsso8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssq8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssqbo8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssqbx8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmssqo8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtcsc8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtcso8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtk8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtko8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtl8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtlc8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtlco8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtlo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtt8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtt8ttl12.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtt8ttl8.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtt8ttl9.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtti8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmtto8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmu8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtk8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtko8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtl8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtlo8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtt8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/lmvtto8ttl10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmb10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx5.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx6.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx7.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbx9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbxi10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmbxo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmcsc10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmcsco10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmdunh10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmduno10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr17.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr5.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr6.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr7.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmr9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri7.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmri9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro17.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmro9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss17.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmss9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssbo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssbx10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssdc10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssdo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso17.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmsso9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssq8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssqbo8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssqbx8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmssqo8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtcsc10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtcso10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtk10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtko10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtl10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtlc10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtlco10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtlo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtt10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtt12.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtt8.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtt9.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtti10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmtto10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmu10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtk10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtko10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtl10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtlo10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtt10.tfm + RELOC/fonts/tfm/public/cfr-lm/u-clmvtto10.tfm + RELOC/fonts/vf/public/cfr-lm/clmb28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmb2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmb2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmb2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmb8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t12.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t5.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t6.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t7.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmbx28t9.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2i8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2ij8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2j8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmbx8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmbxi8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmbxj8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmbxji8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbxjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmbxo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsc8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcscj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcscjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmcsco8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdun2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdun2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunh28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunh2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunh8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunhj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmdunjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmduno8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t5.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t6.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr28t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2i8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2ij8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2j8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2jo8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr2o8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmr8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmri8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t5.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t6.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmrj8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t7.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmrji8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmrjo8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmro8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t12.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t17.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmss28t9.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmss2j8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmss2jo8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmss8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmssb2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssb2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbx28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbx2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbx8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssbxj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssd2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssd2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdc28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdc2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdc8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdcj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssdo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssj8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssjo8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t12.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t17.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmsso28t9.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t17.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmsso8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmssq28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssq2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssq2jo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssq2o8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssq8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqb2jo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqb2o8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbjo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbx28t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbx2j8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbx8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqbxj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqjo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmssqo8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmtcsc8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtcscj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtcsjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtcso8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtk8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtkj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtkjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtko8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtl8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlc8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlcj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlcjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlco8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtljo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtlo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtt8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtt8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmtt8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmtt8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmtti8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmttij8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmttj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmttj8t12.vf + RELOC/fonts/vf/public/cfr-lm/clmttj8t8.vf + RELOC/fonts/vf/public/cfr-lm/clmttj8t9.vf + RELOC/fonts/vf/public/cfr-lm/clmttjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmtto8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmu28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmu2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmu8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmuj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtk8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtkj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtkjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtko8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtl8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtlj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtljo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtlo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt28t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt2j8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt2jo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt2o8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtt8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvttj8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvttjo8t10.vf + RELOC/fonts/vf/public/cfr-lm/clmvtto8t10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmb10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx5.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx6.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx7.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbx9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbxi10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmbxo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmcsc10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmcsco10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmdunh10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmduno10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr17.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr5.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr6.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr7.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmr9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri7.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmri9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro17.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmro9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss17.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmss9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssbo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssbx10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssdc10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssdo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso17.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmsso9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssq8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssqbo8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssqbx8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmssqo8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtcsc10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtcso10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtk10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtko10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtl10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtlc10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtlco10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtlo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtt10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtt12.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtt8.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtt9.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtti10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmtto10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmu10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtk10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtko10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtl10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtlo10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtt10.vf + RELOC/fonts/vf/public/cfr-lm/u-clmvtto10.vf + RELOC/tex/latex/cfr-lm/cfr-lm.sty + RELOC/tex/latex/cfr-lm/t1clm.fd + RELOC/tex/latex/cfr-lm/t1clm2.fd + RELOC/tex/latex/cfr-lm/t1clm2d.fd + RELOC/tex/latex/cfr-lm/t1clm2dj.fd + RELOC/tex/latex/cfr-lm/t1clm2j.fd + RELOC/tex/latex/cfr-lm/t1clm2jqs.fd + RELOC/tex/latex/cfr-lm/t1clm2js.fd + RELOC/tex/latex/cfr-lm/t1clm2jt.fd + RELOC/tex/latex/cfr-lm/t1clm2jv.fd + RELOC/tex/latex/cfr-lm/t1clm2qs.fd + RELOC/tex/latex/cfr-lm/t1clm2s.fd + RELOC/tex/latex/cfr-lm/t1clm2t.fd + RELOC/tex/latex/cfr-lm/t1clm2v.fd + RELOC/tex/latex/cfr-lm/t1clmd.fd + RELOC/tex/latex/cfr-lm/t1clmdj.fd + RELOC/tex/latex/cfr-lm/t1clmj.fd + RELOC/tex/latex/cfr-lm/t1clmjqs.fd + RELOC/tex/latex/cfr-lm/t1clmjs.fd + RELOC/tex/latex/cfr-lm/t1clmjt.fd + RELOC/tex/latex/cfr-lm/t1clmjv.fd + RELOC/tex/latex/cfr-lm/t1clmqs.fd + RELOC/tex/latex/cfr-lm/t1clms.fd + RELOC/tex/latex/cfr-lm/t1clmt.fd + RELOC/tex/latex/cfr-lm/t1clmv.fd + RELOC/tex/latex/cfr-lm/ts1clm.fd + RELOC/tex/latex/cfr-lm/ts1clm2.fd + RELOC/tex/latex/cfr-lm/ts1clm2d.fd + RELOC/tex/latex/cfr-lm/ts1clm2dj.fd + RELOC/tex/latex/cfr-lm/ts1clm2j.fd + RELOC/tex/latex/cfr-lm/ts1clm2jqs.fd + RELOC/tex/latex/cfr-lm/ts1clm2js.fd + RELOC/tex/latex/cfr-lm/ts1clm2jt.fd + RELOC/tex/latex/cfr-lm/ts1clm2jv.fd + RELOC/tex/latex/cfr-lm/ts1clm2qs.fd + RELOC/tex/latex/cfr-lm/ts1clm2s.fd + RELOC/tex/latex/cfr-lm/ts1clm2t.fd + RELOC/tex/latex/cfr-lm/ts1clm2v.fd + RELOC/tex/latex/cfr-lm/ts1clmd.fd + RELOC/tex/latex/cfr-lm/ts1clmdj.fd + RELOC/tex/latex/cfr-lm/ts1clmj.fd + RELOC/tex/latex/cfr-lm/ts1clmjqs.fd + RELOC/tex/latex/cfr-lm/ts1clmjs.fd + RELOC/tex/latex/cfr-lm/ts1clmjt.fd + RELOC/tex/latex/cfr-lm/ts1clmjv.fd + RELOC/tex/latex/cfr-lm/ts1clmqs.fd + RELOC/tex/latex/cfr-lm/ts1clms.fd + RELOC/tex/latex/cfr-lm/ts1clmt.fd + RELOC/tex/latex/cfr-lm/ts1clmv.fd + RELOC/tex/latex/cfr-lm/uclm.fd + RELOC/tex/latex/cfr-lm/uclm2.fd + RELOC/tex/latex/cfr-lm/uclm2d.fd + RELOC/tex/latex/cfr-lm/uclm2dj.fd + RELOC/tex/latex/cfr-lm/uclm2j.fd + RELOC/tex/latex/cfr-lm/uclm2jqs.fd + RELOC/tex/latex/cfr-lm/uclm2js.fd + RELOC/tex/latex/cfr-lm/uclm2jt.fd + RELOC/tex/latex/cfr-lm/uclm2jv.fd + RELOC/tex/latex/cfr-lm/uclm2qs.fd + RELOC/tex/latex/cfr-lm/uclm2s.fd + RELOC/tex/latex/cfr-lm/uclm2t.fd + RELOC/tex/latex/cfr-lm/uclm2v.fd + RELOC/tex/latex/cfr-lm/uclmd.fd + RELOC/tex/latex/cfr-lm/uclmdj.fd + RELOC/tex/latex/cfr-lm/uclmj.fd + RELOC/tex/latex/cfr-lm/uclmjqs.fd + RELOC/tex/latex/cfr-lm/uclmjs.fd + RELOC/tex/latex/cfr-lm/uclmjt.fd + RELOC/tex/latex/cfr-lm/uclmjv.fd + RELOC/tex/latex/cfr-lm/uclmqs.fd + RELOC/tex/latex/cfr-lm/uclms.fd + RELOC/tex/latex/cfr-lm/uclmt.fd + RELOC/tex/latex/cfr-lm/uclmv.fd +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-license lppl1.3 +catalogue-version 1.5 + +name changebar +category Package +revision 29349 +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 + RELOC/doc/latex/changebar/cbtest1-ltx.pdf + RELOC/doc/latex/changebar/cbtest1-pdf.pdf + RELOC/doc/latex/changebar/cbtest1.tex + 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/chbar.1 + RELOC/doc/latex/changebar/chbar.sh + RELOC/doc/latex/changebar/manifest.txt +srcfiles size=29 + RELOC/source/latex/changebar/changebar.dtx + RELOC/source/latex/changebar/changebar.ins +catalogue-ctan /macros/latex/contrib/changebar +catalogue-date 2011-09-30 20:51:09 +0200 +catalogue-license lppl +catalogue-version 3.5c + +name changelayout +category Package +revision 16094 +shortdesc Change the layout of individual pages and their text. +relocated 1 +longdesc The package is an extension of the changepage package to permit +longdesc the user to change the layout of individual pages and their +longdesc texts. +runfiles size=5 + RELOC/tex/latex/changelayout/changelayout.sty +docfiles size=19 + RELOC/doc/latex/changelayout/README + RELOC/doc/latex/changelayout/changelayout-guide.pdf + RELOC/doc/latex/changelayout/changelayout-guide.tex +catalogue-ctan /macros/latex/contrib/changelayout +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name changepage +category Package +revision 15878 +shortdesc Margin adjustment and detection of odd/even pages. +relocated 1 +longdesc The package provides commands to change the page layout in the +longdesc middle of a document, and to robustly check for typesetting on +longdesc odd or even pages. Instructions for use are at the end of the +longdesc file. The package is an extraction of code from the memoir +longdesc class, whose user interface it shares. It is intended the this +longdesc package will eventually replace the chngpage package, which is +longdesc distributed with the package. +runfiles size=4 + RELOC/tex/latex/changepage/changepage.sty + RELOC/tex/latex/changepage/chngpage.sty +docfiles size=87 + RELOC/doc/latex/changepage/README + RELOC/doc/latex/changepage/changepage.pdf +srcfiles size=6 + RELOC/source/latex/changepage/changepage.ins + RELOC/source/latex/changepage/changepage.tex +catalogue-ctan /macros/latex/contrib/changepage +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0c + +name changes +category Package +revision 37104 +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 + RELOC/doc/latex/changes/changes.example.addedmarkup.bf.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 + RELOC/doc/latex/changes/changes.example.authormarkup.subscript.tex + RELOC/doc/latex/changes/changes.example.authormarkup.superscript.tex + RELOC/doc/latex/changes/changes.example.authormarkup.wrong.tex + RELOC/doc/latex/changes/changes.example.authormarkupposition.left.tex + RELOC/doc/latex/changes/changes.example.authormarkupposition.right.tex + RELOC/doc/latex/changes/changes.example.authormarkupposition.wrong.tex + 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.deletedmarkup.bf.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 + RELOC/doc/latex/changes/changes.example.deletedmarkup.uuline.tex + RELOC/doc/latex/changes/changes.example.deletedmarkup.uwave.tex + RELOC/doc/latex/changes/changes.example.deletedmarkup.wrong.tex + 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.listofchanges.list.tex + RELOC/doc/latex/changes/changes.example.listofchanges.summary.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.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.setdeletedmarkup.tex + RELOC/doc/latex/changes/changes.example.setremarkmarkup.tex + RELOC/doc/latex/changes/changes.example.setsocextension.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/userdoc/changes.de.tex + RELOC/doc/latex/changes/userdoc/changes.en.tex +srcfiles size=16 + RELOC/source/latex/changes/changes.drv + RELOC/source/latex/changes/changes.dtx + RELOC/source/latex/changes/changes.ins + RELOC/source/latex/changes/examples.dtx +catalogue-ctan /macros/latex/contrib/changes +catalogue-date 2015-04-28 00:10:32 +0200 +catalogue-license lppl1.3 +catalogue-version 2.0.4 + +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 +docfiles size=51 + RELOC/doc/latex/chappg/chappg.pdf +srcfiles size=6 + RELOC/source/latex/chappg/chappg.dtx + RELOC/source/latex/chappg/chappg.ins +catalogue-ctan /macros/latex/contrib/chappg +catalogue-date 2012-06-08 21:17:59 +0200 +catalogue-license lppl +catalogue-version 2.1b + +name chapterfolder +category Package +revision 15878 +shortdesc Package for working with complicated folder structures. +relocated 1 +longdesc This package simplifies working with folder structures that +longdesc match the chapter/section/subsection structure. It provides +longdesc macros to define a folder that contains the file for a +longdesc chapter/section/subsection, and provides macros that allow +longdesc inclusion without using the full path, rather the path relative +longdesc to the current folder of the chapter/section/subsection. It +longdesc makes easy changing the name of a folder, for example. +runfiles size=2 + RELOC/tex/latex/chapterfolder/chapterfolder.sty +docfiles size=49 + RELOC/doc/latex/chapterfolder/chapterfolder.pdf +srcfiles size=5 + RELOC/source/latex/chapterfolder/chapterfolder.dtx + RELOC/source/latex/chapterfolder/chapterfolder.ins +catalogue-ctan /macros/latex/contrib/chapterfolder +catalogue-date 2012-06-08 21:17:59 +0200 +catalogue-license lppl +catalogue-version 2.0.1 + +name charter +category Package +revision 15878 +shortdesc Charter fonts. +relocated 1 +longdesc A commercial text font donated for the common good. Support for +longdesc use with LaTeX is available in freenfss, part of psnfss. +runfiles size=127 + RELOC/fonts/afm/bitstrea/charter/bchb8a.afm + RELOC/fonts/afm/bitstrea/charter/bchbi8a.afm + RELOC/fonts/afm/bitstrea/charter/bchr8a.afm + RELOC/fonts/afm/bitstrea/charter/bchri8a.afm + RELOC/fonts/tfm/bitstrea/charter/bchb7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchb8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchb8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchb8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbc7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbc8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbi7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbi8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbi8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbi8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbo7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbo8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbo8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchbo8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchr7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchr8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchr8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchr8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchrc7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchrc8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchri7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchri8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchri8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchri8t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchro7t.tfm + RELOC/fonts/tfm/bitstrea/charter/bchro8c.tfm + RELOC/fonts/tfm/bitstrea/charter/bchro8r.tfm + RELOC/fonts/tfm/bitstrea/charter/bchro8t.tfm + RELOC/fonts/type1/bitstrea/charter/bchb8a.pfb + RELOC/fonts/type1/bitstrea/charter/bchbi8a.pfb + RELOC/fonts/type1/bitstrea/charter/bchr8a.pfb + RELOC/fonts/type1/bitstrea/charter/bchri8a.pfb + RELOC/fonts/vf/bitstrea/charter/bchb7t.vf + RELOC/fonts/vf/bitstrea/charter/bchb8c.vf + RELOC/fonts/vf/bitstrea/charter/bchb8t.vf + RELOC/fonts/vf/bitstrea/charter/bchbc7t.vf + RELOC/fonts/vf/bitstrea/charter/bchbc8t.vf + RELOC/fonts/vf/bitstrea/charter/bchbi7t.vf + RELOC/fonts/vf/bitstrea/charter/bchbi8c.vf + RELOC/fonts/vf/bitstrea/charter/bchbi8t.vf + RELOC/fonts/vf/bitstrea/charter/bchbo7t.vf + RELOC/fonts/vf/bitstrea/charter/bchbo8c.vf + RELOC/fonts/vf/bitstrea/charter/bchbo8t.vf + RELOC/fonts/vf/bitstrea/charter/bchr7t.vf + RELOC/fonts/vf/bitstrea/charter/bchr8c.vf + RELOC/fonts/vf/bitstrea/charter/bchr8t.vf + RELOC/fonts/vf/bitstrea/charter/bchrc7t.vf + RELOC/fonts/vf/bitstrea/charter/bchrc8t.vf + RELOC/fonts/vf/bitstrea/charter/bchri7t.vf + RELOC/fonts/vf/bitstrea/charter/bchri8c.vf + RELOC/fonts/vf/bitstrea/charter/bchri8t.vf + RELOC/fonts/vf/bitstrea/charter/bchro7t.vf + RELOC/fonts/vf/bitstrea/charter/bchro8c.vf + RELOC/fonts/vf/bitstrea/charter/bchro8t.vf +docfiles size=1 + RELOC/doc/fonts/charter/readme.charter +catalogue-ctan /fonts/charter +catalogue-date 2012-11-30 16:37:48 +0100 +catalogue-license other-free + +name chbibref +category Package +revision 17120 +shortdesc Change the Bibliography/References title. +relocated 1 +longdesc Defines a single command, \setbibref, which sets whichever of +longdesc \bibname and \refname is in use. (\bibname is used in book.cls +longdesc and report.cls, and \refname is used in article.cls.) +runfiles size=1 + RELOC/tex/latex/chbibref/chbibref.sty +docfiles size=44 + RELOC/doc/latex/chbibref/chbibref.pdf + RELOC/doc/latex/chbibref/chbibref.tex +catalogue-ctan /macros/latex/contrib/chbibref +catalogue-date 2012-08-26 01:20:08 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name checkcites +category Package +revision 28572 +shortdesc Check citation commands in a document. +longdesc The package provides a lua script written for the sole purpose +longdesc of detecting undefined and unused references from LaTeX +longdesc auxiliary or bibliography files. +depend checkcites.ARCH +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 + texmf-dist/doc/support/checkcites/checkcites-doc.tex +catalogue-ctan /support/checkcites +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0i + +name checkcites.i386-linux +category Package +revision 25623 +shortdesc i386-linux files of checkcites +binfiles arch=i386-linux size=1 + bin/i386-linux/checkcites + +name checklistings +category Package +revision 38300 +shortdesc Pass verbatim contents through a compiler and reincorporate the resulting output +longdesc This package augments the fancyvrb and listings packages to +longdesc allow the source code they contain to be checked by an external +longdesc tool (like a compiler). The external tool's messages can be +longdesc automatically reincorporated into the original document. The +longdesc package does not focus on a specific programming language, but +longdesc it is designed to work well with languages and compilers in the +longdesc ML family. +depend checklistings.ARCH +runfiles size=6 + texmf-dist/scripts/checklistings/checklistings.sh + texmf-dist/tex/latex/checklistings/checklistings.sty +docfiles size=96 + texmf-dist/doc/latex/checklistings/Makefile + texmf-dist/doc/latex/checklistings/README.md + texmf-dist/doc/latex/checklistings/checklistings.hva + texmf-dist/doc/latex/checklistings/checklistings.pdf + texmf-dist/doc/latex/checklistings/example.html + texmf-dist/doc/latex/checklistings/example.pdf + texmf-dist/doc/latex/checklistings/example.tex +srcfiles size=11 + texmf-dist/source/latex/checklistings/checklistings.dtx + texmf-dist/source/latex/checklistings/checklistings.ins +catalogue-ctan /macros/latex/contrib/checklistings +catalogue-date 2015-09-03 19:26:31 +0200 +catalogue-license lppl1.2 +catalogue-topics callback listing +catalogue-version 1.0 + +name checklistings.i386-linux +category Package +revision 38300 +shortdesc i386-linux files of checklistings +binfiles arch=i386-linux size=1 + bin/i386-linux/checklistings + +name chemarrow +category Package +revision 17146 +shortdesc Arrows for use in chemistry. +relocated 1 +longdesc This bundle consists of a font (available as Metafont source, +longdesc Metapost source, and generated type 1 versions), and a package +longdesc to use it. The arrows in the font are designed to look more +longdesc like those in chemistry text-books than do Knuth's originals. +execute addMap chemarrow.map +runfiles size=9 + RELOC/fonts/afm/public/chemarrow/arrow.afm + RELOC/fonts/map/dvips/chemarrow/chemarrow.map + RELOC/fonts/source/public/chemarrow/arrow.mf + RELOC/fonts/tfm/public/chemarrow/arrow.tfm + RELOC/fonts/type1/public/chemarrow/arrow.inf + RELOC/fonts/type1/public/chemarrow/arrow.pfb + RELOC/fonts/type1/public/chemarrow/arrow.pfm + RELOC/tex/latex/chemarrow/chemarrow.sty +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-ctan /macros/latex/contrib/chemarrow +catalogue-date 2011-09-27 19:59:36 +0200 +catalogue-license pd +catalogue-version 0.9 + +name chembst +category Package +revision 15878 +shortdesc A collection of BibTeX files for chemistry journals. +relocated 1 +longdesc The package offers a collection of advanced BibTeX style files +longdesc suitable for publications in chemistry journals. Currently, +longdesc style files for journals published by the American Chemical +longdesc Society, Wiley-VCH and The Royal Society of Chemistry are +longdesc available. The style files support advanced features such as +longdesc automatic formatting of errata or creating an appropriate entry +longdesc for publications in Angewandte Chemie where both English and +longdesc German should be cited simultaneously. +runfiles size=48 + RELOC/bibtex/bst/chembst/ChemCommun.bst + RELOC/bibtex/bst/chembst/ChemEurJ.bst + RELOC/bibtex/bst/chembst/InorgChem.bst + RELOC/bibtex/bst/chembst/JAmChemSoc.bst + RELOC/bibtex/bst/chembst/JAmChemSoc_all.bst + RELOC/bibtex/bst/chembst/cv.bst +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-license lppl +catalogue-version 0.2.5 + +name chemcompounds +category Package +revision 15878 +shortdesc Simple consecutive numbering of chemical compounds. +relocated 1 +longdesc The chemcompounds package allows for a simple consecutive +longdesc numbering of chemical compounds. Optionally, it is possible to +longdesc supply a custom name for each compound. The package differs +longdesc from the chemcono package by not generating an odd-looking list +longdesc of compounds inside the text. +runfiles size=2 + RELOC/tex/latex/chemcompounds/chemcompounds.sty +docfiles size=33 + RELOC/doc/latex/chemcompounds/README + RELOC/doc/latex/chemcompounds/chemcompounds.pdf +srcfiles size=8 + RELOC/source/latex/chemcompounds/chemcompounds.dtx + RELOC/source/latex/chemcompounds/chemcompounds.ins +catalogue-ctan /macros/latex/contrib/chemcompounds +catalogue-date 2012-05-07 18:06:12 +0200 +catalogue-license lppl + +name chemcono +category Package +revision 17119 +shortdesc Support for compound numbers in chemistry documents. +relocated 1 +longdesc A LaTeX package for using compound numbers in chemistry +longdesc documents. It works like \cite and the \thebibliography, using +longdesc \fcite and \theffbibliography instead. It allows compound names +longdesc in documents to be numbered and does not affect the normal +longdesc citation routines. +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-license lppl +catalogue-version 1.3 + +name chemexec +category Package +revision 21632 +shortdesc Creating (chemical) exercise sheets. +relocated 1 +longdesc The package provides environments and commands that the author +longdesc needed when preparing exercise sheets and other teaching +longdesc material. In particular, the package supports the creation of +longdesc exercise sheets, with separating printing of solutions +runfiles size=9 + RELOC/tex/latex/chemexec/chemexec.sty +docfiles size=131 + RELOC/doc/latex/chemexec/README + RELOC/doc/latex/chemexec/chemexec_de.pdf + RELOC/doc/latex/chemexec/chemexec_de.tex + RELOC/doc/latex/chemexec/chemexec_en.pdf + RELOC/doc/latex/chemexec/chemexec_en.tex +catalogue-ctan /macros/latex/contrib/chemexec +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name chemfig +category Package +revision 36374 +shortdesc Draw molecules with easy syntax. +relocated 1 +longdesc The package provides the command \chemfig{}, which draws +longdesc molecules using the tikz package. The argument provides +longdesc instructions for the drawing operation. While the diagrams +longdesc produced are essentially 2-dimensional, the package supports +longdesc many of the conventional notations for illustrating the 3- +longdesc dimensional layout of a molecule. The package uses TikZ for its +longdesc actual drawing operations. +runfiles size=27 + 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-ctan /macros/generic/chemfig +catalogue-date 2015-02-24 06:54:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1a + +name chemformula +category Package +revision 38341 +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 + RELOC/doc/latex/chemformula/chemformula_en.tex +catalogue-ctan /macros/latex/contrib/chemformula +catalogue-date 2015-09-09 07:24:52 +0200 +catalogue-license lppl1.3 +catalogue-topics chemistry +catalogue-version 4.12b + +name chemgreek +category Package +revision 37729 +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 + RELOC/doc/latex/chemgreek/chemgreek_en.tex +catalogue-ctan /macros/latex/contrib/chemgreek +catalogue-date 2015-07-01 12:48:02 +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 + +name chemmacros +category Package +revision 38359 +shortdesc A collection of macros to support typesetting chemistry documents +relocated 1 +longdesc The bundle offers a collection of macros and commands which are +longdesc intended to make typesetting chemistry documents faster and +longdesc more convenient. Coverage includes some nomenclature commands, +longdesc oxidation numbers, thermodynamic data, newman projections, etc. +longdesc The package relies on the following supporting packages: +longdesc chemformula, providing a command for typesetting chemical +longdesc formulae and reactions (doing a similar task to that of +longdesc mhchem); chemgreek, offering support for use of greek letters; +longdesc and ghsystem, providing for the UN globally harmonised chemical +longdesc notation. The packages are written using current versions of +longdesc the experimental LaTeX 3 coding conventions and the LaTeX 3 +longdesc support packages. +runfiles size=93 + 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.greek.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.isotopes.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.lang.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.mechanisms.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.newman.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.nomenclature.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.orbital.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.particles.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.phases.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.reactions.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.redox.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.scheme.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.spectroscopy.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.symbols.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.thermodynamics.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.tikz.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.units.code.tex + RELOC/tex/latex/chemmacros/chemmacros.module.xfrac.code.tex + RELOC/tex/latex/chemmacros/chemmacros.sty + RELOC/tex/latex/chemmacros/chemmacros4.sty + RELOC/tex/latex/chemmacros/chemmacros5.sty +docfiles size=267 + RELOC/doc/latex/chemmacros/README + RELOC/doc/latex/chemmacros/chemmacros_en.pdf + RELOC/doc/latex/chemmacros/chemmacros_en.tex +catalogue-ctan /macros/latex/contrib/chemmacros +catalogue-date 2015-09-11 21:33:13 +0200 +catalogue-license lppl1.3 +catalogue-topics chemistry expl3 +catalogue-version 5.0 + +name chemnum +category Package +revision 37382 +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 +docfiles size=263 + RELOC/doc/latex/chemnum/README + RELOC/doc/latex/chemnum/chemnum_en.pdf + RELOC/doc/latex/chemnum/chemnum_en.tex + RELOC/doc/latex/chemnum/scheme-bla.ps + RELOC/doc/latex/chemnum/scheme-tmp.ps +catalogue-ctan /macros/latex/contrib/chemnum +catalogue-date 2015-05-13 18:19:11 +0200 +catalogue-license lppl1.3 +catalogue-version 1.1a + +name chemschemex +category Package +revision 34667 +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 +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/RuCH-R1.pdf + RELOC/doc/latex/chemschemex/RuCH2.pdf + RELOC/doc/latex/chemschemex/chemschemex.pdf + 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 +srcfiles size=21 + RELOC/source/latex/chemschemex/chemschemex.dtx + RELOC/source/latex/chemschemex/chemschemex.ins +catalogue-ctan /macros/latex/contrib/chemschemex +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.2 +catalogue-version 1.0 + +name chemstyle +category Package +revision 31096 +shortdesc Writing chemistry with style. +relocated 1 +longdesc Chemstyle has been developed as a successor to the LaTeX +longdesc package provided by the rsc bundle. The package provides an +longdesc extensible system for formatting chemistry documents according +longdesc to the conventions of a number of leading journals. It also +longdesc provides some handy chemistry-related macros. Chemstyle is much +longdesc enhanced compared to its predecessor, and users of rsc are +longdesc strongly encouraged to migrate (all of the additional macros in +longdesc the rsc LaTeX package are present in chemstyle). The package +longdesc chemscheme is distributed with chemstyle; chemstyle itself +longdesc incorporates ideas that come from the trivfloat package; the +longdesc documentation uses the auto-pst-pdf package. +runfiles size=14 + RELOC/tex/latex/chemstyle/chemscheme.sty + RELOC/tex/latex/chemstyle/chemstyle.sty + RELOC/tex/latex/chemstyle/config/angew.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/ic.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/jacs.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/jomc.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/orglett.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/rsc.chemstyle.cfg + RELOC/tex/latex/chemstyle/config/tetlett.chemstyle.cfg +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-license lppl1.3 +catalogue-version 2.0m + +name cherokee +category Package +revision 21046 +shortdesc A font for the Cherokee script. +relocated 1 +longdesc The Cherokee script was designed in 1821 by Segwoya. The +longdesc alphabet is essentially syllabic, only 6 characters (a e i o s +longdesc u) correspond to Roman letters: the font encodes these to the +longdesc corresponding roman letter. The remaining 79 characters have +longdesc been arbitrarily encoded in the range 38-122; the cherokee +longdesc package provides commands that map each such syllable to the +longdesc appropriate character; for example, Segwoya himself would be +longdesc represented \Cse\Cgwo\Cya. The font is distributed as Metafont +longdesc source; it works very poorly in modern environments, and could +longdesc do with expert attention (if you are interested, please contact +longdesc the CTAN team for details). +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-ctan /fonts/cherokee +catalogue-date 2014-04-14 00:54:59 +0200 +catalogue-license other-free + +name chessboard +category Package +revision 33801 +shortdesc Print chess boards. +relocated 1 +longdesc This package offers commands to print chessboards. It can print +longdesc partial boards, hide pieces and fields, color the boards and +longdesc put various marks on the board. It has a lot of options to +longdesc place pieces on the board. Using exotic pieces (e.g., for fairy +longdesc chess) is possible. The documentation includes an example of an +longdesc animated chessboard, for those whose PDF viewer can display +longdesc animations. +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 +docfiles size=2 + RELOC/doc/latex/chessboard/README + RELOC/doc/latex/chessboard/README.TEXLIVE +srcfiles size=48 + RELOC/source/latex/chessboard/chessboard-src.dtx + RELOC/source/latex/chessboard/chessboard.ins +catalogue-ctan /macros/latex/contrib/chessboard +catalogue-date 2014-05-01 22:32:50 +0200 +catalogue-license lppl +catalogue-version 1.7 + +name chessfss +category Package +revision 19440 +shortdesc A package to handle chess fonts. +relocated 1 +longdesc This package offers commands to use and switch between chess +longdesc fonts. It uses the LaTeX font selection scheme (nfss). The +longdesc package doesn't parse, format and print PGN input like e.g. the +longdesc packages skak or texmate; the aim of the package is to offer +longdesc writers of chess packages a bundle of commands for fonts, so +longdesc that they don't have to implement all these commands for +longdesc themselves. A normal user can use the package to print e.g. +longdesc single chess symbols and simple diagrams. The documentation +longdesc contains also a section about installation of chess fonts. +runfiles size=47 + RELOC/fonts/enc/dvips/chessfss/chess-board-example-enc.enc + RELOC/fonts/enc/dvips/chessfss/chess-fig-example-enc.enc + RELOC/tex/latex/chessfss/chessfss.sty + RELOC/tex/latex/chessfss/lsb1enc.def + RELOC/tex/latex/chessfss/lsb1skak.fd + RELOC/tex/latex/chessfss/lsb1skaknew.fd + RELOC/tex/latex/chessfss/lsb2enc.def + RELOC/tex/latex/chessfss/lsb2skak.fd + RELOC/tex/latex/chessfss/lsb2skaknew.fd + RELOC/tex/latex/chessfss/lsb3enc.def + RELOC/tex/latex/chessfss/lsb3skak.fd + RELOC/tex/latex/chessfss/lsb3skaknew.fd + RELOC/tex/latex/chessfss/lsbc1enc.def + RELOC/tex/latex/chessfss/lsbc1skaknew.fd + RELOC/tex/latex/chessfss/lsbc2enc.def + RELOC/tex/latex/chessfss/lsbc2skaknew.fd + RELOC/tex/latex/chessfss/lsbc3enc.def + RELOC/tex/latex/chessfss/lsbc3skaknew.fd + RELOC/tex/latex/chessfss/lsbc4enc.def + RELOC/tex/latex/chessfss/lsbc4skaknew.fd + RELOC/tex/latex/chessfss/lsbc5enc.def + RELOC/tex/latex/chessfss/lsbc5skaknew.fd + RELOC/tex/latex/chessfss/lsbenc.def + RELOC/tex/latex/chessfss/lsbskak.fd + RELOC/tex/latex/chessfss/lsbskaknew.fd + RELOC/tex/latex/chessfss/lsfenc.def + RELOC/tex/latex/chessfss/lsfskak.fd + RELOC/tex/latex/chessfss/lsfskaknew.fd + RELOC/tex/latex/chessfss/lsienc.def + RELOC/tex/latex/chessfss/lsiskak.fd + RELOC/tex/latex/chessfss/lsiskaknew.fd +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-license lppl +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 +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. +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-license lppl1.3 +catalogue-topics layout +catalogue-version 2.1 + +name chextras +category Package +revision 27118 +shortdesc A companion package for the Swiss typesetter. +relocated 1 +longdesc The package simplifies the preparation of Swiss documents and +longdesc letters by setting up linguistic and common packages. While it +longdesc is a useful addition to the chletter document class, it is not +longdesc tied to it and may be used as a general purpose package. +runfiles size=11 + RELOC/tex/latex/chextras/chextras.sty + RELOC/tex/latex/chextras/eu1lmros.fd + RELOC/tex/latex/chextras/eu1lmssos.fd + RELOC/tex/latex/chextras/eu1lmttos.fd + RELOC/tex/latex/chextras/eu1lmvttos.fd + RELOC/tex/latex/chextras/t1lmros.fd + RELOC/tex/latex/chextras/t1lmssos.fd + RELOC/tex/latex/chextras/t1lmttos.fd + RELOC/tex/latex/chextras/t1lmvttos.fd +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-ctan /macros/latex/contrib/chextras +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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. +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. +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-license other-free + +name chickenize +category Package +revision 31505 +shortdesc Use lua callbacks for "interesting" textual effects. +relocated 1 +longdesc The package allows manipulations of any LuaTeX document (it is +longdesc known to work with Plain LuaTeX and LuaLaTeX). Most of the +longdesc package's functions are merely for fun or educational use, but +longdesc some functions (for example, colorstretch for visualising the +longdesc badness and font expansion of each line, and letterspaceadjust +longdesc doing what its name says) could be useful in a "normal" LuaTeX +longdesc document. +runfiles size=12 + 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-ctan /macros/luatex/generic/chickenize +catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2.1a + +name chkfloat +category Package +revision 27473 +shortdesc Warn whenever a float is placed "to far away". +relocated 1 +longdesc The package checks for floats that are placed too far from +longdesc their origin. It was motivated by a question on the question +longdesc and answer page. +runfiles size=1 + RELOC/tex/latex/chkfloat/chkfloat.sty +docfiles size=15 + RELOC/doc/latex/chkfloat/README + RELOC/doc/latex/chkfloat/chkfloat.pdf + RELOC/doc/latex/chkfloat/chkfloat.tex +catalogue-ctan /macros/latex/contrib/chkfloat +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name chktex +category TLCore +revision 37078 +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 + 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 +catalogue-ctan /support/chktex +catalogue-date 2015-04-12 05:55:29 +0200 +catalogue-license gpl +catalogue-version 1.7.4 + +name chktex.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of chktex +binfiles arch=i386-linux size=44 + bin/i386-linux/chktex + bin/i386-linux/chkweb + bin/i386-linux/deweb + +name chletter +category Package +revision 20060 +shortdesc Class for typesetting letters to Swiss rules. +relocated 1 +longdesc The class enables composition of letters fitting into Swiss C5 +longdesc & C6/5 windowed envelopes. No assumption is made about the +longdesc language used. The class is based on the standard LaTeX classes +longdesc and is compatible with the LaTeX letter class. It is not +longdesc limited to letters and may be used as a generic document class; +longdesc it is used with the chextras package. +runfiles size=3 + RELOC/tex/latex/chletter/chletter.cls +docfiles size=35 + RELOC/doc/latex/chletter/README + RELOC/doc/latex/chletter/chletter.pdf + RELOC/doc/latex/chletter/chlettmp.tex +srcfiles size=17 + RELOC/source/latex/chletter/chletter.dtx + RELOC/source/latex/chletter/chletter.ins +catalogue-ctan /macros/latex/contrib/chletter +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 2.0 + +name chngcntr +category Package +revision 17157 +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 + RELOC/doc/latex/chngcntr/chngcntr.tex +catalogue-ctan /macros/latex/contrib/chngcntr +catalogue-date 2012-06-14 16:35:51 +0200 +catalogue-license lppl +catalogue-version 1.0a + +name chronology +category Package +revision 37934 +shortdesc Provides a horizontal timeline. +relocated 1 +longdesc A timeline package that allows labelling of events with per-day +longdesc granularity. Other features include relative positioning with +longdesc unit specification, adjustable tick mark step size, and scaling +longdesc to specified width. +runfiles size=1 + RELOC/tex/latex/chronology/chronology.sty +docfiles size=6 + RELOC/doc/latex/chronology/README.md + RELOC/doc/latex/chronology/example.pdf + RELOC/doc/latex/chronology/example.tex +catalogue-ctan /macros/latex/contrib/chronology +catalogue-date 2015-07-23 12:12:39 +0200 +catalogue-license lppl1.3 +catalogue-topics planning calendar +catalogue-version 1.1.1 + +name chronosys +category Package +revision 26700 +shortdesc Drawing time-line diagrams. +relocated 1 +longdesc Macros to produce time line diagrams. Interfaces for Plain TeX, +longdesc Context and LaTeX are provided. +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-license lppl1.3 +catalogue-version 1.2 + +name chscite +category Package +revision 28552 +shortdesc Bibliography style for Chalmers University of Technology. +relocated 1 +longdesc The package, heavily based on the harvard package for Harvard- +longdesc style citations, provides a citation suite for students at +longdesc Chalmers University of Technology that follows given +longdesc recommendations. +runfiles size=9 + RELOC/bibtex/bst/chscite/chscite.bst + RELOC/tex/latex/chscite/chscite.sty +docfiles size=48 + RELOC/doc/latex/chscite/README + RELOC/doc/latex/chscite/chscite.pdf +srcfiles size=12 + RELOC/source/latex/chscite/chscite.dtx + RELOC/source/latex/chscite/chscite.ins +catalogue-ctan /macros/latex/contrib/chscite +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 2.9999 + +name cinzel +category Package +revision 34408 +shortdesc LaTeX support for Cinzel and Cinzel Decorative fonts. +relocated 1 +longdesc Cinzel and Cinzel Decorative fonts, designed by Natanael Gama +longdesc Natanael Gama), find their inspiration in first century roman +longdesc inscriptions, and are based on classical proportions. Cinzel is +longdesc all-caps (similar to Trajan and Michelangelo), but is available +longdesc in three weights (Regular, Bold, Black). There are no italic +longdesc fonts, but there are Decorative variants, which can be selected +longdesc by the usual italic-selection commands in the package's LaTeX +longdesc support. +execute addMap cinzel.map +runfiles size=431 + RELOC/fonts/enc/dvips/cinzel/cnzl_7luz43.enc + RELOC/fonts/enc/dvips/cinzel/cnzl_7t2zcj.enc + RELOC/fonts/enc/dvips/cinzel/cnzl_aakhvz.enc + RELOC/fonts/enc/dvips/cinzel/cnzl_k6z3ge.enc + RELOC/fonts/map/dvips/cinzel/cinzel.map + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Black-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Bold-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/Cinzel-Regular-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ot1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1.tfm + RELOC/fonts/truetype/ndiscovered/cinzel/Cinzel-Black.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/Cinzel-Bold.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/Cinzel-Regular.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/CinzelDecorative-Black.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/CinzelDecorative-Bold.ttf + RELOC/fonts/truetype/ndiscovered/cinzel/CinzelDecorative-Regular.ttf + RELOC/fonts/type1/ndiscovered/cinzel/Cinzel-Black.pfb + RELOC/fonts/type1/ndiscovered/cinzel/Cinzel-Bold.pfb + RELOC/fonts/type1/ndiscovered/cinzel/Cinzel-Regular.pfb + RELOC/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Black.pfb + RELOC/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Bold.pfb + RELOC/fonts/type1/ndiscovered/cinzel/CinzelDecorative-Regular.pfb + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Black-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Bold-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/Cinzel-Regular-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Black-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Bold-lf-ts1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ly1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-t1.vf + RELOC/fonts/vf/ndiscovered/cinzel/CinzelDecorative-Regular-lf-ts1.vf + RELOC/tex/latex/cinzel/LY1Cinzel-LF.fd + RELOC/tex/latex/cinzel/LY1CinzelDecorative-LF.fd + RELOC/tex/latex/cinzel/OT1Cinzel-LF.fd + RELOC/tex/latex/cinzel/OT1CinzelDecorative-LF.fd + RELOC/tex/latex/cinzel/T1Cinzel-LF.fd + RELOC/tex/latex/cinzel/T1CinzelDecorative-LF.fd + RELOC/tex/latex/cinzel/TS1Cinzel-LF.fd + RELOC/tex/latex/cinzel/TS1CinzelDecorative-LF.fd + RELOC/tex/latex/cinzel/cinzel.sty +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-ctan /fonts/cinzel +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license ofl + +name circ +category Package +revision 15878 +shortdesc Macros for typesetting circuit diagrams. +relocated 1 +longdesc Several electrical symbols like resistor, capacitor, +longdesc transistors etc., are defined. The symbols can be connected +longdesc with wires. The package also contains an American resistor +longdesc symbol for those of us on that side of the Atlantic. The +longdesc package also has simple facilities for producing optics +longdesc diagrams; however, no-one would deny that the PSTricks pst- +longdesc optic package, or the MetaPost makecirc package does the job +longdesc better. +runfiles size=43 + RELOC/fonts/source/public/circ/cibimos.mf + RELOC/fonts/source/public/circ/cicirc.mf + RELOC/fonts/source/public/circ/cidiod.mf + RELOC/fonts/source/public/circ/cioptic.mf + RELOC/fonts/source/public/circ/ciphysic.mf + RELOC/fonts/source/public/circ/cirest.mf + RELOC/fonts/source/public/circ/cisym.mf + RELOC/fonts/source/public/circ/ciwidko.mf + RELOC/fonts/source/public/circ/csym.mf + RELOC/fonts/source/public/circ/defcirc.mf + RELOC/fonts/tfm/public/circ/cioptic.tfm + RELOC/tex/latex/circ/basic.def + RELOC/tex/latex/circ/box.def + RELOC/tex/latex/circ/circ.sty + RELOC/tex/latex/circ/gate.def + RELOC/tex/latex/circ/ic.def + RELOC/tex/latex/circ/oldgate.def + RELOC/tex/latex/circ/optics.def + RELOC/tex/latex/circ/physics.def +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-ctan /macros/generic/diagrams/circ +catalogue-date 2012-06-14 16:35:51 +0200 +catalogue-license gpl +catalogue-version 1.1 + +name circuitikz +category Package +revision 37410 +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 + 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/pgfcircbipoles.tex + RELOC/tex/generic/circuitikz/pgfcirccurrent.tex + RELOC/tex/generic/circuitikz/pgfcircinputarrows.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/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-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 + +name cite +category Package +revision 36428 +shortdesc Improved citation handling in LaTeX. +relocated 1 +longdesc The package supports compressed, sorted lists of numerical +longdesc citations, and also deals with various punctuation and other +longdesc issues of representation, including comprehensive management of +longdesc break points. The package is compatible with both hyperref and +longdesc backref. The package is (unsurprisingly) part of the cite +longdesc bundle of the author's citation-related packages. +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-ctan /macros/latex/contrib/cite +catalogue-date 2015-03-03 13:01:15 +0100 +catalogue-license other-free +catalogue-version 5.5 + +name cjhebrew +category Package +revision 15878 +shortdesc Typeset Hebrew with LaTeX. +relocated 1 +longdesc The cjhebrew package provides Adobe Type 1 fonts for Hebrew, +longdesc and LaTeX macros to support their use. Hebrew text can be +longdesc vocalised, and a few accents are also available. The package +longdesc makes it easy to include Hebrew text in other-language +longdesc documents. The package makes use of the e-TeX extensions to +longdesc TeX, so should be run using an "e-LaTeX". +execute addMap cjhebrew.map +runfiles size=27 + RELOC/fonts/afm/public/cjhebrew/cjheblsm.afm + RELOC/fonts/afm/public/cjhebrew/cjhebltx.afm + RELOC/fonts/enc/dvips/cjhebrew/cjhebltx.enc + RELOC/fonts/map/dvips/cjhebrew/cjhebrew.map + RELOC/fonts/tfm/public/cjhebrew/cjhblsm.tfm + RELOC/fonts/tfm/public/cjhebrew/cjhbltx.tfm + RELOC/fonts/tfm/public/cjhebrew/cjheblsm.tfm + RELOC/fonts/tfm/public/cjhebrew/cjhebltx.tfm + RELOC/fonts/tfm/public/cjhebrew/rcjhblsm.tfm + RELOC/fonts/tfm/public/cjhebrew/rcjhbltx.tfm + RELOC/fonts/type1/public/cjhebrew/cjheblsm.pfb + RELOC/fonts/type1/public/cjhebrew/cjhebltx.pfb + RELOC/fonts/vf/public/cjhebrew/cjhblsm.vf + RELOC/fonts/vf/public/cjhebrew/cjhbltx.vf + RELOC/tex/latex/cjhebrew/cjhebrew.sty +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-license lppl +catalogue-version 4.8.1-2 + +name cjk +category Package +revision 36951 +shortdesc CJK language support. +relocated 1 +longdesc CJK is a macro package for LaTeX, providing simultaneous +longdesc support for various Asian scripts in many encodings (including +longdesc Unicode): Chinese (both traditional and simplified), Japanese, +longdesc Korean and Thai. A special add-on feature is an interface to +longdesc the Emacs editor (cjk-enc.el) which gives simultaneous, 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 Vietnamese are supported. +depend arphic +depend cns +depend garuda-c90 +depend norasi-c90 +depend uhc +depend wadalab +runfiles size=294 + RELOC/tex/latex/cjk/contrib/wadalab/c42goth.fd + RELOC/tex/latex/cjk/contrib/wadalab/c42goth.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c42maru.fd + RELOC/tex/latex/cjk/contrib/wadalab/c42maru.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c42min.fd + RELOC/tex/latex/cjk/contrib/wadalab/c42min.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c52maru.fd + RELOC/tex/latex/cjk/contrib/wadalab/c52maru.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c52min.fd + RELOC/tex/latex/cjk/contrib/wadalab/c52min.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c70goth.fd + RELOC/tex/latex/cjk/contrib/wadalab/c70goth.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c70maru.fd + RELOC/tex/latex/cjk/contrib/wadalab/c70maru.fdx + RELOC/tex/latex/cjk/contrib/wadalab/c70min.fd + RELOC/tex/latex/cjk/contrib/wadalab/c70min.fdx + RELOC/tex/latex/cjk/texinput/Bg5/Bg5.cap + RELOC/tex/latex/cjk/texinput/Bg5/Bg5.chr + RELOC/tex/latex/cjk/texinput/Bg5/Bg5.cpx + RELOC/tex/latex/cjk/texinput/Bg5/Bg5.enc + RELOC/tex/latex/cjk/texinput/Bg5/HK.enc + RELOC/tex/latex/cjk/texinput/Bg5/c00bkai.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00bkai.fdx + RELOC/tex/latex/cjk/texinput/Bg5/c00bsmi.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00bsmi.fdx + RELOC/tex/latex/cjk/texinput/Bg5/c00bsmir.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00bsmir.fdx + RELOC/tex/latex/cjk/texinput/Bg5/c00cns.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00fs.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00kai.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00kair.fd + RELOC/tex/latex/cjk/texinput/Bg5/c00kair.fdx + RELOC/tex/latex/cjk/texinput/Bg5/c00song.fd + RELOC/tex/latex/cjk/texinput/Bg5/c01song.fd + RELOC/tex/latex/cjk/texinput/Bg5/c05song.fd + RELOC/tex/latex/cjk/texinput/Bg5/c09song.fd + RELOC/tex/latex/cjk/texinput/CEF/c80song.fd + RELOC/tex/latex/cjk/texinput/CEF/c81song.fd + RELOC/tex/latex/cjk/texinput/CJK.enc + RELOC/tex/latex/cjk/texinput/CJK.sty + RELOC/tex/latex/cjk/texinput/CJKfntef.sty + RELOC/tex/latex/cjk/texinput/CJKnumb.sty + RELOC/tex/latex/cjk/texinput/CJKspace.sty + RELOC/tex/latex/cjk/texinput/CJKulem.sty + RELOC/tex/latex/cjk/texinput/CJKutf8.sty + RELOC/tex/latex/cjk/texinput/CJKvert.sty + RELOC/tex/latex/cjk/texinput/CNS/EUC-TW.bdg + RELOC/tex/latex/cjk/texinput/CNS/EUC-TW.chr + RELOC/tex/latex/cjk/texinput/CNS/EUC-TW.enc + RELOC/tex/latex/cjk/texinput/CNS/c31song.fd + RELOC/tex/latex/cjk/texinput/CNS/c32song.fd + RELOC/tex/latex/cjk/texinput/CNS/c33song.fd + RELOC/tex/latex/cjk/texinput/CNS/c34song.fd + RELOC/tex/latex/cjk/texinput/CNS/c35song.fd + RELOC/tex/latex/cjk/texinput/CNS/c36song.fd + RELOC/tex/latex/cjk/texinput/CNS/c37song.fd + RELOC/tex/latex/cjk/texinput/GB/GB.cap + RELOC/tex/latex/cjk/texinput/GB/GB.cpx + RELOC/tex/latex/cjk/texinput/GB/c10fs.fd + RELOC/tex/latex/cjk/texinput/GB/c10gbsn.fd + RELOC/tex/latex/cjk/texinput/GB/c10gbsn.fdx + RELOC/tex/latex/cjk/texinput/GB/c10gkai.fd + RELOC/tex/latex/cjk/texinput/GB/c10gkai.fdx + RELOC/tex/latex/cjk/texinput/GB/c10song.fd + RELOC/tex/latex/cjk/texinput/GB/c11song.fd + RELOC/tex/latex/cjk/texinput/GB/c19song.fd + RELOC/tex/latex/cjk/texinput/GB/c20song.fd + RELOC/tex/latex/cjk/texinput/GB/c21song.fd + RELOC/tex/latex/cjk/texinput/JIS/EUC-JP.bdg + RELOC/tex/latex/cjk/texinput/JIS/EUC-JP.chr + RELOC/tex/latex/cjk/texinput/JIS/EUC-JP.enc + RELOC/tex/latex/cjk/texinput/JIS/EUC-JPdnp.enc + RELOC/tex/latex/cjk/texinput/JIS/JIS.cap + RELOC/tex/latex/cjk/texinput/JIS/JIS.cpx + RELOC/tex/latex/cjk/texinput/JIS/JISdnp.enc + RELOC/tex/latex/cjk/texinput/JIS/c40song.fd + RELOC/tex/latex/cjk/texinput/JIS/c41song.fd + RELOC/tex/latex/cjk/texinput/JIS/c42song.fd + RELOC/tex/latex/cjk/texinput/JIS/c43song.fd + RELOC/tex/latex/cjk/texinput/JIS/c50song.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/HLaTeX.chr + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/KSHL.enc + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63bm.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63dn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63gr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63gs.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63gt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63jgt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63jmj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63jnv.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63jsr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63mj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63pg.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63pga.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63ph.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63pn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63sh.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63tz.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63vd.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c63yt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64bm.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64dn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64gr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64gs.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64gt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64jgt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64jmj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64jnv.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64jsr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64mj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64pg.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64pga.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64ph.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64pn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64sh.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64tz.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64vd.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c64yt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65bm.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65dn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65gr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65gs.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65gt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65jgt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65jmj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65jnv.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65jsr.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65mj.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65pg.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65pga.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65ph.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65pn.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65sh.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65tz.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65vd.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/c65yt.fd + RELOC/tex/latex/cjk/texinput/KS/HLaTeX/pshan.sty + RELOC/tex/latex/cjk/texinput/KS/KS.chr + RELOC/tex/latex/cjk/texinput/KS/KS.enc + RELOC/tex/latex/cjk/texinput/KS/c60dr.fd + RELOC/tex/latex/cjk/texinput/KS/c60gr.fd + RELOC/tex/latex/cjk/texinput/KS/c60gs.fd + RELOC/tex/latex/cjk/texinput/KS/c60gt.fd + RELOC/tex/latex/cjk/texinput/KS/c60hgt.fd + RELOC/tex/latex/cjk/texinput/KS/c60hmj.fd + RELOC/tex/latex/cjk/texinput/KS/c60hol.fd + RELOC/tex/latex/cjk/texinput/KS/c60hpg.fd + RELOC/tex/latex/cjk/texinput/KS/c60mj.fd + RELOC/tex/latex/cjk/texinput/KS/c61dr.fd + RELOC/tex/latex/cjk/texinput/KS/c61gr.fd + RELOC/tex/latex/cjk/texinput/KS/c61gs.fd + RELOC/tex/latex/cjk/texinput/KS/c61gt.fd + RELOC/tex/latex/cjk/texinput/KS/c61hgt.fd + RELOC/tex/latex/cjk/texinput/KS/c61hmj.fd + RELOC/tex/latex/cjk/texinput/KS/c61hol.fd + RELOC/tex/latex/cjk/texinput/KS/c61hpg.fd + RELOC/tex/latex/cjk/texinput/KS/c61mj.fd + RELOC/tex/latex/cjk/texinput/KS/c62song.fd + RELOC/tex/latex/cjk/texinput/KS/hangul.cap + RELOC/tex/latex/cjk/texinput/KS/hangul.cpx + RELOC/tex/latex/cjk/texinput/KS/hangul2.cap + RELOC/tex/latex/cjk/texinput/KS/hangul2.cpx + RELOC/tex/latex/cjk/texinput/KS/hanja.cap + RELOC/tex/latex/cjk/texinput/KS/hanja.cpx + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.bdg + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.cap + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.chr + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.cpx + RELOC/tex/latex/cjk/texinput/SJIS/SJIS.enc + RELOC/tex/latex/cjk/texinput/SJIS/SJISdnp.chr + RELOC/tex/latex/cjk/texinput/SJIS/SJISdnp.enc + RELOC/tex/latex/cjk/texinput/SJIS/c49song.fd + RELOC/tex/latex/cjk/texinput/UTF8/UTF8.bdg + RELOC/tex/latex/cjk/texinput/UTF8/UTF8.chr + RELOC/tex/latex/cjk/texinput/UTF8/UTF8.enc + RELOC/tex/latex/cjk/texinput/UTF8/c70bkai.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70bkai.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70bsmi.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70bsmi.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70gbsn.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70gbsn.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70gkai.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70gkai.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70mj.fd + RELOC/tex/latex/cjk/texinput/UTF8/c70mj.fdx + RELOC/tex/latex/cjk/texinput/UTF8/c70song.fd + RELOC/tex/latex/cjk/texinput/UTF8/ja.cpx + RELOC/tex/latex/cjk/texinput/UTF8/ko-Hang.cpx + RELOC/tex/latex/cjk/texinput/UTF8/ko-Hang2.cpx + RELOC/tex/latex/cjk/texinput/UTF8/ko-Hani.cpx + RELOC/tex/latex/cjk/texinput/UTF8/zh-Hans.cpx + RELOC/tex/latex/cjk/texinput/UTF8/zh-Hant.cpx + RELOC/tex/latex/cjk/texinput/extended.chr + RELOC/tex/latex/cjk/texinput/extended.enc + RELOC/tex/latex/cjk/texinput/mule/MULEenc.sty + RELOC/tex/latex/cjk/texinput/pinyin.sty + RELOC/tex/latex/cjk/texinput/pmC.chr + RELOC/tex/latex/cjk/texinput/pmCbig.enc + RELOC/tex/latex/cjk/texinput/pmCsmall.enc + RELOC/tex/latex/cjk/texinput/ruby.sty + RELOC/tex/latex/cjk/texinput/standard.bdg + RELOC/tex/latex/cjk/texinput/standard.chr + RELOC/tex/latex/cjk/texinput/standard.enc + RELOC/tex/latex/cjk/texinput/thai/c90cmr.fd + RELOC/tex/latex/cjk/texinput/thai/c90cmss.fd + RELOC/tex/latex/cjk/texinput/thai/c90cmtt.fd + RELOC/tex/latex/cjk/texinput/thai/c90enc.def + RELOC/tex/latex/cjk/texinput/thai/c90gar.fd + RELOC/tex/latex/cjk/texinput/thai/c90nrsr.fd + RELOC/tex/latex/cjk/texinput/thai/thaicjk.ldf + RELOC/tex/latex/cjk/utils/pyhyphen/pinyin.ldf +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-ctan /language/chinese/CJK +catalogue-date 2015-04-18 16:38:29 +0200 +catalogue-license gpl +catalogue-version 4.8.4 + +name cjkutils +category TLCore +revision 37693 +depend cjkutils.ARCH +runfiles size=16 + texmf-dist/hbf2gf/README + texmf-dist/hbf2gf/b5ka12.cfg + texmf-dist/hbf2gf/b5kr12.cfg + texmf-dist/hbf2gf/b5so12.cfg + texmf-dist/hbf2gf/c1so12.cfg + texmf-dist/hbf2gf/c2so12.cfg + texmf-dist/hbf2gf/c3so12.cfg + texmf-dist/hbf2gf/c4so12.cfg + texmf-dist/hbf2gf/c5so12.cfg + texmf-dist/hbf2gf/c6so12.cfg + texmf-dist/hbf2gf/c7so12.cfg + texmf-dist/hbf2gf/csso12.cfg + texmf-dist/hbf2gf/gsfs14.cfg + texmf-dist/hbf2gf/j2so12.cfg + texmf-dist/hbf2gf/jsso12.cfg + texmf-dist/hbf2gf/ksso17.cfg +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 + +name cjkutils.i386-linux +category TLCore +revision 36924 +shortdesc i386-linux files of cjkutils +binfiles arch=i386-linux size=57 + bin/i386-linux/bg5+latex + bin/i386-linux/bg5+pdflatex + bin/i386-linux/bg5conv + bin/i386-linux/bg5latex + bin/i386-linux/bg5pdflatex + bin/i386-linux/cef5conv + bin/i386-linux/cef5latex + bin/i386-linux/cef5pdflatex + bin/i386-linux/cefconv + bin/i386-linux/ceflatex + bin/i386-linux/cefpdflatex + bin/i386-linux/cefsconv + bin/i386-linux/cefslatex + bin/i386-linux/cefspdflatex + bin/i386-linux/extconv + bin/i386-linux/gbklatex + bin/i386-linux/gbkpdflatex + bin/i386-linux/hbf2gf + bin/i386-linux/sjisconv + bin/i386-linux/sjislatex + bin/i386-linux/sjispdflatex + +name classics +category Package +revision 29018 +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 +docfiles size=55 + RELOC/doc/latex/classics/README + RELOC/doc/latex/classics/classics.pdf + RELOC/doc/latex/classics/classics.tex +catalogue-ctan /macros/latex/contrib/classics +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name classicthesis +category Package +revision 38304 +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 + RELOC/doc/latex/classicthesis/AMiede_Publications.bib + RELOC/doc/latex/classicthesis/Bibliography.bib + RELOC/doc/latex/classicthesis/CHANGES + RELOC/doc/latex/classicthesis/COPYING + RELOC/doc/latex/classicthesis/Chapters/Chapter01.tex + RELOC/doc/latex/classicthesis/Chapters/Chapter02.tex + RELOC/doc/latex/classicthesis/Chapters/Chapter03.tex + RELOC/doc/latex/classicthesis/Chapters/Chapter0A.tex + RELOC/doc/latex/classicthesis/ClassicThesis.pdf + RELOC/doc/latex/classicthesis/ClassicThesis.tcp + RELOC/doc/latex/classicthesis/ClassicThesis.tex + RELOC/doc/latex/classicthesis/ClassicThesis.tps + RELOC/doc/latex/classicthesis/Examples/classicthesis-article.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-article.tex + RELOC/doc/latex/classicthesis/Examples/classicthesis-book-xelatex.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-book-xelatex.tex + RELOC/doc/latex/classicthesis/Examples/classicthesis-book.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-book.tex + RELOC/doc/latex/classicthesis/Examples/classicthesis-cv.pdf + RELOC/doc/latex/classicthesis/Examples/classicthesis-cv.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Abstract.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Acknowledgments.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Bibliography.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Colophon.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Contents.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Declaration.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Dedication.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/DirtyTitlepage.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Publications.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Titleback.tex + RELOC/doc/latex/classicthesis/FrontBackmatter/Titlepage.tex + RELOC/doc/latex/classicthesis/LISTOFFILES + RELOC/doc/latex/classicthesis/README + 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 +catalogue-ctan /macros/latex/contrib/classicthesis +catalogue-date 2015-09-06 15:59:03 +0200 +catalogue-license gpl2 +catalogue-topics dissertation +catalogue-version 4.2 + +name classpack +category Package +revision 33101 +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 +docfiles size=158 + RELOC/doc/support/classpack/MANIFEST + RELOC/doc/support/classpack/README + RELOC/doc/support/classpack/classpack.pdf + RELOC/doc/support/classpack/db2bibtex.xsl + RELOC/doc/support/classpack/db2dtx.xsl + RELOC/doc/support/classpack/db2plaintext.xsl + RELOC/doc/support/classpack/decommentbbl.awk + RELOC/doc/support/classpack/doctexbook.dtd + RELOC/doc/support/classpack/getgis.sh + RELOC/doc/support/classpack/lppl.xml + RELOC/doc/support/classpack/prepost.xml + RELOC/doc/support/classpack/readme.xml + RELOC/doc/support/classpack/test.sh +srcfiles size=33 + RELOC/source/support/classpack/classpack.dtx + RELOC/source/support/classpack/classpack.ins +catalogue-ctan /support/classpack +catalogue-date 2014-03-06 12:57:31 +0100 +catalogue-license lppl1.3 +catalogue-version 0.77 + +name cleanthesis +category Package +revision 38221 +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 +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/bib-refs.bib + RELOC/doc/latex/cleanthesis/content/abstract.tex + RELOC/doc/latex/cleanthesis/content/acknowledgement.tex + RELOC/doc/latex/cleanthesis/content/chapter-concepts.tex + RELOC/doc/latex/cleanthesis/content/chapter-conclusion.tex + RELOC/doc/latex/cleanthesis/content/chapter-introduction.tex + RELOC/doc/latex/cleanthesis/content/chapter-related-work.tex + RELOC/doc/latex/cleanthesis/content/chapter-system.tex + RELOC/doc/latex/cleanthesis/content/colophon.tex + RELOC/doc/latex/cleanthesis/content/declaration.tex + RELOC/doc/latex/cleanthesis/content/titlepages.tex + RELOC/doc/latex/cleanthesis/doc/cleanthesis-doc.pdf + 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.tex +catalogue-ctan /macros/latex/contrib/cleanthesis +catalogue-date 2015-08-27 10:18:22 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation +catalogue-version 0.3.1 + +name clearsans +category Package +revision 34405 +shortdesc Clear Sans fonts with LaTeX support. +relocated 1 +longdesc Clear Sans was designed by Daniel Ratighan at Monotype under +longdesc the direction of the User Experience team at Intel's Open +longdesc Source Technology Center. Clear Sans is available in three +longdesc weights (regular, medium, and bold) with corresponding italics, +longdesc plus light and thin upright (without italics). Clear Sans has +longdesc minimized, unambiguous characters and slightly narrow +longdesc proportions, making it ideal for UI design. Its strong, +longdesc recognizable forms avoid distracting ambiguity, making Clear +longdesc Sans comfortable for reading short UI labels and long passages +longdesc in both screen and print. The fonts are available in both +longdesc TrueType and Type 1 formats. +execute addMap ClearSans.map +runfiles size=970 + RELOC/fonts/enc/dvips/clearsans/clr_er7w2x.enc + RELOC/fonts/enc/dvips/clearsans/clr_nrghxx.enc + RELOC/fonts/enc/dvips/clearsans/clr_y7ge35.enc + RELOC/fonts/enc/dvips/clearsans/clr_zjpm5y.enc + RELOC/fonts/map/dvips/clearsans/ClearSans.map + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-lf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-lf-ly1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-lf-ly1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-lf-ot1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-lf-t1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-lf-t1.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-lf-ts1--base.tfm + RELOC/fonts/tfm/intel/clearsans/ClearSans-lf-ts1.tfm + RELOC/fonts/truetype/intel/clearsans/ClearSans-Bold.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-BoldItalic.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Italic.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Light.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Medium.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-MediumItalic.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Regular.ttf + RELOC/fonts/truetype/intel/clearsans/ClearSans-Thin.ttf + RELOC/fonts/type1/intel/clearsans/ClearSans-Bold.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-BoldItalic.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Italic.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Light.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Medium.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-MediumItalic.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Regular.pfb + RELOC/fonts/type1/intel/clearsans/ClearSans-Thin.pfb + RELOC/fonts/vf/intel/clearsans/ClearSans-Bold-lf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Bold-lf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Bold-lf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Italic-lf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Italic-lf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Italic-lf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Light-lf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Light-lf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Light-lf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Medium-lf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Medium-lf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Medium-lf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-MediumItalic-lf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-MediumItalic-lf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Thin-lf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Thin-lf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-Thin-lf-ts1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-lf-ly1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-lf-t1.vf + RELOC/fonts/vf/intel/clearsans/ClearSans-lf-ts1.vf + RELOC/tex/latex/clearsans/ClearSans.sty + RELOC/tex/latex/clearsans/LY1ClearSans-LF.fd + RELOC/tex/latex/clearsans/LY1ClearSansLight-LF.fd + RELOC/tex/latex/clearsans/LY1ClearSansThin-LF.fd + RELOC/tex/latex/clearsans/OT1ClearSans-LF.fd + RELOC/tex/latex/clearsans/OT1ClearSansLight-LF.fd + RELOC/tex/latex/clearsans/OT1ClearSansThin-LF.fd + RELOC/tex/latex/clearsans/T1ClearSans-LF.fd + RELOC/tex/latex/clearsans/T1ClearSansLight-LF.fd + RELOC/tex/latex/clearsans/T1ClearSansThin-LF.fd + 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-license apache2 + +name clefval +category Package +revision 16549 +shortdesc Key/value support with a hash. +relocated 1 +longdesc This package provides only two macros viz. \TheKey and +longdesc \TheValue to define then use pairs of key/value and gives a +longdesc semblance of a hash. Syntax: \TheKey{key}{value} to define the +longdesc value associated to the key, does not produce text; +longdesc \TheValue{key} to return the value linked to the key. Both +longdesc arguments of \TheKey are 'moving' as LaTeX defines the term and +longdesc we have sometimes to protect them. +runfiles size=1 + RELOC/tex/latex/clefval/clefval.sty +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/example.tex + RELOC/doc/latex/clefval/exemple.pdf + RELOC/doc/latex/clefval/exemple.tex +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 +catalogue-ctan /macros/latex/contrib/clefval +catalogue-date 2012-06-22 12:24:33 +0200 +catalogue-license lppl +catalogue-version 0 + +name cleveref +category Package +revision 32513 +shortdesc Intelligent cross-referencing. +relocated 1 +longdesc The package enhances LaTeX's cross-referencing features, +longdesc allowing the format of references to be determined +longdesc automatically according to the type of reference. The formats +longdesc used may be customised in the preamble of a document; babel +longdesc support is available (though the choice of languages remains +longdesc limited: currently Danish, Dutch, English, French, German, +longdesc Italian, Norwegian, Russian, Spanish and Ukranian). The package +longdesc also offers a means of referencing a list of references, each +longdesc formatted according to its type. In such lists, it can collapse +longdesc sequences of numerically-consecutive labels to a reference +longdesc range. +runfiles size=83 + RELOC/tex/latex/cleveref/cleveref.sty +docfiles size=95 + RELOC/doc/latex/cleveref/README + RELOC/doc/latex/cleveref/cleveref.pdf +srcfiles size=140 + RELOC/source/latex/cleveref/cleveref.dtx + RELOC/source/latex/cleveref/cleveref.ins +catalogue-ctan /macros/latex/contrib/cleveref +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.19 + +name clipboard +category Package +revision 28876 +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. +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-license lppl1.3 +catalogue-version 0.2 + +name clock +category Package +revision 15878 +shortdesc Graphical and textual clocks for TeX and LaTeX. +relocated 1 +longdesc Features graphical clocks (with a classical 12h dial and two +longdesc hands) and text clocks (in 24h format) which can show system +longdesc time or any time the user desires. Works with both TeX and +longdesc LaTeX. The clock faces (appearances of the dial) are easily +longdesc expandable; the default uses a custom Metafont font. +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 +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/clockdoc.pdf + RELOC/doc/latex/clock/clockdoc.tex +catalogue-ctan /macros/latex/contrib/clock +catalogue-date 2012-06-25 23:32:47 +0200 +catalogue-license other-free + +name cloze +category Package +revision 37811 +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 + RELOC/doc/lualatex/cloze/README.md + RELOC/doc/lualatex/cloze/cloze.pdf +srcfiles size=16 + RELOC/source/lualatex/cloze/cloze.dtx + RELOC/source/lualatex/cloze/cloze.ins +catalogue-ctan /macros/luatex/latex/cloze +catalogue-date 2015-07-08 19:30:11 +0200 +catalogue-license lppl1.3 +catalogue-topics exam luatex +catalogue-version 1.0 + +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 clrscode +category Package +revision 15878 +shortdesc Typesets pseudocode as in Introduction to Algorithms. +relocated 1 +longdesc This package allows you to typeset pseudocode in the style of +longdesc Introduction to Algorithms, Second edition, by Cormen, +longdesc Leiserson, Rivest, and Stein. The package was written by the +longdesc authors. You use the commands the same way the package's author +longdesc did when writing the book, and your output will look just like +longdesc the pseudocode in the text. +runfiles size=3 + RELOC/tex/latex/clrscode/clrscode.sty +docfiles size=11 + RELOC/doc/latex/clrscode/README + RELOC/doc/latex/clrscode/clrscode.pdf +catalogue-ctan /macros/latex/contrib/clrscode +catalogue-date 2014-08-09 06:03:31 +0200 +catalogue-license lppl +catalogue-version 1.7 + +name cmap +category Package +revision 31477 +shortdesc Make PDF files searchable and copyable. +relocated 1 +longdesc The cmap package provides character map tables, which make PDF +longdesc files generated by pdfLaTeX both searchable and copy-able in +longdesc acrobat reader and other compliant PDF viewers. Encodings +longdesc supported are OT1, 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 +catalogue-license lppl +catalogue-version 1.0h + +name cmarrows +category Package +revision 24378 +shortdesc MetaPost arrows and braces in the Computer Modern style. +relocated 1 +longdesc This MetaPost package contains macros to draw arrows and braces +longdesc in the Computer Modern style. +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 + +name cmbright +category Package +revision 21107 +shortdesc Computer Modern Bright fonts. +relocated 1 +longdesc A family of sans serif fonts for TeX and LaTeX, based on Donald +longdesc Knuth's CM fonts. It comprises OT1, T1 and TS1 encoded text +longdesc fonts of various shapes as well as all the fonts necessary for +longdesc mathematical typesetting, including AMS symbols. This +longdesc collection provides all the necessary files for using the fonts +longdesc with LaTeX. A commercial-quality Adobe Type 1 version of these +longdesc fonts is available from Micropress. Free versions are +longdesc available, in the cm-super font bundle (the T1 and TS1 encoded +longdesc part of the set), and in the hfbright package (the OT1 encoded +longdesc part, and the maths fonts). +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 + +name cmcyr +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. +relocated 1 +longdesc The fonts are converted from Metafont sources of the Computer +longdesc Modern font families, using textrace. Supported encodings are: +longdesc T1 (Latin), T2A (Cyrillic), LGR (Greek) and TS1. The package +longdesc also includes Unicode virtual fonts for use with Omega. The +longdesc font set is not a replacement for any of the other Computer +longdesc Modern-based font sets (for example, cm-super for Latin and +longdesc Cyrillic, or cbgreek for Greek), since it is available at a +longdesc single size only; it offers a compact set for 'general' +longdesc working. The fonts themselves are encoded to external +longdesc standards, and virtual fonts are provided for use with TeX. +execute addMap cm-lgc.map +runfiles size=5154 + RELOC/fonts/afm/public/cm-lgc/fcmb6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmb6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmb8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmbc6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmbc6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmbc8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmbcce.afm + RELOC/fonts/afm/public/cm-lgc/fcmbce.afm + RELOC/fonts/afm/public/cm-lgc/fcmbcpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmbi6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmbi6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmbi8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmbice.afm + RELOC/fonts/afm/public/cm-lgc/fcmbij6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmbij6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmbij8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmbijce.afm + RELOC/fonts/afm/public/cm-lgc/fcmbijpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmbipg.afm + RELOC/fonts/afm/public/cm-lgc/fcmbpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmr6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmr6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmr8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmrc6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmrc6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmrc8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmrcce.afm + RELOC/fonts/afm/public/cm-lgc/fcmrce.afm + RELOC/fonts/afm/public/cm-lgc/fcmrcpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmri6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmri6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmri8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmrice.afm + RELOC/fonts/afm/public/cm-lgc/fcmrij6y.afm + RELOC/fonts/afm/public/cm-lgc/fcmrij6z.afm + RELOC/fonts/afm/public/cm-lgc/fcmrij8a.afm + RELOC/fonts/afm/public/cm-lgc/fcmrijce.afm + RELOC/fonts/afm/public/cm-lgc/fcmrijpg.afm + RELOC/fonts/afm/public/cm-lgc/fcmripg.afm + RELOC/fonts/afm/public/cm-lgc/fcmrpg.afm + RELOC/fonts/afm/public/cm-lgc/fcsb6y.afm + RELOC/fonts/afm/public/cm-lgc/fcsb6z.afm + RELOC/fonts/afm/public/cm-lgc/fcsb8a.afm + RELOC/fonts/afm/public/cm-lgc/fcsbce.afm + RELOC/fonts/afm/public/cm-lgc/fcsbo6y.afm + RELOC/fonts/afm/public/cm-lgc/fcsbo6z.afm + RELOC/fonts/afm/public/cm-lgc/fcsbo8a.afm + RELOC/fonts/afm/public/cm-lgc/fcsboce.afm + RELOC/fonts/afm/public/cm-lgc/fcsbopg.afm + RELOC/fonts/afm/public/cm-lgc/fcsbpg.afm + RELOC/fonts/afm/public/cm-lgc/fcsr6y.afm + RELOC/fonts/afm/public/cm-lgc/fcsr6z.afm + RELOC/fonts/afm/public/cm-lgc/fcsr8a.afm + RELOC/fonts/afm/public/cm-lgc/fcsrce.afm + RELOC/fonts/afm/public/cm-lgc/fcsro6y.afm + RELOC/fonts/afm/public/cm-lgc/fcsro6z.afm + RELOC/fonts/afm/public/cm-lgc/fcsro8a.afm + RELOC/fonts/afm/public/cm-lgc/fcsroce.afm + RELOC/fonts/afm/public/cm-lgc/fcsropg.afm + RELOC/fonts/afm/public/cm-lgc/fcsrpg.afm + RELOC/fonts/afm/public/cm-lgc/fctr6y.afm + RELOC/fonts/afm/public/cm-lgc/fctr6z.afm + RELOC/fonts/afm/public/cm-lgc/fctr8a.afm + RELOC/fonts/afm/public/cm-lgc/fctrc6y.afm + RELOC/fonts/afm/public/cm-lgc/fctrc6z.afm + RELOC/fonts/afm/public/cm-lgc/fctrc8a.afm + RELOC/fonts/afm/public/cm-lgc/fctrcce.afm + RELOC/fonts/afm/public/cm-lgc/fctrce.afm + RELOC/fonts/afm/public/cm-lgc/fctrcpg.afm + RELOC/fonts/afm/public/cm-lgc/fctri6y.afm + RELOC/fonts/afm/public/cm-lgc/fctri6z.afm + RELOC/fonts/afm/public/cm-lgc/fctri8a.afm + RELOC/fonts/afm/public/cm-lgc/fctrice.afm + RELOC/fonts/afm/public/cm-lgc/fctrij6y.afm + RELOC/fonts/afm/public/cm-lgc/fctrij6z.afm + RELOC/fonts/afm/public/cm-lgc/fctrij8a.afm + RELOC/fonts/afm/public/cm-lgc/fctrijce.afm + RELOC/fonts/afm/public/cm-lgc/fctrijpg.afm + RELOC/fonts/afm/public/cm-lgc/fctripg.afm + RELOC/fonts/afm/public/cm-lgc/fctrpg.afm + RELOC/fonts/enc/dvips/cm-lgc/8r-mod.enc + RELOC/fonts/map/dvips/cm-lgc/cm-lgc.map + RELOC/fonts/ofm/public/cm-lgc/fcmbcut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmbiut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmbout.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmbut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmbuut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmrcut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmriut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmrout.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmrut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcmruut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcsbout.ofm + RELOC/fonts/ofm/public/cm-lgc/fcsbut.ofm + RELOC/fonts/ofm/public/cm-lgc/fcsrout.ofm + RELOC/fonts/ofm/public/cm-lgc/fcsrut.ofm + RELOC/fonts/ofm/public/cm-lgc/fctrcut.ofm + RELOC/fonts/ofm/public/cm-lgc/fctriut.ofm + RELOC/fonts/ofm/public/cm-lgc/fctrout.ofm + RELOC/fonts/ofm/public/cm-lgc/fctrut.ofm + RELOC/fonts/ofm/public/cm-lgc/fctruut.ofm + RELOC/fonts/ovf/public/cm-lgc/fcmbcut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmbiut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmbout.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmbut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmbuut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmrcut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmriut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmrout.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmrut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcmruut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcsbout.ovf + RELOC/fonts/ovf/public/cm-lgc/fcsbut.ovf + RELOC/fonts/ovf/public/cm-lgc/fcsrout.ovf + RELOC/fonts/ovf/public/cm-lgc/fcsrut.ovf + RELOC/fonts/ovf/public/cm-lgc/fctrcut.ovf + RELOC/fonts/ovf/public/cm-lgc/fctriut.ovf + RELOC/fonts/ovf/public/cm-lgc/fctrout.ovf + RELOC/fonts/ovf/public/cm-lgc/fctrut.ovf + RELOC/fonts/ovf/public/cm-lgc/fctruut.ovf + RELOC/fonts/tfm/public/cm-lgc/fcmb6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmb8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbc8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbcce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbcgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbcpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbi8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbice.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbigr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbij8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbij8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbipg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbo8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmboc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmboce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbopg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbu8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbuce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbugr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbuj8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmbupg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmr8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrc8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrcce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrcgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrcpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmri8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrice.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrigr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrij8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrij8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmripg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmro8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmroc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmroce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmropg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmru8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmruce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrugr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmruj8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcmrupg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsb8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbo8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsboce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbopg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsbpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsr8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsrce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsrgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsro8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsroce.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsrogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsropg.tfm + RELOC/fonts/tfm/public/cm-lgc/fcsrpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctr8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrc8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrcce.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrce.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrcgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrcpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrgr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctri8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrice.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrigr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrij8a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrij8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctripg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctro8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctroc8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctroce.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrogr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctropg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrpg.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru6a.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru6y.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru6z.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru7k.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru7t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru8c.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctru8t.tfm + RELOC/fonts/tfm/public/cm-lgc/fctruce.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrugr.tfm + RELOC/fonts/tfm/public/cm-lgc/fctruj8r.tfm + RELOC/fonts/tfm/public/cm-lgc/fctrupg.tfm + RELOC/fonts/type1/public/cm-lgc/fcmb6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmb6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmb6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmb6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmb8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmb8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbc6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmbc6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbc6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmbc6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbc8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmbc8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbcce.inf + RELOC/fonts/type1/public/cm-lgc/fcmbcce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbce.inf + RELOC/fonts/type1/public/cm-lgc/fcmbce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbcpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmbcpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbi6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmbi6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbi6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmbi6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbi8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmbi8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbice.inf + RELOC/fonts/type1/public/cm-lgc/fcmbice.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbij6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmbij6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbij6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmbij6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbij8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmbij8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbijce.inf + RELOC/fonts/type1/public/cm-lgc/fcmbijce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbijpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmbijpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbipg.inf + RELOC/fonts/type1/public/cm-lgc/fcmbipg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmbpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmbpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmr6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmr6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmr6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmr6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmr8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmr8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrc6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmrc6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrc6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmrc6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrc8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmrc8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrcce.inf + RELOC/fonts/type1/public/cm-lgc/fcmrcce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrce.inf + RELOC/fonts/type1/public/cm-lgc/fcmrce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrcpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmrcpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmri6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmri6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmri6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmri6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmri8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmri8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrice.inf + RELOC/fonts/type1/public/cm-lgc/fcmrice.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrij6y.inf + RELOC/fonts/type1/public/cm-lgc/fcmrij6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrij6z.inf + RELOC/fonts/type1/public/cm-lgc/fcmrij6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrij8a.inf + RELOC/fonts/type1/public/cm-lgc/fcmrij8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrijce.inf + RELOC/fonts/type1/public/cm-lgc/fcmrijce.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrijpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmrijpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmripg.inf + RELOC/fonts/type1/public/cm-lgc/fcmripg.pfb + RELOC/fonts/type1/public/cm-lgc/fcmrpg.inf + RELOC/fonts/type1/public/cm-lgc/fcmrpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcsb6y.inf + RELOC/fonts/type1/public/cm-lgc/fcsb6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcsb6z.inf + RELOC/fonts/type1/public/cm-lgc/fcsb6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcsb8a.inf + RELOC/fonts/type1/public/cm-lgc/fcsb8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbce.inf + RELOC/fonts/type1/public/cm-lgc/fcsbce.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbo6y.inf + RELOC/fonts/type1/public/cm-lgc/fcsbo6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbo6z.inf + RELOC/fonts/type1/public/cm-lgc/fcsbo6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbo8a.inf + RELOC/fonts/type1/public/cm-lgc/fcsbo8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcsboce.inf + RELOC/fonts/type1/public/cm-lgc/fcsboce.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbopg.inf + RELOC/fonts/type1/public/cm-lgc/fcsbopg.pfb + RELOC/fonts/type1/public/cm-lgc/fcsbpg.inf + RELOC/fonts/type1/public/cm-lgc/fcsbpg.pfb + RELOC/fonts/type1/public/cm-lgc/fcsr6y.inf + RELOC/fonts/type1/public/cm-lgc/fcsr6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcsr6z.inf + RELOC/fonts/type1/public/cm-lgc/fcsr6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcsr8a.inf + RELOC/fonts/type1/public/cm-lgc/fcsr8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcsrce.inf + RELOC/fonts/type1/public/cm-lgc/fcsrce.pfb + RELOC/fonts/type1/public/cm-lgc/fcsro6y.inf + RELOC/fonts/type1/public/cm-lgc/fcsro6y.pfb + RELOC/fonts/type1/public/cm-lgc/fcsro6z.inf + RELOC/fonts/type1/public/cm-lgc/fcsro6z.pfb + RELOC/fonts/type1/public/cm-lgc/fcsro8a.inf + RELOC/fonts/type1/public/cm-lgc/fcsro8a.pfb + RELOC/fonts/type1/public/cm-lgc/fcsroce.inf + RELOC/fonts/type1/public/cm-lgc/fcsroce.pfb + RELOC/fonts/type1/public/cm-lgc/fcsropg.inf + RELOC/fonts/type1/public/cm-lgc/fcsropg.pfb + RELOC/fonts/type1/public/cm-lgc/fcsrpg.inf + RELOC/fonts/type1/public/cm-lgc/fcsrpg.pfb + RELOC/fonts/type1/public/cm-lgc/fctr6y.inf + RELOC/fonts/type1/public/cm-lgc/fctr6y.pfb + RELOC/fonts/type1/public/cm-lgc/fctr6z.inf + RELOC/fonts/type1/public/cm-lgc/fctr6z.pfb + RELOC/fonts/type1/public/cm-lgc/fctr8a.inf + RELOC/fonts/type1/public/cm-lgc/fctr8a.pfb + RELOC/fonts/type1/public/cm-lgc/fctrc6y.inf + RELOC/fonts/type1/public/cm-lgc/fctrc6y.pfb + RELOC/fonts/type1/public/cm-lgc/fctrc6z.inf + RELOC/fonts/type1/public/cm-lgc/fctrc6z.pfb + RELOC/fonts/type1/public/cm-lgc/fctrc8a.inf + RELOC/fonts/type1/public/cm-lgc/fctrc8a.pfb + RELOC/fonts/type1/public/cm-lgc/fctrcce.inf + RELOC/fonts/type1/public/cm-lgc/fctrcce.pfb + RELOC/fonts/type1/public/cm-lgc/fctrce.inf + RELOC/fonts/type1/public/cm-lgc/fctrce.pfb + RELOC/fonts/type1/public/cm-lgc/fctrcpg.inf + RELOC/fonts/type1/public/cm-lgc/fctrcpg.pfb + RELOC/fonts/type1/public/cm-lgc/fctri6y.inf + RELOC/fonts/type1/public/cm-lgc/fctri6y.pfb + RELOC/fonts/type1/public/cm-lgc/fctri6z.inf + RELOC/fonts/type1/public/cm-lgc/fctri6z.pfb + RELOC/fonts/type1/public/cm-lgc/fctri8a.inf + RELOC/fonts/type1/public/cm-lgc/fctri8a.pfb + RELOC/fonts/type1/public/cm-lgc/fctrice.inf + RELOC/fonts/type1/public/cm-lgc/fctrice.pfb + RELOC/fonts/type1/public/cm-lgc/fctrij6y.inf + RELOC/fonts/type1/public/cm-lgc/fctrij6y.pfb + RELOC/fonts/type1/public/cm-lgc/fctrij6z.inf + RELOC/fonts/type1/public/cm-lgc/fctrij6z.pfb + RELOC/fonts/type1/public/cm-lgc/fctrij8a.inf + RELOC/fonts/type1/public/cm-lgc/fctrij8a.pfb + RELOC/fonts/type1/public/cm-lgc/fctrijce.inf + RELOC/fonts/type1/public/cm-lgc/fctrijce.pfb + RELOC/fonts/type1/public/cm-lgc/fctrijpg.inf + RELOC/fonts/type1/public/cm-lgc/fctrijpg.pfb + RELOC/fonts/type1/public/cm-lgc/fctripg.inf + RELOC/fonts/type1/public/cm-lgc/fctripg.pfb + RELOC/fonts/type1/public/cm-lgc/fctrpg.inf + RELOC/fonts/type1/public/cm-lgc/fctrpg.pfb + RELOC/fonts/vf/public/cm-lgc/fcmb6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmb7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmb7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmb8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmb8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbc6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmbc7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmbc7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbc8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbcgr.vf + RELOC/fonts/vf/public/cm-lgc/fcmbgr.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmbi8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbigr.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmbo8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbogr.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmbu8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmbugr.vf + RELOC/fonts/vf/public/cm-lgc/fcmr6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmr7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmr7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmr8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmr8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrc6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmrc7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmrc7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrc8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrcgr.vf + RELOC/fonts/vf/public/cm-lgc/fcmrgr.vf + RELOC/fonts/vf/public/cm-lgc/fcmri6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmri7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmri7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmri8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmri8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrigr.vf + RELOC/fonts/vf/public/cm-lgc/fcmro6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmro7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmro7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmro8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmro8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrogr.vf + RELOC/fonts/vf/public/cm-lgc/fcmru6a.vf + RELOC/fonts/vf/public/cm-lgc/fcmru7k.vf + RELOC/fonts/vf/public/cm-lgc/fcmru7t.vf + RELOC/fonts/vf/public/cm-lgc/fcmru8c.vf + RELOC/fonts/vf/public/cm-lgc/fcmru8t.vf + RELOC/fonts/vf/public/cm-lgc/fcmrugr.vf + RELOC/fonts/vf/public/cm-lgc/fcsb6a.vf + RELOC/fonts/vf/public/cm-lgc/fcsb7k.vf + RELOC/fonts/vf/public/cm-lgc/fcsb7t.vf + RELOC/fonts/vf/public/cm-lgc/fcsb8c.vf + RELOC/fonts/vf/public/cm-lgc/fcsb8t.vf + RELOC/fonts/vf/public/cm-lgc/fcsbgr.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo6a.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo7k.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo7t.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo8c.vf + RELOC/fonts/vf/public/cm-lgc/fcsbo8t.vf + RELOC/fonts/vf/public/cm-lgc/fcsbogr.vf + RELOC/fonts/vf/public/cm-lgc/fcsr6a.vf + RELOC/fonts/vf/public/cm-lgc/fcsr7k.vf + RELOC/fonts/vf/public/cm-lgc/fcsr7t.vf + RELOC/fonts/vf/public/cm-lgc/fcsr8c.vf + RELOC/fonts/vf/public/cm-lgc/fcsr8t.vf + RELOC/fonts/vf/public/cm-lgc/fcsrgr.vf + RELOC/fonts/vf/public/cm-lgc/fcsro6a.vf + RELOC/fonts/vf/public/cm-lgc/fcsro7k.vf + RELOC/fonts/vf/public/cm-lgc/fcsro7t.vf + RELOC/fonts/vf/public/cm-lgc/fcsro8c.vf + RELOC/fonts/vf/public/cm-lgc/fcsro8t.vf + RELOC/fonts/vf/public/cm-lgc/fcsrogr.vf + RELOC/fonts/vf/public/cm-lgc/fctr6a.vf + RELOC/fonts/vf/public/cm-lgc/fctr7k.vf + RELOC/fonts/vf/public/cm-lgc/fctr7t.vf + RELOC/fonts/vf/public/cm-lgc/fctr8c.vf + RELOC/fonts/vf/public/cm-lgc/fctr8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrc6a.vf + RELOC/fonts/vf/public/cm-lgc/fctrc7k.vf + RELOC/fonts/vf/public/cm-lgc/fctrc7t.vf + RELOC/fonts/vf/public/cm-lgc/fctrc8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrcgr.vf + RELOC/fonts/vf/public/cm-lgc/fctrgr.vf + RELOC/fonts/vf/public/cm-lgc/fctri6a.vf + RELOC/fonts/vf/public/cm-lgc/fctri7k.vf + RELOC/fonts/vf/public/cm-lgc/fctri7t.vf + RELOC/fonts/vf/public/cm-lgc/fctri8c.vf + RELOC/fonts/vf/public/cm-lgc/fctri8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrigr.vf + RELOC/fonts/vf/public/cm-lgc/fctro6a.vf + RELOC/fonts/vf/public/cm-lgc/fctro7k.vf + RELOC/fonts/vf/public/cm-lgc/fctro7t.vf + RELOC/fonts/vf/public/cm-lgc/fctro8c.vf + RELOC/fonts/vf/public/cm-lgc/fctro8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrogr.vf + RELOC/fonts/vf/public/cm-lgc/fctru6a.vf + RELOC/fonts/vf/public/cm-lgc/fctru7k.vf + RELOC/fonts/vf/public/cm-lgc/fctru7t.vf + RELOC/fonts/vf/public/cm-lgc/fctru8c.vf + RELOC/fonts/vf/public/cm-lgc/fctru8t.vf + RELOC/fonts/vf/public/cm-lgc/fctrugr.vf + RELOC/tex/latex/cm-lgc/antcmlgc.sty + RELOC/tex/latex/cm-lgc/cmlgc.sty + RELOC/tex/latex/cm-lgc/lgrfcm.fd + RELOC/tex/latex/cm-lgc/lgrfcs.fd + RELOC/tex/latex/cm-lgc/lgrfct.fd + RELOC/tex/latex/cm-lgc/ot1fcm.fd + RELOC/tex/latex/cm-lgc/ot1fcs.fd + RELOC/tex/latex/cm-lgc/ot1fct.fd + RELOC/tex/latex/cm-lgc/ot2fcm.fd + RELOC/tex/latex/cm-lgc/ot2fcs.fd + RELOC/tex/latex/cm-lgc/ot2fct.fd + RELOC/tex/latex/cm-lgc/t1fcm.fd + RELOC/tex/latex/cm-lgc/t1fcs.fd + RELOC/tex/latex/cm-lgc/t1fct.fd + RELOC/tex/latex/cm-lgc/t2afcm.fd + RELOC/tex/latex/cm-lgc/t2afcs.fd + RELOC/tex/latex/cm-lgc/t2afct.fd + RELOC/tex/latex/cm-lgc/ts1fcm.fd + RELOC/tex/latex/cm-lgc/ts1fcs.fd + RELOC/tex/latex/cm-lgc/ts1fct.fd + RELOC/tex/latex/cm-lgc/ut1fcm.fd + RELOC/tex/latex/cm-lgc/ut1fcs.fd + RELOC/tex/latex/cm-lgc/ut1fct.fd +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-license gpl +catalogue-version 0.5 + +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 +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 + +name cm-super +category Package +revision 15878 +shortdesc CM-Super family of fonts +relocated 1 +longdesc The CM-Super family provides Adobe Type 1 fonts that replace +longdesc the T1/TS1-encoded Computer Modern (EC/TC), T1/TS1-encoded +longdesc Concrete, T1/TS1-encoded CM bright and LH Cyrillic fonts (thus +longdesc supporting all European languages except Greek), and bringing +longdesc many ameliorations in typesetting quality. The fonts exhibit +longdesc the same metrics as the Metafont-encoded originals. +execute addMixedMap cm-super-t1.map +execute addMixedMap cm-super-t2a.map +execute addMixedMap cm-super-t2b.map +execute addMixedMap cm-super-t2c.map +execute addMixedMap cm-super-ts1.map +execute addMixedMap cm-super-x2.map +runfiles size=17068 + RELOC/dvips/cm-super/cm-super.GS + RELOC/dvips/cm-super/config.cm-super + RELOC/fonts/afm/public/cm-super/isflb8.afm.gz + RELOC/fonts/afm/public/cm-super/isfli8.afm.gz + RELOC/fonts/afm/public/cm-super/isflo8.afm.gz + RELOC/fonts/afm/public/cm-super/isflq8.afm.gz + RELOC/fonts/afm/public/cm-super/isfltt8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbbx10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfbi3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfbl3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfbm3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmo10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmo17.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmo8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmo9.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmr10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmr17.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmr8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbmr9.afm.gz + RELOC/fonts/afm/public/cm-super/sfbso10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbso17.afm.gz + RELOC/fonts/afm/public/cm-super/sfbso8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbso9.afm.gz + RELOC/fonts/afm/public/cm-super/sfbsr10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbsr17.afm.gz + RELOC/fonts/afm/public/cm-super/sfbsr8.afm.gz + RELOC/fonts/afm/public/cm-super/sfbsr9.afm.gz + RELOC/fonts/afm/public/cm-super/sfbtl10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbto10.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfbx3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfcc3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfci0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfci1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfci2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfci2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfci2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfci3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfdh3583.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0500.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0600.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0700.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0800.afm.gz + RELOC/fonts/afm/public/cm-super/sffb0900.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1000.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1095.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1200.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1440.afm.gz + RELOC/fonts/afm/public/cm-super/sffb1728.afm.gz + RELOC/fonts/afm/public/cm-super/sffb2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfff0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfff1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfff1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfff1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfff1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfff2488.afm.gz + RELOC/fonts/afm/public/cm-super/sffi0900.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1000.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1095.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1200.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1440.afm.gz + RELOC/fonts/afm/public/cm-super/sffi1728.afm.gz + RELOC/fonts/afm/public/cm-super/sffi2074.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0500.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0600.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0700.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0800.afm.gz + RELOC/fonts/afm/public/cm-super/sffs0900.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1000.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1095.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1200.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1440.afm.gz + RELOC/fonts/afm/public/cm-super/sffs1728.afm.gz + RELOC/fonts/afm/public/cm-super/sffs2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfit0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfit0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfit1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfit2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfit2488.afm.gz + RELOC/fonts/afm/public/cm-super/sflb8.afm.gz + RELOC/fonts/afm/public/cm-super/sfli8.afm.gz + RELOC/fonts/afm/public/cm-super/sflo8.afm.gz + RELOC/fonts/afm/public/cm-super/sflq8.afm.gz + RELOC/fonts/afm/public/cm-super/sfltt8.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfoc3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfocc10.afm.gz + RELOC/fonts/afm/public/cm-super/sform10.afm.gz + RELOC/fonts/afm/public/cm-super/sform5.afm.gz + RELOC/fonts/afm/public/cm-super/sform6.afm.gz + RELOC/fonts/afm/public/cm-super/sform7.afm.gz + RELOC/fonts/afm/public/cm-super/sform8.afm.gz + RELOC/fonts/afm/public/cm-super/sform9.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl10.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl5.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl6.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl7.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl8.afm.gz + RELOC/fonts/afm/public/cm-super/sfosl9.afm.gz + RELOC/fonts/afm/public/cm-super/sfoti10.afm.gz + RELOC/fonts/afm/public/cm-super/sfqi8.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfrb3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfrm3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfsc3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfsi3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfsl3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfso0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfso1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfso2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfso2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfso2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfso3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsq8.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfss0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfss1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfss2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfss2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfss2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfss3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfssdc10.afm.gz + RELOC/fonts/afm/public/cm-super/sfst0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfst0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfst1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfst2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfst2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfst2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfst3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfsx3583.afm.gz + RELOC/fonts/afm/public/cm-super/sftc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sftc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sftc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sftc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sftc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sftc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sftc3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfti0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfti1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfti2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfti2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfti2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfti3583.afm.gz + RELOC/fonts/afm/public/cm-super/sftt0800.afm.gz + RELOC/fonts/afm/public/cm-super/sftt0900.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1000.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1095.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1200.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1440.afm.gz + RELOC/fonts/afm/public/cm-super/sftt1728.afm.gz + RELOC/fonts/afm/public/cm-super/sftt2074.afm.gz + RELOC/fonts/afm/public/cm-super/sftt2488.afm.gz + RELOC/fonts/afm/public/cm-super/sftt2986.afm.gz + RELOC/fonts/afm/public/cm-super/sftt3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfui0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfui1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfui2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfui2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfui2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfui3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfvi3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfvt3583.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0500.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0600.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0700.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0800.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc0900.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1000.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1095.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1200.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1440.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc1728.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc2074.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc2488.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc2986.afm.gz + RELOC/fonts/afm/public/cm-super/sfxc3583.afm.gz + RELOC/fonts/enc/dvips/cm-super/cm-super-t1.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-t2a.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-t2b.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-t2c.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-ts1.enc + RELOC/fonts/enc/dvips/cm-super/cm-super-x2.enc + RELOC/fonts/map/dvips/cm-super/cm-super-t1.map + RELOC/fonts/map/dvips/cm-super/cm-super-t2a.map + RELOC/fonts/map/dvips/cm-super/cm-super-t2b.map + RELOC/fonts/map/dvips/cm-super/cm-super-t2c.map + RELOC/fonts/map/dvips/cm-super/cm-super-ts1.map + RELOC/fonts/map/dvips/cm-super/cm-super-x2.map + RELOC/fonts/map/vtex/cm-super/cm-super-t1.ali + RELOC/fonts/map/vtex/cm-super/cm-super-t2a.ali + RELOC/fonts/map/vtex/cm-super/cm-super-t2b.ali + RELOC/fonts/map/vtex/cm-super/cm-super-t2c.ali + RELOC/fonts/map/vtex/cm-super/cm-super-ts1.ali + RELOC/fonts/map/vtex/cm-super/cm-super-x2.ali + RELOC/fonts/map/vtex/cm-super/cm-super.ali + RELOC/fonts/type1/public/cm-super/isflb8.pfb + RELOC/fonts/type1/public/cm-super/isfli8.pfb + RELOC/fonts/type1/public/cm-super/isflo8.pfb + RELOC/fonts/type1/public/cm-super/isflq8.pfb + RELOC/fonts/type1/public/cm-super/isfltt8.pfb + RELOC/fonts/type1/public/cm-super/sfbbx10.pfb + RELOC/fonts/type1/public/cm-super/sfbi0500.pfb + RELOC/fonts/type1/public/cm-super/sfbi0600.pfb + RELOC/fonts/type1/public/cm-super/sfbi0700.pfb + RELOC/fonts/type1/public/cm-super/sfbi0800.pfb + RELOC/fonts/type1/public/cm-super/sfbi0900.pfb + RELOC/fonts/type1/public/cm-super/sfbi1000.pfb + RELOC/fonts/type1/public/cm-super/sfbi1095.pfb + RELOC/fonts/type1/public/cm-super/sfbi1200.pfb + RELOC/fonts/type1/public/cm-super/sfbi1440.pfb + RELOC/fonts/type1/public/cm-super/sfbi1728.pfb + RELOC/fonts/type1/public/cm-super/sfbi2074.pfb + RELOC/fonts/type1/public/cm-super/sfbi2488.pfb + RELOC/fonts/type1/public/cm-super/sfbi2986.pfb + RELOC/fonts/type1/public/cm-super/sfbi3583.pfb + RELOC/fonts/type1/public/cm-super/sfbl0500.pfb + RELOC/fonts/type1/public/cm-super/sfbl0600.pfb + RELOC/fonts/type1/public/cm-super/sfbl0700.pfb + RELOC/fonts/type1/public/cm-super/sfbl0800.pfb + RELOC/fonts/type1/public/cm-super/sfbl0900.pfb + RELOC/fonts/type1/public/cm-super/sfbl1000.pfb + RELOC/fonts/type1/public/cm-super/sfbl1095.pfb + RELOC/fonts/type1/public/cm-super/sfbl1200.pfb + RELOC/fonts/type1/public/cm-super/sfbl1440.pfb + RELOC/fonts/type1/public/cm-super/sfbl1728.pfb + RELOC/fonts/type1/public/cm-super/sfbl2074.pfb + RELOC/fonts/type1/public/cm-super/sfbl2488.pfb + RELOC/fonts/type1/public/cm-super/sfbl2986.pfb + RELOC/fonts/type1/public/cm-super/sfbl3583.pfb + RELOC/fonts/type1/public/cm-super/sfbm0500.pfb + RELOC/fonts/type1/public/cm-super/sfbm0700.pfb + RELOC/fonts/type1/public/cm-super/sfbm0900.pfb + RELOC/fonts/type1/public/cm-super/sfbm1000.pfb + RELOC/fonts/type1/public/cm-super/sfbm1095.pfb + RELOC/fonts/type1/public/cm-super/sfbm1200.pfb + RELOC/fonts/type1/public/cm-super/sfbm1440.pfb + RELOC/fonts/type1/public/cm-super/sfbm1728.pfb + RELOC/fonts/type1/public/cm-super/sfbm2074.pfb + RELOC/fonts/type1/public/cm-super/sfbm2488.pfb + RELOC/fonts/type1/public/cm-super/sfbm2986.pfb + RELOC/fonts/type1/public/cm-super/sfbm3583.pfb + RELOC/fonts/type1/public/cm-super/sfbmo10.pfb + RELOC/fonts/type1/public/cm-super/sfbmo17.pfb + RELOC/fonts/type1/public/cm-super/sfbmo8.pfb + RELOC/fonts/type1/public/cm-super/sfbmo9.pfb + RELOC/fonts/type1/public/cm-super/sfbmr10.pfb + RELOC/fonts/type1/public/cm-super/sfbmr17.pfb + RELOC/fonts/type1/public/cm-super/sfbmr8.pfb + RELOC/fonts/type1/public/cm-super/sfbmr9.pfb + RELOC/fonts/type1/public/cm-super/sfbso10.pfb + RELOC/fonts/type1/public/cm-super/sfbso17.pfb + RELOC/fonts/type1/public/cm-super/sfbso8.pfb + RELOC/fonts/type1/public/cm-super/sfbso9.pfb + RELOC/fonts/type1/public/cm-super/sfbsr10.pfb + RELOC/fonts/type1/public/cm-super/sfbsr17.pfb + RELOC/fonts/type1/public/cm-super/sfbsr8.pfb + RELOC/fonts/type1/public/cm-super/sfbsr9.pfb + RELOC/fonts/type1/public/cm-super/sfbtl10.pfb + RELOC/fonts/type1/public/cm-super/sfbto10.pfb + RELOC/fonts/type1/public/cm-super/sfbx0500.pfb + RELOC/fonts/type1/public/cm-super/sfbx0600.pfb + RELOC/fonts/type1/public/cm-super/sfbx0700.pfb + RELOC/fonts/type1/public/cm-super/sfbx0800.pfb + RELOC/fonts/type1/public/cm-super/sfbx0900.pfb + RELOC/fonts/type1/public/cm-super/sfbx1000.pfb + RELOC/fonts/type1/public/cm-super/sfbx1095.pfb + RELOC/fonts/type1/public/cm-super/sfbx1200.pfb + RELOC/fonts/type1/public/cm-super/sfbx1440.pfb + RELOC/fonts/type1/public/cm-super/sfbx1728.pfb + RELOC/fonts/type1/public/cm-super/sfbx2074.pfb + RELOC/fonts/type1/public/cm-super/sfbx2488.pfb + RELOC/fonts/type1/public/cm-super/sfbx2986.pfb + RELOC/fonts/type1/public/cm-super/sfbx3583.pfb + RELOC/fonts/type1/public/cm-super/sfcc0500.pfb + RELOC/fonts/type1/public/cm-super/sfcc0600.pfb + RELOC/fonts/type1/public/cm-super/sfcc0700.pfb + RELOC/fonts/type1/public/cm-super/sfcc0800.pfb + RELOC/fonts/type1/public/cm-super/sfcc0900.pfb + RELOC/fonts/type1/public/cm-super/sfcc1000.pfb + RELOC/fonts/type1/public/cm-super/sfcc1095.pfb + RELOC/fonts/type1/public/cm-super/sfcc1200.pfb + RELOC/fonts/type1/public/cm-super/sfcc1440.pfb + RELOC/fonts/type1/public/cm-super/sfcc1728.pfb + RELOC/fonts/type1/public/cm-super/sfcc2074.pfb + RELOC/fonts/type1/public/cm-super/sfcc2488.pfb + RELOC/fonts/type1/public/cm-super/sfcc2986.pfb + RELOC/fonts/type1/public/cm-super/sfcc3583.pfb + RELOC/fonts/type1/public/cm-super/sfci0500.pfb + RELOC/fonts/type1/public/cm-super/sfci0600.pfb + RELOC/fonts/type1/public/cm-super/sfci0700.pfb + RELOC/fonts/type1/public/cm-super/sfci0800.pfb + RELOC/fonts/type1/public/cm-super/sfci0900.pfb + RELOC/fonts/type1/public/cm-super/sfci1000.pfb + RELOC/fonts/type1/public/cm-super/sfci1095.pfb + RELOC/fonts/type1/public/cm-super/sfci1200.pfb + RELOC/fonts/type1/public/cm-super/sfci1440.pfb + RELOC/fonts/type1/public/cm-super/sfci1728.pfb + RELOC/fonts/type1/public/cm-super/sfci2074.pfb + RELOC/fonts/type1/public/cm-super/sfci2488.pfb + RELOC/fonts/type1/public/cm-super/sfci2986.pfb + RELOC/fonts/type1/public/cm-super/sfci3583.pfb + RELOC/fonts/type1/public/cm-super/sfdh0500.pfb + RELOC/fonts/type1/public/cm-super/sfdh0600.pfb + RELOC/fonts/type1/public/cm-super/sfdh0700.pfb + RELOC/fonts/type1/public/cm-super/sfdh0800.pfb + RELOC/fonts/type1/public/cm-super/sfdh0900.pfb + RELOC/fonts/type1/public/cm-super/sfdh1000.pfb + RELOC/fonts/type1/public/cm-super/sfdh1095.pfb + RELOC/fonts/type1/public/cm-super/sfdh1200.pfb + RELOC/fonts/type1/public/cm-super/sfdh1440.pfb + RELOC/fonts/type1/public/cm-super/sfdh1728.pfb + RELOC/fonts/type1/public/cm-super/sfdh2074.pfb + RELOC/fonts/type1/public/cm-super/sfdh2488.pfb + RELOC/fonts/type1/public/cm-super/sfdh2986.pfb + RELOC/fonts/type1/public/cm-super/sfdh3583.pfb + RELOC/fonts/type1/public/cm-super/sffb0500.pfb + RELOC/fonts/type1/public/cm-super/sffb0600.pfb + RELOC/fonts/type1/public/cm-super/sffb0700.pfb + RELOC/fonts/type1/public/cm-super/sffb0800.pfb + RELOC/fonts/type1/public/cm-super/sffb0900.pfb + RELOC/fonts/type1/public/cm-super/sffb1000.pfb + RELOC/fonts/type1/public/cm-super/sffb1095.pfb + RELOC/fonts/type1/public/cm-super/sffb1200.pfb + RELOC/fonts/type1/public/cm-super/sffb1440.pfb + RELOC/fonts/type1/public/cm-super/sffb1728.pfb + RELOC/fonts/type1/public/cm-super/sffb2074.pfb + RELOC/fonts/type1/public/cm-super/sfff0900.pfb + RELOC/fonts/type1/public/cm-super/sfff1000.pfb + RELOC/fonts/type1/public/cm-super/sfff1095.pfb + RELOC/fonts/type1/public/cm-super/sfff1200.pfb + RELOC/fonts/type1/public/cm-super/sfff1440.pfb + RELOC/fonts/type1/public/cm-super/sfff2488.pfb + RELOC/fonts/type1/public/cm-super/sffi0900.pfb + RELOC/fonts/type1/public/cm-super/sffi1000.pfb + RELOC/fonts/type1/public/cm-super/sffi1095.pfb + RELOC/fonts/type1/public/cm-super/sffi1200.pfb + RELOC/fonts/type1/public/cm-super/sffi1440.pfb + RELOC/fonts/type1/public/cm-super/sffi1728.pfb + RELOC/fonts/type1/public/cm-super/sffi2074.pfb + RELOC/fonts/type1/public/cm-super/sffs0500.pfb + RELOC/fonts/type1/public/cm-super/sffs0600.pfb + RELOC/fonts/type1/public/cm-super/sffs0700.pfb + RELOC/fonts/type1/public/cm-super/sffs0800.pfb + RELOC/fonts/type1/public/cm-super/sffs0900.pfb + RELOC/fonts/type1/public/cm-super/sffs1000.pfb + RELOC/fonts/type1/public/cm-super/sffs1095.pfb + RELOC/fonts/type1/public/cm-super/sffs1200.pfb + RELOC/fonts/type1/public/cm-super/sffs1440.pfb + RELOC/fonts/type1/public/cm-super/sffs1728.pfb + RELOC/fonts/type1/public/cm-super/sffs2074.pfb + RELOC/fonts/type1/public/cm-super/sfit0800.pfb + RELOC/fonts/type1/public/cm-super/sfit0900.pfb + RELOC/fonts/type1/public/cm-super/sfit1000.pfb + RELOC/fonts/type1/public/cm-super/sfit1095.pfb + RELOC/fonts/type1/public/cm-super/sfit1200.pfb + RELOC/fonts/type1/public/cm-super/sfit1440.pfb + RELOC/fonts/type1/public/cm-super/sfit1728.pfb + RELOC/fonts/type1/public/cm-super/sfit2074.pfb + RELOC/fonts/type1/public/cm-super/sfit2488.pfb + RELOC/fonts/type1/public/cm-super/sflb8.pfb + RELOC/fonts/type1/public/cm-super/sfli8.pfb + RELOC/fonts/type1/public/cm-super/sflo8.pfb + RELOC/fonts/type1/public/cm-super/sflq8.pfb + RELOC/fonts/type1/public/cm-super/sfltt8.pfb + RELOC/fonts/type1/public/cm-super/sfoc0500.pfb + RELOC/fonts/type1/public/cm-super/sfoc0600.pfb + RELOC/fonts/type1/public/cm-super/sfoc0700.pfb + RELOC/fonts/type1/public/cm-super/sfoc0800.pfb + RELOC/fonts/type1/public/cm-super/sfoc0900.pfb + RELOC/fonts/type1/public/cm-super/sfoc1000.pfb + RELOC/fonts/type1/public/cm-super/sfoc1095.pfb + RELOC/fonts/type1/public/cm-super/sfoc1200.pfb + RELOC/fonts/type1/public/cm-super/sfoc1440.pfb + RELOC/fonts/type1/public/cm-super/sfoc1728.pfb + RELOC/fonts/type1/public/cm-super/sfoc2074.pfb + RELOC/fonts/type1/public/cm-super/sfoc2488.pfb + RELOC/fonts/type1/public/cm-super/sfoc2986.pfb + RELOC/fonts/type1/public/cm-super/sfoc3583.pfb + RELOC/fonts/type1/public/cm-super/sfocc10.pfb + RELOC/fonts/type1/public/cm-super/sform10.pfb + RELOC/fonts/type1/public/cm-super/sform5.pfb + RELOC/fonts/type1/public/cm-super/sform6.pfb + RELOC/fonts/type1/public/cm-super/sform7.pfb + RELOC/fonts/type1/public/cm-super/sform8.pfb + RELOC/fonts/type1/public/cm-super/sform9.pfb + RELOC/fonts/type1/public/cm-super/sfosl10.pfb + RELOC/fonts/type1/public/cm-super/sfosl5.pfb + RELOC/fonts/type1/public/cm-super/sfosl6.pfb + RELOC/fonts/type1/public/cm-super/sfosl7.pfb + RELOC/fonts/type1/public/cm-super/sfosl8.pfb + RELOC/fonts/type1/public/cm-super/sfosl9.pfb + RELOC/fonts/type1/public/cm-super/sfoti10.pfb + RELOC/fonts/type1/public/cm-super/sfqi8.pfb + RELOC/fonts/type1/public/cm-super/sfrb0500.pfb + RELOC/fonts/type1/public/cm-super/sfrb0600.pfb + RELOC/fonts/type1/public/cm-super/sfrb0700.pfb + RELOC/fonts/type1/public/cm-super/sfrb0800.pfb + RELOC/fonts/type1/public/cm-super/sfrb0900.pfb + RELOC/fonts/type1/public/cm-super/sfrb1000.pfb + RELOC/fonts/type1/public/cm-super/sfrb1095.pfb + RELOC/fonts/type1/public/cm-super/sfrb1200.pfb + RELOC/fonts/type1/public/cm-super/sfrb1440.pfb + RELOC/fonts/type1/public/cm-super/sfrb1728.pfb + RELOC/fonts/type1/public/cm-super/sfrb2074.pfb + RELOC/fonts/type1/public/cm-super/sfrb2488.pfb + RELOC/fonts/type1/public/cm-super/sfrb2986.pfb + RELOC/fonts/type1/public/cm-super/sfrb3583.pfb + RELOC/fonts/type1/public/cm-super/sfrm0500.pfb + RELOC/fonts/type1/public/cm-super/sfrm0600.pfb + RELOC/fonts/type1/public/cm-super/sfrm0700.pfb + RELOC/fonts/type1/public/cm-super/sfrm0800.pfb + RELOC/fonts/type1/public/cm-super/sfrm0900.pfb + RELOC/fonts/type1/public/cm-super/sfrm1000.pfb + RELOC/fonts/type1/public/cm-super/sfrm1095.pfb + RELOC/fonts/type1/public/cm-super/sfrm1200.pfb + RELOC/fonts/type1/public/cm-super/sfrm1440.pfb + RELOC/fonts/type1/public/cm-super/sfrm1728.pfb + RELOC/fonts/type1/public/cm-super/sfrm2074.pfb + RELOC/fonts/type1/public/cm-super/sfrm2488.pfb + RELOC/fonts/type1/public/cm-super/sfrm2986.pfb + RELOC/fonts/type1/public/cm-super/sfrm3583.pfb + RELOC/fonts/type1/public/cm-super/sfsc0500.pfb + RELOC/fonts/type1/public/cm-super/sfsc0600.pfb + RELOC/fonts/type1/public/cm-super/sfsc0700.pfb + RELOC/fonts/type1/public/cm-super/sfsc0800.pfb + RELOC/fonts/type1/public/cm-super/sfsc0900.pfb + RELOC/fonts/type1/public/cm-super/sfsc1000.pfb + RELOC/fonts/type1/public/cm-super/sfsc1095.pfb + RELOC/fonts/type1/public/cm-super/sfsc1200.pfb + RELOC/fonts/type1/public/cm-super/sfsc1440.pfb + RELOC/fonts/type1/public/cm-super/sfsc1728.pfb + RELOC/fonts/type1/public/cm-super/sfsc2074.pfb + RELOC/fonts/type1/public/cm-super/sfsc2488.pfb + RELOC/fonts/type1/public/cm-super/sfsc2986.pfb + RELOC/fonts/type1/public/cm-super/sfsc3583.pfb + RELOC/fonts/type1/public/cm-super/sfsi0500.pfb + RELOC/fonts/type1/public/cm-super/sfsi0600.pfb + RELOC/fonts/type1/public/cm-super/sfsi0700.pfb + RELOC/fonts/type1/public/cm-super/sfsi0800.pfb + RELOC/fonts/type1/public/cm-super/sfsi0900.pfb + RELOC/fonts/type1/public/cm-super/sfsi1000.pfb + RELOC/fonts/type1/public/cm-super/sfsi1095.pfb + RELOC/fonts/type1/public/cm-super/sfsi1200.pfb + RELOC/fonts/type1/public/cm-super/sfsi1440.pfb + RELOC/fonts/type1/public/cm-super/sfsi1728.pfb + RELOC/fonts/type1/public/cm-super/sfsi2074.pfb + RELOC/fonts/type1/public/cm-super/sfsi2488.pfb + RELOC/fonts/type1/public/cm-super/sfsi2986.pfb + RELOC/fonts/type1/public/cm-super/sfsi3583.pfb + RELOC/fonts/type1/public/cm-super/sfsl0500.pfb + RELOC/fonts/type1/public/cm-super/sfsl0600.pfb + RELOC/fonts/type1/public/cm-super/sfsl0700.pfb + RELOC/fonts/type1/public/cm-super/sfsl0800.pfb + RELOC/fonts/type1/public/cm-super/sfsl0900.pfb + RELOC/fonts/type1/public/cm-super/sfsl1000.pfb + RELOC/fonts/type1/public/cm-super/sfsl1095.pfb + RELOC/fonts/type1/public/cm-super/sfsl1200.pfb + RELOC/fonts/type1/public/cm-super/sfsl1440.pfb + RELOC/fonts/type1/public/cm-super/sfsl1728.pfb + RELOC/fonts/type1/public/cm-super/sfsl2074.pfb + RELOC/fonts/type1/public/cm-super/sfsl2488.pfb + RELOC/fonts/type1/public/cm-super/sfsl2986.pfb + RELOC/fonts/type1/public/cm-super/sfsl3583.pfb + RELOC/fonts/type1/public/cm-super/sfso0500.pfb + RELOC/fonts/type1/public/cm-super/sfso0600.pfb + RELOC/fonts/type1/public/cm-super/sfso0700.pfb + RELOC/fonts/type1/public/cm-super/sfso0800.pfb + RELOC/fonts/type1/public/cm-super/sfso0900.pfb + RELOC/fonts/type1/public/cm-super/sfso1000.pfb + RELOC/fonts/type1/public/cm-super/sfso1095.pfb + RELOC/fonts/type1/public/cm-super/sfso1200.pfb + RELOC/fonts/type1/public/cm-super/sfso1440.pfb + RELOC/fonts/type1/public/cm-super/sfso1728.pfb + RELOC/fonts/type1/public/cm-super/sfso2074.pfb + RELOC/fonts/type1/public/cm-super/sfso2488.pfb + RELOC/fonts/type1/public/cm-super/sfso2986.pfb + RELOC/fonts/type1/public/cm-super/sfso3583.pfb + RELOC/fonts/type1/public/cm-super/sfsq8.pfb + RELOC/fonts/type1/public/cm-super/sfss0500.pfb + RELOC/fonts/type1/public/cm-super/sfss0600.pfb + RELOC/fonts/type1/public/cm-super/sfss0700.pfb + RELOC/fonts/type1/public/cm-super/sfss0800.pfb + RELOC/fonts/type1/public/cm-super/sfss0900.pfb + RELOC/fonts/type1/public/cm-super/sfss1000.pfb + RELOC/fonts/type1/public/cm-super/sfss1095.pfb + RELOC/fonts/type1/public/cm-super/sfss1200.pfb + RELOC/fonts/type1/public/cm-super/sfss1440.pfb + RELOC/fonts/type1/public/cm-super/sfss1728.pfb + RELOC/fonts/type1/public/cm-super/sfss2074.pfb + RELOC/fonts/type1/public/cm-super/sfss2488.pfb + RELOC/fonts/type1/public/cm-super/sfss2986.pfb + RELOC/fonts/type1/public/cm-super/sfss3583.pfb + RELOC/fonts/type1/public/cm-super/sfssdc10.pfb + RELOC/fonts/type1/public/cm-super/sfst0800.pfb + RELOC/fonts/type1/public/cm-super/sfst0900.pfb + RELOC/fonts/type1/public/cm-super/sfst1000.pfb + RELOC/fonts/type1/public/cm-super/sfst1095.pfb + RELOC/fonts/type1/public/cm-super/sfst1200.pfb + RELOC/fonts/type1/public/cm-super/sfst1440.pfb + RELOC/fonts/type1/public/cm-super/sfst1728.pfb + RELOC/fonts/type1/public/cm-super/sfst2074.pfb + RELOC/fonts/type1/public/cm-super/sfst2488.pfb + RELOC/fonts/type1/public/cm-super/sfst2986.pfb + RELOC/fonts/type1/public/cm-super/sfst3583.pfb + RELOC/fonts/type1/public/cm-super/sfsx0500.pfb + RELOC/fonts/type1/public/cm-super/sfsx0600.pfb + RELOC/fonts/type1/public/cm-super/sfsx0700.pfb + RELOC/fonts/type1/public/cm-super/sfsx0800.pfb + RELOC/fonts/type1/public/cm-super/sfsx0900.pfb + RELOC/fonts/type1/public/cm-super/sfsx1000.pfb + RELOC/fonts/type1/public/cm-super/sfsx1095.pfb + RELOC/fonts/type1/public/cm-super/sfsx1200.pfb + RELOC/fonts/type1/public/cm-super/sfsx1440.pfb + RELOC/fonts/type1/public/cm-super/sfsx1728.pfb + RELOC/fonts/type1/public/cm-super/sfsx2074.pfb + RELOC/fonts/type1/public/cm-super/sfsx2488.pfb + RELOC/fonts/type1/public/cm-super/sfsx2986.pfb + RELOC/fonts/type1/public/cm-super/sfsx3583.pfb + RELOC/fonts/type1/public/cm-super/sftc0800.pfb + RELOC/fonts/type1/public/cm-super/sftc0900.pfb + RELOC/fonts/type1/public/cm-super/sftc1000.pfb + RELOC/fonts/type1/public/cm-super/sftc1095.pfb + RELOC/fonts/type1/public/cm-super/sftc1200.pfb + RELOC/fonts/type1/public/cm-super/sftc1440.pfb + RELOC/fonts/type1/public/cm-super/sftc1728.pfb + RELOC/fonts/type1/public/cm-super/sftc2074.pfb + RELOC/fonts/type1/public/cm-super/sftc2488.pfb + RELOC/fonts/type1/public/cm-super/sftc2986.pfb + RELOC/fonts/type1/public/cm-super/sftc3583.pfb + RELOC/fonts/type1/public/cm-super/sfti0500.pfb + RELOC/fonts/type1/public/cm-super/sfti0600.pfb + RELOC/fonts/type1/public/cm-super/sfti0700.pfb + RELOC/fonts/type1/public/cm-super/sfti0800.pfb + RELOC/fonts/type1/public/cm-super/sfti0900.pfb + RELOC/fonts/type1/public/cm-super/sfti1000.pfb + RELOC/fonts/type1/public/cm-super/sfti1095.pfb + RELOC/fonts/type1/public/cm-super/sfti1200.pfb + RELOC/fonts/type1/public/cm-super/sfti1440.pfb + RELOC/fonts/type1/public/cm-super/sfti1728.pfb + RELOC/fonts/type1/public/cm-super/sfti2074.pfb + RELOC/fonts/type1/public/cm-super/sfti2488.pfb + RELOC/fonts/type1/public/cm-super/sfti2986.pfb + RELOC/fonts/type1/public/cm-super/sfti3583.pfb + RELOC/fonts/type1/public/cm-super/sftt0800.pfb + RELOC/fonts/type1/public/cm-super/sftt0900.pfb + RELOC/fonts/type1/public/cm-super/sftt1000.pfb + RELOC/fonts/type1/public/cm-super/sftt1095.pfb + RELOC/fonts/type1/public/cm-super/sftt1200.pfb + RELOC/fonts/type1/public/cm-super/sftt1440.pfb + RELOC/fonts/type1/public/cm-super/sftt1728.pfb + RELOC/fonts/type1/public/cm-super/sftt2074.pfb + RELOC/fonts/type1/public/cm-super/sftt2488.pfb + RELOC/fonts/type1/public/cm-super/sftt2986.pfb + RELOC/fonts/type1/public/cm-super/sftt3583.pfb + RELOC/fonts/type1/public/cm-super/sfui0500.pfb + RELOC/fonts/type1/public/cm-super/sfui0600.pfb + RELOC/fonts/type1/public/cm-super/sfui0700.pfb + RELOC/fonts/type1/public/cm-super/sfui0800.pfb + RELOC/fonts/type1/public/cm-super/sfui0900.pfb + RELOC/fonts/type1/public/cm-super/sfui1000.pfb + RELOC/fonts/type1/public/cm-super/sfui1095.pfb + RELOC/fonts/type1/public/cm-super/sfui1200.pfb + RELOC/fonts/type1/public/cm-super/sfui1440.pfb + RELOC/fonts/type1/public/cm-super/sfui1728.pfb + RELOC/fonts/type1/public/cm-super/sfui2074.pfb + RELOC/fonts/type1/public/cm-super/sfui2488.pfb + RELOC/fonts/type1/public/cm-super/sfui2986.pfb + RELOC/fonts/type1/public/cm-super/sfui3583.pfb + RELOC/fonts/type1/public/cm-super/sfvi0800.pfb + RELOC/fonts/type1/public/cm-super/sfvi0900.pfb + RELOC/fonts/type1/public/cm-super/sfvi1000.pfb + RELOC/fonts/type1/public/cm-super/sfvi1095.pfb + RELOC/fonts/type1/public/cm-super/sfvi1200.pfb + RELOC/fonts/type1/public/cm-super/sfvi1440.pfb + RELOC/fonts/type1/public/cm-super/sfvi1728.pfb + RELOC/fonts/type1/public/cm-super/sfvi2074.pfb + RELOC/fonts/type1/public/cm-super/sfvi2488.pfb + RELOC/fonts/type1/public/cm-super/sfvi2986.pfb + RELOC/fonts/type1/public/cm-super/sfvi3583.pfb + RELOC/fonts/type1/public/cm-super/sfvt0800.pfb + RELOC/fonts/type1/public/cm-super/sfvt0900.pfb + RELOC/fonts/type1/public/cm-super/sfvt1000.pfb + RELOC/fonts/type1/public/cm-super/sfvt1095.pfb + RELOC/fonts/type1/public/cm-super/sfvt1200.pfb + RELOC/fonts/type1/public/cm-super/sfvt1440.pfb + RELOC/fonts/type1/public/cm-super/sfvt1728.pfb + RELOC/fonts/type1/public/cm-super/sfvt2074.pfb + RELOC/fonts/type1/public/cm-super/sfvt2488.pfb + RELOC/fonts/type1/public/cm-super/sfvt2986.pfb + RELOC/fonts/type1/public/cm-super/sfvt3583.pfb + RELOC/fonts/type1/public/cm-super/sfxc0500.pfb + RELOC/fonts/type1/public/cm-super/sfxc0600.pfb + RELOC/fonts/type1/public/cm-super/sfxc0700.pfb + RELOC/fonts/type1/public/cm-super/sfxc0800.pfb + RELOC/fonts/type1/public/cm-super/sfxc0900.pfb + RELOC/fonts/type1/public/cm-super/sfxc1000.pfb + RELOC/fonts/type1/public/cm-super/sfxc1095.pfb + RELOC/fonts/type1/public/cm-super/sfxc1200.pfb + RELOC/fonts/type1/public/cm-super/sfxc1440.pfb + RELOC/fonts/type1/public/cm-super/sfxc1728.pfb + RELOC/fonts/type1/public/cm-super/sfxc2074.pfb + RELOC/fonts/type1/public/cm-super/sfxc2488.pfb + RELOC/fonts/type1/public/cm-super/sfxc2986.pfb + RELOC/fonts/type1/public/cm-super/sfxc3583.pfb + RELOC/tex/latex/cm-super/type1ec.sty +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-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 + +name cm-unicode +category Package +revision 19445 +shortdesc Computer Modern Unicode font family. +relocated 1 +longdesc Computer Modern Unicode fonts, converted from Metafont sources +longdesc using mftrace with autotrace backend and fontforge. Some +longdesc characters in several fonts are copied from Blue Sky type 1 +longdesc fonts released by AMS. Currently the fonts contain glyphs from +longdesc Latin (Metafont ec, tc, vnr), Cyrillic (lh), Greek (cbgreek +longdesc when available) code sets and IPA extensions (from tipa). This +longdesc font set contains 33 fonts. This archive contains AFM, PFB and +longdesc OTF versions; the OTF version of the Computer Modern Unicode +longdesc fonts works with TeX engines that directly support OpenType +longdesc features, such as XeTeX and LuaTeX. +runfiles size=6942 + RELOC/fonts/afm/public/cm-unicode/cmunbbx.afm + RELOC/fonts/afm/public/cm-unicode/cmunbi.afm + RELOC/fonts/afm/public/cm-unicode/cmunbl.afm + RELOC/fonts/afm/public/cm-unicode/cmunbmo.afm + RELOC/fonts/afm/public/cm-unicode/cmunbmr.afm + RELOC/fonts/afm/public/cm-unicode/cmunbso.afm + RELOC/fonts/afm/public/cm-unicode/cmunbsr.afm + RELOC/fonts/afm/public/cm-unicode/cmunbtl.afm + RELOC/fonts/afm/public/cm-unicode/cmunbto.afm + RELOC/fonts/afm/public/cm-unicode/cmunbx.afm + RELOC/fonts/afm/public/cm-unicode/cmunbxo.afm + RELOC/fonts/afm/public/cm-unicode/cmunci.afm + RELOC/fonts/afm/public/cm-unicode/cmunit.afm + RELOC/fonts/afm/public/cm-unicode/cmunobi.afm + RELOC/fonts/afm/public/cm-unicode/cmunobx.afm + RELOC/fonts/afm/public/cm-unicode/cmunorm.afm + RELOC/fonts/afm/public/cm-unicode/cmunoti.afm + RELOC/fonts/afm/public/cm-unicode/cmunrb.afm + RELOC/fonts/afm/public/cm-unicode/cmunrm.afm + RELOC/fonts/afm/public/cm-unicode/cmunsi.afm + RELOC/fonts/afm/public/cm-unicode/cmunsl.afm + RELOC/fonts/afm/public/cm-unicode/cmunso.afm + RELOC/fonts/afm/public/cm-unicode/cmunss.afm + RELOC/fonts/afm/public/cm-unicode/cmunssdc.afm + RELOC/fonts/afm/public/cm-unicode/cmunst.afm + RELOC/fonts/afm/public/cm-unicode/cmunsx.afm + RELOC/fonts/afm/public/cm-unicode/cmuntb.afm + RELOC/fonts/afm/public/cm-unicode/cmunti.afm + RELOC/fonts/afm/public/cm-unicode/cmuntt.afm + RELOC/fonts/afm/public/cm-unicode/cmuntx.afm + RELOC/fonts/afm/public/cm-unicode/cmunui.afm + RELOC/fonts/afm/public/cm-unicode/cmunvi.afm + RELOC/fonts/afm/public/cm-unicode/cmunvt.afm + RELOC/fonts/enc/dvips/cm-unicode/cmu-ec.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-ecsc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-g.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-gsc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-la.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-lasc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-lb.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-lc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-ld.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-rx.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-tc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-tipa.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-tipx.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-ux.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-uxsc.enc + RELOC/fonts/enc/dvips/cm-unicode/cmu-vn.enc + RELOC/fonts/map/dvips/cm-unicode/cmu.map + RELOC/fonts/opentype/public/cm-unicode/cmunbbx.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbi.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbl.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbmo.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbmr.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbso.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbsr.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbtl.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbto.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbx.otf + RELOC/fonts/opentype/public/cm-unicode/cmunbxo.otf + RELOC/fonts/opentype/public/cm-unicode/cmunci.otf + RELOC/fonts/opentype/public/cm-unicode/cmunit.otf + RELOC/fonts/opentype/public/cm-unicode/cmunobi.otf + RELOC/fonts/opentype/public/cm-unicode/cmunobx.otf + RELOC/fonts/opentype/public/cm-unicode/cmunorm.otf + RELOC/fonts/opentype/public/cm-unicode/cmunoti.otf + RELOC/fonts/opentype/public/cm-unicode/cmunrb.otf + RELOC/fonts/opentype/public/cm-unicode/cmunrm.otf + RELOC/fonts/opentype/public/cm-unicode/cmunsi.otf + RELOC/fonts/opentype/public/cm-unicode/cmunsl.otf + RELOC/fonts/opentype/public/cm-unicode/cmunso.otf + RELOC/fonts/opentype/public/cm-unicode/cmunss.otf + RELOC/fonts/opentype/public/cm-unicode/cmunssdc.otf + RELOC/fonts/opentype/public/cm-unicode/cmunst.otf + RELOC/fonts/opentype/public/cm-unicode/cmunsx.otf + RELOC/fonts/opentype/public/cm-unicode/cmuntb.otf + RELOC/fonts/opentype/public/cm-unicode/cmunti.otf + RELOC/fonts/opentype/public/cm-unicode/cmuntt.otf + RELOC/fonts/opentype/public/cm-unicode/cmuntx.otf + RELOC/fonts/opentype/public/cm-unicode/cmunui.otf + RELOC/fonts/opentype/public/cm-unicode/cmunvi.otf + RELOC/fonts/opentype/public/cm-unicode/cmunvt.otf + RELOC/fonts/type1/public/cm-unicode/cmunbbx.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbi.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbl.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbmo.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbmr.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbso.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbsr.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbtl.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbto.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbx.pfb + RELOC/fonts/type1/public/cm-unicode/cmunbxo.pfb + RELOC/fonts/type1/public/cm-unicode/cmunci.pfb + RELOC/fonts/type1/public/cm-unicode/cmunit.pfb + RELOC/fonts/type1/public/cm-unicode/cmunobi.pfb + RELOC/fonts/type1/public/cm-unicode/cmunobx.pfb + RELOC/fonts/type1/public/cm-unicode/cmunorm.pfb + RELOC/fonts/type1/public/cm-unicode/cmunoti.pfb + RELOC/fonts/type1/public/cm-unicode/cmunrb.pfb + RELOC/fonts/type1/public/cm-unicode/cmunrm.pfb + RELOC/fonts/type1/public/cm-unicode/cmunsi.pfb + RELOC/fonts/type1/public/cm-unicode/cmunsl.pfb + RELOC/fonts/type1/public/cm-unicode/cmunso.pfb + RELOC/fonts/type1/public/cm-unicode/cmunss.pfb + RELOC/fonts/type1/public/cm-unicode/cmunssdc.pfb + RELOC/fonts/type1/public/cm-unicode/cmunst.pfb + RELOC/fonts/type1/public/cm-unicode/cmunsx.pfb + RELOC/fonts/type1/public/cm-unicode/cmuntb.pfb + RELOC/fonts/type1/public/cm-unicode/cmunti.pfb + RELOC/fonts/type1/public/cm-unicode/cmuntt.pfb + RELOC/fonts/type1/public/cm-unicode/cmuntx.pfb + RELOC/fonts/type1/public/cm-unicode/cmunui.pfb + RELOC/fonts/type1/public/cm-unicode/cmunvi.pfb + RELOC/fonts/type1/public/cm-unicode/cmunvt.pfb +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-ctan /fonts/cm-unicode +catalogue-date 2014-07-11 15:31:42 +0200 +catalogue-license ofl +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 +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. +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 +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 + +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. +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 + +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. +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 + +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. +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 + +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. +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 + +name collection-basic +category Collection +revision 33040 +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 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 + +name collection-bibtexextra +category Collection +revision 38100 +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 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 + +name collection-binextra +category Collection +revision 38300 +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 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 +depend listings-ext +depend make4ht +depend match_parens +depend mkjobtexmf +depend patgen +depend pdfbook2 +depend pdfcrop +depend pdfjam +depend pdftools +depend pfarrei +depend pkfix +depend pkfix-helper +depend purifyeps +depend pythontex +depend seetexk +depend sty2dtx +depend synctex +depend tex4ebook +depend texcount +depend texdef +depend texdiff +depend texdirflatten +depend texdoc +depend texfot +depend texliveonfly +depend texloganalyser +depend texware +depend tie +depend tpic2pdftex +depend typeoutfileinfo +depend web +depend xindy + +name collection-context +category Collection +revision 36190 +shortdesc ConTeXt and packages +relocated 1 +longdesc Hans Hagen's powerful ConTeXt system, http://pragma-ade.com. +longdesc Also includes third-party ConTeXt packages. +depend collection-basic +depend context +depend jmn +depend context-account +depend context-algorithmic +depend context-animation +depend context-annotation +depend context-bnf +depend context-chromato +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-letter +depend context-lettrine +depend context-lilypond +depend context-mathsets +depend context-notes-zh-cn +depend context-rst +depend context-ruby +depend context-simplefonts +depend context-simpleslides +depend context-title +depend context-transliterator +depend context-typearea +depend context-typescripts +depend context-vim +depend context-visualcounter + +name collection-fontsextra +category Collection +revision 38204 +shortdesc Additional fonts +relocated 1 +depend collection-basic +depend asana-math +depend academicons +depend accanthis +depend adforn +depend adfsymbols +depend aecc +depend alegreya +depend allrunes +depend almfixed +depend anonymouspro +depend antiqua +depend antt +depend archaic +depend arev +depend ascii-font +depend aspectratio +depend astro +depend augie +depend auncial-new +depend aurical +depend b1encoding +depend barcodes +depend baskervald +depend baskervaldx +depend bbding +depend bbm +depend bbm-macros +depend bbold +depend bbold-type1 +depend belleek +depend bera +depend berenisadf +depend bguq +depend blacklettert1 +depend boisik +depend bookhands +depend boondox +depend braille +depend brushscr +depend cabin +depend caladea +depend calligra +depend calligra-type1 +depend cantarell +depend carlito +depend carolmin-ps +depend ccicons +depend cfr-initials +depend cfr-lm +depend cherokee +depend cinzel +depend clearsans +depend cm-lgc +depend cm-unicode +depend cmbright +depend cmll +depend cmpica +depend cmtiup +depend comfortaa +depend comicneue +depend concmath-fonts +depend cookingsymbols +depend countriesofeurope +depend courier-scaled +depend cryst +depend cyklop +depend dancers +depend dantelogo +depend dejavu +depend dice +depend dictsym +depend dingbat +depend doublestroke +depend dozenal +depend drm +depend droid +depend duerer +depend duerer-latex +depend dutchcal +depend ean +depend ebgaramond +depend ebgaramond-maths +depend ecc +depend eco +depend eiad +depend eiad-ltx +depend electrum +depend elvish +depend epigrafica +depend epsdice +depend erewhon +depend esrelation +depend esstix +depend esvect +depend eulervm +depend euxm +depend fbb +depend fdsymbol +depend fetamont +depend feyn +depend fge +depend fira +depend foekfont +depend fonetika +depend fontawesome +depend fontmfizz +depend old-arrows +depend fourier +depend fouriernc +depend frcursive +depend genealogy +depend gentium-tug +depend gfsartemisia +depend gfsbodoni +depend gfscomplutum +depend gfsdidot +depend gfsneohellenic +depend gfssolomos +depend gillcm +depend gillius +depend gnu-freefont +depend gothic +depend greenpoint +depend grotesq +depend hacm +depend hands +depend heuristica +depend hfbright +depend hfoldsty +depend ifsym +depend inconsolata +depend initials +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 librebaskerville +depend librecaslon +depend libris +depend lineara +depend lobster2 +depend lxfonts +depend ly1 +depend mathabx +depend mathabx-type1 +depend mathdesign +depend mdputu +depend mdsymbol +depend merriweather +depend mintspirit +depend mnsymbol +depend newpx +depend newtx +depend newtxsf +depend newtxtt +depend nkarta +depend obnov +depend ocherokee +depend ocr-b +depend ocr-b-outline +depend ogham +depend oinuit +depend oldlatin +depend oldstandard +depend opensans +depend orkhun +depend overlock +depend pacioli +depend paratype +depend phaistos +depend phonetic +depend pigpen +depend playfair +depend poltawski +depend prodint +depend punk +depend punk-latex +depend punknova +depend pxtxalfa +depend quattrocento +depend raleway +depend recycle +depend roboto +depend romande +depend rsfso +depend sansmathaccent +depend sansmathfonts +depend sauter +depend sauterfonts +depend schulschriften +depend semaphor +depend skull +depend sourcecodepro +depend sourcesanspro +depend sourceserifpro +depend starfont +depend staves +depend stix +depend superiors +depend tapir +depend tengwarscript +depend tfrupee +depend tpslifonts +depend trajan +depend txfontsb +depend typicons +depend umtypewriter +depend universa +depend universalis +depend urwchancal +depend venturisadf +depend wsuipa +depend xcharter +depend xits +depend yfonts +depend yfonts-t1 +depend zlmtt + +name collection-fontsrecommended +category Collection +revision 35830 +shortdesc Recommended fonts +relocated 1 +longdesc Recommended fonts, including the base 35 PostScript fonts, +longdesc Latin Modern, TeX Gyre, and T1 and other encoding support for +longdesc Computer Modern, in outline form. +depend collection-basic +depend avantgar +depend bookman +depend charter +depend cm-super +depend cmextra +depend courier +depend ec +depend euro +depend euro-ce +depend eurosym +depend fpl +depend helvetic +depend lm +depend lm-math +depend marvosym +depend mathpazo +depend manfnt-font +depend mflogo-font +depend ncntrsbk +depend palatino +depend pxfonts +depend rsfs +depend symbol +depend tex-gyre +depend tex-gyre-math +depend times +depend tipa +depend txfonts +depend utopia +depend wasy +depend wasy2-ps +depend wasysym +depend zapfchan +depend zapfding + +name collection-fontutils +category Collection +revision 37105 +shortdesc Graphics and font utilities +relocated 1 +longdesc Programs for conversion between font formats, testing fonts, +longdesc virtual fonts, .gf and .pk manipulation, mft, fontinst, etc. +longdesc Manipulating OpenType, TrueType, Type 1,and for manipulation of +longdesc PostScript and other image formats. +depend collection-basic +depend accfonts +depend afm2pl +depend dosepsbin +depend epstopdf +depend fontware +depend lcdftypetools +depend metatype1 +depend ps2pk +depend pstools +depend psutils +depend dvipsconfig +depend fontinst +depend fontools +depend mf2pt1 +depend t1utils +depend ttfutils + +name collection-formatsextra +category Collection +revision 33658 +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). +depend collection-basic +depend edmac +depend eplain +depend lollipop +depend mltex +depend psizzl +depend startex +depend texsis + +name collection-games +category Collection +revision 36348 +shortdesc Games typesetting +relocated 1 +longdesc Setups for typesetting various games, including chess. +depend collection-latex +depend bartel-chess-fonts +depend chess +depend chess-problem-diagrams +depend chessboard +depend chessfss +depend crossword +depend crosswrd +depend egameps +depend gamebook +depend go +depend hanoi +depend havannah +depend hexgame +depend horoscop +depend labyrinth +depend logicpuzzle +depend othello +depend othelloboard +depend pas-crosswords +depend psgo +depend reverxii +depend rubik +depend schwalbe-chess +depend sgame +depend skak +depend skaknew +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 + +name collection-humanities +category Collection +revision 37912 +shortdesc Humanities packages +relocated 1 +longdesc Packages for law, linguistics, social sciences, humanities, +longdesc etc. +depend collection-latex +depend bibleref +depend bibleref-lds +depend bibleref-mouth +depend bibleref-parse +depend covington +depend diadia +depend dramatist +depend dvgloss +depend ecltree +depend edfnotes +depend ednotes +depend eledform +depend eledmac +depend expex +depend gb4e +depend gmverse +depend jura +depend juraabbrev +depend juramisc +depend jurarsp +depend ledmac +depend leipzig +depend lexikon +depend lexref +depend linguex +depend liturg +depend metrix +depend parallel +depend parrun +depend phonrule +depend plari +depend play +depend poemscol +depend poetrytex +depend qobitree +depend qtree +depend reledmac +depend rrgtrees +depend rtklage +depend screenplay +depend screenplay-pkg +depend sides +depend stage +depend textglos +depend thalie +depend 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 + +name collection-langarabic +category Collection +revision 37746 +shortdesc Arabic +relocated 1 +longdesc Support for Arabic and Persian. +depend collection-basic +depend amiri +depend arabi +depend arabi-add +depend arabtex +depend bidi +depend bidihl +depend dad +depend ghab +depend hyphen-arabic +depend hyphen-farsi +depend imsproc +depend lshort-persian +depend persian-bib +depend simurgh +depend tram + +name collection-langchinese +category Collection +revision 35576 +shortdesc Chinese +relocated 1 +longdesc Support for Chinese; additional packages in collection-langcjk. +depend collection-langcjk +depend arphic +depend asymptote-by-example-zh-cn +depend asymptote-faq-zh-cn +depend asymptote-manual-zh-cn +depend cns +depend ctex +depend ctex-faq +depend fandol +depend hyphen-chinese +depend impatient-cn +depend latex-notes-zh-cn +depend lshort-chinese +depend texlive-zh-cn +depend xpinyin +depend zhmetrics +depend zhnumber +depend zhspacing + +name collection-langcjk +category Collection +revision 37224 +shortdesc Chinese/Japanese/Korean (base) +relocated 1 +longdesc Packages supporting a combination of Chinese, Japanese, Korean, +longdesc including macros, fonts, documentation. Also Thai in the c90 +longdesc encoding, since there is some overlap in those fonts; standard +longdesc Thai support is in collection-langother. Additional packages +longdesc for CJK are in their individual language collections. +depend collection-basic +depend adobemapping +depend c90 +depend cjk-gs-integrate +depend cjk +depend cjkpunct +depend cjkutils +depend dnp +depend garuda-c90 +depend norasi-c90 +depend xcjk2uni +depend zxjafont + +name collection-langcyrillic +category Collection +revision 30455 +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-bulgarian +depend babel-russian +depend babel-serbian +depend babel-serbianc +depend babel-ukraineb +depend cmcyr +depend cyrillic +depend cyrillic-bin +depend cyrplain +depend disser +depend eskd +depend eskdx +depend gost +depend hyphen-bulgarian +depend hyphen-mongolian +depend hyphen-russian +depend hyphen-serbian +depend hyphen-ukrainian +depend lcyw +depend lh +depend lhcyr +depend lshort-bulgarian +depend lshort-mongol +depend lshort-russian +depend lshort-ukr +depend mongolian-babel +depend montex +depend mpman-ru +depend pst-eucl-translation-bg +depend ruhyphen +depend russ +depend serbian-apostrophe +depend serbian-date-lat +depend serbian-def-cyr +depend serbian-lig +depend t2 +depend texlive-ru +depend texlive-sr +depend ukrhyph + +name collection-langczechslovak +category Collection +revision 32550 +shortdesc Czech/Slovak +relocated 1 +longdesc Support for Czech/Slovak. +depend collection-basic +depend collection-latex +depend babel-czech +depend babel-slovak +depend cnbwp +depend cs +depend csbulletin +depend cslatex +depend csplain +depend cstex +depend hyphen-czech +depend hyphen-slovak +depend vlna +depend lshort-czech +depend lshort-slovak +depend texlive-cz + +name collection-langenglish +category Collection +revision 37500 +shortdesc US and UK English +relocated 1 +longdesc Support for (and documentation in) English. +depend collection-basic +depend hyphen-english +depend FAQ-en +depend MemoirChapStyles +depend Type1fonts +depend amslatex-primer +depend around-the-bend +depend ascii-chart +depend components-of-TeX +depend comprehensive +depend dickimaw +depend dtxtut +depend first-latex-doc +depend gentle +depend guide-to-latex +depend happy4th +depend impatient +depend intro-scientific +depend knuth +depend l2tabu-english +depend latex-brochure +depend latex-course +depend latex-doc-ptr +depend latex-graphics-companion +depend latex-veryshortguide +depend latex-web-companion +depend latex2e-help-texinfo +depend latex4wp +depend latexcheat +depend latexcourse-rug +depend latexfileinfo-pkgs +depend lshort-english +depend macros2e +depend math-e +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 simplified-latex +depend svg-inkscape +depend tabulars-e +depend tamethebeast +depend tds +depend tex-font-errors-cheatsheet +depend tex-overview +depend tex-refs +depend texbytopic +depend titlepages +depend tlc2 +depend visualfaq +depend voss-mathmode +depend webguide +depend xetexref + +name collection-langeuropean +category Collection +revision 38353 +shortdesc Other European languages +relocated 1 +longdesc Support for a number of European languages; others (Greek, +longdesc German, French, ...) have their own collections, depending +longdesc simply on the size of the support. +depend collection-basic +depend armtex +depend babel-albanian +depend babel-bosnian +depend babel-breton +depend babel-croatian +depend babel-danish +depend babel-dutch +depend babel-estonian +depend babel-finnish +depend babel-friulan +depend babel-hungarian +depend babel-icelandic +depend babel-irish +depend babel-kurmanji +depend babel-latin +depend babel-latvian +depend babel-norsk +depend babel-piedmontese +depend babel-romanian +depend babel-romansh +depend babel-samin +depend babel-scottish +depend babel-slovenian +depend babel-swedish +depend babel-turkish +depend babel-welsh +depend finbib +depend hrlatex +depend hyphen-armenian +depend hyphen-croatian +depend hyphen-danish +depend hyphen-dutch +depend hyphen-estonian +depend hyphen-finnish +depend hyphen-friulan +depend hyphen-hungarian +depend hyphen-icelandic +depend hyphen-irish +depend hyphen-kurmanji +depend hyphen-latin +depend hyphen-latvian +depend hyphen-lithuanian +depend hyphen-norwegian +depend hyphen-piedmontese +depend hyphen-romanian +depend hyphen-romansh +depend hyphen-slovenian +depend hyphen-swedish +depend hyphen-turkish +depend hyphen-uppersorbian +depend hyphen-welsh +depend lithuanian +depend lshort-dutch +depend lshort-finnish +depend lshort-slovenian +depend lshort-turkish +depend nevelok +depend swebib +depend turkmen + +name collection-langfrench +category Collection +revision 38142 +shortdesc French +relocated 1 +longdesc Support for French and Basque. +depend collection-basic +depend aeguill +depend apprends-latex +depend babel-basque +depend babel-french +depend basque-book +depend basque-date +depend bib-fr +depend bibleref-french +depend booktabs-fr +depend droit-fr +depend e-french +depend epslatex-fr +depend facture +depend frletter +depend hyphen-basque +depend hyphen-french +depend impatient-fr +depend impnattypo +depend l2tabu-french +depend lshort-french +depend mafr +depend tabvar +depend tdsfrmath +depend texlive-fr +depend translation-array-fr +depend translation-dcolumn-fr +depend translation-natbib-fr +depend translation-tabbing-fr +depend variations + +name collection-langgerman +category Collection +revision 36284 +shortdesc German +relocated 1 +longdesc Support for German. +depend collection-basic +depend babel-german +depend bibleref-german +depend booktabs-de +depend csquotes-de +depend dehyph-exptl +depend dhua +depend einfuehrung +depend etdipa +depend etoolbox-de +depend fifinddo-info +depend geometry-de +depend german +depend germbib +depend germkorr +depend hausarbeit-jura +depend hyphen-german +depend koma-script-examples +depend l2picfaq +depend l2tabu +depend latex-bib-ex +depend latex-referenz +depend latex-tabellen +depend latexcheat-de +depend lshort-german +depend lualatex-doc-de +depend microtype-de +depend presentations +depend pstricks-examples +depend r_und_s +depend templates-fenn +depend templates-sommer +depend texlive-de +depend tipa-de +depend translation-arsclassica-de +depend translation-biblatex-de +depend translation-chemsym-de +depend translation-ecv-de +depend translation-enumitem-de +depend translation-europecv-de +depend translation-filecontents-de +depend translation-moreverb-de +depend udesoftec +depend umlaute +depend voss-mathcol + +name collection-langgreek +category Collection +revision 36842 +shortdesc Greek +relocated 1 +longdesc Support for Greek. +depend collection-basic +depend babel-greek +depend begingreek +depend betababel +depend bgreek +depend cbfonts +depend cbfonts-fd +depend gfsbaskerville +depend gfsporson +depend greek-fontenc +depend greek-inputenc +depend greekdates +depend greektex +depend hyphen-greek +depend hyphen-ancientgreek +depend ibycus-babel +depend ibygrk +depend kerkis +depend levy +depend lgreek +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 + +name collection-langitalian +category Collection +revision 30372 +shortdesc Italian +relocated 1 +longdesc Support for Italian. +depend collection-basic +depend amsldoc-it +depend amsmath-it +depend amsthdoc-it +depend babel-italian +depend codicefiscaleitaliano +depend fancyhdr-it +depend fixltxhyph +depend frontespizio +depend hyphen-italian +depend itnumpar +depend l2tabu-italian +depend latex4wp-it +depend layaureo +depend lshort-italian +depend psfrag-italian +depend texlive-it + +name collection-langjapanese +category Collection +revision 33790 +shortdesc Japanese +relocated 1 +longdesc Support for Japanese; additional packages in collection- +longdesc langcjk. +depend collection-langcjk +depend bxbase +depend bxcjkjatype +depend bxjscls +depend convbkmk +depend ipaex +depend japanese +depend japanese-otf +depend japanese-otf-uptex +depend jfontmaps +depend jsclasses +depend lshort-japanese +depend luatexja +depend ptex +depend ptex2pdf +depend pxbase +depend pxchfon +depend pxcjkcat +depend pxjahyper +depend pxrubrica +depend uptex +depend wadalab +depend zxjafbfont +depend zxjatype + +name collection-langkorean +category Collection +revision 33790 +shortdesc Korean +relocated 1 +longdesc Support for Korean; additional packages in collection-langcjk. +depend collection-langcjk +depend cjk-ko +depend kotex-oblivoir +depend kotex-plain +depend kotex-utf +depend kotex-utils +depend lshort-korean +depend nanumtype1 +depend uhc + +name collection-langother +category Collection +revision 31014 +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. +depend collection-basic +depend amsldoc-vn +depend aramaic-serto +depend babel-bahasa +depend babel-esperanto +depend babel-georgian +depend babel-hebrew +depend babel-interlingua +depend babel-sorbian +depend babel-thai +depend babel-vietnamese +depend cjhebrew +depend ctib +depend fonts-tlwg +depend hyphen-afrikaans +depend hyphen-coptic +depend hyphen-esperanto +depend hyphen-georgian +depend hyphen-indonesian +depend hyphen-interlingua +depend hyphen-thai +depend hyphen-turkmen +depend lshort-thai +depend lshort-vietnamese +depend ntheorem-vn +depend vntex + +name collection-langpolish +category Collection +revision 30372 +shortdesc Polish +relocated 1 +longdesc Support for Polish. +depend collection-latex +depend collection-basic +depend babel-polish +depend cc-pl +depend gustlib +depend gustprog +depend hyphen-polish +depend lshort-polish +depend mex +depend mwcls +depend pl +depend polski +depend przechlewski-book +depend qpxqtx +depend tap +depend tex-virtual-academy-pl +depend texlive-pl +depend utf8mex + +name collection-langportuguese +category Collection +revision 30962 +shortdesc Portuguese +relocated 1 +longdesc Support for Portuguese. +depend collection-basic +depend babel-portuges +depend beamer-tut-pt +depend cursolatex +depend feupphdteses +depend hyphen-portuguese +depend latexcheat-ptbr +depend lshort-portuguese +depend ordinalpt +depend xypic-tut-pt + +name collection-langspanish +category Collection +revision 36995 +shortdesc Spanish +relocated 1 +longdesc Support for Spanish. +depend collection-basic +depend babel-catalan +depend babel-galician +depend babel-spanglish +depend babel-spanish +depend es-tex-faq +depend hyphen-catalan +depend hyphen-galician +depend hyphen-spanish +depend l2tabu-spanish +depend latex2e-help-texinfo-spanish +depend latexcheat-esmx +depend lshort-spanish +depend spanish-mx + +name collection-latexextra +category Collection +revision 38352 +shortdesc LaTeX additional packages +relocated 1 +longdesc A very large collection of add-on packages for LaTeX. +depend collection-latexrecommended +depend collection-pictures +depend 2up +depend ESIEEcv +depend GS1 +depend HA-prosper +depend Tabbing +depend a0poster +depend a4wide +depend a5comb +depend abraces +depend abstract +depend achemso +depend acro +depend acronym +depend acroterm +depend actuarialangle +depend addlines +depend adjmulticol +depend adjustbox +depend adrconv +depend advdate +depend akktex +depend akletter +depend alertmessage +depend alnumsec +depend alterqcm +depend altfont +depend amsaddr +depend animate +depend anonchap +depend answers +depend anyfontsize +depend appendix +depend appendixnumberbeamer +depend apptools +depend arcs +depend arrayjobx +depend arraysort +depend arydshln +depend assignment +depend assoccnt +depend attachfile +depend authoraftertitle +depend authorindex +depend autonum +depend autopdf +depend avremu +depend background +depend bankstatement +depend bashful +depend basicarith +depend bchart +depend beamer2thesis +depend beameraudience +depend beamerdarkthemes +depend beamerposter +depend beamersubframe +depend beamertheme-upenn-bc +depend beamerthemejltree +depend beamerthemenirma +depend beamerthemephnompenh +depend beton +depend bewerbung +depend bez123 +depend bezos +depend bhcexam +depend bigfoot +depend bigints +depend bizcard +depend blindtext +depend blkarray +depend block +depend blowup +depend bnumexpr +depend boites +depend bold-extra +depend bookcover +depend bookest +depend booklet +depend boolexpr +depend bophook +depend boxedminipage +depend boxedminipage2e +depend boxhandler +depend bracketkey +depend braket +depend breakurl +depend bullcntr +depend bussproofs +depend bxdpx-beamer +depend bxpdfver +depend calcage +depend calctab +depend calculator +depend calrsfs +depend cals +depend calxxxx-yyyy +depend cancel +depend canoniclayout +depend capt-of +depend captcont +depend captdef +depend cases +depend casyl +depend catchfilebetweentags +depend catechis +depend catoptions +depend cbcoptic +depend ccaption +depend cclicenses +depend cd +depend cd-cover +depend cdpbundl +depend cellspace +depend censor +depend changebar +depend changelayout +depend changepage +depend changes +depend chappg +depend chapterfolder +depend chet +depend chextras +depend chkfloat +depend chletter +depend chngcntr +depend chronology +depend circ +depend classics +depend clefval +depend cleveref +depend clipboard +depend clock +depend cmdstring +depend cmdtrack +depend cmsd +depend cnltx +depend cntformats +depend cntperchap +depend codedoc +depend codepage +depend codesection +depend collcell +depend collectbox +depend colordoc +depend colorinfo +depend colorspace +depend colortab +depend colorwav +depend colorweb +depend colourchange +depend combelow +depend combine +depend comma +depend commado +depend comment +depend concepts +depend concprog +depend constants +depend contour +depend contracard +depend cooking +depend cool +depend coollist +depend coolstr +depend coolthms +depend cooltooltips +depend coordsys +depend copyedit +depend copyrightbox +depend coseoul +depend counttexruns +depend courseoutline +depend coursepaper +depend coverpage +depend cprotect +depend crbox +depend crossreference +depend csquotes +depend csvsimple +depend cuisine +depend currfile +depend currvita +depend cutwin +depend cv +depend cv4tw +depend cweb-latex +depend cyber +depend cybercic +depend dashbox +depend dashrule +depend dashundergaps +depend dataref +depend datatool +depend dateiliste +depend datenumber +depend datetime +depend datetime2 +depend datetime2-bahasai +depend datetime2-basque +depend datetime2-breton +depend datetime2-bulgarian +depend datetime2-catalan +depend datetime2-croatian +depend datetime2-czech +depend datetime2-danish +depend datetime2-dutch +depend datetime2-en-fulltext +depend datetime2-english +depend datetime2-esperanto +depend datetime2-estonian +depend datetime2-finnish +depend datetime2-french +depend datetime2-galician +depend datetime2-german +depend datetime2-greek +depend datetime2-hebrew +depend datetime2-icelandic +depend datetime2-irish +depend datetime2-italian +depend datetime2-it-fulltext +depend datetime2-latin +depend datetime2-lsorbian +depend datetime2-magyar +depend datetime2-norsk +depend datetime2-polish +depend datetime2-portuges +depend datetime2-romanian +depend datetime2-russian +depend datetime2-samin +depend datetime2-scottish +depend datetime2-serbian +depend datetime2-slovak +depend datetime2-slovene +depend datetime2-spanish +depend datetime2-swedish +depend datetime2-turkish +depend datetime2-ukrainian +depend datetime2-usorbian +depend datetime2-welsh +depend dblfloatfix +depend decimal +depend decorule +depend delim +depend delimtxt +depend denisbdoc +depend detlev-cm +depend diagbox +depend diagnose +depend dialogl +depend dichokey +depend dinbrief +depend directory +depend dirtytalk +depend dlfltxb +depend dnaseq +depend doclicense +depend docmfp +depend docmute +depend doctools +depend documentation +depend doi +depend dotarrow +depend dotseqn +depend download +depend dox +depend dpfloat +depend dprogress +depend drac +depend draftcopy +depend draftwatermark +depend dtk +depend dtxgallery +depend dvdcoll +depend dynblocks +depend ean13isbn +depend easy +depend easy-todo +depend easyfig +depend easylist +depend easyreview +depend ebezier +depend ecclesiastic +depend ecv +depend ed +depend edmargin +depend eemeir +depend efbox +depend egplot +depend elements +depend ellipsis +depend elmath +depend elocalloc +depend elpres +depend elzcards +depend emarks +depend embedall +depend embrac +depend emptypage +depend emulateapj +depend endfloat +depend endheads +depend endnotes +depend engpron +depend engrec +depend enotez +depend enumitem +depend enumitem-zref +depend envbig +depend environ +depend envlab +depend epigraph +depend epiolmec +depend epyt +depend eqell +depend eqlist +depend eqname +depend eqparbox +depend errata +depend esami +depend esdiff +depend esint +depend esint-type1 +depend etaremune +depend etextools +depend etoc +depend etoolbox +depend eukdate +depend europasscv +depend europecv +depend everyhook +depend everypage +depend exam +depend exam-n +depend examdesign +depend example +depend examplep +depend exceltex +depend excludeonly +depend exercise +depend exp-testopt +depend expdlist +depend export +depend exsheets +depend exsol +depend extract +depend facsimile +depend factura +depend fancylabel +depend fancynum +depend fancypar +depend fancyslides +depend fancytabs +depend fancytooltips +depend fcolumn +depend fifo-stack +depend figsize +depend filecontents +depend filedate +depend filehook +depend fileinfo +depend filemod +depend fink +depend finstrut +depend fithesis +depend fixfoot +depend fixme +depend fixmetodonotes +depend fjodor +depend flabels +depend flacards +depend flagderiv +depend flashcards +depend flashmovie +depend flipbook +depend flippdf +depend floatflt +depend floatrow +depend flowfram +depend fmp +depend fmtcount +depend fn2end +depend fnbreak +depend fncychap +depend fncylab +depend fnpara +depend fnpct +depend fnumprint +depend foilhtml +depend fontaxes +depend fonttable +depend footmisc +depend footnotebackref +depend footnoterange +depend footnpag +depend forarray +depend foreign +depend forloop +depend formlett +depend formular +depend fragments +depend frame +depend framed +depend frankenstein +depend frege +depend ftcap +depend ftnxtra +depend fullblck +depend fullminipage +depend fullwidth +depend fundus-calligra +depend fundus-cyr +depend fundus-sueterlin +depend fwlw +depend g-brief +depend gauss +depend gcard +depend gcite +depend gender +depend genmpage +depend getfiledate +depend ginpenc +depend gitinfo +depend gitinfo2 +depend gloss +depend glossaries +depend glossaries-danish +depend glossaries-dutch +depend glossaries-english +depend glossaries-french +depend glossaries-german +depend glossaries-irish +depend glossaries-italian +depend glossaries-magyar +depend glossaries-polish +depend glossaries-portuges +depend glossaries-serbian +depend glossaries-spanish +depend gmdoc +depend gmdoc-enhance +depend gmiflink +depend gmutils +depend gmverb +depend graphbox +depend graphicx-psmin +depend graphicxbox +depend grfpaste +depend grid +depend grid-system +depend gridset +depend gtl +depend guitlogo +depend handout +depend hang +depend hanging +depend hardwrap +depend harnon-cv +depend harpoon +depend hc +depend he-she +depend hhtensor +depend histogr +depend hitec +depend hletter +depend hpsdiss +depend hrefhide +depend hvindex +depend hypdvips +depend hyper +depend hypernat +depend hyperref-docsrc +depend hyperxmp +depend hyphenat +depend idxcmds +depend idxlayout +depend ifmslide +depend ifmtarg +depend ifnextok +depend ifoddpage +depend ifplatform +depend ifthenx +depend iitem +depend image-gallery +depend imakeidx +depend import +depend incgraph +depend indextools +depend inlinedef +depend inputtrc +depend interactiveworkbook +depend interfaces +depend inversepath +depend invoice +depend iso +depend iso10303 +depend isodate +depend isodoc +depend isonums +depend isorot +depend isotope +depend issuulinks +depend iwhdp +depend jlabels +depend jslectureplanner +depend jumplines +depend jvlisting +depend kantlipsum +depend kerntest +depend keycommand +depend keyreader +depend keystroke +depend keyval2e +depend kix +depend koma-moderncvclassic +depend koma-script-sfs +depend komacv +depend ktv-texdata +depend l3build +depend labbook +depend labelcas +depend labels +depend lastpackage +depend lastpage +depend latex-tds +depend latexdemo +depend layouts +depend lazylist +depend lcd +depend lcg +depend leading +depend leaflet +depend leftidx +depend lengthconvert +depend lettre +depend lettrine +depend lewis +depend lhelp +depend libgreek +depend limap +depend linegoal +depend lipsum +depend lisp-on-tex +depend listing +depend listlbls +depend listliketab +depend listofsymbols +depend lkproof +depend lmake +depend locality +depend localloc +depend logbox +depend logical-markup-utils +depend logpap +depend longfigure +depend longnamefilelist +depend loops +depend lsc +depend lstaddons +depend lt3graph +depend ltablex +depend ltabptch +depend ltxdockit +depend ltxindex +depend ltxkeys +depend ltxnew +depend ltxtools +depend macroswap +depend magaz +depend mailing +depend mailmerge +depend makebarcode +depend makebox +depend makecell +depend makecirc +depend makecmds +depend makedtx +depend makeglos +depend mandi +depend manfnt +depend manuscript +depend marginfix +depend marginnote +depend mathalfa +depend mathastext +depend mathexam +depend maybemath +depend mbenotes +depend mcaption +depend mceinleger +depend mcite +depend mciteplus +depend mdframed +depend media9 +depend medstarbeamer +depend meetingmins +depend memexsupp +depend memory +depend menu +depend menukeys +depend method +depend metre +depend mfirstuc +depend mftinc +depend midpage +depend minibox +depend minifp +depend minipage-marginpar +depend minitoc +depend minorrevision +depend minted +depend minutes +depend mla-paper +depend mlist +depend mmap +depend mnotes +depend moderncv +depend moderntimeline +depend modref +depend modroman +depend monofill +depend moreenum +depend morefloats +depend morehype +depend moresize +depend moreverb +depend morewrites +depend movie15 +depend mparhack +depend msc +depend msg +depend mslapa +depend mtgreek +depend multenum +depend multiaudience +depend multibbl +depend multicap +depend multienv +depend multiexpand +depend multirow +depend mversion +depend mwe +depend mweights +depend mycv +depend mylatexformat +depend nag +depend nameauth +depend namespc +depend ncclatex +depend ncctools +depend needspace +depend nestquot +depend newcommand +depend newenviron +depend newfile +depend newlfm +depend newspaper +depend newunicodechar +depend newvbtm +depend newverbs +depend nextpage +depend nfssext-cfr +depend nicefilelist +depend niceframe +depend nicetext +depend nlctdoc +depend noconflict +depend noindentafter +depend noitcrul +depend nolbreaks +depend nomencl +depend nomentbl +depend nonfloat +depend nonumonpart +depend nopageno +depend notes +depend notoccite +depend nowidow +depend nox +depend ntheorem +depend numberedblock +depend numname +depend numprint +depend ocg-p +depend ocgx +depend ocgx2 +depend ocr-latex +depend octavo +depend oldstyle +depend onlyamsmath +depend opcit +depend optional +depend outline +depend outliner +depend outlines +depend overpic +depend pagecolor +depend pagecont +depend pagenote +depend pagerange +depend pageslts +depend paper +depend papercdcase +depend papermas +depend papertex +depend paracol +depend paralist +depend paresse +depend parnotes +depend parselines +depend pas-cours +depend pas-cv +depend pas-tableur +depend patch +depend patchcmd +depend pauldoc +depend pawpict +depend pax +depend pbox +depend pbsheet +depend pdf14 +depend pdfcomment +depend pdfcprot +depend pdfmarginpar +depend pdfpagediff +depend pdfscreen +depend pdfslide +depend pdfsync +depend pdfwin +depend pdfx +depend pecha +depend perltex +depend permute +depend petiteannonce +depend philex +depend photo +depend piff +depend pkgloader +depend placeins +depend plantslabels +depend plates +depend plweb +depend polynom +depend polynomial +depend polytable +depend postcards +depend poster-mac +depend ppr-prv +depend preprint +depend pressrelease +depend prettyref +depend preview +depend printlen +depend probsoln +depend program +depend progress +depend progressbar +depend proofread +depend properties +depend prosper +depend protex +depend protocol +depend psfragx +depend pst-pdf +depend pstool +depend pxgreeks +depend python +depend qcm +depend qstest +depend qsymbols +depend quotchap +depend quoting +depend quotmark +depend ran_toks +depend randtext +depend rccol +depend rcs-multi +depend rcsinfo +depend readarray +depend realboxes +depend recipe +depend recipebook +depend recipecard +depend rectopma +depend refcheck +depend refenums +depend reflectgraphics +depend refman +depend refstyle +depend regcount +depend regexpatch +depend register +depend regstats +depend relenc +depend relsize +depend repeatindex +depend repltext +depend rjlparshap +depend rlepsf +depend rmpage +depend robustcommand +depend robustindex +depend romanbar +depend romanbarpagenumber +depend romanneg +depend romannum +depend rotfloat +depend rotpages +depend roundbox +depend rterface +depend rtkinenc +depend rulercompass +depend rvwrite +depend sauerj +depend savefnmark +depend savesym +depend savetrees +depend scale +depend scalebar +depend scalerel +depend scanpages +depend sdrt +depend secdot +depend sectionbox +depend sectsty +depend seealso +depend selectp +depend semantic +depend semioneside +depend semproc +depend sepfootnotes +depend seqsplit +depend sf298 +depend sffms +depend sfmath +depend shadethm +depend shadow +depend shadowtext +depend shapepar +depend shdoc +depend shipunov +depend shorttoc +depend show2e +depend showcharinbox +depend showdim +depend showexpl +depend showlabels +depend sidecap +depend sidenotes +depend silence +depend simplecd +depend simplecv +depend simplewick +depend sitem +depend skb +depend skdoc +depend skeycommand +depend skeyval +depend skrapport +depend slantsc +depend smalltableof +depend smartref +depend snapshot +depend snotez +depend soul +depend sparklines +depend sphack +depend splitindex +depend spot +depend spotcolor +depend spreadtab +depend spverbatim +depend srbook-mem +depend srcltx +depend sseq +depend sslides +depend stack +depend stackengine +depend standalone +depend statistik +depend stdclsdv +depend stdpage +depend stex +depend storebox +depend storecmd +depend stringstrings +depend sttools +depend stubs +depend subdepth +depend subeqn +depend subeqnarray +depend subfigmat +depend subfigure +depend subfiles +depend subfloat +depend substitutefont +depend substr +depend supertabular +depend svg +depend svgcolor +depend svn +depend svn-multi +depend svn-prov +depend svninfo +depend syntax +depend syntrace +depend synttree +depend tabfigures +depend tableaux +depend tablefootnote +depend tableof +depend tablestyles +depend tablists +depend tabls +depend tabstackengine +depend tabto-ltx +depend tabu +depend tabularborder +depend tabularcalc +depend tabularew +depend tabulary +depend tagging +depend tagpair +depend talk +depend tamefloats +depend tasks +depend tcldoc +depend tcolorbox +depend tdclock +depend technics +depend ted +depend templatetools +depend termcal +depend termlist +depend testhyphens +depend tex-label +depend texlogos +depend texmate +depend texments +depend texpower +depend texshade +depend textfit +depend textgreek +depend textmerg +depend textpos +depend theoremref +depend thinsp +depend thmtools +depend threadcol +depend threeparttable +depend threeparttablex +depend thumb +depend thumbs +depend thumby +depend ticket +depend titlecaps +depend titlefoot +depend titlepic +depend titleref +depend titlesec +depend titling +depend tocbibind +depend tocloft +depend tocvsec2 +depend todo +depend todonotes +depend tokenizer +depend toolbox +depend topfloat +depend totcount +depend totpages +depend translations +depend trfsigns +depend trimspaces +depend trivfloat +depend trsym +depend truncate +depend tucv +depend turnthepage +depend twoinone +depend twoup +depend txgreeks +depend type1cm +depend typeface +depend typogrid +depend uassign +depend ucs +depend uebungsblatt +depend umoline +depend underlin +depend underoverlap +depend undolabl +depend units +depend unravel +depend upmethodology +depend upquote +depend uri +depend ushort +depend uwmslide +depend varindex +depend varsfromjobname +depend varwidth +depend vdmlisting +depend verbasef +depend verbatimbox +depend verbatimcopy +depend verbdef +depend verbments +depend version +depend versions +depend versonotes +depend vertbars +depend vgrid +depend vhistory +depend vmargin +depend volumes +depend vpe +depend vruler +depend vwcol +depend wallpaper +depend warning +depend warpcol +depend was +depend widetable +depend williams +depend withargs +depend wordlike +depend wrapfig +depend xargs +depend xcolor-solarized +depend xcomment +depend xdoc +depend xfor +depend xhfill +depend xifthen +depend xint +depend xmpincl +depend xnewcommand +depend xoptarg +depend xpatch +depend xpeek +depend xprintlen +depend xpunctuate +depend xstring +depend xtab +depend xwatermark +depend xytree +depend yafoot +depend yagusylo +depend ydoc +depend yplan +depend zed-csp +depend ziffer +depend zwgetfdate +depend zwpagelayout + +name collection-latexrecommended +category Collection +revision 35765 +shortdesc LaTeX recommended packages +relocated 1 +longdesc A collection of recommended add-on packages for LaTeX which +longdesc have widespread use. +depend collection-latex +depend anysize +depend beamer +depend booktabs +depend breqn +depend caption +depend cite +depend cmap +depend crop +depend ctable +depend eso-pic +depend euenc +depend euler +depend extsizes +depend fancybox +depend fancyref +depend fancyvrb +depend float +depend fontspec +depend fp +depend index +depend jknapltx +depend koma-script +depend l3kernel +depend l3packages +depend l3experimental +depend lineno +depend listings +depend mathtools +depend mdwtools +depend memoir +depend metalogo +depend microtype +depend ms +depend ntgclass +depend parskip +depend pdfpages +depend powerdot +depend psfrag +depend rcs +depend rotating +depend sansmath +depend section +depend seminar +depend sepnum +depend setspace +depend subfig +depend textcase +depend thumbpdf +depend typehtml +depend underscore +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 + +name collection-luatex +category Collection +revision 37811 +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 checkcites +depend chickenize +depend cloze +depend enigma +depend interpreter +depend lua-check-hyphen +depend lua-visual-debug +depend lua2dox +depend luabibentry +depend luabidi +depend luacode +depend luaindex +depend luainputenc +depend luaintro +depend lualatex-doc +depend lualatex-math +depend lualibs +depend luamplib +depend luaotfload +depend luasseq +depend luatexbase +depend luatexko +depend luatextra +depend luatodonotes +depend luaxml +depend odsfile +depend placeat +depend selnolig +depend showhyphens +depend spelling +depend ucharcat + +name collection-mathextra +category Collection +revision 37535 +shortdesc Mathematics packages +relocated 1 +depend collection-fontsrecommended +depend collection-latex +depend 12many +depend amstex +depend backnaur +depend begriff +depend binomexp +depend boldtensors +depend bosisio +depend bropd +depend calculation +depend ccfonts +depend commath +depend concmath +depend concrete +depend conteq +depend ebproof +depend eqnarray +depend extarrows +depend extpfeil +depend faktor +depend grundgesetze +depend interval +depend ionumbers +depend isomath +depend logicproof +depend lpform +depend lplfitch +depend mathcomp +depend mattens +depend mhequ +depend multiobjective +depend natded +depend nath +depend ot-tableau +depend oubraces +depend perfectcut +depend prftree +depend proba +depend rec-thy +depend ribbonproofs +depend rmathbr +depend sesamanuel +depend shuffle +depend skmath +depend statex +depend statex2 +depend stmaryrd +depend subsupscripts +depend susy +depend syllogism +depend sympytexpackage +depend synproof +depend tablor +depend tensor +depend tex-ewd +depend thmbox +depend turnstile +depend unicode-math +depend venn +depend yhmath +depend ytableau + +name collection-metapost +category Collection +revision 37994 +shortdesc MetaPost and Metafont packages +relocated 1 +depend collection-basic +depend automata +depend bbcard +depend blockdraw_mp +depend bpolynomial +depend cmarrows +depend drv +depend dviincl +depend emp +depend epsincl +depend expressg +depend exteps +depend featpost +depend feynmf +depend feynmp-auto +depend garrigues +depend gmp +depend hatching +depend latexmp +depend mcf2graph +depend metago +depend metaobj +depend metaplot +depend metapost +depend metauml +depend mfpic +depend mfpic4ode +depend mp3d +depend mpcolornames +depend mpattern +depend mpgraphics +depend piechartmp +depend repere +depend roex +depend roundrect +depend shapes +depend slideshow +depend splines +depend suanpan +depend textpath +depend threeddice + +name collection-music +category Collection +revision 37604 +shortdesc Music packages +relocated 1 +longdesc Music-related fonts and packages. +depend collection-latex +depend abc +depend bagpipe +depend figbas +depend gchords +depend gtrcrd +depend guitar +depend guitarchordschemes +depend harmony +depend leadsheets +depend lilyglyphs +depend m-tx +depend musixguit +depend musixtex +depend musixtex-fnts +depend musixtnt +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 + +name collection-pictures +category Collection +revision 38139 +shortdesc Graphics, pictures, diagrams +relocated 1 +longdesc Including TikZ, pict, etc., but MetaPost and PStricks are +longdesc separate. +depend collection-basic +depend aobs-tikz +depend askmaps +depend asyfig +depend asypictureb +depend autoarea +depend bardiag +depend blochsphere +depend bloques +depend blox +depend bodegraph +depend bondgraph +depend bondgraphs +depend braids +depend bxeepic +depend cachepic +depend celtic +depend chemfig +depend combinedgraphics +depend circuitikz +depend curve +depend curve2e +depend curves +depend dcpic +depend diagmac2 +depend doc-pictex +depend dottex +depend dot2texi +depend dratex +depend drs +depend duotenzor +depend eepic +depend epspdf +depend epspdfconversion +depend esk +depend fast-diagram +depend fig4latex +depend fitbox +depend flowchart +depend forest +depend genealogytree +depend getmap +depend gincltex +depend gnuplottex +depend gradientframe +depend grafcet +depend graphviz +depend harveyballs +depend here +depend hf-tikz +depend hobby +depend hvfloat +depend knitting +depend knittingpattern +depend lapdf +depend latex-make +depend lpic +depend makeshape +depend mathspic +depend miniplot +depend mkpic +depend modiagram +depend neuralnetwork +depend numericplots +depend pb-diagram +depend petri-nets +depend pgf +depend pgf-blur +depend pgf-soroban +depend pgf-umlcd +depend pgf-umlsd +depend pgfgantt +depend pgfkeyx +depend pgfmolbio +depend pgfopts +depend pgfplots +depend picinpar +depend pict2e +depend pictex +depend pictex2 +depend pinlabel +depend pmgraph +depend prerex +depend productbox +depend pxpgfmark +depend qcircuit +depend qrcode +depend randbild +depend randomwalk +depend reotex +depend rviewport +depend sa-tikz +depend schemabloc +depend setdeck +depend smartdiagram +depend spath3 +depend swimgraf +depend texdraw +depend ticollege +depend tipfr +depend tikz-3dplot +depend tikz-bayesnet +depend tikz-cd +depend tikz-dependency +depend tikz-dimline +depend tikz-inet +depend tikz-opm +depend tikz-palattice +depend tikz-qtree +depend tikz-timing +depend tikzinclude +depend tikzmark +depend tikzorbital +depend tikzpagenodes +depend tikzpfeile +depend tikzposter +depend tikzscale +depend tikzsymbols +depend timing-diagrams +depend tqft +depend tkz-base +depend tkz-berge +depend tkz-doc +depend tkz-euclide +depend tkz-fct +depend tkz-graph +depend tkz-kiviat +depend tkz-linknodes +depend tkz-orm +depend tkz-tab +depend tsemlines +depend tufte-latex +depend venndiagram +depend xpicture +depend xypic + +name collection-plainextra +category Collection +revision 37156 +shortdesc Plain TeX packages +relocated 1 +longdesc Add-on packages and macros that work with plain TeX. +depend collection-basic +depend epsf-dvipdfmx +depend figflow +depend fixpdfmag +depend font-change +depend fontch +depend getoptk +depend gfnotation +depend graphics-pln +depend hyplain +depend js-misc +depend mkpattern +depend newsletr +depend pitex +depend placeins-plain +depend plipsum +depend plnfss +depend plstmary +depend present +depend resumemac +depend texinfo +depend timetable +depend treetex +depend varisize +depend xii + +name collection-pstricks +category Collection +revision 34995 +shortdesc PSTricks +relocated 1 +longdesc PSTricks core and all add-on packages. +depend collection-basic +depend collection-genericrecommended +depend auto-pst-pdf +depend bclogo +depend dsptricks +depend makeplot +depend pdftricks +depend pdftricks2 +depend pedigree-perl +depend psbao +depend pst-2dplot +depend pst-3d +depend pst-3dplot +depend pst-abspos +depend pst-am +depend pst-asr +depend pst-bar +depend pst-barcode +depend pst-bezier +depend pst-blur +depend pst-bspline +depend pst-calendar +depend pst-circ +depend pst-coil +depend pst-cox +depend pst-dbicons +depend pst-diffraction +depend pst-electricfield +depend pst-eps +depend pst-eucl +depend pst-exa +depend pst-fill +depend pst-fit +depend pst-fr3d +depend pst-fractal +depend pst-fun +depend pst-func +depend pst-gantt +depend pst-geo +depend pst-ghsb +depend pst-gr3d +depend pst-grad +depend pst-graphicx +depend pst-infixplot +depend pst-intersect +depend pst-jtree +depend pst-knot +depend pst-labo +depend pst-layout +depend pst-lens +depend pst-light3d +depend pst-magneticfield +depend pst-math +depend pst-mirror +depend pst-node +depend pst-ob3d +depend pst-ode +depend pst-optexp +depend pst-optic +depend pst-osci +depend pst-ovl +depend pst-pad +depend pst-pdgr +depend pst-perspective +depend pst-platon +depend pst-plot +depend pst-poly +depend pst-pulley +depend pst-qtree +depend pst-rubans +depend pst-sigsys +depend pst-slpe +depend pst-solarsystem +depend pst-solides3d +depend pst-soroban +depend pst-spectra +depend pst-spirograph +depend pst-stru +depend pst-support +depend pst-text +depend pst-thick +depend pst-tools +depend pst-tree +depend pst-tvz +depend pst-uml +depend pst-vectorian +depend pst-vowel +depend pst-vue3d +depend pst2pdf +depend pstricks +depend pstricks-add +depend pstricks_calcnotes +depend uml +depend vaucanson-g +depend vocaltract + +name collection-publishers +category Collection +revision 38364 +shortdesc Publisher styles, theses, etc. +relocated 1 +depend collection-latex +depend IEEEconf +depend IEEEtran +depend aastex +depend abntex2 +depend acmconf +depend active-conf +depend adfathesis +depend afparticle +depend afthesis +depend aguplus +depend aiaa +depend ametsoc +depend anufinalexam +depend aomart +depend apa +depend apa6 +depend apa6e +depend arsclassica +depend articleingud +depend asaetr +depend ascelike +depend bangorcsthesis +depend beamer-FUBerlin +depend bgteubner +depend br-lex +depend brandeis-dissertation +depend cascadilla +depend chem-journal +depend classicthesis +depend cleanthesis +depend cmpj +depend confproc +depend dccpaper +depend dithesis +depend ebook +depend ebsthesis +depend ejpecp +depend ekaia +depend elbioimp +depend elsarticle +depend elteikthesis +depend erdc +depend estcpmm +depend fbithesis +depend fcavtex +depend fcltxdoc +depend fei +depend gaceta +depend gatech-thesis +depend gradstudentresume +depend gsemthesis +depend gzt +depend har2nat +depend hobete +depend icsv +depend ieeepes +depend ijmart +depend imac +depend imtekda +depend jmlr +depend jpsj +depend kdgdocs +depend kluwer +depend lps +depend matc3 +depend matc3mem +depend mcmthesis +depend mentis +depend mnras +depend msu-thesis +depend mugsthesis +depend musuos +depend muthesis +depend nature +depend nddiss +depend ndsu-thesis +depend nih +depend nostarch +depend nrc +depend onrannual +depend opteng +depend philosophersimprint +depend pittetd +depend pkuthss +depend powerdot-FUBerlin +depend pracjourn +depend procIAGssymp +depend proposal +depend ptptex +depend psu-thesis +depend resphilosophica +depend resumecls +depend revtex +depend revtex4 +depend ryethesis +depend sageep +depend sapthesis +depend scrjrnl +depend schule +depend sduthesis +depend seuthesis +depend soton +depend sphdthesis +depend spie +depend sr-vorl +depend stellenbosch +depend suftesi +depend sugconf +depend tabriz-thesis +depend texilikechaps +depend texilikecover +depend thesis-ekf +depend thesis-titlepage-fhac +depend thuthesis +depend toptesi +depend tudscr +depend tugboat +depend tugboat-plain +depend turabian +depend tui +depend uaclasses +depend uadocs +depend uafthesis +depend ucbthesis +depend ucdavisthesis +depend ucthesis +depend uestcthesis +depend uiucredborder +depend uiucthesis +depend ulthese +depend umthesis +depend umich-thesis +depend unamth-template +depend unamthesis +depend unswcover +depend uothesis +depend urcls +depend uowthesis +depend uowthesistitlepage +depend uspatent +depend ut-thesis +depend uwthesis +depend vancouver +depend wsemclassic +depend xcookybooky +depend yathesis +depend york-thesis + +name collection-science +category Collection +revision 36989 +shortdesc Natural and computer sciences +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 + +name collection-xetex +category Collection +revision 38257 +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 bidi-atbegshi +depend bidicontour +depend bidipagegrid +depend bidishadowtext +depend bidipresentation +depend fixlatvian +depend fontbook +depend fontwrap +depend interchar +depend mathspec +depend philokalia +depend polyglossia +depend ptext +depend quran +depend realscripts +depend ucharclasses +depend unisugar +depend xebaposter +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 +depend xetexconfig +depend xetexfontinfo +depend xetexko +depend xevlna +depend xltxtra +depend xunicode + +name collref +category Package +revision 35084 +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 + RELOC/doc/latex/collref/collsamp.tex +srcfiles size=7 + RELOC/source/latex/collref/collref.dtx + RELOC/source/latex/collref/collref.ins +catalogue-ctan /macros/latex/contrib/collref +catalogue-date 2014-09-01 06:18:30 +0200 +catalogue-license lppl1.3 +catalogue-version 2.0b + +name colordoc +category Package +revision 18270 +shortdesc Coloured syntax highlights in documentation. +relocated 1 +longdesc The package is used in documentation files (that use the doc +longdesc package); with it the code listings will highlight (for +longdesc example) pairs of curly braces with matching colors. Other +longdesc delimiters like \if ... \fi, are highlighted, as are the names +longdesc of new commands. All this makes code a little more readable, +longdesc and helps during process of writing. Three options are +longdesc provided, including a non-color option designed for printing +longdesc (which numbers delimiters and underlines new commands). +runfiles size=2 + RELOC/tex/latex/colordoc/colordoc.sty +docfiles size=50 + RELOC/doc/latex/colordoc/README + RELOC/doc/latex/colordoc/colordoc.pdf +srcfiles size=11 + RELOC/source/latex/colordoc/colordoc.dtx + RELOC/source/latex/colordoc/colordoc.ins +catalogue-ctan /macros/latex/contrib/colordoc +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1 + +name colorinfo +category Package +revision 15878 +shortdesc Retrieve colour model and values for defined colours. +relocated 1 +runfiles size=2 + RELOC/tex/latex/colorinfo/colorinfo.sty +docfiles size=2 + RELOC/doc/latex/colorinfo/README + RELOC/doc/latex/colorinfo/colorinfo-test.tex +catalogue-ctan /macros/latex/contrib/colorinfo +catalogue-date 2011-09-27 11:06:33 +0200 +catalogue-license lppl +catalogue-version 0.3c + +name colorsep +category Package +revision 13293 +shortdesc Color separation. +relocated 1 +longdesc Support for colour separation when using dvips. +runfiles size=2 + RELOC/dvips/colorsep/colorsep.pro +catalogue-ctan /graphics/colorsep/colorsep.pro +catalogue-date 2011-09-27 13:05:50 +0200 +catalogue-license pd + +name colorspace +category Package +revision 37573 +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 + RELOC/doc/latex/colorspace/colorspace.tex +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 + +name colortab +category Package +revision 22155 +shortdesc Shade cells of tables and halign. +relocated 1 +longdesc The package lets you shade or colour the cells in the alignment +longdesc environments such as \halign and LaTeX's tabular and array +longdesc environments. The colortbl package is to be preferred today +longdesc with LaTeX (it assures compatibility with the longtable +longdesc package, which is no longer true with colortab); another modern +longdesc option is the table-colouring option of the xcolor. However, +longdesc colortab remains an adequate solution for use with Plain TeX. +runfiles size=7 + RELOC/tex/generic/colortab/colortab.sty + RELOC/tex/generic/colortab/colortab.tex +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.tex +catalogue-ctan /macros/generic/colortab +catalogue-date 2011-09-27 13:26:50 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name colortbl +category Package +revision 29803 +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 + RELOC/doc/latex/colortbl/colortbl-DE.tex + RELOC/doc/latex/colortbl/colortbl.pdf +srcfiles size=12 + RELOC/source/latex/colortbl/colortbl.dtx + RELOC/source/latex/colortbl/colortbl.ins +catalogue-ctan /macros/latex/contrib/colortbl +catalogue-date 2012-02-14 10:56:36 +0100 +catalogue-license lppl +catalogue-version v1.0a + +name colorwav +category Package +revision 15878 +shortdesc Colours by wavelength of visible light. +relocated 1 +longdesc The package allows the user to obtain an RGB value (suitable +longdesc for use in the color package) from a wavelength of light. The +longdesc default unit is nanometres, but other units may be used. Note +longdesc that this function is also available within the xcolor. +runfiles size=2 + RELOC/tex/latex/colorwav/colorwav.sty +docfiles size=30 + RELOC/doc/latex/colorwav/README + RELOC/doc/latex/colorwav/colorwav.pdf +srcfiles size=7 + RELOC/source/latex/colorwav/colorwav.dtx + RELOC/source/latex/colorwav/colorwav.ins +catalogue-ctan /macros/latex/contrib/colorwav +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lgpl +catalogue-version 1.0 + +name colorweb +category Package +revision 31490 +shortdesc Extend the color package colour space. +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 +docfiles size=463 + RELOC/doc/latex/colorweb/README + RELOC/doc/latex/colorweb/colorweb.pdf + RELOC/doc/latex/colorweb/colorwebfull.pdf + RELOC/doc/latex/colorweb/colorwebuser.pdf + RELOC/doc/latex/colorweb/descript.ion +srcfiles size=21 + RELOC/source/latex/colorweb/colorweb.dtx + RELOC/source/latex/colorweb/colorweb.ins +catalogue-ctan /macros/latex/contrib/colorweb +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.3 + +name colourchange +category Package +revision 21741 +shortdesc colourchange +relocated 1 +longdesc The package allows you to change the colour of the structural +longdesc elements (inner theme and outer theme) of your beamer +longdesc presentation during the presentation. There is a manual option +longdesc but there is also the option to have your structure colour +longdesc change from one colour to another as a function of how far +longdesc through the presentation you are. +runfiles size=2 + RELOC/tex/latex/colourchange/colourchange.sty +docfiles size=59 + RELOC/doc/latex/colourchange/README + RELOC/doc/latex/colourchange/colourchangedoc.pdf + RELOC/doc/latex/colourchange/colourchangedoc.tex +catalogue-ctan /macros/latex/contrib/colourchange +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl3 +catalogue-version 1.22 + +name combelow +category Package +revision 18462 +shortdesc Typeset "comma-below" letters, as in Romanian. +relocated 1 +longdesc The package defines a command \cb that positions a comma below +longdesc a letter, as required (for example) in Romanian typesetting. +longdesc The command is robust, but interferes with hyphenation. +runfiles size=1 + RELOC/tex/latex/combelow/combelow.sty +docfiles size=30 + RELOC/doc/latex/combelow/README + RELOC/doc/latex/combelow/combelow.bib + RELOC/doc/latex/combelow/combelow.pdf + RELOC/doc/latex/combelow/combelow.tex +catalogue-ctan /macros/latex/contrib/combelow +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.99f + +name combinedgraphics +category Package +revision 27198 +shortdesc Include graphic (EPS or PDF)/LaTeX combinations. +relocated 1 +longdesc This package provides a macro (\includecombinedgraphics) for +longdesc the inclusion of combined EPS/LaTeX and PDF/LaTeX graphics (an +longdesc export format of Gnuplot, Xfig, and maybe other programs). +longdesc Instead of including the graphics with a simple \input, the +longdesc \includecombinedgraphics macro has some comforts: changing the +longdesc font and color of the text of the LaTeX part; rescaling the +longdesc graphics without affecting the font of the LaTeX part; +longdesc automatic inclusion of the vector graphics part, as far as +longdesc LaTeX part does not do it (e.g., for files exported from +longdesc Gnuplot before version 4.2); and rescaling and rotating of +longdesc complete graphics (similar to \includegraphics from the +longdesc graphicx package). +runfiles size=4 + RELOC/tex/latex/combinedgraphics/combinedgraphics.sty +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/test/Makefile + RELOC/doc/latex/combinedgraphics/test/combinedgraphics_test.pdf + RELOC/doc/latex/combinedgraphics/test/combinedgraphics_test.tex + RELOC/doc/latex/combinedgraphics/test/gnuplot42.eps + RELOC/doc/latex/combinedgraphics/test/gnuplot42.pdf + RELOC/doc/latex/combinedgraphics/test/gnuplot42.plt + RELOC/doc/latex/combinedgraphics/test/gnuplot42.tex + RELOC/doc/latex/combinedgraphics/test/xfig325.eps + RELOC/doc/latex/combinedgraphics/test/xfig325.fig + RELOC/doc/latex/combinedgraphics/test/xfig325.pdf + RELOC/doc/latex/combinedgraphics/test/xfig325.tex +srcfiles size=10 + RELOC/source/latex/combinedgraphics/combinedgraphics.dtx + RELOC/source/latex/combinedgraphics/combinedgraphics.ins +catalogue-ctan /macros/latex/contrib/combinedgraphics +catalogue-date 2014-10-17 01:17:00 +0200 +catalogue-license gpl +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 comfortaa +category Package +revision 27536 +shortdesc Sans serif font, with LaTeX support. +relocated 1 +longdesc Comfortaa is a sans-serif font, comfortable in every aspect, +longdesc designed by Johan Aakerlund. The font, which includes three +longdesc weights (thin, regular and bold), is available on Johan's +longdesc deviantArt web page as TrueType files under the Open Font +longdesc License version 1.1. This package provides support for this +longdesc font in LaTeX, and includes both the TrueType fonts, and +longdesc conversions to Adobe Type 1 format. +execute addMap comfortaa.map +runfiles size=696 + RELOC/fonts/afm/public/comfortaa/Comfortaa-Bold-LCDFJ.afm + RELOC/fonts/afm/public/comfortaa/Comfortaa-Bold.afm + RELOC/fonts/afm/public/comfortaa/Comfortaa-Light-LCDFJ.afm + RELOC/fonts/afm/public/comfortaa/Comfortaa-Light.afm + RELOC/fonts/afm/public/comfortaa/Comfortaa-Regular-LCDFJ.afm + RELOC/fonts/afm/public/comfortaa/Comfortaa-Regular.afm + RELOC/fonts/enc/dvips/comfortaa/comfortaa-01.enc + RELOC/fonts/enc/dvips/comfortaa/comfortaa-02.enc + RELOC/fonts/enc/dvips/comfortaa/comfortaa-03.enc + RELOC/fonts/enc/dvips/comfortaa/comfortaa-dotlessj.enc + RELOC/fonts/map/dvips/comfortaa/comfortaa.map + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-01.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-02.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-03.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-01.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-02.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-03.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-dotlessj.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-ts1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-Slanted-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-dotlessj.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-ts1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Bold-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-01.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-02.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-03.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-01.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-02.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-03.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-dotlessj.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-ts1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-Slanted-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-dotlessj.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-ts1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Light-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-01.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-02.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-03.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-01.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-02.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-03.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-dotlessj.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-ts1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-Slanted-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-dotlessj.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-lgr.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-ot1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-t1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-t2a.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-t2b.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-t2c.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-ts1.tfm + RELOC/fonts/tfm/public/comfortaa/Comfortaa-Regular-x2.tfm + RELOC/fonts/truetype/public/comfortaa/Comfortaa-Bold.ttf + RELOC/fonts/truetype/public/comfortaa/Comfortaa-Light.ttf + RELOC/fonts/truetype/public/comfortaa/Comfortaa-Regular.ttf + RELOC/fonts/type1/public/comfortaa/Comfortaa-Bold-LCDFJ.pfb + RELOC/fonts/type1/public/comfortaa/Comfortaa-Bold.pfb + RELOC/fonts/type1/public/comfortaa/Comfortaa-Light-LCDFJ.pfb + RELOC/fonts/type1/public/comfortaa/Comfortaa-Light.pfb + RELOC/fonts/type1/public/comfortaa/Comfortaa-Regular-LCDFJ.pfb + RELOC/fonts/type1/public/comfortaa/Comfortaa-Regular.pfb + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-ts1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-Slanted-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-SmallCaps-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-SmallCaps-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-SmallCaps-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-SmallCaps-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-SmallCaps-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-SmallCaps-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-SmallCaps-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-ts1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Bold-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-ts1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-Slanted-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-SmallCaps-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-SmallCaps-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-SmallCaps-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-SmallCaps-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-SmallCaps-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-SmallCaps-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-SmallCaps-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-ts1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Light-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-ts1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-Slanted-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-SmallCaps-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-SmallCaps-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-SmallCaps-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-SmallCaps-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-SmallCaps-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-SmallCaps-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-SmallCaps-x2.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-lgr.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-ot1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-t1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-t2a.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-t2b.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-t2c.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-ts1.vf + RELOC/fonts/vf/public/comfortaa/Comfortaa-Regular-x2.vf + RELOC/tex/latex/comfortaa/comfortaa.sty + RELOC/tex/latex/comfortaa/lgrfco.fd + RELOC/tex/latex/comfortaa/ot1fco.fd + RELOC/tex/latex/comfortaa/t1fco.fd + RELOC/tex/latex/comfortaa/t2afco.fd + RELOC/tex/latex/comfortaa/t2bfco.fd + 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-license lppl1.3 +catalogue-version 2.3 + +name comicneue +category Package +revision 37744 +shortdesc Use Comic Neue with TeX(-alike) systems +relocated 1 +longdesc Comic Neue is a well-known redesign of the (in)famous Comic +longdesc Sans font. The package provides the original OpenType font for +longdesc XeTeX and LuaTeX users, and also has converted Type1 files for +longdesc pdfTeX users. Issues with this package can be reported on +longdesc GitHub or emailed to tex@slxh.nl. +execute addMap ComicNeue.map +execute addMap ComicNeueAngular.map +runfiles size=453 + RELOC/fonts/enc/dvips/comicneue/a_bs6yxn.enc + RELOC/fonts/enc/dvips/comicneue/a_lfux4u.enc + RELOC/fonts/enc/dvips/comicneue/a_t3s7zg.enc + RELOC/fonts/enc/dvips/comicneue/a_yvpaqy.enc + RELOC/fonts/map/dvips/comicneue/ComicNeue.map + RELOC/fonts/map/dvips/comicneue/ComicNeueAngular.map + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Bold_Oblique.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Light_Oblique.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue-Angular_Regular_Oblique.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Bold.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Bold_Oblique.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Light.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Light_Oblique.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Regular.otf + RELOC/fonts/opentype/rozynski/comicneue/ComicNeue_Regular_Oblique.otf + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Light-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeue-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ly1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ot1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1--lcdfj.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-t1.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1--base.tfm + RELOC/fonts/tfm/rozynski/comicneue/ComicNeueAngular-tlf-ts1.tfm + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Bold.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-BoldLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-BoldOblique.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-BoldObliqueLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Light.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-LightLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-LightOblique.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-LightObliqueLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-Oblique.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue-ObliqueLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeue.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Bold.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldOblique.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-BoldObliqueLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Light.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightOblique.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-LightObliqueLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-Oblique.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular-ObliqueLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngular.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueAngularLCDFJ.pfb + RELOC/fonts/type1/rozynski/comicneue/ComicNeueLCDFJ.pfb + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Bold-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Light-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-LightOblique-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-Oblique-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeue-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Bold-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Light-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-LightOblique-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-Oblique-tlf-ts1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ly1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ot1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-t1.vf + RELOC/fonts/vf/rozynski/comicneue/ComicNeueAngular-tlf-ts1.vf + RELOC/tex/latex/comicneue/LY1ComicNeue-TLF.fd + RELOC/tex/latex/comicneue/LY1ComicNeueAngular-TLF.fd + RELOC/tex/latex/comicneue/OT1ComicNeue-TLF.fd + RELOC/tex/latex/comicneue/OT1ComicNeueAngular-TLF.fd + RELOC/tex/latex/comicneue/T1ComicNeue-TLF.fd + RELOC/tex/latex/comicneue/T1ComicNeueAngular-TLF.fd + RELOC/tex/latex/comicneue/TS1ComicNeue-TLF.fd + RELOC/tex/latex/comicneue/TS1ComicNeueAngular-TLF.fd + RELOC/tex/latex/comicneue/comicneue.sty +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-ctan /fonts/comicneue +catalogue-date 2015-07-03 19:37:11 +0200 +catalogue-license ofl +catalogue-topics font font-otf font-supp font-type1 +catalogue-version 1.0 + +name commado +category Package +revision 28419 +shortdesc Expandable iteration on comma-separated and filename lists. +relocated 1 +longdesc The bundle provides two packages: commado and filesdo. The +longdesc package commado provides the command \DoWithCSL: +longdesc \DoWithCSL{}{} applies an existing one-parameter +longdesc macro to each item in a list in which terms are +longdesc separated by commas. The package filesdo provides the command +longdesc \DoWithBasesExts: \DoWithBasesExts{}{}{} +longdesc which runs the single parameter command on each file +longdesc whose base and extension are respectively from the comma- +longdesc separated lists and . These 'loop'-like commands +longdesc are (themselves) entirely expandable. The packages rely on +longdesc packages plainpkg, and stacklet +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-ctan /macros/generic/commado +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.11 + +name commath +category Package +revision 15878 +shortdesc Mathematics typesetting support. +relocated 1 +longdesc Provides a range of differential, partial differential and +longdesc delimiter commands, together with a \fullfunction (function, +longdesc with both domain and range, and function operation) and various +longdesc reference commands. +runfiles size=3 + RELOC/tex/latex/commath/commath.sty +docfiles size=37 + RELOC/doc/latex/commath/README + RELOC/doc/latex/commath/commath.pdf + RELOC/doc/latex/commath/commath.tex +catalogue-ctan /macros/latex/contrib/commath +catalogue-date 2012-04-10 17:44:48 +0200 +catalogue-license lppl +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 comment +category Package +revision 32778 +shortdesc Selectively include/excludes portions of text. +relocated 1 +longdesc Selectively include/exclude pieces of text, allowing the user +longdesc to define new, separately controlled, comment versions. All +longdesc text between \comment ... \endcomment or \begin{comment} ... +longdesc \end{comment} is discarded. The opening and closing commands +longdesc should appear on a line of their own. No starting spaces, +longdesc nothing after it. This environment should work with arbitrary +longdesc amounts of comment, and the comment can be arbitrary text. +longdesc Other 'comment' environments are defined and +longdesc selected/deselected with \includecomment{versiona} and +longdesc \excludecoment{versionb} These environments are used as +longdesc \versiona ... \endversiona or \begin{versiona} ... +longdesc \end{versiona} with the opening and closing commands again on a +longdesc line of their own. +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 + +name compactbib +category Package +revision 15878 +shortdesc Multiple thebibliography environments. +relocated 1 +longdesc Allows a second bibliography, optionally with a different +longdesc title, after the main bibliography. +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-license lppl + +name complexity +category Package +revision 15878 +shortdesc Computational complexity class names. +relocated 1 +longdesc Complexity is a LaTeX package that defines commands to typeset +longdesc Computational Complexity Classes such as $\P$ and $\NP$ (as +longdesc well as hundreds of others). It also offers several options +longdesc including which font classes are typeset in and how many are +longdesc defined (all of them or just the basic, most commonly used +longdesc ones). The package has no dependencies other than the standard +longdesc ifthen package. +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 + +name components-of-TeX +category Package +revision 15878 +catalogue components +shortdesc Components of TeX. +relocated 1 +longdesc An introduction to the components and files users of TeX may +longdesc encounter. +docfiles size=11 + RELOC/doc/generic/components-of-TeX/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-license gpl + +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 + RELOC/doc/latex/comprehensive/source/Makefile + 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/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 +catalogue-ctan /info/symbols/comprehensive +catalogue-date 2012-05-21 15:40:40 +0200 +catalogue-license lppl +catalogue-version 11.0 + +name computational-complexity +category Package +revision 36899 +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. +runfiles size=57 + RELOC/bibtex/bst/computational-complexity/cc.bst + RELOC/bibtex/bst/computational-complexity/cc2.bst + RELOC/tex/latex/computational-complexity/cc-cls.sty + RELOC/tex/latex/computational-complexity/cc.cls + RELOC/tex/latex/computational-complexity/cc2cite.sty + RELOC/tex/latex/computational-complexity/cc4amsart.sty + RELOC/tex/latex/computational-complexity/cc4apjrnl.sty + RELOC/tex/latex/computational-complexity/cc4elsart.sty + RELOC/tex/latex/computational-complexity/cc4jT.sty + RELOC/tex/latex/computational-complexity/cc4llncs.sty + RELOC/tex/latex/computational-complexity/cc4siamltex.sty + RELOC/tex/latex/computational-complexity/cc4svjour.sty + RELOC/tex/latex/computational-complexity/ccalgo.sty + RELOC/tex/latex/computational-complexity/ccaux.sty + RELOC/tex/latex/computational-complexity/cccite.sty + RELOC/tex/latex/computational-complexity/ccdbs.sty + RELOC/tex/latex/computational-complexity/cclayout.sty + RELOC/tex/latex/computational-complexity/ccproof.sty + RELOC/tex/latex/computational-complexity/ccqed.sty + RELOC/tex/latex/computational-complexity/ccref.sty + RELOC/tex/latex/computational-complexity/ccreltx.sty + RELOC/tex/latex/computational-complexity/ccthm.sty + RELOC/tex/latex/computational-complexity/relabel.sty + RELOC/tex/latex/computational-complexity/thcc.sty +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 + +name concepts +category Package +revision 29020 +shortdesc Keeping track of formal 'concepts' for a particular field. +relocated 1 +longdesc The package helps to keep track of formal 'concepts' for a +longdesc specific field or document. This is particularly useful for +longdesc scientific papers (for example, in physics, mathematics or +longdesc computer science), which may introduce several concepts (with +longdesc their own symbols). The package's commands allow the user to +longdesc define a concept (typically, near its first use), and will +longdesc ensure consistent use throughout the document. The package +longdesc depends on several other packages; while these are fairly +longdesc common packages, the user should check the package's README +longdesc file for the complete list. +runfiles size=7 + RELOC/tex/latex/concepts/concepts.sty +docfiles size=89 + RELOC/doc/latex/concepts/README + RELOC/doc/latex/concepts/concepts.pdf + RELOC/doc/latex/concepts/concepts.tex + RELOC/doc/latex/concepts/dry.sty + RELOC/doc/latex/concepts/packagedoc.cls + RELOC/doc/latex/concepts/with.sty +catalogue-ctan /macros/latex/contrib/concepts +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.0.5-r1 + +name concmath-fonts +category Package +revision 17218 +shortdesc Concrete mathematics fonts. +relocated 1 +longdesc The fonts are derived from the computer modern mathematics +longdesc fonts and from Knuth's Concrete Roman fonts; they are +longdesc distributed as Metafont source. LaTeX support is offered by the +longdesc concmath package. +runfiles size=78 + RELOC/fonts/source/public/concmath-fonts/xccam10.mf + RELOC/fonts/source/public/concmath-fonts/xccam5.mf + RELOC/fonts/source/public/concmath-fonts/xccam6.mf + RELOC/fonts/source/public/concmath-fonts/xccam7.mf + RELOC/fonts/source/public/concmath-fonts/xccam8.mf + RELOC/fonts/source/public/concmath-fonts/xccam9.mf + RELOC/fonts/source/public/concmath-fonts/xccbm10.mf + RELOC/fonts/source/public/concmath-fonts/xccbm5.mf + RELOC/fonts/source/public/concmath-fonts/xccbm6.mf + RELOC/fonts/source/public/concmath-fonts/xccbm7.mf + RELOC/fonts/source/public/concmath-fonts/xccbm8.mf + RELOC/fonts/source/public/concmath-fonts/xccbm9.mf + RELOC/fonts/source/public/concmath-fonts/xccex10.mf + RELOC/fonts/source/public/concmath-fonts/xccex7.mf + RELOC/fonts/source/public/concmath-fonts/xccex8.mf + RELOC/fonts/source/public/concmath-fonts/xccex9.mf + RELOC/fonts/source/public/concmath-fonts/xccmi10.mf + RELOC/fonts/source/public/concmath-fonts/xccmi5.mf + RELOC/fonts/source/public/concmath-fonts/xccmi6.mf + RELOC/fonts/source/public/concmath-fonts/xccmi7.mf + RELOC/fonts/source/public/concmath-fonts/xccmi8.mf + RELOC/fonts/source/public/concmath-fonts/xccmi9.mf + RELOC/fonts/source/public/concmath-fonts/xccsy10.mf + RELOC/fonts/source/public/concmath-fonts/xccsy5.mf + RELOC/fonts/source/public/concmath-fonts/xccsy6.mf + RELOC/fonts/source/public/concmath-fonts/xccsy7.mf + RELOC/fonts/source/public/concmath-fonts/xccsy8.mf + RELOC/fonts/source/public/concmath-fonts/xccsy9.mf + RELOC/fonts/tfm/public/concmath-fonts/xccam10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam5.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam6.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccam9.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm5.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm6.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccbm9.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccex10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccex7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccex8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccex9.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi5.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi6.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccmi9.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy10.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy5.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy6.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy7.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy8.tfm + RELOC/fonts/tfm/public/concmath-fonts/xccsy9.tfm +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-license lppl + +name concprog +category Package +revision 18791 +shortdesc Concert programmes. +relocated 1 +longdesc A class which provides the necessary macros to prepare a +longdesc (classical) concert programme; a sample is provided. +runfiles size=4 + RELOC/tex/latex/concprog/ConcProg.cls +docfiles size=1 + RELOC/doc/latex/concprog/program.tex +catalogue-ctan /macros/latex/contrib/concprog +catalogue-date 2012-05-30 13:02:03 +0200 +catalogue-license gpl + +name concrete +category Package +revision 15878 +shortdesc Concrete Roman fonts. +relocated 1 +longdesc Concrete Roman fonts, designed by Donald E. Knuth, originally +longdesc for use with Euler mathematics fonts. Alternative mathematics +longdesc fonts, based on the concrete 'parameter set' are available as +longdesc the concmath fonts bundle. LaTeX support is offered by the +longdesc beton, concmath and ccfonts packages. T1- and TS1-encoded +longdesc versions of the fonts are available in the ecc bundle, and +longdesc Adobe Type 1 versions of the ecc fonts are part of the cm-super +longdesc bundle. +runfiles size=28 + RELOC/fonts/source/public/concrete/cccsc10.mf + RELOC/fonts/source/public/concrete/ccmi10.mf + RELOC/fonts/source/public/concrete/ccmic9.mf + RELOC/fonts/source/public/concrete/ccr10.mf + RELOC/fonts/source/public/concrete/ccr5.mf + RELOC/fonts/source/public/concrete/ccr6.mf + RELOC/fonts/source/public/concrete/ccr7.mf + RELOC/fonts/source/public/concrete/ccr8.mf + RELOC/fonts/source/public/concrete/ccr9.mf + RELOC/fonts/source/public/concrete/ccsl10.mf + RELOC/fonts/source/public/concrete/ccsl9.mf + RELOC/fonts/source/public/concrete/ccslc9.mf + RELOC/fonts/source/public/concrete/ccti10.mf + RELOC/fonts/source/public/concrete/odigs.mf + RELOC/fonts/tfm/public/concrete/cccsc10.tfm + RELOC/fonts/tfm/public/concrete/ccmi10.tfm + RELOC/fonts/tfm/public/concrete/ccmic9.tfm + RELOC/fonts/tfm/public/concrete/ccr10.tfm + RELOC/fonts/tfm/public/concrete/ccr5.tfm + RELOC/fonts/tfm/public/concrete/ccr6.tfm + RELOC/fonts/tfm/public/concrete/ccr7.tfm + RELOC/fonts/tfm/public/concrete/ccr8.tfm + RELOC/fonts/tfm/public/concrete/ccr9.tfm + RELOC/fonts/tfm/public/concrete/ccsl10.tfm + RELOC/fonts/tfm/public/concrete/ccsl9.tfm + RELOC/fonts/tfm/public/concrete/ccslc9.tfm + RELOC/fonts/tfm/public/concrete/ccti10.tfm +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-license knuth + +name confproc +category Package +revision 29349 +shortdesc A set of tools for generating conference proceedings. +relocated 1 +longdesc The confproc collection comprises a class, a BibTeX style, and +longdesc some scripts for generating conference proceedings. It derives +longdesc from LaTeX scripts written for the DAFx-06 conference +longdesc proceedings, largely based on the pdfpages package for +longdesc including the proceedings papers and the hyperref package for +longdesc creating a proper table of contents, bookmarks and general +longdesc bibliography back-references. Confproc also uses many other +longdesc packages for fine tuning of the table of contents, bibliography +longdesc and index of authors. The added value of the class resides in +longdesc its time-saving aspects when designing conference proceedings. +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 +docfiles size=871 + RELOC/doc/latex/confproc/README + RELOC/doc/latex/confproc/buildcls.sh + RELOC/doc/latex/confproc/buildcppdfpapers.sh + RELOC/doc/latex/confproc/buildpapers.sh + RELOC/doc/latex/confproc/buildproc.sh + RELOC/doc/latex/confproc/buildprocelpb.sh + RELOC/doc/latex/confproc/cleancls.sh + RELOC/doc/latex/confproc/confproc-short.tex + RELOC/doc/latex/confproc/confproc.pdf + RELOC/doc/latex/confproc/confproc_diag.pdf + RELOC/doc/latex/confproc/countnbpages.sh + RELOC/doc/latex/confproc/example/IEEEtran.bst + RELOC/doc/latex/confproc/example/buildcppdfpapers.sh + RELOC/doc/latex/confproc/example/buildpapers.sh + RELOC/doc/latex/confproc/example/buildproc.sh + RELOC/doc/latex/confproc/example/buildprocelpb.sh + RELOC/doc/latex/confproc/example/countnbpages.sh + RELOC/doc/latex/confproc/example/dafx_06.sty + RELOC/doc/latex/confproc/example/example1empty.tex + RELOC/doc/latex/confproc/example/example2custom.tex + RELOC/doc/latex/confproc/example/example3optim.tex + RELOC/doc/latex/confproc/example/example4optim.tex + RELOC/doc/latex/confproc/example/exbiblio.bib + RELOC/doc/latex/confproc/example/exclasslastel.tex + RELOC/doc/latex/confproc/example/exclasslastpb.tex + RELOC/doc/latex/confproc/example/exclasspre.tex + RELOC/doc/latex/confproc/example/expages.tex + RELOC/doc/latex/confproc/example/expapersswitch.tex + RELOC/doc/latex/confproc/example/exportIndividualPDFs.sh + RELOC/doc/latex/confproc/example/exprogram.csv + RELOC/doc/latex/confproc/example/generateswitch.pl + RELOC/doc/latex/confproc/example/papers/IEEEtran.bst + RELOC/doc/latex/confproc/example/papers/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/expages.tex + RELOC/doc/latex/confproc/example/papers/p_001.pdf + RELOC/doc/latex/confproc/example/papers/p_003.pdf + RELOC/doc/latex/confproc/example/papers/p_005.pdf + RELOC/doc/latex/confproc/example/papers/p_007.pdf + RELOC/doc/latex/confproc/example/papers/p_009.pdf + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_001/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_001/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_001/p_001.bib + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_001/p_001.tex + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_003/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_003/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_003/p_003.bib + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_003/p_003.tex + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_005/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_005/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_005/p_005.bib + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_005/p_005.tex + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_007/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_007/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_007/p_007.bib + RELOC/doc/latex/confproc/example/papers/sources_pdftex/p_007/p_007.tex + RELOC/doc/latex/confproc/example/papers/sources_tex/p_009/dafx_06.sty + RELOC/doc/latex/confproc/example/papers/sources_tex/p_009/fft_plot2.png + RELOC/doc/latex/confproc/example/papers/sources_tex/p_009/p_009.bib + RELOC/doc/latex/confproc/example/papers/sources_tex/p_009/p_009.tex + RELOC/doc/latex/confproc/example/papersinfo.sh + RELOC/doc/latex/confproc/example/paperssplitpreamble.sh + RELOC/doc/latex/confproc/example/pictures/ex_1stpage.pdf + RELOC/doc/latex/confproc/example/removeLaTeXcmds.sh + RELOC/doc/latex/confproc/example/sources_pdftex/p_001/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_pdftex/p_001/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_pdftex/p_001/p_001.bib + RELOC/doc/latex/confproc/example/sources_pdftex/p_001/p_001.tex + RELOC/doc/latex/confproc/example/sources_pdftex/p_003/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_pdftex/p_003/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_pdftex/p_003/p_003.bib + RELOC/doc/latex/confproc/example/sources_pdftex/p_003/p_003.tex + RELOC/doc/latex/confproc/example/sources_pdftex/p_005/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_pdftex/p_005/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_pdftex/p_005/p_005.bib + RELOC/doc/latex/confproc/example/sources_pdftex/p_005/p_005.tex + RELOC/doc/latex/confproc/example/sources_pdftex/p_007/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_pdftex/p_007/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_pdftex/p_007/p_007.bib + RELOC/doc/latex/confproc/example/sources_pdftex/p_007/p_007.tex + RELOC/doc/latex/confproc/example/sources_tex/p_009/dafx_06.sty + RELOC/doc/latex/confproc/example/sources_tex/p_009/fft_plot2.png + RELOC/doc/latex/confproc/example/sources_tex/p_009/p_009.bib + RELOC/doc/latex/confproc/example/sources_tex/p_009/p_009.tex + RELOC/doc/latex/confproc/example1empty.tex + RELOC/doc/latex/confproc/example2custom.tex + RELOC/doc/latex/confproc/example3optim.tex + RELOC/doc/latex/confproc/exbiblio.bib + RELOC/doc/latex/confproc/exclasslastel.tex + RELOC/doc/latex/confproc/exclasslastpb.tex + RELOC/doc/latex/confproc/exclasspre.tex + RELOC/doc/latex/confproc/expages.tex + RELOC/doc/latex/confproc/expapersswitch.tex + RELOC/doc/latex/confproc/exportIndividualPDFs.sh + RELOC/doc/latex/confproc/exprogram.csv + RELOC/doc/latex/confproc/generateswitch.pl + RELOC/doc/latex/confproc/papersinfo.sh + RELOC/doc/latex/confproc/paperssplitpreamble.sh + RELOC/doc/latex/confproc/prepareexample.sh + RELOC/doc/latex/confproc/removeLaTeXcmds.sh +srcfiles size=125 + RELOC/source/latex/confproc/confproc.drv + RELOC/source/latex/confproc/confproc.dtx + RELOC/source/latex/confproc/confproc.ins +catalogue-ctan /macros/latex/contrib/conferences/confproc +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.8 + +name constants +category Package +revision 15878 +shortdesc Automatic numbering of constants. +relocated 1 +longdesc The package provides a way to number constants in a +longdesc mathematical proof automatically, with a system for +longdesc labelling/referencing. In addition, several families of +longdesc constants (with different symbols) may be defined. +runfiles size=2 + RELOC/tex/latex/constants/constants.sty +docfiles size=30 + RELOC/doc/latex/constants/README + RELOC/doc/latex/constants/constants.pdf +srcfiles size=7 + RELOC/source/latex/constants/constants.dtx + RELOC/source/latex/constants/constants.ins +catalogue-ctan /macros/latex/contrib/constants +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name conteq +category Package +revision 37868 +shortdesc Typeset multiline continued equalities. +relocated 1 +longdesc The package provides an environment conteq, which will lay out +longdesc systems of continued equalities (or inequalities). Several +longdesc variant layouts of the equalities are provided, and the user +longdesc may define their own. The package is written using LaTeX 3 +longdesc macros. +runfiles size=2 + RELOC/tex/latex/conteq/conteq.sty +docfiles size=98 + RELOC/doc/latex/conteq/README.txt + RELOC/doc/latex/conteq/conteq.hd + RELOC/doc/latex/conteq/conteq.pdf +srcfiles size=5 + RELOC/source/latex/conteq/conteq.dtx + RELOC/source/latex/conteq/conteq.ins +catalogue-ctan /macros/latex/contrib/conteq +catalogue-date 2015-07-17 20:58:21 +0200 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 0.1.1 + +name context-account +category ConTeXt +revision 23167 +shortdesc A simple accounting package. +relocated 1 +longdesc The package deals with "accounts" of its own specification. +depend context +runfiles size=11 + RELOC/tex/context/interface/third/t-account.xml + RELOC/tex/context/third/account/t-account.mkii + RELOC/tex/context/third/account/t-account.mkiv + RELOC/tex/context/third/account/t-account.tex + RELOC/tex/context/third/account/t-floatnumber.mkii + RELOC/tex/context/third/account/t-floatnumber.mkiv + RELOC/tex/context/third/account/t-floatnumber.tex +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-license pd + +name context-algorithmic +category ConTeXt +revision 31026 +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 +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-license gpl + +name context-animation +category ConTeXt +revision 36188 +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 +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-license gpl3 + +name context-annotation +category ConTeXt +revision 36188 +relocated 1 +depend context +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 + +name context-bnf +category ConTeXt +revision 23167 +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 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 +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-license gpl + +name context-chromato +category ConTeXt +revision 23167 +shortdesc ConTeXt macros for chromatograms. +relocated 1 +longdesc The module provides macros for drawing chromatograms. +depend context +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-license gpl + +name context-construction-plan +category ConTeXt +revision 23167 +shortdesc Construction plans in ConTeXt. +relocated 1 +longdesc Generate a page with a figure at a well-defined scale. +depend context +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-license gpl + +name context-cyrillicnumbers +category ConTeXt +revision 29905 +shortdesc Write numbers as cyrillic glyphs. +relocated 1 +longdesc The package extends Context's system of number conversion, by +longdesc adding numeration using cyrillic letters. +depend context +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-license bsd + +name context-degrade +category ConTeXt +revision 23167 +shortdesc Degrading JPEG images in ConTeXt. +relocated 1 +depend context +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-ctan /macros/context/contrib/context-degrade +catalogue-date 2012-07-23 21:08:55 +0200 +catalogue-license gpl + +name context-fancybreak +category ConTeXt +revision 36948 +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 +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-license gpl + +name context-filter +category ConTeXt +revision 36285 +shortdesc Run external programs on the contents of a start-stop environment. +relocated 1 +longdesc The filter module provides a simple interface to run external +longdesc programs on the contents of a start-stop environment. Options +longdesc are available to run the external program only if the content +longdesc of the environment has changed, to specify how the program +longdesc output should be read back, and to choose the name of the +longdesc temporary files that are created. The module is compatible with +longdesc both MkII and MkIV. +depend context +runfiles size=11 + 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 +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 + +name context-french +category ConTeXt +revision 24582 +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 +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-license gpl + +name context-fullpage +category ConTeXt +revision 23167 +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 +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-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 + +name context-gantt +category ConTeXt +revision 27472 +shortdesc GANTT module for ConTeXt. +relocated 1 +longdesc Gantt is a module for drawing Gantt charts via metapost or +longdesc pgf/tikz. +depend context +depend hatching +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 + 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 +catalogue-ctan /macros/context/contrib/context-gantt +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd + +name context-gnuplot +category ConTeXt +revision 30380 +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 + 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.tex +catalogue-ctan /macros/context/contrib/context-gnuplot +catalogue-date 2014-04-27 13:42:31 +0200 +catalogue-license gpl + +name context-letter +category ConTeXt +revision 38202 +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 +runfiles size=120 + RELOC/tex/context/interface/third/t-letter.xml + RELOC/tex/context/interface/third/t-memo.xml + RELOC/tex/context/third/letter/base/s-cor-00.lua + RELOC/tex/context/third/letter/base/s-cor-00.mkii + RELOC/tex/context/third/letter/base/s-cor-00.mkvi + RELOC/tex/context/third/letter/base/s-cor-01.mkii + RELOC/tex/context/third/letter/base/s-cor-01.mkvi + RELOC/tex/context/third/letter/base/s-cor-02.mkii + RELOC/tex/context/third/letter/base/s-cor-02.mkvi + RELOC/tex/context/third/letter/base/s-cor-03.mkvi + RELOC/tex/context/third/letter/base/s-cor-06.mkvi + RELOC/tex/context/third/letter/base/t-letter.mkii + RELOC/tex/context/third/letter/base/t-letter.mkiv + RELOC/tex/context/third/letter/base/t-memo.mkii + RELOC/tex/context/third/letter/base/t-memo.mkiv + RELOC/tex/context/third/letter/style/letter-imp-blockstyle.mkii + RELOC/tex/context/third/letter/style/letter-imp-blockstyle.mkiv + RELOC/tex/context/third/letter/style/letter-imp-default.mkii + RELOC/tex/context/third/letter/style/letter-imp-default.mkiv + RELOC/tex/context/third/letter/style/letter-imp-dina.mkii + RELOC/tex/context/third/letter/style/letter-imp-dina.mkiv + RELOC/tex/context/third/letter/style/letter-imp-dinb.mkii + RELOC/tex/context/third/letter/style/letter-imp-dinb.mkiv + RELOC/tex/context/third/letter/style/letter-imp-dutch.mkii + RELOC/tex/context/third/letter/style/letter-imp-dutch.mkiv + RELOC/tex/context/third/letter/style/letter-imp-french.mkii + RELOC/tex/context/third/letter/style/letter-imp-french.mkiv + RELOC/tex/context/third/letter/style/letter-imp-fullblock.mkii + RELOC/tex/context/third/letter/style/letter-imp-fullblock.mkiv + RELOC/tex/context/third/letter/style/letter-imp-gbrief.mkii + RELOC/tex/context/third/letter/style/letter-imp-gbrief.mkiv + RELOC/tex/context/third/letter/style/letter-imp-hanging.mkii + RELOC/tex/context/third/letter/style/letter-imp-hanging.mkiv + RELOC/tex/context/third/letter/style/letter-imp-knuth.mkii + RELOC/tex/context/third/letter/style/letter-imp-knuth.mkiv + RELOC/tex/context/third/letter/style/letter-imp-modified.mkii + RELOC/tex/context/third/letter/style/letter-imp-modified.mkiv + RELOC/tex/context/third/letter/style/letter-imp-semiblock.mkii + RELOC/tex/context/third/letter/style/letter-imp-semiblock.mkiv + RELOC/tex/context/third/letter/style/letter-imp-setups.mkii + RELOC/tex/context/third/letter/style/letter-imp-setups.mkiv + RELOC/tex/context/third/letter/style/letter-imp-simplified.mkii + RELOC/tex/context/third/letter/style/letter-imp-simplified.mkiv + RELOC/tex/context/third/letter/style/letter-imp-swiss.mkii + RELOC/tex/context/third/letter/style/letter-imp-swiss.mkiv + RELOC/tex/context/third/letter/style/letter-imp-swissleft.mkii + RELOC/tex/context/third/letter/style/letter-imp-swissleft.mkiv + RELOC/tex/context/third/letter/style/memo-imp-default.mkii + RELOC/tex/context/third/letter/style/memo-imp-default.mkiv + RELOC/tex/context/third/letter/style/memo-imp-margin.mkii + RELOC/tex/context/third/letter/style/memo-imp-margin.mkiv + RELOC/tex/context/third/letter/style/memo-imp-memo.mkii + RELOC/tex/context/third/letter/style/memo-imp-memo.mkiv + RELOC/tex/context/third/letter/style/memo-imp-table.mkii + RELOC/tex/context/third/letter/style/memo-imp-table.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-blue.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-green.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-grey.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-orange.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual-red.mkiv + RELOC/tex/context/third/letter/style/resume-imp-casual.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-blue.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-green.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-grey.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-orange.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic-red.mkiv + RELOC/tex/context/third/letter/style/resume-imp-classic.mkiv + RELOC/tex/context/third/letter/style/resume-imp-default.mkiv +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-license gpl +catalogue-topics letter + +name context-lettrine +category ConTeXt +revision 23167 +shortdesc A ConTeXt implementation of lettrines. +relocated 1 +longdesc This is a re-implementation of the LaTeX package lettrine. +depend context +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-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 + +name context-mathsets +category ConTeXt +revision 23167 +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 +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-license other-free + +name context-notes-zh-cn +category Package +revision 23171 +shortdesc Notes on using ConTeXt MkIV. +relocated 1 +longdesc An introductory tutorial on ConTeXt, in Chinese. The document +longdesc covers ConTeXt installation, fonts, layout design, cross- +longdesc reference, project structure, metafun and presentation design. +depend context +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/src/Makefile + RELOC/doc/context/third/context-notes-zh-cn/src/basis.tex + RELOC/doc/context/third/context-notes-zh-cn/src/bibl-lyr.tex + RELOC/doc/context/third/context-notes-zh-cn/src/bibliography.bib + RELOC/doc/context/third/context-notes-zh-cn/src/ctxnotes.tex + RELOC/doc/context/third/context-notes-zh-cn/src/doc-env.tex + RELOC/doc/context/third/context-notes-zh-cn/src/figures/bookmark.png + RELOC/doc/context/third/context-notes-zh-cn/src/figures/cow.pdf + RELOC/doc/context/third/context-notes-zh-cn/src/figures/gardeninglion.jpg + RELOC/doc/context/third/context-notes-zh-cn/src/figures/header.png + RELOC/doc/context/third/context-notes-zh-cn/src/fonts.tex + RELOC/doc/context/third/context-notes-zh-cn/src/layout.tex + RELOC/doc/context/third/context-notes-zh-cn/src/metafun.tex + RELOC/doc/context/third/context-notes-zh-cn/src/project.tex + RELOC/doc/context/third/context-notes-zh-cn/src/references.tex + RELOC/doc/context/third/context-notes-zh-cn/src/t-layout.tex + RELOC/doc/context/third/context-notes-zh-cn/src/t-zhfonts.lua + RELOC/doc/context/third/context-notes-zh-cn/src/t-zhfonts.mkiv + RELOC/doc/context/third/context-notes-zh-cn/src/t-zhspuncs.lua +catalogue-ctan /info/context-notes-zh-cn +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl + +name context-rst +category ConTeXt +revision 33092 +shortdesc Process reStructuredText with ConTeXt. +relocated 1 +longdesc The package provides a converter and module for typesetting +longdesc reStructuredText with ConTeXt. The module uses several lua +longdesc scripts in doing its work. Documentation is supplied in rst, +longdesc which seems to be readable as text, but... +depend context +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 + RELOC/doc/context/third/rst/OMakefile + RELOC/doc/context/third/rst/OMakefile.omc + RELOC/doc/context/third/rst/documentation.rst + RELOC/doc/context/third/rst/hybridtest.tex + RELOC/doc/context/third/rst/inc-first.rst + RELOC/doc/context/third/rst/inc-second.rst + RELOC/doc/context/third/rst/inc-third.rst + RELOC/doc/context/third/rst/inc.tex + RELOC/doc/context/third/rst/manual.bib + RELOC/doc/context/third/rst/manual.pdf + RELOC/doc/context/third/rst/manual.tex + RELOC/doc/context/third/rst/moduletest.tex +catalogue-ctan /macros/context/contrib/context-rst +catalogue-date 2014-03-03 08:58:55 +0100 +catalogue-license other-free +catalogue-version 0.6c + +name context-ruby +category ConTeXt +revision 28434 +shortdesc Ruby annotations in ConTeXt. +relocated 1 +longdesc Ruby markup (aka furigana in Japan) are inline annotations +longdesc above or below a word to indicate the reading of ideographic +longdesc characters. The module implements the W3C specification for +longdesc simple ruby in ConTeXt. The position and layout of the base +longdesc text and the ruby text can becontrolled by parameters. +depend context +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-license pd + +name context-simplefonts +category ConTeXt +revision 29229 +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 +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-license gpl + +name context-simpleslides +category ConTeXt +revision 34438 +relocated 1 +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 + 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.tex + RELOC/doc/context/third/simpleslides/solutions/generic-talk-15min-45min.tex + RELOC/doc/context/third/simpleslides/solutions/speaker_introduction-2min.tex + RELOC/doc/context/third/simpleslides/solutions/style-template.tex + RELOC/doc/context/third/simpleslides/styles/BigNumber-blue.pdf + RELOC/doc/context/third/simpleslides/styles/BigNumber-red.pdf + RELOC/doc/context/third/simpleslides/styles/BottomSquares.pdf + RELOC/doc/context/third/simpleslides/styles/Boxed.pdf + RELOC/doc/context/third/simpleslides/styles/Ellipse.pdf + RELOC/doc/context/third/simpleslides/styles/Embossed.pdf + RELOC/doc/context/third/simpleslides/styles/Framed-square.pdf + RELOC/doc/context/third/simpleslides/styles/Framed-stripe.pdf + RELOC/doc/context/third/simpleslides/styles/FramedTitle.pdf + RELOC/doc/context/third/simpleslides/styles/HorizontalStripes-blue.pdf + RELOC/doc/context/third/simpleslides/styles/HorizontalStripes-green.pdf + RELOC/doc/context/third/simpleslides/styles/HorizontalStripes-red.pdf + RELOC/doc/context/third/simpleslides/styles/NarrowStripes-blue.pdf + RELOC/doc/context/third/simpleslides/styles/NarrowStripes-green.pdf + RELOC/doc/context/third/simpleslides/styles/NarrowStripes-red.pdf + RELOC/doc/context/third/simpleslides/styles/RainbowStripe.pdf + RELOC/doc/context/third/simpleslides/styles/Rounded.pdf + RELOC/doc/context/third/simpleslides/styles/Shaded-blue.pdf + RELOC/doc/context/third/simpleslides/styles/Shaded-bluered.pdf + RELOC/doc/context/third/simpleslides/styles/Shaded-green.pdf + RELOC/doc/context/third/simpleslides/styles/SideSquares.pdf + RELOC/doc/context/third/simpleslides/styles/SideToc.pdf + RELOC/doc/context/third/simpleslides/styles/Split.pdf + RELOC/doc/context/third/simpleslides/styles/Sunrise.pdf + RELOC/doc/context/third/simpleslides/styles/Swoosh.pdf + RELOC/doc/context/third/simpleslides/styles/ThickStripes.pdf + +name context-title +category ConTeXt +revision 36189 +relocated 1 +depend context +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 + +name context-transliterator +category ConTeXt +revision 29801 +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 +runfiles size=112 + RELOC/tex/context/interface/third/t-transliterator.xml + RELOC/tex/context/third/transliterator/t-transliterator.ctl + RELOC/tex/context/third/transliterator/t-transliterator.log + RELOC/tex/context/third/transliterator/t-transliterator.mkii + RELOC/tex/context/third/transliterator/t-transliterator.mkiv + RELOC/tex/context/third/transliterator/t-transliterator.mkiv.prep + RELOC/tex/context/third/transliterator/t-transliterator.pdf + RELOC/tex/context/third/transliterator/t-transliterator.run + RELOC/tex/context/third/transliterator/t-transliterator.tex + RELOC/tex/context/third/transliterator/t-transliterator.tuc + RELOC/tex/context/third/transliterator/trans_tables_bg.lua + RELOC/tex/context/third/transliterator/trans_tables_glag.lua + RELOC/tex/context/third/transliterator/trans_tables_gr.lua + RELOC/tex/context/third/transliterator/trans_tables_iso9.lua + RELOC/tex/context/third/transliterator/trans_tables_scntfc.lua + RELOC/tex/context/third/transliterator/trans_tables_sr.lua + RELOC/tex/context/third/transliterator/trans_tables_trsc.lua + RELOC/tex/context/third/transliterator/transliterator.ctl + RELOC/tex/context/third/transliterator/transliterator.log + RELOC/tex/context/third/transliterator/transliterator.lua + RELOC/tex/context/third/transliterator/transliterator.run + RELOC/tex/context/third/transliterator/transliterator.tuc +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-license bsd + +name context-typearea +category ConTeXt +revision 23167 +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 +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-license gpl + +name context-typescripts +category ConTeXt +revision 25411 +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 +runfiles size=71 + RELOC/tex/context/third/typescripts/type-adobe.mkii + RELOC/tex/context/third/typescripts/type-adobe.mkiv + RELOC/tex/context/third/typescripts/type-aller.mkii + RELOC/tex/context/third/typescripts/type-aller.mkiv + RELOC/tex/context/third/typescripts/type-anivers.mkii + RELOC/tex/context/third/typescripts/type-anivers.mkiv + RELOC/tex/context/third/typescripts/type-audimat.mkii + RELOC/tex/context/third/typescripts/type-audimat.mkiv + RELOC/tex/context/third/typescripts/type-axel.mkii + RELOC/tex/context/third/typescripts/type-axel.mkiv + RELOC/tex/context/third/typescripts/type-azuro.mkii + RELOC/tex/context/third/typescripts/type-azuro.mkiv + RELOC/tex/context/third/typescripts/type-calluna.mkii + RELOC/tex/context/third/typescripts/type-calluna.mkiv + RELOC/tex/context/third/typescripts/type-charissil.mkii + RELOC/tex/context/third/typescripts/type-charissil.mkiv + RELOC/tex/context/third/typescripts/type-charter.mkii + RELOC/tex/context/third/typescripts/type-charter.mkiv + RELOC/tex/context/third/typescripts/type-delicious.mkii + RELOC/tex/context/third/typescripts/type-delicious.mkiv + RELOC/tex/context/third/typescripts/type-diavlo.mkii + RELOC/tex/context/third/typescripts/type-diavlo.mkiv + RELOC/tex/context/third/typescripts/type-droid.mkii + RELOC/tex/context/third/typescripts/type-droid.mkiv + RELOC/tex/context/third/typescripts/type-ernestine.mkiv + RELOC/tex/context/third/typescripts/type-fertigo.mkii + RELOC/tex/context/third/typescripts/type-fertigo.mkiv + RELOC/tex/context/third/typescripts/type-fontin.mkii + RELOC/tex/context/third/typescripts/type-fontin.mkiv + RELOC/tex/context/third/typescripts/type-goudysans.mkii + RELOC/tex/context/third/typescripts/type-goudysans.mkiv + RELOC/tex/context/third/typescripts/type-junicode.mkii + RELOC/tex/context/third/typescripts/type-junicode.mkiv + RELOC/tex/context/third/typescripts/type-justus.mkii + RELOC/tex/context/third/typescripts/type-justus.mkiv + RELOC/tex/context/third/typescripts/type-kaffeesatz.mkii + RELOC/tex/context/third/typescripts/type-kaffeesatz.mkiv + RELOC/tex/context/third/typescripts/type-kontrapunkt.mkii + RELOC/tex/context/third/typescripts/type-kontrapunkt.mkiv + RELOC/tex/context/third/typescripts/type-liberation.mkii + RELOC/tex/context/third/typescripts/type-liberation.mkiv + RELOC/tex/context/third/typescripts/type-luxi.mkii + RELOC/tex/context/third/typescripts/type-luxi.mkiv + RELOC/tex/context/third/typescripts/type-miso.mkii + RELOC/tex/context/third/typescripts/type-miso.mkiv + RELOC/tex/context/third/typescripts/type-museo.mkii + RELOC/tex/context/third/typescripts/type-museo.mkiv + RELOC/tex/context/third/typescripts/type-office.mkiv + RELOC/tex/context/third/typescripts/type-pigiarniq.mkii + RELOC/tex/context/third/typescripts/type-pigiarniq.mkiv + RELOC/tex/context/third/typescripts/type-sabon.mkii + RELOC/tex/context/third/typescripts/type-sabon.mkiv + RELOC/tex/context/third/typescripts/type-tallys.mkii + RELOC/tex/context/third/typescripts/type-tallys.mkiv + RELOC/tex/context/third/typescripts/type-tuffy.mkii + RELOC/tex/context/third/typescripts/type-tuffy.mkiv + RELOC/tex/context/third/typescripts/type-ubuntu.mkii + RELOC/tex/context/third/typescripts/type-ubuntu.mkiv + RELOC/tex/context/third/typescripts/type-uqammaq.mkii + RELOC/tex/context/third/typescripts/type-uqammaq.mkiv + RELOC/tex/context/third/typescripts/type-vera.mkii + RELOC/tex/context/third/typescripts/type-vera.mkiv + RELOC/tex/context/third/typescripts/type-verajja.mkii + RELOC/tex/context/third/typescripts/type-verajja.mkiv + RELOC/tex/context/third/typescripts/type-vollkorn.mkii + RELOC/tex/context/third/typescripts/type-vollkorn.mkiv +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-license gpl2 + +name context-vim +category ConTeXt +revision 37413 +shortdesc Generate Context syntax highlighting code from vim. +relocated 1 +longdesc ConTeXt has excellent pretty printing capabilities for many +longdesc languages. The code for pretty printing is written in TeX, and +longdesc due to catcode juggling, such verbatim typesetting is perhaps +longdesc the trickiest part of TeX. This makes it difficult for a +longdesc "normal" user to define syntax highlighting rules for a new +longdesc language. This module takes the onus of defining syntax +longdesc highlighting rules away from the user and uses ViM editor to +longdesc generate the syntax highlighting. There is a helper +longdesc 2context.vim script to do the syntax parsing in ViM. +depend context-filter +depend context +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-ctan /macros/context/contrib/context-vim +catalogue-date 2014-08-14 15:19:33 +0200 +catalogue-license bsd + +name context-visualcounter +category ConTeXt +revision 36190 +relocated 1 +depend context +runfiles size=4 + RELOC/tex/context/third/visualcounter/t-visualcounter.mkvi +docfiles size=67 + RELOC/doc/context/third/visualcounter/visualcounter.pdf +srcfiles size=7 + RELOC/source/context/third/visualcounter/p-documentation.tex + RELOC/source/context/third/visualcounter/visualcounter.tex + +name contour +category Package +revision 18950 +shortdesc Print a coloured contour around text. +relocated 1 +longdesc This package generates a coloured contour around a given text +longdesc in order to enable printing text over a background without the +longdesc need of a coloured box around the text. +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 +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/contourtest.tex +srcfiles size=8 + RELOC/source/latex/contour/contour.dtx + RELOC/source/latex/contour/contour.ins +catalogue-ctan /macros/latex/contrib/contour +catalogue-date 2014-07-13 18:58:21 +0200 +catalogue-license lppl +catalogue-version 2.14 + +name contracard +category Package +revision 31745 +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 + 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/source/latex/contracard/contracard.dtx +catalogue-ctan /macros/latex/contrib/contracard +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0.1 + +name convbkmk +category Package +revision 35923 +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 +runfiles size=4 + texmf-dist/scripts/convbkmk/convbkmk.rb +docfiles size=1 + texmf-dist/doc/support/convbkmk/README +catalogue-ctan /support/convbkmk +catalogue-date 2014-12-30 10:41:23 +0100 +catalogue-license other-free +catalogue-version 0.10a + +name convbkmk.i386-linux +category Package +revision 30408 +shortdesc i386-linux files of convbkmk +binfiles arch=i386-linux size=1 + bin/i386-linux/convbkmk + +name cookingsymbols +category Package +revision 35929 +shortdesc Symbols for recipes. +relocated 1 +longdesc The package provides 11 symbols for typesetting recipes: oven, +longdesc gasstove, topheat, fanoven, gloves and dish symbol (among +longdesc others). The symbols are defined using Metafont. +runfiles size=5 + RELOC/fonts/source/public/cookingsymbols/cookingsymbols.mf + RELOC/fonts/tfm/public/cookingsymbols/cookingsymbols.tfm + RELOC/tex/latex/cookingsymbols/cookingsymbols.sty +docfiles size=101 + RELOC/doc/latex/cookingsymbols/README + RELOC/doc/latex/cookingsymbols/cookingsymbols.pdf +srcfiles size=5 + RELOC/source/latex/cookingsymbols/cookingsymbols.dtx + RELOC/source/latex/cookingsymbols/cookingsymbols.ins +catalogue-ctan /macros/latex/contrib/cookingsymbols +catalogue-date 2014-12-28 20:57:45 +0100 +catalogue-license lppl +catalogue-version 1.1 + +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. +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 + +name coollist +category Package +revision 15878 +shortdesc Manipulate COntent Oriented LaTeX Lists. +relocated 1 +longdesc Lists are defined as a sequence of tokens separated by a comma. +longdesc The coollist package allows the user to access certain elements +longdesc of the list while neglecting others--essentially turning lists +longdesc into a sort of array. List elements are accessed by specifying +longdesc the position of the object within the list (the index of the +longdesc item). +runfiles size=3 + RELOC/tex/latex/coollist/coollist.sty +docfiles size=33 + RELOC/doc/latex/coollist/README + RELOC/doc/latex/coollist/coollist.pdf +srcfiles size=9 + RELOC/source/latex/coollist/coollist.dtx + RELOC/source/latex/coollist/coollist.ins +catalogue-ctan /macros/latex/contrib/coollist +catalogue-date 2012-06-18 20:29:00 +0200 +catalogue-license lgpl +catalogue-version 1.4 + +name coolstr +category Package +revision 15878 +shortdesc String manipulation in LaTeX. +relocated 1 +longdesc Coolstr is a subpackage of the cool bundle that deals with the +longdesc manipulation of strings. A string is defined as a sequence of +longdesc characters (not tokens). The package provides the ability to +longdesc access a specific character of a string, as well as determine +longdesc if the string contains numeric or integer data. +runfiles size=3 + RELOC/tex/latex/coolstr/coolstr.sty +docfiles size=35 + RELOC/doc/latex/coolstr/README + RELOC/doc/latex/coolstr/coolstr.pdf +srcfiles size=10 + RELOC/source/latex/coolstr/coolstr.dtx + RELOC/source/latex/coolstr/coolstr.ins +catalogue-ctan /macros/latex/contrib/coolstr +catalogue-date 2012-06-18 20:29:00 +0200 +catalogue-license lgpl +catalogue-version 2.2 + +name coolthms +category Package +revision 29062 +shortdesc Reference items in a theorem environment. +relocated 1 +longdesc The package provides the means to directly reference items of +longdesc lists nested in theorem-like environments (e.g., as 'Theorem 1 +longdesc a'). The package extends the ntheorem and cleveref packages. +longdesc The package also provides other theorem markup commands. +runfiles size=2 + RELOC/tex/latex/coolthms/coolthms.sty +docfiles size=28 + RELOC/doc/latex/coolthms/README + RELOC/doc/latex/coolthms/coolthms.pdf +srcfiles size=9 + RELOC/source/latex/coolthms/coolthms.dtx + RELOC/source/latex/coolthms/coolthms.ins +catalogue-ctan /macros/latex/contrib/coolthms +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +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. +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 +docfiles size=57 + RELOC/doc/latex/cooltooltips/README + RELOC/doc/latex/cooltooltips/cooltooltips.pdf +srcfiles size=9 + RELOC/source/latex/cooltooltips/cooltooltips.dtx + RELOC/source/latex/cooltooltips/cooltooltips.ins +catalogue-ctan /macros/latex/contrib/cooltooltips +catalogue-date 2012-11-14 17:49:35 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name coordsys +category Package +revision 15878 +shortdesc Draw cartesian coordinate systems. +relocated 1 +longdesc The package provides commands for typesetting number lines +longdesc (coordinate axes), coordinate systems and grids in the picture +longdesc environment. The package may be integrated with other drawing +longdesc mechanisms: the documentation shows examples of drawing graphs +longdesc (coordinate tables created by Maple), using the eepic package's +longdesc drawing capabilities. +runfiles size=9 + RELOC/tex/latex/coordsys/coordsys.sty + RELOC/tex/latex/coordsys/logsys.sty +docfiles size=87 + RELOC/doc/latex/coordsys/README + RELOC/doc/latex/coordsys/coordsys.pdf + RELOC/doc/latex/coordsys/putfile.maple +srcfiles size=29 + RELOC/source/latex/coordsys/coordsys.dtx + RELOC/source/latex/coordsys/coordsys.ins +catalogue-ctan /macros/latex/contrib/coordsys +catalogue-date 2012-06-18 20:29:00 +0200 +catalogue-license lppl +catalogue-version 1.4 + +name copyedit +category Package +revision 37928 +shortdesc Copyediting support for LaTeX documents. +relocated 1 +longdesc This package implements copyediting support for LaTeX +longdesc documents. Authors can enjoy the freedom of using, for example, +longdesc words with US or UK or Canadian or Australian spelling in a +longdesc mixed way, yet, they can choose any one of the usage forms for +longdesc their entire document irrespective of kinds of spelling they +longdesc have adopted. In the same fashion, the users can have the +longdesc benefit of the following features available in the package: +longdesc Localization -- British-American-Australian-Canadian Close-up, +longdesc Hyphenation, and Spaced words Latin abbreviations Acronyms and +longdesc Abbreviations Itemization, nonlocal lists and labels +longdesc Parenthetical and serial commas Non-local tokenization in +longdesc language through Abbreviations and pronouns. +runfiles size=3 + RELOC/tex/latex/copyedit/copyedit.sty +docfiles size=80 + RELOC/doc/latex/copyedit/README + RELOC/doc/latex/copyedit/copyedit.pdf + RELOC/doc/latex/copyedit/example/test-copy.pdf + RELOC/doc/latex/copyedit/example/test-copy.tex + RELOC/doc/latex/copyedit/manifest.txt +srcfiles size=7 + RELOC/source/latex/copyedit/copyedit.dtx + RELOC/source/latex/copyedit/copyedit.ins +catalogue-ctan /macros/latex/contrib/copyedit +catalogue-date 2015-07-21 13:44:29 +0200 +catalogue-license lppl1.3 +catalogue-topics english +catalogue-version 1.6 + +name copyrightbox +category Package +revision 24829 +shortdesc Provide copyright notices for images in a document. +relocated 1 +longdesc The package command \copyrightbox[]{}{}, which places the text as a copyright notice +longdesc relating to the matter created by the image command. +runfiles size=1 + RELOC/tex/latex/copyrightbox/copyrightbox.sty +docfiles size=765 + RELOC/doc/latex/copyrightbox/README + RELOC/doc/latex/copyrightbox/coin.jpg + RELOC/doc/latex/copyrightbox/copyrightbox.pdf + RELOC/doc/latex/copyrightbox/copyrightbox.tex +catalogue-ctan /macros/latex/contrib/copyrightbox +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name coseoul +category Package +revision 23862 +shortdesc Context sensitive outline elements +relocated 1 +longdesc The package provides "relative" commands that may be used in +longdesc place of \chapter, \section, etc. The documentation shows a +longdesc number of document-management scenarios in which such commands +longdesc are valuable. +runfiles size=1 + RELOC/tex/latex/coseoul/coseoul.sty +docfiles size=56 + RELOC/doc/latex/coseoul/README + RELOC/doc/latex/coseoul/coseoul.pdf + RELOC/doc/latex/coseoul/coseoul.tex + RELOC/doc/latex/coseoul/cosexamp.pdf + RELOC/doc/latex/coseoul/cosexamp.tex +catalogue-ctan /macros/latex/contrib/coseoul +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name countriesofeurope +category Package +revision 26042 +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 +catalogue-ctan /fonts/countriesofeurope +catalogue-date 2014-04-25 21:03:35 +0200 +catalogue-license lppl +catalogue-version 0.21 + +name counttexruns +category Package +revision 27576 +shortdesc Count compilations of a document. +relocated 1 +longdesc The package counts how often a LaTeX document is compiled, +longdesc keeping the data in an external file. To print the count, can +longdesc use the macro \thecounttexruns. +runfiles size=1 + RELOC/tex/latex/counttexruns/counttexruns.sty +docfiles size=58 + RELOC/doc/latex/counttexruns/README + RELOC/doc/latex/counttexruns/counttexruns.pdf +srcfiles size=3 + RELOC/source/latex/counttexruns/counttexruns.dtx + RELOC/source/latex/counttexruns/counttexruns.ins +catalogue-ctan /macros/latex/contrib/counttexruns +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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. +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap ucr.map +runfiles size=291 + RELOC/dvips/courier/config.ucr + RELOC/fonts/afm/adobe/courier/pcrb8a.afm + RELOC/fonts/afm/adobe/courier/pcrbo8a.afm + RELOC/fonts/afm/adobe/courier/pcrr8a.afm + RELOC/fonts/afm/adobe/courier/pcrro8a.afm + RELOC/fonts/afm/urw/courier/ucrb8a.afm + RELOC/fonts/afm/urw/courier/ucrbo8a.afm + RELOC/fonts/afm/urw/courier/ucrr8a.afm + RELOC/fonts/afm/urw/courier/ucrro8a.afm + RELOC/fonts/map/dvips/courier/ucr.map + RELOC/fonts/tfm/adobe/courier/pcrb.tfm + RELOC/fonts/tfm/adobe/courier/pcrb7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrb8c.tfm + RELOC/fonts/tfm/adobe/courier/pcrb8r.tfm + RELOC/fonts/tfm/adobe/courier/pcrb8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrbc.tfm + RELOC/fonts/tfm/adobe/courier/pcrbc7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrbc8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo8c.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo8r.tfm + RELOC/fonts/tfm/adobe/courier/pcrbo8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrr.tfm + RELOC/fonts/tfm/adobe/courier/pcrr7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrr8c.tfm + RELOC/fonts/tfm/adobe/courier/pcrr8r.tfm + RELOC/fonts/tfm/adobe/courier/pcrr8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrrc.tfm + RELOC/fonts/tfm/adobe/courier/pcrrc7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrrc8t.tfm + RELOC/fonts/tfm/adobe/courier/pcrro.tfm + RELOC/fonts/tfm/adobe/courier/pcrro7t.tfm + RELOC/fonts/tfm/adobe/courier/pcrro8c.tfm + RELOC/fonts/tfm/adobe/courier/pcrro8r.tfm + RELOC/fonts/tfm/adobe/courier/pcrro8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrb7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrb8c.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrb8r.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrb8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbc7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbc8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbo7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbo8c.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbo8r.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrbo8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrr7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrr8c.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrr8r.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrr8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrrc7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrrc8t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrro7t.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrro8c.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrro8r.tfm + RELOC/fonts/tfm/urw35vf/courier/ucrro8t.tfm + RELOC/fonts/type1/adobe/courier/pcrb8a.pfb + RELOC/fonts/type1/adobe/courier/pcrbi8a.pfb + RELOC/fonts/type1/adobe/courier/pcrbo8a.pfb + RELOC/fonts/type1/adobe/courier/pcri8a.pfb + RELOC/fonts/type1/adobe/courier/pcrr8a.pfb + RELOC/fonts/type1/adobe/courier/pcrro8a.pfb + RELOC/fonts/type1/urw/courier/ucrb8a.pfb + RELOC/fonts/type1/urw/courier/ucrb8a.pfm + RELOC/fonts/type1/urw/courier/ucrbo8a.pfb + RELOC/fonts/type1/urw/courier/ucrbo8a.pfm + RELOC/fonts/type1/urw/courier/ucrr8a.pfb + RELOC/fonts/type1/urw/courier/ucrr8a.pfm + RELOC/fonts/type1/urw/courier/ucrro8a.pfb + RELOC/fonts/type1/urw/courier/ucrro8a.pfm + RELOC/fonts/vf/adobe/courier/pcrb.vf + RELOC/fonts/vf/adobe/courier/pcrb7t.vf + RELOC/fonts/vf/adobe/courier/pcrb8c.vf + RELOC/fonts/vf/adobe/courier/pcrb8t.vf + RELOC/fonts/vf/adobe/courier/pcrbc.vf + RELOC/fonts/vf/adobe/courier/pcrbc7t.vf + RELOC/fonts/vf/adobe/courier/pcrbc8t.vf + RELOC/fonts/vf/adobe/courier/pcrbo.vf + RELOC/fonts/vf/adobe/courier/pcrbo7t.vf + RELOC/fonts/vf/adobe/courier/pcrbo8c.vf + RELOC/fonts/vf/adobe/courier/pcrbo8t.vf + RELOC/fonts/vf/adobe/courier/pcrr.vf + RELOC/fonts/vf/adobe/courier/pcrr7t.vf + RELOC/fonts/vf/adobe/courier/pcrr8c.vf + RELOC/fonts/vf/adobe/courier/pcrr8t.vf + RELOC/fonts/vf/adobe/courier/pcrrc.vf + RELOC/fonts/vf/adobe/courier/pcrrc7t.vf + RELOC/fonts/vf/adobe/courier/pcrrc8t.vf + RELOC/fonts/vf/adobe/courier/pcrro.vf + RELOC/fonts/vf/adobe/courier/pcrro7t.vf + RELOC/fonts/vf/adobe/courier/pcrro8c.vf + RELOC/fonts/vf/adobe/courier/pcrro8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrb7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrb8c.vf + RELOC/fonts/vf/urw35vf/courier/ucrb8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrbc7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrbc8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrbo7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrbo8c.vf + RELOC/fonts/vf/urw35vf/courier/ucrbo8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrr7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrr8c.vf + RELOC/fonts/vf/urw35vf/courier/ucrr8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrrc7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrrc8t.vf + RELOC/fonts/vf/urw35vf/courier/ucrro7t.vf + RELOC/fonts/vf/urw35vf/courier/ucrro8c.vf + RELOC/fonts/vf/urw35vf/courier/ucrro8t.vf + RELOC/tex/latex/courier/8rucr.fd + RELOC/tex/latex/courier/omlucr.fd + RELOC/tex/latex/courier/omsucr.fd + RELOC/tex/latex/courier/ot1ucr.fd + RELOC/tex/latex/courier/t1ucr.fd + RELOC/tex/latex/courier/ts1ucr.fd +catalogue-ctan /fonts/urw/base35 +catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-license gpl + +name courseoutline +category Package +revision 15878 +shortdesc Prepare university course outlines. +relocated 1 +longdesc Courseoutline is a class designed to minimise markup in a +longdesc tedious task that needs to be repeated often. +runfiles size=3 + RELOC/tex/latex/courseoutline/courseoutline.cls +docfiles size=2 + RELOC/doc/latex/courseoutline/Outline.tex +catalogue-ctan /macros/latex/contrib/courseoutline +catalogue-date 2012-08-26 22:47:29 +0200 +catalogue-license other-free +catalogue-version 1.0 + +name coursepaper +category Package +revision 15878 +shortdesc Prepare university course papers. +relocated 1 +longdesc Coursepaper is a class with which students can provide simple +longdesc course papers, in a uniform design to ease the task of marking. +runfiles size=4 + RELOC/tex/latex/coursepaper/coursepaper.cls +docfiles size=2 + RELOC/doc/latex/coursepaper/coursepaper.tex +catalogue-ctan /macros/latex/contrib/coursepaper +catalogue-date 2012-08-26 22:47:18 +0200 +catalogue-license other-free +catalogue-version 2.0 + +name coverpage +category Package +revision 15878 +shortdesc Automatic cover page creation for scientific papers. +relocated 1 +longdesc The package CoverPage was created to supplement scientific +longdesc papers with a cover page containing bibliographical +longdesc information, a copyright notice, and/or some logos of the +longdesc author's institution. The cover page is created (almost) +longdesc automatically; this is done by parsing BibTeX information +longdesc corresponding to the main document and reading a configuration +longdesc file in which the author can set information like the +longdesc affiliation he or she is associated with. The cover page +longdesc consists of header, body and footer; all three are macros which +longdesc can be redefined using \renewcommand, thus allowing easy +longdesc customization of the package. Additionally, it should be +longdesc stressed that the cover page layout is totally independent of +longdesc the main document and its page layout. This package requires +longdesc four other packages (keyval, url, textcomp, and verbatim), but +longdesc all of them are standard packages and should be part of every +longdesc LaTeX installation. +runfiles size=3 + RELOC/tex/latex/coverpage/CoverPage.cfg + RELOC/tex/latex/coverpage/CoverPage.sty +docfiles size=86 + RELOC/doc/latex/coverpage/CoverPage.pdf + RELOC/doc/latex/coverpage/ECCV06Sample.pdf + RELOC/doc/latex/coverpage/README + RELOC/doc/latex/coverpage/SimpleSample.BibTeX.txt + RELOC/doc/latex/coverpage/SimpleSample.pdf + RELOC/doc/latex/coverpage/SimpleSample.tex +srcfiles size=9 + RELOC/source/latex/coverpage/CoverPage.dtx + RELOC/source/latex/coverpage/CoverPage.ins +catalogue-ctan /macros/latex/contrib/coverpage +catalogue-date 2012-06-18 22:39:13 +0200 +catalogue-license lppl1.2 +catalogue-version 1.01 + +name covington +category Package +revision 34064 +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 + RELOC/doc/latex/covington/covington.tex + RELOC/doc/latex/covington/covingtonGerm.pdf + RELOC/doc/latex/covington/covingtonGerm.tex +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 + +name cprotect +category Package +revision 21209 +shortdesc Allow verbatim, etc., in macro arguments. +relocated 1 +longdesc The package defines the macro \cprotect that makes a following +longdesc macro proof against verbatim in its argument; as, for example, +longdesc \cprotect\section{\verb"foo"} A similar macro \cprotEnv +longdesc (applied to the \begin of an environment) sanitises the +longdesc behavior of fragile environments. Moving arguments, and +longdesc corresponding "tables of ..." work happily. +runfiles size=3 + RELOC/tex/latex/cprotect/cprotect.sty +docfiles size=155 + RELOC/doc/latex/cprotect/README + RELOC/doc/latex/cprotect/README.txt + RELOC/doc/latex/cprotect/cprotect.pdf +srcfiles size=11 + RELOC/source/latex/cprotect/cprotect.dtx + RELOC/source/latex/cprotect/cprotect.ins +catalogue-ctan /macros/latex/contrib/cprotect +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0e + +name crbox +category Package +revision 29803 +shortdesc Boxes with crossed corners. +relocated 1 +longdesc The package implements a \crbox command which produces boxes +longdesc with crossing lines at the corners. +runfiles size=1 + RELOC/tex/latex/crbox/crbox.sty +docfiles size=11 + RELOC/doc/latex/crbox/README + RELOC/doc/latex/crbox/crbox-doc.pdf + RELOC/doc/latex/crbox/crbox-doc.tex +catalogue-ctan /macros/latex/contrib/crbox +catalogue-date 2014-09-06 11:10:53 +0200 +catalogue-license lppl +catalogue-version 0.1 + +name crop +category Package +revision 15878 +shortdesc Support for cropmarks. +relocated 1 +longdesc A package providing corner marks for camera alignment as well +longdesc as for trimming paper stacks, and additional page information +longdesc on every page if required. Most macros are easily adaptable to +longdesc personal preferences. An option is provided for selectively +longdesc suppressing graphics or text, which may be useful for printing +longdesc just colour graphics on a colour laser printer and the rest on +longdesc a cheap mono laser printer. A page info line contains the time +longdesc and a new cropmarks index and is printed at the top of the +longdesc page. A configuration command is provided for the info line +longdesc font. Options for better collaboration with dvips, pdftex and +longdesc vtex are provided. +runfiles size=5 + RELOC/tex/latex/crop/crop.sty +docfiles size=61 + RELOC/doc/latex/crop/crop.pdf + RELOC/doc/latex/crop/crop.txt +srcfiles size=19 + RELOC/source/latex/crop/Makefile + RELOC/source/latex/crop/crop.dtx + RELOC/source/latex/crop/crop.ins +catalogue-ctan /macros/latex/contrib/crop +catalogue-date 2012-05-05 01:04:58 +0200 +catalogue-license lppl +catalogue-version 1.5 + +name crossreference +category Package +revision 15878 +shortdesc Crossreferences within documents. +relocated 1 +longdesc The package defines cross-references (essentially 'grand' label +longdesc references), which may be listed in a table of cross- +longdesc references. +runfiles size=1 + RELOC/tex/latex/crossreference/crossreference.sty +docfiles size=17 + RELOC/doc/latex/crossreference/README + RELOC/doc/latex/crossreference/crossreference.pdf + RELOC/doc/latex/crossreference/xrefexample.tex +srcfiles size=4 + RELOC/source/latex/crossreference/crossreference.drv + RELOC/source/latex/crossreference/crossreference.dtx + RELOC/source/latex/crossreference/crossreference.ins +catalogue-ctan /macros/latex/contrib/crossreference +catalogue-date 2012-03-07 12:52:16 +0100 +catalogue-license lppl + +name crossrefware +category Package +revision 38181 +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 +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 + texmf-dist/doc/man/man1/bibdoiadd.1 + texmf-dist/doc/man/man1/bibdoiadd.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/citations.bib + texmf-dist/doc/support/crossrefware/crossrefware.pdf + texmf-dist/doc/support/crossrefware/head.ltx +catalogue-ctan /support/crossrefware +catalogue-date 2015-08-22 05:44:09 +0200 +catalogue-license gpl +catalogue-topics bibtex-util +catalogue-version 1.1 + +name crossrefware.i386-linux +category Package +revision 35401 +shortdesc i386-linux files of crossrefware +binfiles arch=i386-linux size=3 + bin/i386-linux/bibdoiadd + bin/i386-linux/bibzbladd + bin/i386-linux/ltx2crossrefxml + +name crossword +category Package +revision 32657 +shortdesc Typeset crossword puzzles. +relocated 1 +longdesc An extended grid-based puzzle package, designed to take all +longdesc input (both grid and clues) from the same file. The package can +longdesc typeset grids with holes in them (for advertisements, or other +longdesc sorts of stuff), and can deal with several sorts of puzzle: The +longdesc classical puzzle contains numbers for the words and clues for +longdesc the words to be filled in. The numbered puzzle contains numbers +longdesc in each cell where identical numbers represent identical +longdesc letters. The goal is to find out which number corresponds to +longdesc which letter. The fill-in type of puzzle consists of a grid and +longdesc a list of words. The goal is to place all words in the grid. +longdesc Sudoku and Kakuro puzzles involve filling in grids of numbers +longdesc according to their own rules. Format may be block-separated, or +longdesc separated by thick lines. Input to the package is somewhat +longdesc redundant: specification of the grid is separate from +longdesc specification of the clues (if they're necessary). The author +longdesc considers this style both 'natural' and robust. +runfiles size=3 + RELOC/tex/latex/crossword/cwpuzzle.sty +docfiles size=91 + RELOC/doc/latex/crossword/Makefile + RELOC/doc/latex/crossword/README + RELOC/doc/latex/crossword/cwpuzzle.pdf +srcfiles size=20 + RELOC/source/latex/crossword/cwpuzzle.dtx + RELOC/source/latex/crossword/cwpuzzle.ins +catalogue-ctan /macros/latex/contrib/gene/crossword +catalogue-date 2014-10-16 15:17:19 +0200 +catalogue-license other-free +catalogue-version 1.9 + +name crosswrd +category Package +revision 16896 +shortdesc Macros for typesetting crossword puzzles. +relocated 1 +longdesc The package provides a LaTeX method of typesetting crosswords, +longdesc and assists the composer ensure that the grid all goes together +longdesc properly. Brian Hamilton Kelly's original was written for LaTeX +longdesc 2.09, and needed to be updated to run with current LaTeX. +runfiles size=3 + RELOC/tex/latex/crosswrd/crosswrd.sty +docfiles size=66 + RELOC/doc/latex/crosswrd/README + RELOC/doc/latex/crosswrd/crosswrd.pdf + RELOC/doc/latex/crosswrd/grid0.tex + RELOC/doc/latex/crosswrd/grid1.tex + RELOC/doc/latex/crosswrd/grid2.tex + RELOC/doc/latex/crosswrd/test0.tex + RELOC/doc/latex/crosswrd/test1.tex + RELOC/doc/latex/crosswrd/test2.tex +srcfiles size=17 + RELOC/source/latex/crosswrd/crosswrd.dtx + RELOC/source/latex/crosswrd/crosswrd.ins +catalogue-ctan /macros/latex/contrib/crosswrd +catalogue-date 2014-01-13 10:33:20 +0100 +catalogue-license lppl +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 + RELOC/doc/latex/cryptocode/cryptocode.tex +catalogue-ctan /macros/latex/contrib/cryptocode +catalogue-date 2015-04-23 07:14:29 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name cryst +category Package +revision 15878 +shortdesc Font for graphical symbols used in crystallography. +relocated 1 +longdesc The font is provided as an Adobe Type 1 font, and as Metafont +longdesc source. Instructions for use are available both in the README +longdesc file and (with a font diagram) in the documentation. +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-license lppl + +name csbulletin +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. +relocated 1 +longdesc The fonts are provided as Metafont source; Type 1 format +longdesc versions (csfonts-t1) are also available. +execute addMap cs-charter.map +execute addMap csfonts.map +runfiles size=918 + RELOC/fonts/enc/dvips/cs/xl2.enc + RELOC/fonts/enc/dvips/cs/xl2f.enc + RELOC/fonts/enc/dvips/cs/xt2.enc + RELOC/fonts/map/dvips/cs/cs-a35-nodownload.map + RELOC/fonts/map/dvips/cs/cs-a35-urwdownload.map + RELOC/fonts/map/dvips/cs/cs-charter.map + RELOC/fonts/map/dvips/cs/csfonts.map + RELOC/fonts/source/public/cs/csaccent.mf + RELOC/fonts/source/public/cs/csacutl.mf + RELOC/fonts/source/public/cs/csacutu.mf + RELOC/fonts/source/public/cs/csadded.mf + RELOC/fonts/source/public/cs/csb10.mf + RELOC/fonts/source/public/cs/csb12.mf + RELOC/fonts/source/public/cs/csb17.mf + RELOC/fonts/source/public/cs/csb5.mf + RELOC/fonts/source/public/cs/csb6.mf + RELOC/fonts/source/public/cs/csb7.mf + RELOC/fonts/source/public/cs/csb8.mf + RELOC/fonts/source/public/cs/csb9.mf + RELOC/fonts/source/public/cs/csbx10.mf + RELOC/fonts/source/public/cs/csbx12.mf + RELOC/fonts/source/public/cs/csbx5.mf + RELOC/fonts/source/public/cs/csbx6.mf + RELOC/fonts/source/public/cs/csbx7.mf + RELOC/fonts/source/public/cs/csbx8.mf + RELOC/fonts/source/public/cs/csbx9.mf + RELOC/fonts/source/public/cs/csbxsl10.mf + RELOC/fonts/source/public/cs/csbxsl12.mf + RELOC/fonts/source/public/cs/csbxsl5.mf + RELOC/fonts/source/public/cs/csbxsl6.mf + RELOC/fonts/source/public/cs/csbxsl7.mf + RELOC/fonts/source/public/cs/csbxsl8.mf + RELOC/fonts/source/public/cs/csbxsl9.mf + RELOC/fonts/source/public/cs/csbxti10.mf + RELOC/fonts/source/public/cs/csbxti12.mf + RELOC/fonts/source/public/cs/csbxti17.mf + RELOC/fonts/source/public/cs/cscode.mf + RELOC/fonts/source/public/cs/cscsc10.mf + RELOC/fonts/source/public/cs/cscsc12.mf + RELOC/fonts/source/public/cs/cscsc17.mf + RELOC/fonts/source/public/cs/cscsc8.mf + RELOC/fonts/source/public/cs/cscsc9.mf + RELOC/fonts/source/public/cs/csdunh10.mf + RELOC/fonts/source/public/cs/csdunh12.mf + RELOC/fonts/source/public/cs/csdunh17.mf + RELOC/fonts/source/public/cs/csdunh5.mf + RELOC/fonts/source/public/cs/csdunh6.mf + RELOC/fonts/source/public/cs/csdunh7.mf + RELOC/fonts/source/public/cs/csdunh8.mf + RELOC/fonts/source/public/cs/csdunh9.mf + RELOC/fonts/source/public/cs/csff10.mf + RELOC/fonts/source/public/cs/csfi10.mf + RELOC/fonts/source/public/cs/csfib10.mf + RELOC/fonts/source/public/cs/csfib12.mf + RELOC/fonts/source/public/cs/csfib8.mf + RELOC/fonts/source/public/cs/csfib9.mf + RELOC/fonts/source/public/cs/cshachel.mf + RELOC/fonts/source/public/cs/cshacheu.mf + RELOC/fonts/source/public/cs/cshyph.mf + RELOC/fonts/source/public/cs/csiacutl.mf + RELOC/fonts/source/public/cs/csihachl.mf + RELOC/fonts/source/public/cs/csinch.mf + RELOC/fonts/source/public/cs/csiothrl.mf + RELOC/fonts/source/public/cs/csitt10.mf + RELOC/fonts/source/public/cs/csitt12.mf + RELOC/fonts/source/public/cs/csitt17.mf + RELOC/fonts/source/public/cs/csitt8.mf + RELOC/fonts/source/public/cs/csitt9.mf + RELOC/fonts/source/public/cs/csotherl.mf + RELOC/fonts/source/public/cs/csotheru.mf + RELOC/fonts/source/public/cs/csr10.mf + RELOC/fonts/source/public/cs/csr12.mf + RELOC/fonts/source/public/cs/csr17.mf + RELOC/fonts/source/public/cs/csr5.mf + RELOC/fonts/source/public/cs/csr6.mf + RELOC/fonts/source/public/cs/csr7.mf + RELOC/fonts/source/public/cs/csr8.mf + RELOC/fonts/source/public/cs/csr9.mf + RELOC/fonts/source/public/cs/cssl10.mf + RELOC/fonts/source/public/cs/cssl12.mf + RELOC/fonts/source/public/cs/cssl17.mf + RELOC/fonts/source/public/cs/cssl5.mf + RELOC/fonts/source/public/cs/cssl6.mf + RELOC/fonts/source/public/cs/cssl7.mf + RELOC/fonts/source/public/cs/cssl8.mf + RELOC/fonts/source/public/cs/cssl9.mf + RELOC/fonts/source/public/cs/cssltt10.mf + RELOC/fonts/source/public/cs/cssltt12.mf + RELOC/fonts/source/public/cs/cssltt8.mf + RELOC/fonts/source/public/cs/cssltt9.mf + RELOC/fonts/source/public/cs/csss10.mf + RELOC/fonts/source/public/cs/csss12.mf + RELOC/fonts/source/public/cs/csss17.mf + RELOC/fonts/source/public/cs/csss8.mf + RELOC/fonts/source/public/cs/csss9.mf + RELOC/fonts/source/public/cs/csssbx10.mf + RELOC/fonts/source/public/cs/csssbx12.mf + RELOC/fonts/source/public/cs/csssbx17.mf + RELOC/fonts/source/public/cs/csssbx9.mf + RELOC/fonts/source/public/cs/csssdc10.mf + RELOC/fonts/source/public/cs/csssi10.mf + RELOC/fonts/source/public/cs/csssi12.mf + RELOC/fonts/source/public/cs/csssi17.mf + RELOC/fonts/source/public/cs/csssi8.mf + RELOC/fonts/source/public/cs/csssi9.mf + RELOC/fonts/source/public/cs/csssq8.mf + RELOC/fonts/source/public/cs/csssqi8.mf + RELOC/fonts/source/public/cs/cstcsc10.mf + RELOC/fonts/source/public/cs/cstcsc12.mf + RELOC/fonts/source/public/cs/cstcsc17.mf + RELOC/fonts/source/public/cs/cstex10.mf + RELOC/fonts/source/public/cs/cstex8.mf + RELOC/fonts/source/public/cs/cstex9.mf + RELOC/fonts/source/public/cs/csti10.mf + RELOC/fonts/source/public/cs/csti12.mf + RELOC/fonts/source/public/cs/csti17.mf + RELOC/fonts/source/public/cs/csti7.mf + RELOC/fonts/source/public/cs/csti8.mf + RELOC/fonts/source/public/cs/csti9.mf + RELOC/fonts/source/public/cs/cstt10.mf + RELOC/fonts/source/public/cs/cstt12.mf + RELOC/fonts/source/public/cs/cstt8.mf + RELOC/fonts/source/public/cs/cstt9.mf + RELOC/fonts/source/public/cs/csu10.mf + RELOC/fonts/source/public/cs/csu12.mf + RELOC/fonts/source/public/cs/csu17.mf + RELOC/fonts/source/public/cs/csu7.mf + RELOC/fonts/source/public/cs/csu8.mf + RELOC/fonts/source/public/cs/csu9.mf + RELOC/fonts/source/public/cs/csvtt10.mf + RELOC/fonts/source/public/cs/csvtt12.mf + RELOC/fonts/source/public/cs/csvtt8.mf + RELOC/fonts/source/public/cs/csvtt9.mf + RELOC/fonts/source/public/cs/icscsc10.mf + RELOC/fonts/source/public/cs/icstt8.mf + RELOC/fonts/source/public/cs/ilcsss8.mf + RELOC/fonts/source/public/cs/ilcsssb8.mf + RELOC/fonts/source/public/cs/ilcsssi8.mf + RELOC/fonts/source/public/cs/kmcsc.mf + RELOC/fonts/source/public/cs/kmroman.mf + RELOC/fonts/source/public/cs/kmtexset.mf + RELOC/fonts/source/public/cs/kmtextit.mf + RELOC/fonts/source/public/cs/kmtitle.mf + RELOC/fonts/source/public/cs/lcsss8.mf + RELOC/fonts/source/public/cs/lcsssb8.mf + RELOC/fonts/source/public/cs/lcsssi8.mf + RELOC/fonts/tfm/cs/cs-a35/README + RELOC/fonts/tfm/cs/cs-a35/pagd8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagdc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagdo8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagk8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagkc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pagko8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkd8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkdc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkdi8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkl8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbklc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pbkli8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrb8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrbc8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrbo8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrr8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrrc8u.tfm + RELOC/fonts/tfm/cs/cs-a35/pcrro8u.tfm + RELOC/fonts/tfm/cs/cs-a35/phvb8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbn8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbnc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbo8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvbon8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvr8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvrc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvrn8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvrnc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvro8z.tfm + RELOC/fonts/tfm/cs/cs-a35/phvron8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncb8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncbc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncbi8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncr8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncrc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pncri8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplb8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplbc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplbi8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplr8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplrc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pplri8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmb8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmbc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmbi8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmr8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmrc8z.tfm + RELOC/fonts/tfm/cs/cs-a35/ptmri8z.tfm + RELOC/fonts/tfm/cs/cs-a35/pzcmi8z.tfm + RELOC/fonts/tfm/cs/cs-charter/bchb8z.tfm + RELOC/fonts/tfm/cs/cs-charter/bchbi8z.tfm + RELOC/fonts/tfm/cs/cs-charter/bchr8z.tfm + RELOC/fonts/tfm/cs/cs-charter/bchri8z.tfm + RELOC/fonts/tfm/cs/cs-charter/rbchb.tfm + RELOC/fonts/tfm/cs/cs-charter/rbchbi.tfm + RELOC/fonts/tfm/cs/cs-charter/rbchr.tfm + RELOC/fonts/tfm/cs/cs-charter/rbchri.tfm + RELOC/fonts/tfm/public/cs/csb10.tfm + RELOC/fonts/tfm/public/cs/csb12.tfm + RELOC/fonts/tfm/public/cs/csb17.tfm + RELOC/fonts/tfm/public/cs/csb5.tfm + RELOC/fonts/tfm/public/cs/csb6.tfm + RELOC/fonts/tfm/public/cs/csb7.tfm + RELOC/fonts/tfm/public/cs/csb8.tfm + RELOC/fonts/tfm/public/cs/csb9.tfm + RELOC/fonts/tfm/public/cs/csbx10.tfm + RELOC/fonts/tfm/public/cs/csbx12.tfm + RELOC/fonts/tfm/public/cs/csbx5.tfm + RELOC/fonts/tfm/public/cs/csbx6.tfm + RELOC/fonts/tfm/public/cs/csbx7.tfm + RELOC/fonts/tfm/public/cs/csbx8.tfm + RELOC/fonts/tfm/public/cs/csbx9.tfm + RELOC/fonts/tfm/public/cs/csbxsl10.tfm + RELOC/fonts/tfm/public/cs/csbxsl12.tfm + RELOC/fonts/tfm/public/cs/csbxsl5.tfm + RELOC/fonts/tfm/public/cs/csbxsl6.tfm + RELOC/fonts/tfm/public/cs/csbxsl7.tfm + RELOC/fonts/tfm/public/cs/csbxsl8.tfm + RELOC/fonts/tfm/public/cs/csbxsl9.tfm + RELOC/fonts/tfm/public/cs/csbxti10.tfm + RELOC/fonts/tfm/public/cs/csbxti12.tfm + RELOC/fonts/tfm/public/cs/csbxti17.tfm + RELOC/fonts/tfm/public/cs/cscsc10.tfm + RELOC/fonts/tfm/public/cs/cscsc12.tfm + RELOC/fonts/tfm/public/cs/cscsc17.tfm + RELOC/fonts/tfm/public/cs/cscsc8.tfm + RELOC/fonts/tfm/public/cs/cscsc9.tfm + RELOC/fonts/tfm/public/cs/csdunh10.tfm + RELOC/fonts/tfm/public/cs/csdunh12.tfm + RELOC/fonts/tfm/public/cs/csdunh17.tfm + RELOC/fonts/tfm/public/cs/csdunh5.tfm + RELOC/fonts/tfm/public/cs/csdunh6.tfm + RELOC/fonts/tfm/public/cs/csdunh7.tfm + RELOC/fonts/tfm/public/cs/csdunh8.tfm + RELOC/fonts/tfm/public/cs/csdunh9.tfm + RELOC/fonts/tfm/public/cs/csff10.tfm + RELOC/fonts/tfm/public/cs/csfi10.tfm + RELOC/fonts/tfm/public/cs/csfib10.tfm + RELOC/fonts/tfm/public/cs/csfib12.tfm + RELOC/fonts/tfm/public/cs/csfib8.tfm + RELOC/fonts/tfm/public/cs/csfib9.tfm + RELOC/fonts/tfm/public/cs/csinch.tfm + RELOC/fonts/tfm/public/cs/csitt10.tfm + RELOC/fonts/tfm/public/cs/csitt12.tfm + RELOC/fonts/tfm/public/cs/csitt17.tfm + RELOC/fonts/tfm/public/cs/csitt8.tfm + RELOC/fonts/tfm/public/cs/csitt9.tfm + RELOC/fonts/tfm/public/cs/csr10.tfm + RELOC/fonts/tfm/public/cs/csr12.tfm + RELOC/fonts/tfm/public/cs/csr17.tfm + RELOC/fonts/tfm/public/cs/csr5.tfm + RELOC/fonts/tfm/public/cs/csr6.tfm + RELOC/fonts/tfm/public/cs/csr7.tfm + RELOC/fonts/tfm/public/cs/csr8.tfm + RELOC/fonts/tfm/public/cs/csr9.tfm + RELOC/fonts/tfm/public/cs/cssl10.tfm + RELOC/fonts/tfm/public/cs/cssl12.tfm + RELOC/fonts/tfm/public/cs/cssl17.tfm + RELOC/fonts/tfm/public/cs/cssl5.tfm + RELOC/fonts/tfm/public/cs/cssl6.tfm + RELOC/fonts/tfm/public/cs/cssl7.tfm + RELOC/fonts/tfm/public/cs/cssl8.tfm + RELOC/fonts/tfm/public/cs/cssl9.tfm + RELOC/fonts/tfm/public/cs/cssltt10.tfm + RELOC/fonts/tfm/public/cs/cssltt12.tfm + RELOC/fonts/tfm/public/cs/cssltt8.tfm + RELOC/fonts/tfm/public/cs/cssltt9.tfm + RELOC/fonts/tfm/public/cs/csss10.tfm + RELOC/fonts/tfm/public/cs/csss12.tfm + RELOC/fonts/tfm/public/cs/csss17.tfm + RELOC/fonts/tfm/public/cs/csss8.tfm + RELOC/fonts/tfm/public/cs/csss9.tfm + RELOC/fonts/tfm/public/cs/csssbx10.tfm + RELOC/fonts/tfm/public/cs/csssbx12.tfm + RELOC/fonts/tfm/public/cs/csssbx17.tfm + RELOC/fonts/tfm/public/cs/csssbx9.tfm + RELOC/fonts/tfm/public/cs/csssdc10.tfm + RELOC/fonts/tfm/public/cs/csssi10.tfm + RELOC/fonts/tfm/public/cs/csssi12.tfm + RELOC/fonts/tfm/public/cs/csssi17.tfm + RELOC/fonts/tfm/public/cs/csssi8.tfm + RELOC/fonts/tfm/public/cs/csssi9.tfm + RELOC/fonts/tfm/public/cs/csssq8.tfm + RELOC/fonts/tfm/public/cs/csssqi8.tfm + RELOC/fonts/tfm/public/cs/cstcsc10.tfm + RELOC/fonts/tfm/public/cs/cstcsc12.tfm + RELOC/fonts/tfm/public/cs/cstcsc17.tfm + RELOC/fonts/tfm/public/cs/csti10.tfm + RELOC/fonts/tfm/public/cs/csti12.tfm + RELOC/fonts/tfm/public/cs/csti17.tfm + RELOC/fonts/tfm/public/cs/csti7.tfm + RELOC/fonts/tfm/public/cs/csti8.tfm + RELOC/fonts/tfm/public/cs/csti9.tfm + RELOC/fonts/tfm/public/cs/cstt10.tfm + RELOC/fonts/tfm/public/cs/cstt12.tfm + RELOC/fonts/tfm/public/cs/cstt8.tfm + RELOC/fonts/tfm/public/cs/cstt9.tfm + RELOC/fonts/tfm/public/cs/csu10.tfm + RELOC/fonts/tfm/public/cs/csu12.tfm + RELOC/fonts/tfm/public/cs/csu17.tfm + RELOC/fonts/tfm/public/cs/csu7.tfm + RELOC/fonts/tfm/public/cs/csu8.tfm + RELOC/fonts/tfm/public/cs/csu9.tfm + RELOC/fonts/tfm/public/cs/csvtt10.tfm + RELOC/fonts/tfm/public/cs/csvtt12.tfm + RELOC/fonts/tfm/public/cs/csvtt8.tfm + RELOC/fonts/tfm/public/cs/csvtt9.tfm + RELOC/fonts/tfm/public/cs/icscsc10.tfm + RELOC/fonts/tfm/public/cs/icstt8.tfm + RELOC/fonts/tfm/public/cs/ilcsss8.tfm + RELOC/fonts/tfm/public/cs/ilcsssb8.tfm + RELOC/fonts/tfm/public/cs/ilcsssi8.tfm + RELOC/fonts/tfm/public/cs/lcsss8.tfm + RELOC/fonts/tfm/public/cs/lcsssb8.tfm + RELOC/fonts/tfm/public/cs/lcsssi8.tfm + RELOC/fonts/type1/public/cs/README + RELOC/fonts/type1/public/cs/csb10.pfb + RELOC/fonts/type1/public/cs/csbx10.pfb + RELOC/fonts/type1/public/cs/csbx12.pfb + RELOC/fonts/type1/public/cs/csbx5.pfb + RELOC/fonts/type1/public/cs/csbx6.pfb + RELOC/fonts/type1/public/cs/csbx7.pfb + RELOC/fonts/type1/public/cs/csbx8.pfb + RELOC/fonts/type1/public/cs/csbx9.pfb + RELOC/fonts/type1/public/cs/csbxsl10.pfb + RELOC/fonts/type1/public/cs/csbxti10.pfb + RELOC/fonts/type1/public/cs/cscsc10.pfb + RELOC/fonts/type1/public/cs/csdunh10.pfb + RELOC/fonts/type1/public/cs/csff10.pfb + RELOC/fonts/type1/public/cs/csfi10.pfb + RELOC/fonts/type1/public/cs/csfib8.pfb + RELOC/fonts/type1/public/cs/csinch.pfb + RELOC/fonts/type1/public/cs/csitt10.pfb + RELOC/fonts/type1/public/cs/csr10.pfb + RELOC/fonts/type1/public/cs/csr12.pfb + RELOC/fonts/type1/public/cs/csr17.pfb + RELOC/fonts/type1/public/cs/csr5.pfb + RELOC/fonts/type1/public/cs/csr6.pfb + RELOC/fonts/type1/public/cs/csr7.pfb + RELOC/fonts/type1/public/cs/csr8.pfb + RELOC/fonts/type1/public/cs/csr9.pfb + RELOC/fonts/type1/public/cs/cssl10.pfb + RELOC/fonts/type1/public/cs/cssl12.pfb + RELOC/fonts/type1/public/cs/cssl8.pfb + RELOC/fonts/type1/public/cs/cssl9.pfb + RELOC/fonts/type1/public/cs/cssltt10.pfb + RELOC/fonts/type1/public/cs/csss10.pfb + RELOC/fonts/type1/public/cs/csss12.pfb + RELOC/fonts/type1/public/cs/csss17.pfb + RELOC/fonts/type1/public/cs/csss8.pfb + RELOC/fonts/type1/public/cs/csss9.pfb + RELOC/fonts/type1/public/cs/csssbx10.pfb + RELOC/fonts/type1/public/cs/csssdc10.pfb + RELOC/fonts/type1/public/cs/csssi10.pfb + RELOC/fonts/type1/public/cs/csssi12.pfb + RELOC/fonts/type1/public/cs/csssi17.pfb + RELOC/fonts/type1/public/cs/csssi8.pfb + RELOC/fonts/type1/public/cs/csssi9.pfb + RELOC/fonts/type1/public/cs/csssq8.pfb + RELOC/fonts/type1/public/cs/csssqi8.pfb + RELOC/fonts/type1/public/cs/cstcsc10.pfb + RELOC/fonts/type1/public/cs/csti10.pfb + RELOC/fonts/type1/public/cs/csti12.pfb + RELOC/fonts/type1/public/cs/csti7.pfb + RELOC/fonts/type1/public/cs/csti8.pfb + RELOC/fonts/type1/public/cs/csti9.pfb + RELOC/fonts/type1/public/cs/cstt10.pfb + RELOC/fonts/type1/public/cs/cstt12.pfb + RELOC/fonts/type1/public/cs/cstt8.pfb + RELOC/fonts/type1/public/cs/cstt9.pfb + RELOC/fonts/type1/public/cs/csu10.pfb + RELOC/fonts/type1/public/cs/csvtt10.pfb + RELOC/fonts/vf/cs/cs-a35/README + RELOC/fonts/vf/cs/cs-a35/pagdc8z.vf + RELOC/fonts/vf/cs/cs-a35/pagkc8z.vf + RELOC/fonts/vf/cs/cs-a35/pbkdc8z.vf + RELOC/fonts/vf/cs/cs-a35/pbklc8z.vf + RELOC/fonts/vf/cs/cs-a35/pcrbc8u.vf + RELOC/fonts/vf/cs/cs-a35/pcrrc8u.vf + RELOC/fonts/vf/cs/cs-a35/phvbc8z.vf + RELOC/fonts/vf/cs/cs-a35/phvbnc8z.vf + RELOC/fonts/vf/cs/cs-a35/phvrc8z.vf + RELOC/fonts/vf/cs/cs-a35/phvrnc8z.vf + RELOC/fonts/vf/cs/cs-a35/pncbc8z.vf + RELOC/fonts/vf/cs/cs-a35/pncrc8z.vf + RELOC/fonts/vf/cs/cs-a35/pplbc8z.vf + RELOC/fonts/vf/cs/cs-a35/pplrc8z.vf + RELOC/fonts/vf/cs/cs-a35/ptmbc8z.vf + RELOC/fonts/vf/cs/cs-a35/ptmrc8z.vf + RELOC/fonts/vf/cs/cs-charter/bchb8z.vf + RELOC/fonts/vf/cs/cs-charter/bchbi8z.vf + RELOC/fonts/vf/cs/cs-charter/bchr8z.vf + RELOC/fonts/vf/cs/cs-charter/bchri8z.vf +catalogue-ctan /macros/cstex/base/csfonts.tar.gz +catalogue-date 2014-04-24 13:39:23 +0200 +catalogue-license gpl + +name csvsimple +category Package +revision 34610 +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 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 + RELOC/doc/latex/csvsimple/CHANGES + RELOC/doc/latex/csvsimple/README + 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.tex + RELOC/doc/latex/csvsimple/csvsimple.pdf + RELOC/doc/latex/csvsimple/csvsimple.tex + RELOC/doc/latex/csvsimple/gradesort.xml + RELOC/doc/latex/csvsimple/matriculationsort.xml + RELOC/doc/latex/csvsimple/namesort.xml + RELOC/doc/latex/csvsimple/transform.xml +catalogue-ctan /macros/latex/contrib/csvsimple +catalogue-date 2014-09-23 18:36:08 +0200 +catalogue-license lppl1.3 +catalogue-version 1.12 + +name ctable +category Package +revision 38241 +shortdesc Flexible typesetting of table and figure floats using key/value directives +relocated 1 +longdesc Provides commands to typeset centered, left- or right-aligned +longdesc table and (multiple-)figure floats, with footnotes. Instead of +longdesc an environment, a command with 4 arguments is used; the first +longdesc is optional and is used for key,value pairs generating +longdesc variations on the defaults and offering a route for future +longdesc extensions. +runfiles size=3 + RELOC/tex/latex/ctable/ctable.sty +docfiles size=243 + RELOC/doc/latex/ctable/01a + RELOC/doc/latex/ctable/01b + RELOC/doc/latex/ctable/02k + RELOC/doc/latex/ctable/02l + RELOC/doc/latex/ctable/02m + RELOC/doc/latex/ctable/03a + RELOC/doc/latex/ctable/03b + RELOC/doc/latex/ctable/04a + RELOC/doc/latex/ctable/04b + RELOC/doc/latex/ctable/05a + RELOC/doc/latex/ctable/05b + RELOC/doc/latex/ctable/05c + RELOC/doc/latex/ctable/06a + RELOC/doc/latex/ctable/06b + RELOC/doc/latex/ctable/07a + RELOC/doc/latex/ctable/07b + RELOC/doc/latex/ctable/08a + RELOC/doc/latex/ctable/08b + RELOC/doc/latex/ctable/09b + RELOC/doc/latex/ctable/10a + RELOC/doc/latex/ctable/10b + RELOC/doc/latex/ctable/12a + RELOC/doc/latex/ctable/12b + RELOC/doc/latex/ctable/13a + RELOC/doc/latex/ctable/13b + RELOC/doc/latex/ctable/13c + RELOC/doc/latex/ctable/14a + RELOC/doc/latex/ctable/README + RELOC/doc/latex/ctable/ctable.pdf + RELOC/doc/latex/ctable/doit + RELOC/doc/latex/ctable/inst + RELOC/doc/latex/ctable/lion.png + RELOC/doc/latex/ctable/penguin.jpg +srcfiles size=14 + RELOC/source/latex/ctable/ctable.dtx + RELOC/source/latex/ctable/ctable.ins +catalogue-ctan /macros/latex/contrib/ctable +catalogue-date 2015-08-29 16:36:51 +0200 +catalogue-license lppl +catalogue-topics table float +catalogue-version 1.30 + +name ctan_chk +category Package +revision 36304 +shortdesc Ctan guidelines verifier and corrector for uploading projects. +relocated 1 +longdesc Basic gawk program that uses Ctan's published guidelines for +longdesc authors to help eliminate sloppiness in uploaded +longdesc files/projects. It is completely open for users to program +longdesc additional guidelines as well as Ctan's future adjustments. +docfiles size=64 + RELOC/doc/support/ctan_chk/README + RELOC/doc/support/ctan_chk/ctan_chk.gawk + RELOC/doc/support/ctan_chk/ctan_chk.pdf + 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-license gpl3 +catalogue-version 1.0 + +name ctanify +category Package +revision 38373 +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.) +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 + texmf-dist/doc/man/man1/ctanify.1 + texmf-dist/doc/man/man1/ctanify.man1.pdf +catalogue-also ctanupload +catalogue-ctan /support/ctanify +catalogue-date 2015-09-11 19:04:11 +0200 +catalogue-license lppl1.3 +catalogue-topics ctan +catalogue-version 1.7 + +name ctanify.i386-linux +category Package +revision 24061 +shortdesc i386-linux files of ctanify +binfiles arch=i386-linux size=1 + bin/i386-linux/ctanify + +name ctanupload +category Package +revision 26313 +shortdesc Support for users uploading to CTAN. +longdesc The package provides a Perl script that allows the uploads of a +longdesc contribution to CTAN from the command line. The aim is to +longdesc simplify the release process for LaTeX package authors. Note by +longdesc the CTAN team (2015-02-05): It seems that this script is +longdesc currently not working. +depend ctanupload.ARCH +runfiles size=5 + texmf-dist/scripts/ctanupload/ctanupload.pl +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/ctanupload.tex +catalogue-ctan /support/ctanupload +catalogue-date 2015-02-05 18:04:56 +0100 +catalogue-license gpl3 +catalogue-version 1.2c + +name ctanupload.i386-linux +category Package +revision 23866 +shortdesc i386-linux files of ctanupload +binfiles arch=i386-linux size=1 + bin/i386-linux/ctanupload + +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. +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 + +name ctex +category Package +revision 37720 +shortdesc LaTeX classes and packages for Chinese typesetting. +relocated 1 +depend ttfutils +runfiles size=131 + RELOC/tex/generic/ctex/ctexmakespa.tex + RELOC/tex/generic/ctex/ctexspamacro.tex + RELOC/tex/generic/ctex/zhadobefonts.tex + RELOC/tex/generic/ctex/zhfandolfonts.tex + RELOC/tex/generic/ctex/zhfounderfonts.tex + RELOC/tex/generic/ctex/zhubuntufonts.tex + RELOC/tex/generic/ctex/zhwindowsfonts.tex + RELOC/tex/latex/ctex/config/ctex-name-gbk.cfg + RELOC/tex/latex/ctex/config/ctex-name-utf8.cfg + RELOC/tex/latex/ctex/config/ctex.cfg + RELOC/tex/latex/ctex/config/ctexopts.cfg + RELOC/tex/latex/ctex/ctex-article.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/ctexbook.cls + RELOC/tex/latex/ctex/ctexcap.sty + RELOC/tex/latex/ctex/ctexheading.sty + RELOC/tex/latex/ctex/ctexhook.sty + RELOC/tex/latex/ctex/ctexpatch.sty + RELOC/tex/latex/ctex/ctexrep.cls + RELOC/tex/latex/ctex/ctexsize.sty + RELOC/tex/latex/ctex/ctexspa.def + RELOC/tex/latex/ctex/engine/ctex-engine-luatex.def + RELOC/tex/latex/ctex/engine/ctex-engine-pdftex.def + RELOC/tex/latex/ctex/engine/ctex-engine-xetex.def + RELOC/tex/latex/ctex/fd/c19rm.fd + RELOC/tex/latex/ctex/fd/c19sf.fd + RELOC/tex/latex/ctex/fd/c19tt.fd + RELOC/tex/latex/ctex/fd/c70rm.fd + RELOC/tex/latex/ctex/fd/c70sf.fd + RELOC/tex/latex/ctex/fd/c70tt.fd + RELOC/tex/latex/ctex/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-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-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-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-ctan /language/chinese/ctex +catalogue-date 2015-06-30 19:55:40 +0200 +catalogue-license lppl1.3 +catalogue-topics chinese book-pub class +catalogue-version 2.2 + +name ctib +category Package +revision 15878 +catalogue ctib4tex +shortdesc Tibetan for TeX and LATeX2e. +relocated 1 +longdesc A package using a modified version of Sirlin's Tibetan font. An +longdesc advantage of this Tibetan implementation is that all consonant +longdesc clusters are formed by TeX and Metafont. No external +longdesc preprocessor is needed. +runfiles size=206 + RELOC/fonts/source/public/ctib/bzrsetup.mf + RELOC/fonts/source/public/ctib/ctib.mf + RELOC/fonts/source/public/ctib/ctibcode.mf + RELOC/fonts/source/public/ctib/ctiblett.mf + RELOC/fonts/source/public/ctib/ctibligs.mf + RELOC/fonts/source/public/ctib/ctibnum.mf + RELOC/fonts/source/public/ctib/ctibpunc.mf + RELOC/fonts/source/public/ctib/ctibsplt.mf + RELOC/fonts/source/public/ctib/ctibvow.mf + RELOC/fonts/tfm/public/ctib/ctib.tfm + RELOC/tex/latex/ctib/ctib.sty + RELOC/tex/latex/ctib/ctib.tex + RELOC/tex/latex/ctib/lctctib.fd + RELOC/tex/latex/ctib/lctenc.def +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-license gpl + +name ctie +category TLCore +revision 37078 +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 + 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-license gpl +catalogue-version 1.1 + +name ctie.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of ctie +binfiles arch=i386-linux size=28 + bin/i386-linux/ctie + +name cuisine +category Package +revision 34453 +shortdesc Typeset recipes. +relocated 1 +longdesc Typeset recipes with the ingredients lined up with their method +longdesc step (somewhat similarly to the layout used in cooking). +runfiles size=4 + RELOC/tex/latex/cuisine/cuisine.sty +docfiles size=64 + RELOC/doc/latex/cuisine/README + RELOC/doc/latex/cuisine/cuisine.pdf +srcfiles size=13 + RELOC/source/latex/cuisine/cuisine.dtx + RELOC/source/latex/cuisine/cuisine.ins +catalogue-ctan /macros/latex/contrib/cuisine +catalogue-date 2014-06-27 19:08:04 +0200 +catalogue-license lppl +catalogue-version 0.7 + +name currfile +category Package +revision 29012 +shortdesc Provide file name and path of input files. +relocated 1 +longdesc The package provides macros holding file name information +longdesc (directory, base name, extension, full name and full path) for +longdesc files read by LaTeX \input and \include macros; it uses the +longdesc file hooks provided by the author's filehook. In particular, it +longdesc restores the parent file name after the trailing \clearpage of +longdesc an \included file; as a result, the macros may be usefully +longdesc employed in the page header and footer of the last printed page +longdesc of such a file. The depth of inclusion is made available, +longdesc together with the "parent" (including file) and "parents" (all +longdesc including files to the root of the tree). The package +longdesc supersedes FiNK. +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-license lppl1.3 +catalogue-version 0.7b + +name currvita +category Package +revision 15878 +shortdesc Typeset a curriculum vitae. +relocated 1 +longdesc Currvita is a package rather than a class (like most other +longdesc curriculum vitae offerings). The author considers that a +longdesc curriculum vitae can quite reasonably form part of another +longdesc document (such as a letter, or a dissertation). +runfiles size=2 + RELOC/tex/latex/currvita/currvita.sty +docfiles size=30 + RELOC/doc/latex/currvita/README + RELOC/doc/latex/currvita/currvita.pdf + RELOC/doc/latex/currvita/cvtest.tex +srcfiles size=15 + RELOC/source/latex/currvita/currvita.dtx + RELOC/source/latex/currvita/currvita.ins +catalogue-ctan /macros/latex/contrib/currvita +catalogue-date 2011-09-24 17:57:01 +0200 +catalogue-license gpl + +name cursolatex +category Package +revision 24139 +shortdesc A LaTeX tutorial. +relocated 1 +longdesc The tutorial is presented as a set of slides (in Portuguese). +docfiles size=1908 + RELOC/doc/latex/cursolatex/MiKTeX-Basic.png + RELOC/doc/latex/cursolatex/MiKTeX-Complete.png + RELOC/doc/latex/cursolatex/Musica.pdf + RELOC/doc/latex/cursolatex/README + RELOC/doc/latex/cursolatex/TeXShopPNG.png + RELOC/doc/latex/cursolatex/TeXworksPDF.pdf + RELOC/doc/latex/cursolatex/WinEdt.pdf + RELOC/doc/latex/cursolatex/cursolatex.nav + RELOC/doc/latex/cursolatex/cursolatex.pdf + RELOC/doc/latex/cursolatex/cursolatex.snm + RELOC/doc/latex/cursolatex/cursolatex.tex + RELOC/doc/latex/cursolatex/cursolatex.vrb + RELOC/doc/latex/cursolatex/emacs.pdf + RELOC/doc/latex/cursolatex/integral.pdf + RELOC/doc/latex/cursolatex/tabuleiro.pdf + RELOC/doc/latex/cursolatex/texmaker.pdf + RELOC/doc/latex/cursolatex/texniccenter.pdf + RELOC/doc/latex/cursolatex/texstudio.pdf + RELOC/doc/latex/cursolatex/tipografia.pdf + RELOC/doc/latex/cursolatex/ubuntu.pdf +catalogue-ctan /info/portuguese/cursolatex +catalogue-date 2012-04-30 16:43:33 +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 + +name curve +category Package +revision 20745 +shortdesc A class for making curriculum vitae. +relocated 1 +longdesc CurVe is a class for writing a CV, with configuration for the +longdesc language in which you write. The class provides a set of +longdesc commands to create rubrics, entries in these rubrics etc. CurVe +longdesc then format the CV (possibly splitting it onto multiple pages, +longdesc repeating the titles etc), which is usually the most painful +longdesc part of CV writing. Another nice feature of CurVe is its +longdesc ability to manage different CV 'flavours' simultaneously. It is +longdesc often the case that you want to maintain slightly divergent +longdesc versions of your CV at the same time, in order to emphasize on +longdesc different aspects of your background. CurVe also comes with +longdesc support for use with AUC-TeX. +runfiles size=7 + RELOC/tex/latex/curve/curve.cls +docfiles size=80 + RELOC/doc/latex/curve/NEWS + RELOC/doc/latex/curve/README + RELOC/doc/latex/curve/THANKS + RELOC/doc/latex/curve/curve.el + RELOC/doc/latex/curve/curve.pdf + 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 +srcfiles size=23 + RELOC/source/latex/curve/curve.dtx + RELOC/source/latex/curve/curve.ins +catalogue-ctan /macros/latex/contrib/curve +catalogue-date 2014-09-21 12:34:36 +0200 +catalogue-license lppl +catalogue-version 1.16 + +name custom-bib +category Package +revision 24729 +shortdesc Customised BibTeX styles. +relocated 1 +longdesc Package generating customized BibTeX bibliography styles from a +longdesc generic file using docstrip driven by parameters generated by a +longdesc menu application. Includes support for the Harvard style of +longdesc citations. +runfiles size=140 + RELOC/tex/latex/custom-bib/catalan.mbs + RELOC/tex/latex/custom-bib/dansk.mbs + RELOC/tex/latex/custom-bib/dutch.mbs + RELOC/tex/latex/custom-bib/english.mbs + RELOC/tex/latex/custom-bib/esperant.mbs + RELOC/tex/latex/custom-bib/finnish.mbs + RELOC/tex/latex/custom-bib/french.mbs + RELOC/tex/latex/custom-bib/geojour.mbs + RELOC/tex/latex/custom-bib/geophys.tex + RELOC/tex/latex/custom-bib/german.mbs + RELOC/tex/latex/custom-bib/italian.mbs + RELOC/tex/latex/custom-bib/makebst.tex + RELOC/tex/latex/custom-bib/merlin.mbs + RELOC/tex/latex/custom-bib/norsk.mbs + RELOC/tex/latex/custom-bib/photjour.mbs + RELOC/tex/latex/custom-bib/physjour.mbs + RELOC/tex/latex/custom-bib/polski.mbs + RELOC/tex/latex/custom-bib/portuges.mbs + RELOC/tex/latex/custom-bib/shorthnd.tex + RELOC/tex/latex/custom-bib/slovene.mbs + RELOC/tex/latex/custom-bib/spanish.mbs + RELOC/tex/latex/custom-bib/suppjour.mbs + RELOC/tex/latex/custom-bib/svenska.mbs +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-license lppl +catalogue-version 4.33 + +name cutwin +category Package +revision 29803 +shortdesc Cut a window in a paragraph, typeset material in it. +relocated 1 +longdesc The package provides facilities to cut windows out of +longdesc paragraphs, and to typeset text or other material in the +longdesc window. The window may be rectangular, or may have other sorts +longdesc of shape. +runfiles size=3 + RELOC/tex/latex/cutwin/cutwin.sty +docfiles size=81 + RELOC/doc/latex/cutwin/README + RELOC/doc/latex/cutwin/cutwin.pdf +srcfiles size=10 + RELOC/source/latex/cutwin/cutwin.dtx + RELOC/source/latex/cutwin/cutwin.ins +catalogue-ctan /macros/latex/contrib/cutwin +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name cv4tw +category Package +revision 34577 +shortdesc LaTeX CV class, with extended details. +relocated 1 +longdesc The class offers entries for assets and social networks; +longdesc customizable styles are provided. The class comes with no +longdesc documentation, but a worked example offers some guidance. +runfiles size=9 + RELOC/tex/latex/cv4tw/cv4tw-scheme.sty + RELOC/tex/latex/cv4tw/cv4tw-theme-compact.sty + RELOC/tex/latex/cv4tw/cv4tw-theme-core.sty + RELOC/tex/latex/cv4tw/cv4tw-theme-sharp.sty + RELOC/tex/latex/cv4tw/cv4tw-theme-simple.sty + RELOC/tex/latex/cv4tw/cv4tw.cls +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-ctan /macros/latex/contrib/cv4tw +catalogue-date 2014-09-21 12:34:36 +0200 +catalogue-license other-free +catalogue-version 0.2 + +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. +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 + +name cweb-latex +category Package +revision 28878 +shortdesc A LaTeX version of CWEB. +relocated 1 +longdesc This bundle allows marking-up of CWEB code in LaTeX. The +longdesc distribution includes the "Counting Words" program distributed +longdesc with CWEB, edited to run with LaTeX. +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 +docfiles size=211 + RELOC/doc/latex/cweb-latex/CATALOG + RELOC/doc/latex/cweb-latex/History + RELOC/doc/latex/cweb-latex/INSTALL + RELOC/doc/latex/cweb-latex/License + RELOC/doc/latex/cweb-latex/MANIFEST + RELOC/doc/latex/cweb-latex/Makefile + RELOC/doc/latex/cweb-latex/README + RELOC/doc/latex/cweb-latex/contrib/Index + RELOC/doc/latex/cweb-latex/contrib/cwbl-deutsch.sty + RELOC/doc/latex/cweb-latex/contrib/cwbl-french.sty + RELOC/doc/latex/cweb-latex/contrib/cwbl-italian.sty + RELOC/doc/latex/cweb-latex/contrib/cweb-hy/README.txt + RELOC/doc/latex/cweb-latex/contrib/cweb-hy/cwbasehy.tex + RELOC/doc/latex/cweb-latex/contrib/cweb-hy/cweb-hy.cls + RELOC/doc/latex/cweb-latex/contrib/cweb-hy/nodoc.tex + RELOC/doc/latex/cweb-latex/contrib/wagner/cwebzw.sty + RELOC/doc/latex/cweb-latex/cweb-conf.pdf + RELOC/doc/latex/cweb-latex/cweb-user.pdf + RELOC/doc/latex/cweb-latex/examples/Makefile + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.aux + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.bbl + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.dvi + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.idx + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.log + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.scn + RELOC/doc/latex/cweb-latex/examples/compare/wcltx.tex + RELOC/doc/latex/cweb-latex/examples/rcs.sty + RELOC/doc/latex/cweb-latex/examples/tex-it + RELOC/doc/latex/cweb-latex/examples/wcltx.bib + RELOC/doc/latex/cweb-latex/examples/wcltx.w + RELOC/doc/latex/cweb-latex/src/Imakefile + RELOC/doc/latex/cweb-latex/src/README + RELOC/doc/latex/cweb-latex/src/TODO + RELOC/doc/latex/cweb-latex/src/cwbl-german.sty + RELOC/doc/latex/cweb-latex/src/cweave-spec.tex + RELOC/doc/latex/cweb-latex/src/cweb-conf.tex + RELOC/doc/latex/cweb-latex/src/cweb-doc.sty + RELOC/doc/latex/cweb-latex/src/cweb-fsa.fig + RELOC/doc/latex/cweb-latex/src/cweb-fsa.latex + RELOC/doc/latex/cweb-latex/src/cweb-fsa.ltx + RELOC/doc/latex/cweb-latex/src/cweb-user.tex + RELOC/doc/latex/cweb-latex/src/cweb.doc + RELOC/doc/latex/cweb-latex/src/cwebarray.sty + RELOC/doc/latex/cweb-latex/src/cwebbase.doc + RELOC/doc/latex/cweb-latex/src/cwebparts.doc + RELOC/doc/latex/cweb-latex/src/cwebx.sty + RELOC/doc/latex/cweb-latex/src/keyvald.dtx + RELOC/doc/latex/cweb-latex/src/keyvald.ins + RELOC/doc/latex/cweb-latex/src/style/cweb-doc.el + RELOC/doc/latex/cweb-latex/src/test/Imakefile + RELOC/doc/latex/cweb-latex/src/test/badend.w + RELOC/doc/latex/cweb-latex/src/test/badopts.w + RELOC/doc/latex/cweb-latex/src/test/change.ch + RELOC/doc/latex/cweb-latex/src/test/change.w + RELOC/doc/latex/cweb-latex/src/test/enddocbegin.w + RELOC/doc/latex/cweb-latex/src/test/flat.w + RELOC/doc/latex/cweb-latex/src/test/german.w + RELOC/doc/latex/cweb-latex/src/test/language-german.ch + RELOC/doc/latex/cweb-latex/src/test/language-german.w + RELOC/doc/latex/cweb-latex/src/test/minimal.w + RELOC/doc/latex/cweb-latex/src/test/modes.w + RELOC/doc/latex/cweb-latex/src/test/newif.w + RELOC/doc/latex/cweb-latex/src/test/nolists.w + RELOC/doc/latex/cweb-latex/src/test/parts-code.w + RELOC/doc/latex/cweb-latex/src/test/parts.tex + RELOC/doc/latex/cweb-latex/src/test/refname.w + RELOC/doc/latex/cweb-latex/src/test/report.w + RELOC/doc/latex/cweb-latex/src/test/section.w + RELOC/doc/latex/cweb-latex/src/test/sup-changes.w + RELOC/doc/latex/cweb-latex/src/test/sup-format.w + RELOC/doc/latex/cweb-latex/src/test/sup-lists.w + RELOC/doc/latex/cweb-latex/src/test/titlepage.w + RELOC/doc/latex/cweb-latex/src/test/token.w + RELOC/doc/latex/cweb-latex/src/test/vbar.w +catalogue-ctan /macros/latex/contrib/cweb +catalogue-date 2013-01-19 01:25:39 +0100 +catalogue-license gpl + +name cweb +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 + +name cweb.i386-linux +category Package +revision 36790 +shortdesc i386-linux files of cweb +binfiles arch=i386-linux size=79 + bin/i386-linux/ctangle + bin/i386-linux/cweave + +name cybercic +category Package +revision 37659 +shortdesc "Controls in Contents" for the cyber package. +relocated 1 +longdesc This package is used in concert with the cyber package to make +longdesc documents with annotations of compliance with cybersecurity +longdesc requirements. "cic" stands for "Controls in Contents", and when +longdesc you include this package, some notations of compliance are +longdesc added to section names as seen in the table of contents of the +longdesc final document. It also makes your document more brittle in +longdesc unexpected ways: for example, when you use cybercic in the same +longdesc document as hyperref, you cannot use any formatting in your +longdesc section titles. So don't use cybercic unless you need to. +runfiles size=2 + RELOC/tex/latex/cybercic/cybercic.sty +docfiles size=49 + RELOC/doc/latex/cybercic/LICENSE + RELOC/doc/latex/cybercic/README + RELOC/doc/latex/cybercic/cybercic.pdf +srcfiles size=6 + RELOC/source/latex/cybercic/cybercic.dtx + RELOC/source/latex/cybercic/cybercic.ins +catalogue-ctan /macros/latex/contrib/cybercic +catalogue-date 2015-06-24 08:24:32 +0200 +catalogue-license other-free +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. +relocated 1 +longdesc The Cyclop typeface was designed in the 1920s at the workshop +longdesc of Warsaw type foundry "Odlewnia Czcionek J. Idzkowski i S-ka". +longdesc This sans serif typeface has a highly modulated stroke so it +longdesc has high typographic contrast. The vertical stems are much +longdesc heavier then horizontal ones. Most characters have thin +longdesc rectangles as additional counters giving the unique shape of +longdesc the characters. The lead types of Cyclop typeface were produced +longdesc in slanted variant at sizes 8-48 pt. It was heavily used for +longdesc heads in newspapers and accidents prints. Typesetters used +longdesc Cyclop in the inter-war period, during the occupation in the +longdesc underground press. The typeface was used until the beginnings +longdesc of the offset print and computer typesetting era. Nowadays it +longdesc is hard to find the metal types of this typeface. The font was +longdesc generated using the Metatype1 package. Then the original set of +longdesc characters was completed by adding the full set of accented +longdesc letters and characters of the modern Latin alphabets (including +longdesc Vietnamese). The upright variant was generated and it was more +longdesc complicated task than it appeared at the beginning. 11 upright +longdesc letters of the Cyclop typeface were presented in the book by +longdesc Filip Trzaska, "Podstawy techniki wydawniczej" ("Foundation of +longdesc the publishing techonology"), Warsaw 1967. But even the author +longdesc of the book does not know what was the source of the presented +longdesc examples. The fonts are distributed in the Type1 and OpenType +longdesc formats along with the files necessary for use these fonts in +longdesc TeX and LaTeX including encoding definition files: T1 (ec), T5 +longdesc (Vietnamese), OT4, QX, texnansi and nonstandard ones (IL2 for +longdesc Czech fonts). +execute addMap cyklop.map +runfiles size=364 + RELOC/fonts/afm/public/cyklop/cyklopi.afm + RELOC/fonts/afm/public/cyklop/cyklopr.afm + RELOC/fonts/enc/dvips/cyklop/cs-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/cs-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/ec-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/ec-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/l7x-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/l7x-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/ly1-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/ly1-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/qx-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/qx-cyklop.enc + RELOC/fonts/enc/dvips/cyklop/t5-cyklop-sc.enc + RELOC/fonts/enc/dvips/cyklop/t5-cyklop.enc + RELOC/fonts/map/dvips/cyklop/cyklop-cs.map + RELOC/fonts/map/dvips/cyklop/cyklop-ec.map + RELOC/fonts/map/dvips/cyklop/cyklop-l7x.map + RELOC/fonts/map/dvips/cyklop/cyklop-ly1.map + RELOC/fonts/map/dvips/cyklop/cyklop-qx.map + RELOC/fonts/map/dvips/cyklop/cyklop-t5.map + RELOC/fonts/map/dvips/cyklop/cyklop.map + RELOC/fonts/opentype/public/cyklop/cyklop-italic.otf + RELOC/fonts/opentype/public/cyklop/cyklop-regular.otf + RELOC/fonts/tfm/public/cyklop/cs-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/cs-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/cs-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/cs-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/ec-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/ec-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/ec-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/ec-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/l7x-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/l7x-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/l7x-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/l7x-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/ly1-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/ly1-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/ly1-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/ly1-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/qx-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/qx-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/qx-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/qx-cyklopr.tfm + RELOC/fonts/tfm/public/cyklop/t5-cyklopi-sc.tfm + RELOC/fonts/tfm/public/cyklop/t5-cyklopi.tfm + RELOC/fonts/tfm/public/cyklop/t5-cyklopr-sc.tfm + RELOC/fonts/tfm/public/cyklop/t5-cyklopr.tfm + RELOC/fonts/type1/public/cyklop/cyklopi.pfb + RELOC/fonts/type1/public/cyklop/cyklopr.pfb + RELOC/tex/latex/cyklop/cyklop.sty + RELOC/tex/latex/cyklop/il2cyklop.fd + RELOC/tex/latex/cyklop/l7xcyklop.fd + RELOC/tex/latex/cyklop/ly1cyklop.fd + RELOC/tex/latex/cyklop/ot1cyklop.fd + RELOC/tex/latex/cyklop/ot4cyklop.fd + RELOC/tex/latex/cyklop/qxcyklop.fd + RELOC/tex/latex/cyklop/t1cyklop.fd + RELOC/tex/latex/cyklop/t5cyklop.fd +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-license gfl +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. +relocated 1 +longdesc This bundle of macros files provides macro support (including +longdesc font encoding macros) for the use of Cyrillic characters in +longdesc fonts encoded under the T2* and X2 encodings. These encodings +longdesc cover (between them) pretty much every language that is written +longdesc in a Cyrillic alphabet. This directory is part of the LaTeX +longdesc "required" distribution. +depend cyrillic-bin +runfiles size=133 + RELOC/tex/latex/cyrillic/cp1251.def + RELOC/tex/latex/cyrillic/cp855.def + RELOC/tex/latex/cyrillic/cp866.def + RELOC/tex/latex/cyrillic/cp866av.def + RELOC/tex/latex/cyrillic/cp866mav.def + RELOC/tex/latex/cyrillic/cp866nav.def + RELOC/tex/latex/cyrillic/cp866tat.def + RELOC/tex/latex/cyrillic/ctt.def + RELOC/tex/latex/cyrillic/dbk.def + RELOC/tex/latex/cyrillic/iso88595.def + RELOC/tex/latex/cyrillic/isoir111.def + RELOC/tex/latex/cyrillic/koi8-r.def + RELOC/tex/latex/cyrillic/koi8-ru.def + RELOC/tex/latex/cyrillic/koi8-u.def + RELOC/tex/latex/cyrillic/lcy.sty + RELOC/tex/latex/cyrillic/lcyccr.fd + RELOC/tex/latex/cyrillic/lcycmbr.fd + RELOC/tex/latex/cyrillic/lcycmdh.fd + RELOC/tex/latex/cyrillic/lcycmfib.fd + RELOC/tex/latex/cyrillic/lcycmfr.fd + RELOC/tex/latex/cyrillic/lcycmr.fd + RELOC/tex/latex/cyrillic/lcycmss.fd + RELOC/tex/latex/cyrillic/lcycmtl.fd + RELOC/tex/latex/cyrillic/lcycmtt.fd + RELOC/tex/latex/cyrillic/lcycmvtt.fd + RELOC/tex/latex/cyrillic/lcydefs.tex + RELOC/tex/latex/cyrillic/lcyenc.def + RELOC/tex/latex/cyrillic/lcylcmss.fd + RELOC/tex/latex/cyrillic/lcylcmtt.fd + RELOC/tex/latex/cyrillic/maccyr.def + RELOC/tex/latex/cyrillic/macukr.def + RELOC/tex/latex/cyrillic/mik.def + RELOC/tex/latex/cyrillic/mls.def + RELOC/tex/latex/cyrillic/mnk.def + RELOC/tex/latex/cyrillic/mos.def + RELOC/tex/latex/cyrillic/ncc.def + RELOC/tex/latex/cyrillic/ot2ccr.fd + RELOC/tex/latex/cyrillic/ot2cmbr.fd + RELOC/tex/latex/cyrillic/ot2cmdh.fd + RELOC/tex/latex/cyrillic/ot2cmfib.fd + RELOC/tex/latex/cyrillic/ot2cmfr.fd + RELOC/tex/latex/cyrillic/ot2cmr.fd + RELOC/tex/latex/cyrillic/ot2cmss.fd + RELOC/tex/latex/cyrillic/ot2cmtl.fd + RELOC/tex/latex/cyrillic/ot2cmtt.fd + RELOC/tex/latex/cyrillic/ot2cmvtt.fd + RELOC/tex/latex/cyrillic/ot2enc.def + RELOC/tex/latex/cyrillic/ot2lcmss.fd + RELOC/tex/latex/cyrillic/ot2lcmtt.fd + RELOC/tex/latex/cyrillic/ot2wlcyr.fd + RELOC/tex/latex/cyrillic/ot2wlcyss.fd + RELOC/tex/latex/cyrillic/ot2wncyr.fd + RELOC/tex/latex/cyrillic/ot2wncyss.fd + RELOC/tex/latex/cyrillic/pt154.def + RELOC/tex/latex/cyrillic/pt254.def + RELOC/tex/latex/cyrillic/t2accr.fd + RELOC/tex/latex/cyrillic/t2acmbr.fd + RELOC/tex/latex/cyrillic/t2acmdh.fd + RELOC/tex/latex/cyrillic/t2acmfib.fd + RELOC/tex/latex/cyrillic/t2acmfr.fd + RELOC/tex/latex/cyrillic/t2acmr.fd + RELOC/tex/latex/cyrillic/t2acmss.fd + RELOC/tex/latex/cyrillic/t2acmtl.fd + RELOC/tex/latex/cyrillic/t2acmtt.fd + RELOC/tex/latex/cyrillic/t2acmvtt.fd + RELOC/tex/latex/cyrillic/t2aenc.def + RELOC/tex/latex/cyrillic/t2alcmss.fd + RELOC/tex/latex/cyrillic/t2alcmtt.fd + RELOC/tex/latex/cyrillic/t2bccr.fd + RELOC/tex/latex/cyrillic/t2bcmbr.fd + RELOC/tex/latex/cyrillic/t2bcmdh.fd + RELOC/tex/latex/cyrillic/t2bcmfib.fd + RELOC/tex/latex/cyrillic/t2bcmfr.fd + RELOC/tex/latex/cyrillic/t2bcmr.fd + RELOC/tex/latex/cyrillic/t2bcmss.fd + RELOC/tex/latex/cyrillic/t2bcmtl.fd + RELOC/tex/latex/cyrillic/t2bcmtt.fd + RELOC/tex/latex/cyrillic/t2bcmvtt.fd + RELOC/tex/latex/cyrillic/t2benc.def + RELOC/tex/latex/cyrillic/t2blcmss.fd + RELOC/tex/latex/cyrillic/t2blcmtt.fd + RELOC/tex/latex/cyrillic/t2cccr.fd + RELOC/tex/latex/cyrillic/t2ccmbr.fd + RELOC/tex/latex/cyrillic/t2ccmdh.fd + RELOC/tex/latex/cyrillic/t2ccmfib.fd + RELOC/tex/latex/cyrillic/t2ccmfr.fd + RELOC/tex/latex/cyrillic/t2ccmr.fd + RELOC/tex/latex/cyrillic/t2ccmss.fd + RELOC/tex/latex/cyrillic/t2ccmtl.fd + RELOC/tex/latex/cyrillic/t2ccmtt.fd + RELOC/tex/latex/cyrillic/t2ccmvtt.fd + RELOC/tex/latex/cyrillic/t2cenc.def + RELOC/tex/latex/cyrillic/t2clcmss.fd + RELOC/tex/latex/cyrillic/t2clcmtt.fd + RELOC/tex/latex/cyrillic/x2ccr.fd + RELOC/tex/latex/cyrillic/x2cmbr.fd + RELOC/tex/latex/cyrillic/x2cmdh.fd + RELOC/tex/latex/cyrillic/x2cmfib.fd + RELOC/tex/latex/cyrillic/x2cmfr.fd + RELOC/tex/latex/cyrillic/x2cmr.fd + RELOC/tex/latex/cyrillic/x2cmss.fd + RELOC/tex/latex/cyrillic/x2cmtl.fd + RELOC/tex/latex/cyrillic/x2cmtt.fd + RELOC/tex/latex/cyrillic/x2cmvtt.fd + RELOC/tex/latex/cyrillic/x2enc.def + RELOC/tex/latex/cyrillic/x2lcmss.fd + RELOC/tex/latex/cyrillic/x2lcmtt.fd +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-license lppl1.3 + +name cyrplain +category Package +revision 29349 +relocated 1 +runfiles size=17 + RELOC/tex/plain/cyrplain/README + RELOC/tex/plain/cyrplain/cyramstx.ini + RELOC/tex/plain/cyrplain/cyrblue.ini + RELOC/tex/plain/cyrplain/cyrcmfnt.tex + RELOC/tex/plain/cyrplain/cyrecfnt.tex + RELOC/tex/plain/cyrplain/cyrtex.cfg + RELOC/tex/plain/cyrplain/cyrtex.ini + RELOC/tex/plain/cyrplain/cyrtex.tex + RELOC/tex/plain/cyrplain/cyrtxinf.ini + RELOC/tex/plain/cyrplain/makefmts.bat + RELOC/tex/plain/cyrplain/makefmts.sh + RELOC/tex/plain/cyrplain/plainenc.tex + RELOC/tex/plain/cyrplain/txxdefs.tex + RELOC/tex/plain/cyrplain/txxextra.tex + +name dad +category Package +revision 35362 +shortdesc Simple typesetting system for mixed Arabic/Latin documents. +relocated 1 +longdesc This package allows simple typesetting in Arabic script, +longdesc intended for mixed Arabic/Latin script usage in situations +longdesc where heavy-duty solutions are discouraged. The system +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 + RELOC/fonts/ofm/public/dad/dadmono.ofm + RELOC/fonts/ovf/public/dad/dad.ovf + RELOC/fonts/ovf/public/dad/dadbold.ovf + RELOC/fonts/ovf/public/dad/dadmono.ovf + RELOC/fonts/tfm/public/dad/dadreal.tfm + RELOC/fonts/tfm/public/dad/dadrealbold.tfm + RELOC/fonts/tfm/public/dad/dadrealmono.tfm + RELOC/fonts/type1/public/dad/Dad-bold.pfb + RELOC/fonts/type1/public/dad/Dad-mono.pfb + RELOC/fonts/type1/public/dad/Dad.pfb + RELOC/tex/lualatex/dad/OT1dad.fd + RELOC/tex/lualatex/dad/T1dad.fd + RELOC/tex/lualatex/dad/dad.sty +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-license lppl +catalogue-version 1.1 + +name dancers +category Package +revision 13293 +shortdesc Font for Conan Doyle'ss "The Dancing Men". +relocated 1 +longdesc The (Sherlock Holmes) book contains a code which uses dancing +longdesc men as glyphs. The alphabet as given is not complete, lacking +longdesc f, j, k, q, u, w, x and z, so those letters in the font are not +longdesc due to Conan Doyle. The code required word endings to be marked +longdesc by the dancing man representing the last letter to be holding a +longdesc flag: these are coded as A-Z. +longdesc thaTiStOsaYsentenceSiNthEcodElooKlikEthiS. In some cases, the +longdesc man has no arms, making it impossible for him to hold a flag. +longdesc In these cases, he is wearing a flag on his hat in the +longdesc 'character'. The font is distributed as Metafont source; it +longdesc works poorly in modern environments, and could do with expert +longdesc attention (if you are interested, please contact the CTAN team +longdesc for details). +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-license other-free + +name dantelogo +category Package +revision 38105 +shortdesc A font for DANTE's logo +relocated 1 +longdesc The DANTE font for the logo of DANTE (http://www.dante.de), the +longdesc German speaking TeX users group. The font includes only the +longdesc five characters d, a, n, t, and e. dantelogo.sty provides an +longdesc interface for LuaLaTeX/XeLaTeX/pdfLaTeX. +execute addMap dante.map +runfiles size=37 + RELOC/fonts/enc/dvips/dantelogo/dante.enc + RELOC/fonts/map/dvips/dantelogo/dante.map + RELOC/fonts/opentype/public/dantelogo/DANTE-Bold-Italic.otf + RELOC/fonts/opentype/public/dantelogo/DANTE-Bold.otf + RELOC/fonts/opentype/public/dantelogo/DANTE-Italic.otf + RELOC/fonts/opentype/public/dantelogo/DANTE.otf + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold--texnansx--base.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold--texnansx.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold-Italic--texnansx--base.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold-Italic--texnansx.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Bold.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Italic--texnansx--base.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE-Italic--texnansx.tfm + RELOC/fonts/tfm/public/dantelogo/DANTE.tfm + RELOC/fonts/type1/public/dantelogo/DANTE-Bold-Italic.pfb + RELOC/fonts/type1/public/dantelogo/DANTE-Bold.pfb + RELOC/fonts/type1/public/dantelogo/DANTE-Italic.pfb + RELOC/fonts/type1/public/dantelogo/DANTE.pfb + RELOC/fonts/vf/public/dantelogo/DANTE-Bold--texnansx.vf + RELOC/fonts/vf/public/dantelogo/DANTE-Bold-Italic--texnansx.vf + RELOC/fonts/vf/public/dantelogo/DANTE-Italic--texnansx.vf + RELOC/tex/latex/dantelogo/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-license lppl +catalogue-topics font font-otf font-type1 +catalogue-version 0.02a + +name dashbox +category Package +revision 23425 +shortdesc Draw dashed boxes. +relocated 1 +longdesc The package can draw boxes that perform like \framebox or +longdesc \fbox, but use dashed lines. The package can also draw (an +longdesc illusion of) vertical stacks of boxes. +runfiles size=2 + RELOC/tex/latex/dashbox/dashbox.sty +docfiles size=39 + RELOC/doc/latex/dashbox/dashbox.pdf +srcfiles size=5 + RELOC/source/latex/dashbox/dashbox.dtx + RELOC/source/latex/dashbox/dashbox.ins +catalogue-ctan /macros/latex/contrib/dashbox +catalogue-date 2013-11-21 20:02:41 +0100 +catalogue-license lppl +catalogue-version 1.14 + +name dashrule +category Package +revision 29579 +shortdesc Draw dashed rules. +relocated 1 +longdesc The dashrule package makes it easy to draw a huge variety of +longdesc dashed rules (i.e., lines) in LaTeX. dashrule provides a +longdesc command, \hdashrule, which is a cross between LaTeX's \rule and +longdesc PostScript's setdash command. \hdashrule draws horizontally +longdesc dashed rules using the same syntax as \rule, but with an +longdesc additional, setdash-like parameter that specifies the pattern +longdesc of dash segments and the space between those segments. Because +longdesc dashrule's rules are constructed internally using \rule (as +longdesc opposed to, e.g., PostScript \specials) they are fully +longdesc compatible with every LaTeX back-end processor. +runfiles size=1 + RELOC/tex/latex/dashrule/dashrule.sty +docfiles size=64 + RELOC/doc/latex/dashrule/README + RELOC/doc/latex/dashrule/dashrule.pdf +srcfiles size=6 + RELOC/source/latex/dashrule/dashrule.dtx + RELOC/source/latex/dashrule/dashrule.ins +catalogue-ctan /macros/latex/contrib/dashrule +catalogue-date 2013-03-31 13:01:15 +0200 +catalogue-license lppl +catalogue-version 1.3 + +name dashundergaps +category Package +revision 23373 +shortdesc Underline with dotted or dashed lines. +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 + 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-ctan /macros/latex/contrib/dashundergaps +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name dataref +category Package +revision 36991 +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 + 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-ctan /macros/latex/contrib/dataref +catalogue-date 2015-04-21 19:45:23 +0200 +catalogue-license lppl1.3 +catalogue-version 0.4 + +name datatool +category Package +revision 37837 +shortdesc Tools to load and manipulate data. +relocated 1 +longdesc The tools comprise six packages: datatool.sty: databases may be +longdesc created using LaTeX commands or by importing external files; +longdesc they may be sorted numerically or alphabetically; repetitive +longdesc operations (such as mail merging) may be performed on each row +longdesc of a database, subject to conditions to exclude particular +longdesc rows; commands are provided to examine database elements, and +longdesc to convert formats (for example, to convert a numeric element +longdesc to a format compatible with the fp package; datapie.sty: a +longdesc database may be represented as a pie chart; flexible options +longdesc allow colouring of the chart, and annotation hooks are +longdesc available; dataplot.sty: a database may be represented as a 2- +longdesc dimensional scatter or line plot; flexible options control of +longdesc the plot's overall appearance, and of legends and other extra +longdesc information; databar.sty: a database may be represented as a +longdesc bar chart; overall appearance, colouring and annotation are +longdesc controllable; datagidx.sty: provides a way of indexing or +longdesc creating glossaries/lists of acronyms that uses TeX to do the +longdesc sorting and collating instead of using an external indexing +longdesc application, such as xindy or makeindex; databib.sty: a +longdesc bibliography may be loaded into a datatool database, and +longdesc manipulated there before being printed (this permits a 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 + 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/datatool-user.tex + RELOC/doc/latex/datatool/samples/data-raw.dbtex + RELOC/doc/latex/datatool/samples/sample-autokeys-data.csv + RELOC/doc/latex/datatool/samples/sample-autokeys.pdf + RELOC/doc/latex/datatool/samples/sample-autokeys.tex + RELOC/doc/latex/datatool/samples/sample-barchart.pdf + RELOC/doc/latex/datatool/samples/sample-barchart.tex + RELOC/doc/latex/datatool/samples/sample-datatooltk.pdf + RELOC/doc/latex/datatool/samples/sample-datatooltk.tex + RELOC/doc/latex/datatool/samples/sample-dict.pdf + RELOC/doc/latex/datatool/samples/sample-dict.tex + RELOC/doc/latex/datatool/samples/sample-europecv-bib.pdf + RELOC/doc/latex/datatool/samples/sample-europecv-bib.tex + RELOC/doc/latex/datatool/samples/sample-gidx.pdf + RELOC/doc/latex/datatool/samples/sample-gidx.tex + RELOC/doc/latex/datatool/samples/sample-glossary.pdf + RELOC/doc/latex/datatool/samples/sample-glossary.tex + RELOC/doc/latex/datatool/samples/sample-index.pdf + RELOC/doc/latex/datatool/samples/sample-index.tex + RELOC/doc/latex/datatool/samples/sample-mail-merge.pdf + RELOC/doc/latex/datatool/samples/sample-mail-merge.tex + RELOC/doc/latex/datatool/samples/sample-piechart.pdf + RELOC/doc/latex/datatool/samples/sample-piechart.tex + RELOC/doc/latex/datatool/samples/sample-sort.pdf + RELOC/doc/latex/datatool/samples/sample-sort.tex + RELOC/doc/latex/datatool/samples/sample-student-records.csv + RELOC/doc/latex/datatool/samples/sample-student-scores.pdf + RELOC/doc/latex/datatool/samples/sample-student-scores.tex + RELOC/doc/latex/datatool/samples/sample-two-per-row.pdf + RELOC/doc/latex/datatool/samples/sample-two-per-row.tex +srcfiles size=196 + RELOC/source/latex/datatool/datatool.dtx + RELOC/source/latex/datatool/datatool.ins +catalogue-ctan /macros/latex/contrib/datatool +catalogue-date 2015-07-11 18:06:36 +0200 +catalogue-license lppl1.3 +catalogue-topics data-import data-disp data-manip +catalogue-version 2.23 + +name dateiliste +category Package +revision 27974 +shortdesc Extensions of the \listfiles concept. +relocated 1 +longdesc The package provides a file list (similar to that offered by +longdesc \listfiles), neatly laid out as a table. The main document can +longdesc be included in the list, and a command is available for +longdesc providing RCS-maintained data for printing in the file list. +runfiles size=4 + RELOC/tex/latex/dateiliste/dateiliste.sty +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 +srcfiles size=19 + RELOC/source/latex/dateiliste/dateiliste.dtx + RELOC/source/latex/dateiliste/dateiliste.ins +catalogue-ctan /macros/latex/contrib/dateiliste +catalogue-date 2012-10-15 00:17:21 +0200 +catalogue-license lppl +catalogue-version 0.6 + +name datenumber +category Package +revision 18951 +shortdesc Convert a date into a number and vice versa. +relocated 1 +longdesc This package provides commands to convert a date into a number +longdesc and vice versa. Additionally there are commands for +longdesc incrementing and decrementing a date. Leap years and the +longdesc Gregorian calendar reform are considered. +runfiles size=8 + RELOC/tex/latex/datenumber/datenumber.sty + RELOC/tex/latex/datenumber/datenumberUSenglish.ldf + RELOC/tex/latex/datenumber/datenumberdummy.ldf + RELOC/tex/latex/datenumber/datenumberenglish.ldf + RELOC/tex/latex/datenumber/datenumberfrench.ldf + RELOC/tex/latex/datenumber/datenumbergerman.ldf + RELOC/tex/latex/datenumber/datenumberspanish.ldf +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-license lppl +catalogue-version 0.02 + +name datetime2-bahasai +category Package +revision 36682 +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 +docfiles size=68 + RELOC/doc/latex/datetime2-bahasai/README + RELOC/doc/latex/datetime2-bahasai/datetime2-bahasai.pdf +srcfiles size=4 + RELOC/source/latex/datetime2-bahasai/datetime2-bahasai.dtx + RELOC/source/latex/datetime2-bahasai/datetime2-bahasai.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-bahasai +catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-basque +category Package +revision 38287 +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 + RELOC/doc/latex/datetime2-basque/CHANGES + RELOC/doc/latex/datetime2-basque/README.txt + RELOC/doc/latex/datetime2-basque/datetime2-basque.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-basque/datetime2-basque.dtx + RELOC/source/latex/datetime2-basque/datetime2-basque.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-basque +catalogue-date 2015-09-03 13:51:49 +0200 +catalogue-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.2 + +name datetime2-breton +category Package +revision 36682 +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 +docfiles size=70 + RELOC/doc/latex/datetime2-breton/README + RELOC/doc/latex/datetime2-breton/datetime2-breton.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-breton/datetime2-breton.dtx + RELOC/source/latex/datetime2-breton/datetime2-breton.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-breton +catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-bulgarian +category Package +revision 36682 +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 +docfiles size=22 + RELOC/doc/latex/datetime2-bulgarian/README + RELOC/doc/latex/datetime2-bulgarian/datetime2-bulgarian.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-bulgarian/datetime2-bulgarian.dtx + RELOC/source/latex/datetime2-bulgarian/datetime2-bulgarian.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-bulgarian +catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-catalan +category Package +revision 36682 +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 +docfiles size=70 + RELOC/doc/latex/datetime2-catalan/README + RELOC/doc/latex/datetime2-catalan/datetime2-catalan.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-catalan/datetime2-catalan.dtx + RELOC/source/latex/datetime2-catalan/datetime2-catalan.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-catalan +catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-croatian +category Package +revision 36682 +shortdesc croatian language module for the datetime2 package. +relocated 1 +longdesc This module provides the "croatian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. 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 +docfiles size=22 + RELOC/doc/latex/datetime2-croatian/README + RELOC/doc/latex/datetime2-croatian/datetime2-croatian.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-croatian/datetime2-croatian.dtx + RELOC/source/latex/datetime2-croatian/datetime2-croatian.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-croatian +catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-czech +category Package +revision 36682 +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. +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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-danish +category Package +revision 36682 +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 +docfiles size=22 + RELOC/doc/latex/datetime2-danish/README + RELOC/doc/latex/datetime2-danish/datetime2-danish.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-danish/datetime2-danish.dtx + RELOC/source/latex/datetime2-danish/datetime2-danish.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-danish +catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-dutch +category Package +revision 36682 +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 +docfiles size=69 + RELOC/doc/latex/datetime2-dutch/README + RELOC/doc/latex/datetime2-dutch/datetime2-dutch.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-dutch/datetime2-dutch.dtx + RELOC/source/latex/datetime2-dutch/datetime2-dutch.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-dutch +catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-en-fulltext +category Package +revision 36705 +shortdesc English Full Text styles for the datetime2 package. +relocated 1 +longdesc English date and time styles that use words for the numbers and +longdesc ordinals. This package provides the following date and time +longdesc styles: "en-fulltext", "en-FullText", "en-FULLTEXT", and the +longdesc additional time style "en-Fulltext". (The date equivalent can +longdesc be obtained through commands like \Today.) Unlike the base +longdesc styles provided by datetime2.sty, these styles aren't +longdesc expandable styles. This means that you can't use the date or +longdesc time in PDF bookmarks or in the argument of certain commands, +longdesc such as \MakeUppercase, while these styles are in use. +runfiles size=4 + RELOC/tex/latex/datetime2-en-fulltext/datetime2-en-fulltext.sty +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/sample-en-fulltext.pdf + RELOC/doc/latex/datetime2-en-fulltext/sample-en-fulltext.tex +srcfiles size=7 + RELOC/source/latex/datetime2-en-fulltext/datetime2-en-fulltext.dtx + RELOC/source/latex/datetime2-en-fulltext/datetime2-en-fulltext.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-en-fulltext +catalogue-date 2015-04-04 09:32:01 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-english +category Package +revision 36760 +shortdesc English language module for the datetime2 package. +relocated 1 +longdesc This module provides the following styles that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. The region not only +longdesc determines the date/time format but also the time zone +longdesc abbreviations if the zone mapping setting is on. english +longdesc (English - no region) en-GB (English - United Kingdom of Great +longdesc Britain and Northern Ireland) en-US (English - United States of +longdesc America) en-CA (English - Canada) en-AU (English - Commonwealth +longdesc of Australia) en-NZ (English - New Zealand) en-GG (English - +longdesc Bailiwick of Guernsey) en-JE (English - Bailiwick of Jersey) en- +longdesc IM (English - Isle of Man) en-MT (English - Republic of Malta) +longdesc en-IE (English - Republic of Ireland) +runfiles size=23 + RELOC/tex/latex/datetime2-english/datetime2-en-AU.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-CA.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-GB.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-GG.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-IE.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-IM.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-JE.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-MT.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-NZ.ldf + RELOC/tex/latex/datetime2-english/datetime2-en-US.ldf + RELOC/tex/latex/datetime2-english/datetime2-english-base.ldf + RELOC/tex/latex/datetime2-english/datetime2-english.ldf +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-license lppl1.3 +catalogue-version 1.01 + +name datetime2-esperanto +category Package +revision 36682 +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. +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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-estonian +category Package +revision 36682 +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 +docfiles size=21 + RELOC/doc/latex/datetime2-estonian/README + RELOC/doc/latex/datetime2-estonian/datetime2-estonian.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-estonian/datetime2-estonian.dtx + RELOC/source/latex/datetime2-estonian/datetime2-estonian.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-estonian +catalogue-date 2015-04-01 05:50:16 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-finnish +category Package +revision 36682 +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 + 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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-french +category Package +revision 36648 +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 + 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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-galician +category Package +revision 36692 +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 +docfiles size=21 + RELOC/doc/latex/datetime2-galician/README + RELOC/doc/latex/datetime2-galician/datetime2-galician.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-galician/datetime2-galician.dtx + RELOC/source/latex/datetime2-galician/datetime2-galician.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-galician +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-german +category Package +revision 36649 +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 + 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-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 + +name datetime2-greek +category Package +revision 36692 +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 +docfiles size=21 + RELOC/doc/latex/datetime2-greek/README + RELOC/doc/latex/datetime2-greek/datetime2-greek.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-greek/datetime2-greek.dtx + RELOC/source/latex/datetime2-greek/datetime2-greek.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-greek +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-hebrew +category Package +revision 36692 +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 +docfiles size=67 + RELOC/doc/latex/datetime2-hebrew/README + RELOC/doc/latex/datetime2-hebrew/datetime2-hebrew.pdf +srcfiles size=4 + RELOC/source/latex/datetime2-hebrew/datetime2-hebrew.dtx + RELOC/source/latex/datetime2-hebrew/datetime2-hebrew.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-hebrew +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-icelandic +category Package +revision 36692 +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 +docfiles size=21 + RELOC/doc/latex/datetime2-icelandic/README + RELOC/doc/latex/datetime2-icelandic/datetime2-icelandic.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-icelandic/datetime2-icelandic.dtx + RELOC/source/latex/datetime2-icelandic/datetime2-icelandic.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-icelandic +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-irish +category Package +revision 36635 +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. +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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-italian +category Package +revision 37146 +shortdesc Italian language module for the datetime2 package. +relocated 1 +longdesc This module provides the "italian" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. +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 +docfiles size=21 + RELOC/doc/latex/datetime2-italian/README + RELOC/doc/latex/datetime2-italian/sample/datetime1.tex + RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-babel.tex + RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-calc.tex + RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-hyperref.tex + RELOC/doc/latex/datetime2-italian/sample/datetime2-sample-styles.tex + RELOC/doc/latex/datetime2-italian/sample/esempio1.tex + RELOC/doc/latex/datetime2-italian/sample/esempio10.tex + RELOC/doc/latex/datetime2-italian/sample/esempio11.tex + RELOC/doc/latex/datetime2-italian/sample/esempio12.tex + RELOC/doc/latex/datetime2-italian/sample/esempio13.tex + RELOC/doc/latex/datetime2-italian/sample/esempio2.tex + RELOC/doc/latex/datetime2-italian/sample/esempio3.tex + RELOC/doc/latex/datetime2-italian/sample/esempio4.tex + RELOC/doc/latex/datetime2-italian/sample/esempio5.tex + RELOC/doc/latex/datetime2-italian/sample/esempio6.tex + RELOC/doc/latex/datetime2-italian/sample/esempio6a.tex + RELOC/doc/latex/datetime2-italian/sample/esempio7.tex + RELOC/doc/latex/datetime2-italian/sample/esempio8.tex + RELOC/doc/latex/datetime2-italian/sample/esempio9.tex + RELOC/doc/latex/datetime2-italian/sample/tomorrow.tex +srcfiles size=6 + RELOC/source/latex/datetime2-italian/datetime2-italian.dtx + RELOC/source/latex/datetime2-italian/datetime2-italian.ins +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-license lppl1.3 +catalogue-topics date-time multilingual +catalogue-version 1.6 + +name datetime2-latin +category Package +revision 36692 +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 +docfiles size=68 + RELOC/doc/latex/datetime2-latin/README + RELOC/doc/latex/datetime2-latin/datetime2-latin.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-latin/datetime2-latin.dtx + RELOC/source/latex/datetime2-latin/datetime2-latin.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-latin +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-lsorbian +category Package +revision 36692 +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 +docfiles size=23 + RELOC/doc/latex/datetime2-lsorbian/README + RELOC/doc/latex/datetime2-lsorbian/datetime2-lsorbian.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-lsorbian/datetime2-lsorbian.dtx + RELOC/source/latex/datetime2-lsorbian/datetime2-lsorbian.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-lsorbian +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-magyar +category Package +revision 36692 +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 +docfiles size=21 + RELOC/doc/latex/datetime2-magyar/README + RELOC/doc/latex/datetime2-magyar/datetime2-magyar.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-magyar/datetime2-magyar.dtx + RELOC/source/latex/datetime2-magyar/datetime2-magyar.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-magyar +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-norsk +category Package +revision 36692 +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 +docfiles size=22 + RELOC/doc/latex/datetime2-norsk/README + RELOC/doc/latex/datetime2-norsk/datetime2-norsk.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-norsk/datetime2-norsk.dtx + RELOC/source/latex/datetime2-norsk/datetime2-norsk.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-norsk +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-polish +category Package +revision 36692 +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 +docfiles size=22 + RELOC/doc/latex/datetime2-polish/README + RELOC/doc/latex/datetime2-polish/datetime2-polish.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-polish/datetime2-polish.dtx + RELOC/source/latex/datetime2-polish/datetime2-polish.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-polish +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-portuges +category Package +revision 36670 +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. +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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-romanian +category Package +revision 36692 +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 + 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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-russian +category Package +revision 36692 +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. +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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-samin +category Package +revision 36692 +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. +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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-scottish +category Package +revision 36625 +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 +docfiles size=71 + RELOC/doc/latex/datetime2-scottish/README + RELOC/doc/latex/datetime2-scottish/datetime2-scottish.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-scottish/datetime2-scottish.dtx + RELOC/source/latex/datetime2-scottish/datetime2-scottish.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-scottish +catalogue-date 2015-03-27 14:27:46 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-serbian +category Package +revision 36699 +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 +docfiles size=23 + RELOC/doc/latex/datetime2-serbian/README + RELOC/doc/latex/datetime2-serbian/datetime2-serbian.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-serbian/datetime2-serbian.dtx + RELOC/source/latex/datetime2-serbian/datetime2-serbian.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-serbian +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-slovak +category Package +revision 36700 +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 +docfiles size=22 + RELOC/doc/latex/datetime2-slovak/README + RELOC/doc/latex/datetime2-slovak/datetime2-slovak.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-slovak/datetime2-slovak.dtx + RELOC/source/latex/datetime2-slovak/datetime2-slovak.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-slovak +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-slovene +category Package +revision 36700 +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 +docfiles size=21 + RELOC/doc/latex/datetime2-slovene/README + RELOC/doc/latex/datetime2-slovene/datetime2-slovene.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-slovene/datetime2-slovene.dtx + RELOC/source/latex/datetime2-slovene/datetime2-slovene.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-slovene +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-spanish +category Package +revision 36661 +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 +docfiles size=72 + RELOC/doc/latex/datetime2-spanish/README + RELOC/doc/latex/datetime2-spanish/datetime2-spanish.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-spanish/datetime2-spanish.dtx + RELOC/source/latex/datetime2-spanish/datetime2-spanish.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-spanish +catalogue-date 2015-03-31 11:36:22 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-swedish +category Package +revision 36700 +shortdesc swedish language module for the datetime2 package. +relocated 1 +longdesc This module provides the "swedish" style that can be set using +longdesc \DTMsetstyle provided by datetime2.sty. This package is +longdesc currently unmaintained. Please see the README for the procedure +longdesc to follow if you want to take over the maintenance. +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 +docfiles size=22 + RELOC/doc/latex/datetime2-swedish/README + RELOC/doc/latex/datetime2-swedish/datetime2-swedish.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-swedish/datetime2-swedish.dtx + RELOC/source/latex/datetime2-swedish/datetime2-swedish.ins +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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-turkish +category Package +revision 36700 +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 +docfiles size=21 + RELOC/doc/latex/datetime2-turkish/README + RELOC/doc/latex/datetime2-turkish/datetime2-turkish.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-turkish/datetime2-turkish.dtx + RELOC/source/latex/datetime2-turkish/datetime2-turkish.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-turkish +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-ukrainian +category Package +revision 36700 +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 + 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-license lppl1.3 +catalogue-version 1.0 + +name datetime2-usorbian +category Package +revision 36700 +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 +docfiles size=22 + RELOC/doc/latex/datetime2-usorbian/README + RELOC/doc/latex/datetime2-usorbian/datetime2-usorbian.pdf +srcfiles size=6 + RELOC/source/latex/datetime2-usorbian/datetime2-usorbian.dtx + RELOC/source/latex/datetime2-usorbian/datetime2-usorbian.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-usorbian +catalogue-date 2015-04-03 05:49:18 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name datetime2-welsh +category Package +revision 36636 +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 +docfiles size=71 + RELOC/doc/latex/datetime2-welsh/README + RELOC/doc/latex/datetime2-welsh/datetime2-welsh.pdf +srcfiles size=5 + RELOC/source/latex/datetime2-welsh/datetime2-welsh.dtx + RELOC/source/latex/datetime2-welsh/datetime2-welsh.ins +catalogue-ctan /macros/latex/contrib/datetime2-contrib/datetime2-welsh +catalogue-date 2015-03-28 05:55:48 +0100 +catalogue-license lppl1.3 +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. +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 +docfiles size=55 + RELOC/doc/latex/dblfloatfix/dblfloatfix.pdf + RELOC/doc/latex/dblfloatfix/dblfloatfix.tex +catalogue-ctan /macros/latex/contrib/dblfloatfix +catalogue-date 2013-01-29 13:50:02 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0a + +name dccpaper +category Package +revision 37647 +shortdesc Typeset papers for the International Journal of Digital Curation +relocated 1 +longdesc The LaTeX class ijdc-v9 produces camera-ready papers and +longdesc articles suitable for inclusion in the International Journal of +longdesc Digital Curation, with applicability from volume 9 onwards. The +longdesc similar idcc class can be used for submissions to the +longdesc International Digital Curation Conference, beginning with the +longdesc 2015 conference. +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 + 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/source/latex/dccpaper/Makefile + RELOC/source/latex/dccpaper/dccpaper.dtx + RELOC/source/latex/dccpaper/dccpaper.ins +catalogue-ctan /macros/latex/contrib/dccpaper +catalogue-date 2015-06-22 12:39:22 +0200 +catalogue-license lppl1.3 +catalogue-topics journalpub confproc class +catalogue-version 1.4.1 + +name dcpic +category Package +revision 30206 +shortdesc Commutative diagrams in a LaTeX and TeX documents. +relocated 1 +longdesc DCpic is a package for typesetting Commutative Diagrams within +longdesc a LaTeX and TeX documents. Its distinguishing features are: a +longdesc powerful graphical engine, the PiCTeX package; an easy +longdesc specification syntax in which a commutative diagram is +longdesc described in terms of its objects and its arrows (morphism), +longdesc positioned in a Cartesian coordinate system. +runfiles size=14 + RELOC/tex/generic/dcpic/dcpic.sty + RELOC/tex/generic/dcpic/europroc.cls +docfiles size=275 + RELOC/doc/generic/dcpic/README + RELOC/doc/generic/dcpic/eurotex2001.pdf + 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.tex + RELOC/doc/generic/dcpic/manDCPiCpt.pdf + RELOC/doc/generic/dcpic/manDCPiCpt.tex +catalogue-ctan /macros/generic/diagrams/dcpic +catalogue-date 2013-05-02 01:06:38 +0200 +catalogue-license lppl1.3 +catalogue-version 5.0.0 + +name decimal +category Package +revision 23374 +shortdesc LaTeX package for the English raised decimal point. +relocated 1 +longdesc This LaTeX package should be used by people who need the +longdesc traditional English raised decimal point, instead of the +longdesc American-style period. +runfiles size=1 + RELOC/tex/latex/decimal/decimal.sty +docfiles size=46 + RELOC/doc/latex/decimal/decimal.pdf +srcfiles size=5 + RELOC/source/latex/decimal/decimal.dtx + RELOC/source/latex/decimal/decimal.ins +catalogue-ctan /macros/latex/contrib/decimal +catalogue-date 2012-06-20 16:56:39 +0200 +catalogue-license lppl1 + +name decorule +category Package +revision 23487 +shortdesc Decorative swelled rule using font character. +relocated 1 +longdesc The package implements a decorative swelled rule using only a +longdesc symbol from a font installed with all distributions of TeX, so +longdesc it works independently, without the need to install any +longdesc additional software or fonts. This is the packaged version of +longdesc the macro which was originally published in the "Typographers' +longdesc Inn" column in TUGboat 31:1 (2010). +runfiles size=1 + RELOC/tex/latex/decorule/decorule.sty +docfiles size=106 + RELOC/doc/latex/decorule/MANIFEST + RELOC/doc/latex/decorule/README + RELOC/doc/latex/decorule/decorule.pdf +srcfiles size=11 + RELOC/source/latex/decorule/decorule.dtx + RELOC/source/latex/decorule/decorule.ins +catalogue-ctan /macros/latex/contrib/decorule +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.6 + +name dehyph-exptl +category Package +revision 34459 +shortdesc Experimental hyphenation patterns for the German language. +relocated 1 +longdesc The package provides experimental hyphenation patterns for the +longdesc German language, covering both traditional and reformed +longdesc orthography. The patterns can be used with packages Babel and +longdesc hyphsubst from the Oberdiek bundle. Dieses Paket enthalt +longdesc experimentelle Trennmuster fur die deutsche Sprache. Die +longdesc Trennmuster decken das in Deutschland, Osterreich und der +longdesc Schweiz gebrauchliche Standarddeutsch in der traditionellen und +longdesc reformierten Rechtschreibung ab und konnen mit den Paketen +longdesc Babel und hyphsubst aus dem Oberdiek-Bundel verwendet werden. +depend 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 + 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/dehyph-exptl.bib + RELOC/doc/generic/dehyph-exptl/dehyph-exptl.pdf + RELOC/doc/generic/dehyph-exptl/dehyph-exptl.tex +catalogue-ctan /language/hyphenation/dehyph-exptl +catalogue-date 2014-06-30 01:12:06 +0200 +catalogue-license lppl +catalogue-version 0.40 + +name dejavu +category Package +revision 31771 +shortdesc LaTeX support for the DejaVu fonts. +relocated 1 +longdesc The package contains LaTeX support for the DejaVu fonts, which +longdesc are derived from the Vera fonts but contain more characters and +longdesc styles. The fonts are included in the original TrueType format, +longdesc and in converted Type 1 format. The (currently) supported +longdesc encodings are: OT1, T1, IL2, TS1, T2*, X2, QX, and LGR. The +longdesc package doesn't (currently) support mathematics. More encodings +longdesc and/or features are expected. +execute addMap dejavu-type1.map +runfiles size=6222 + RELOC/fonts/afm/public/dejavu/DejaVuSans-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSans-BoldOblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSans-ExtraLight.afm + RELOC/fonts/afm/public/dejavu/DejaVuSans-Oblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSans.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansCondensed-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansCondensed-BoldOblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansCondensed-Oblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansCondensed.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansMono-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansMono-BoldOblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansMono-Oblique.afm + RELOC/fonts/afm/public/dejavu/DejaVuSansMono.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerif-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerif-BoldItalic.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerif-Italic.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerif.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerifCondensed-Bold.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerifCondensed-BoldItalic.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerifCondensed-Italic.afm + RELOC/fonts/afm/public/dejavu/DejaVuSerifCondensed.afm + RELOC/fonts/enc/dvips/dejavu/dejavumono_il2.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_lgr.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_ot1.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_qx.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t1-truetype.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t1-type1.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t2a.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t2b.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_t2c.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_ts1.enc + RELOC/fonts/enc/dvips/dejavu/dejavumono_x2.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_il2.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_lgr.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_ot1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_qx.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t1-truetype.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t1-type1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t2a.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t2b.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_t2c.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_ts1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusans_x2.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_il2.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_lgr.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_ot1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_qx.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t1-truetype.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t1-type1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t2a.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t2b.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_t2c.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_ts1.enc + RELOC/fonts/enc/dvips/dejavu/dejavusanslight_x2.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_il2.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_lgr.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_ot1.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_qx.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t1-truetype.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t1-type1.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t2a.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t2b.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_t2c.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_ts1.enc + RELOC/fonts/enc/dvips/dejavu/dejavuserif_x2.enc + RELOC/fonts/map/dvips/dejavu/dejavu-truetype.map + RELOC/fonts/map/dvips/dejavu/dejavu-type1.map + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-BoldOblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-ExtraLight-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-Oblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSans-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-Oblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansCondensed-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-BoldOblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-Oblique-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-lgr--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2a--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2b--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2c--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-x2--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSansMono-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-BoldItalic-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-Italic-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerif-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Bold-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-Italic-tlf-x2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-il2.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-lgr.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-ot1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-qx--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-qx.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t2a.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t2b.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-t2c.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-ts1.tfm + RELOC/fonts/tfm/public/dejavu/DejaVuSerifCondensed-tlf-x2.tfm + RELOC/fonts/truetype/public/dejavu/DejaVuSans-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSans-BoldOblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSans-ExtraLight.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSans-Oblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSans.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansCondensed-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansCondensed-BoldOblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansCondensed-Oblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansCondensed.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansMono-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansMono-BoldOblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansMono-Oblique.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSansMono.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerif-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerif-BoldItalic.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerif-Italic.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerif.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerifCondensed-Bold.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerifCondensed-BoldItalic.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerifCondensed-Italic.ttf + RELOC/fonts/truetype/public/dejavu/DejaVuSerifCondensed.ttf + RELOC/fonts/type1/public/dejavu/DejaVuSans-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSans-BoldOblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans-BoldOblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSans-ExtraLight.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans-ExtraLight.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSans-Oblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans-Oblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSans.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSans.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-BoldOblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-BoldOblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-Oblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed-Oblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansCondensed.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-BoldOblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-BoldOblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-Oblique.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansMono-Oblique.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSansMono.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSansMono.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerif-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerif-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerif-BoldItalic.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerif-BoldItalic.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerif-Italic.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerif-Italic.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerif.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerif.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-Bold.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-Bold.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-BoldItalic.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-BoldItalic.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-Italic.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed-Italic.pfm + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed.pfb + RELOC/fonts/type1/public/dejavu/DejaVuSerifCondensed.pfm + RELOC/fonts/vf/public/dejavu/DejaVuSans-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-BoldOblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-ExtraLight-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Oblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Oblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-Oblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSans-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Oblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Oblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-Oblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansCondensed-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-lgr.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Bold-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-lgr.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-BoldOblique-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-lgr.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-Oblique-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-lgr.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-t2a.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-t2b.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-t2c.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSansMono-tlf-x2.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-BoldItalic-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Italic-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Italic-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerif-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Bold-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Bold-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Italic-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Italic-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-tlf-qx.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-tlf-t1.vf + RELOC/fonts/vf/public/dejavu/DejaVuSerifCondensed-tlf-ts1.vf + RELOC/tex/latex/dejavu/DejaVuSans.sty + RELOC/tex/latex/dejavu/DejaVuSansCondensed.sty + RELOC/tex/latex/dejavu/DejaVuSansMono.sty + RELOC/tex/latex/dejavu/DejaVuSerif.sty + RELOC/tex/latex/dejavu/DejaVuSerifCondensed.sty + RELOC/tex/latex/dejavu/IL2DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/IL2DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/IL2DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/IL2DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/IL2DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/LGRDejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/OT1DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/QXDejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/T1DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/T2ADejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/T2BDejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/T2CDejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/TS1DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSans-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSansCondensed-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSansMono-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSerif-TLF.fd + RELOC/tex/latex/dejavu/X2DejaVuSerifCondensed-TLF.fd + RELOC/tex/latex/dejavu/dejavu.sty +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-license lppl +catalogue-version 2.34 + +name delim +category Package +revision 23974 +shortdesc Simplify typesetting mathematical delimiters. +relocated 1 +longdesc The package permits simpler control of delimiters without +longdesc excessive use of \big... commands (and the like). +runfiles size=1 + RELOC/tex/latex/delim/delim.sty +docfiles size=74 + RELOC/doc/latex/delim/README + RELOC/doc/latex/delim/delim.pdf +srcfiles size=4 + RELOC/source/latex/delim/delim.dtx + RELOC/source/latex/delim/delim.ins +catalogue-ctan /macros/latex/contrib/delim +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.0 + +name delimtxt +category Package +revision 16549 +shortdesc Read and parse text tables. +relocated 1 +longdesc This experimental package can read and parse text tables +longdesc delimited by user-defined tokens (e.g., tab). It can be used +longdesc for serial letters and the like, making it easier to export the +longdesc data file from MS-Excel/MS-Word +runfiles size=2 + RELOC/tex/latex/delimtxt/delimtxt.sty +docfiles size=20 + RELOC/doc/latex/delimtxt/delimtxt.pdf + 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 +srcfiles size=4 + RELOC/source/latex/delimtxt/delimtxt.dtx + RELOC/source/latex/delimtxt/delimtxt.ins +catalogue-ctan /macros/latex/exptl/delimtxt +catalogue-date 2012-11-14 11:01:29 +0100 +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 + +name denisbdoc +category Package +revision 37170 +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 + RELOC/source/latex/denisbdoc/denisbdoc.dtx + RELOC/source/latex/denisbdoc/denisbdoc.ins +catalogue-ctan /macros/latex/contrib/denisbdoc +catalogue-date 2015-05-03 15:13:07 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name detex +category TLCore +revision 37078 +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 + texmf-dist/doc/man/man1/detex.1 + texmf-dist/doc/man/man1/detex.man1.pdf +catalogue-ctan /support/detex +catalogue-date 2012-05-07 22:13:48 +0200 +catalogue-license other-free + +name detex.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of detex +binfiles arch=i386-linux size=36 + 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 +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 +category TLCore +revision 36790 +shortdesc i386-linux files of devnag +binfiles arch=i386-linux size=8 + bin/i386-linux/devnag + +name dhua +category Package +revision 24035 +shortdesc German abbreviations using thin space. +relocated 1 +longdesc The package provides commands for those abbreviations of German +longdesc phrases for which the use of thin space is recommended. Setup +longdesc commands \newdhua and \newtwopartdhua are provided, as well as +longdesc commands for single cases (such as \zB for 'z. B.', saving the +longdesc user from typing such as 'z.\,B.'). To typeset the +longdesc documentation, the niceverb package, version 0.44, or later, is +longdesc required. Das Paket `dhua' stellt Befehle fur sog. +longdesc mehrgliedrige Abkurzungen bereit, fur die schmale Leerzeichen +longdesc (Festabstande) empfohlen werden (Duden, Wikipedia). In die +longdesc englische Paketdokumentation sind deutsche Erlauterungen +longdesc eingestreut. +runfiles size=4 + RELOC/tex/latex/dhua/dhua.cfg + RELOC/tex/latex/dhua/dhua.sty +docfiles size=90 + RELOC/doc/latex/dhua/README + RELOC/doc/latex/dhua/README.pdf + RELOC/doc/latex/dhua/SrcFILEs.txt + RELOC/doc/latex/dhua/dhua.pdf +srcfiles size=4 + RELOC/source/latex/dhua/README.tex + RELOC/source/latex/dhua/dhua.tex + RELOC/source/latex/dhua/srcfiles.tex +catalogue-ctan /macros/latex/contrib/dhua +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.11 + +name diadia +category Package +revision 37656 +shortdesc Package to keep a diabetes diary. +longdesc The diadia package allows you to keep a diabetes diary. +longdesc Usually, this means keeping record of certain medical values +longdesc like blood sugar, blood pressure, pulse or weight. It might +longdesc also include other medical, pharmaceutical or nutritional data +longdesc (HbA1c, insulin doses, carbohydrate units). The diadia package +longdesc supports all of this plus more - simply by adding more columns +longdesc to the data file! It is able to evaluate the data file and +longdesc typesets formatted tables and derived plots. Furthermore, it +longdesc supports medication charts and info boxes. Supported languages: +longdesc English, German. Feel free to provide other translation files! +depend diadia.ARCH +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 +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/ddbsl1avg.dat + texmf-dist/doc/latex/diadia/diadia-example.pdf + 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/hba1c.dat + texmf-dist/doc/latex/diadia/makefile + texmf-dist/doc/latex/diadia/manifest.txt +catalogue-ctan /macros/latex/contrib/diadia +catalogue-date 2015-06-12 07:44:45 +0200 +catalogue-license lppl +catalogue-topics data-disp +catalogue-version 1.1 + +name diadia.i386-linux +category Package +revision 37645 +shortdesc i386-linux files of diadia +binfiles arch=i386-linux size=1 + bin/i386-linux/diadia + +name diagbox +category Package +revision 24646 +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 + RELOC/source/latex/diagbox/diagbox.dtx + RELOC/source/latex/diagbox/diagbox.ins +catalogue-ctan /macros/latex/contrib/diagbox +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name diagmac2 +category Package +revision 15878 +shortdesc Diagram macros, using pict2e. +relocated 1 +longdesc This is a development of the long-established diagmac package, +longdesc using pict2e so that the restrictions on line direction are +longdesc removed. +runfiles size=11 + RELOC/tex/latex/diagmac2/diagmac2.sty +docfiles size=75 + RELOC/doc/latex/diagmac2/README + RELOC/doc/latex/diagmac2/doc/diagmac2.pdf + RELOC/doc/latex/diagmac2/doc/diagmac2.tex + RELOC/doc/latex/diagmac2/doc/diagmactest.pdf + RELOC/doc/latex/diagmac2/doc/diagmactest.tex +catalogue-ctan /macros/latex/contrib/diagmac2 +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 2.1 + +name diagnose +category Package +revision 19387 +shortdesc A diagnostic tool for a TeX installation. +relocated 1 +longdesc Provides macros to assist evaluation of the capabilities of a +longdesc TeX installation (i.e., what extensions it supports). An +longdesc example document that examines the installation is available. +runfiles size=1 + RELOC/tex/latex/diagnose/diagnose.sty +docfiles size=29 + RELOC/doc/latex/diagnose/INSTALL + RELOC/doc/latex/diagnose/README + RELOC/doc/latex/diagnose/diagnose.pdf + RELOC/doc/latex/diagnose/diagnose.tex + RELOC/doc/latex/diagnose/mls-diag.tex +catalogue-ctan /macros/latex/contrib/diagnose +catalogue-date 2012-06-19 16:44:25 +0200 +catalogue-license gpl +catalogue-version 0.2 + +name dialogl +category Package +revision 28946 +shortdesc Macros for constructing interactive LaTeX scripts. +relocated 1 +longdesc Gathers together a bunch of code and examples about how to +longdesc write macros to carry on a dialogue with the user. +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 +docfiles size=192 + RELOC/doc/latex/dialogl/Makefile + RELOC/doc/latex/dialogl/README + RELOC/doc/latex/dialogl/cnvunits.tex + RELOC/doc/latex/dialogl/codialog.pdf + RELOC/doc/latex/dialogl/default.los + RELOC/doc/latex/dialogl/dia-driv.pdf + 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 +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 +catalogue-ctan /macros/latex/contrib/dialogl +catalogue-date 2013-11-21 21:20:37 +0100 +catalogue-license lppl + +name dice +category Package +revision 28501 +shortdesc A font for die faces. +relocated 1 +longdesc A Metafont font that can produce die faces in 2D or with +longdesc various 3D effects. +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-ctan /fonts/dice +catalogue-date 2013-11-21 21:20:37 +0100 +catalogue-license lppl + +name dichokey +category Package +revision 17192 +shortdesc Construct dichotomous identification keys. +relocated 1 +longdesc The package can be used to construct dichotomous identification +longdesc keys (used especially in biology for species identification), +longdesc taking care of numbering and indentation of successive key +longdesc steps automatically. An example file is provided, which +longdesc demonstrates usage. +runfiles size=2 + RELOC/tex/latex/dichokey/dichokey.sty +docfiles size=57 + RELOC/doc/latex/dichokey/dichokey.pdf + RELOC/doc/latex/dichokey/dichokey.tex + RELOC/doc/latex/dichokey/rhodocyb.pdf + RELOC/doc/latex/dichokey/rhodocyb.tex +catalogue-ctan /macros/latex/contrib/dichokey +catalogue-date 2012-06-19 18:43:32 +0200 +catalogue-license pd + +name dickimaw +category Package +revision 32925 +shortdesc Books and tutorials from the "Dickimaw LaTeX Series". +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 encounter errors in your LaTeX documents. +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/src/fdl.tex + RELOC/doc/latex/dickimaw/src/minexample/dickimaw-minexample.tex + RELOC/doc/latex/dickimaw/src/minexample/minexample.sty + RELOC/doc/latex/dickimaw/src/novices/dickimaw-novices.tex + RELOC/doc/latex/dickimaw/src/novices/glsentries.tex + RELOC/doc/latex/dickimaw/src/novices/keywords.tex + RELOC/doc/latex/dickimaw/src/novices/novices-a4paper.sty + RELOC/doc/latex/dickimaw/src/novices/novices-index.ist + RELOC/doc/latex/dickimaw/src/novices/novices.bib + RELOC/doc/latex/dickimaw/src/novices/novices.cls + RELOC/doc/latex/dickimaw/src/novices/pictures/acrobat.png + RELOC/doc/latex/dickimaw/src/novices/pictures/backtic.png + RELOC/doc/latex/dickimaw/src/novices/pictures/circle.pdf + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom5.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom6.png + RELOC/doc/latex/dickimaw/src/novices/pictures/cmdprom7.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dinglist.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dirviewer1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dirviewer2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dirviewer3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/dirviewer4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/draftimage.png + RELOC/doc/latex/dickimaw/src/novices/pictures/entersymbol.tex + RELOC/doc/latex/dickimaw/src/novices/pictures/errormessage.png + RELOC/doc/latex/dickimaw/src/novices/pictures/exsamp.png + RELOC/doc/latex/dickimaw/src/novices/pictures/incgraph.png + RELOC/doc/latex/dickimaw/src/novices/pictures/incgraph2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/letterbox.tex + RELOC/doc/latex/dickimaw/src/novices/pictures/maths.png + RELOC/doc/latex/dickimaw/src/novices/pictures/miktex1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/newdoc-1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/newdoc-2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/notepad1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/notepad2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/rectangle.pdf + RELOC/doc/latex/dickimaw/src/novices/pictures/reflbox.png + RELOC/doc/latex/dickimaw/src/novices/pictures/resizbox.png + RELOC/doc/latex/dickimaw/src/novices/pictures/rotbox.png + RELOC/doc/latex/dickimaw/src/novices/pictures/scalbox.png + RELOC/doc/latex/dickimaw/src/novices/pictures/shapes.pdf + RELOC/doc/latex/dickimaw/src/novices/pictures/tds.tex + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal-texdoc.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal10.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal11.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal5.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal6.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal7.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal8.png + RELOC/doc/latex/dickimaw/src/novices/pictures/terminal9.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-latexmk.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-preferences.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks-toolconfig4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks1.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks2.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks3.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks4.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks5-annote.tex + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks5.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks6.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks7.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks8.png + RELOC/doc/latex/dickimaw/src/novices/pictures/texworks9.png + RELOC/doc/latex/dickimaw/src/novices/pictures/yap1.png + RELOC/doc/latex/dickimaw/src/novices/term-defs/argument.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/auxiliary.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/cls.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/command.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/declaration.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/dvi.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/environment.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/fragile.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/group.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/hyphenation.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/intersentencespacing.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/introduction.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/length.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/mandatory.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/optional.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/output.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/perl.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/preamble.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/robust.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/short.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/source.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/terminal.tex + RELOC/doc/latex/dickimaw/src/novices/term-defs/tex.tex + RELOC/doc/latex/dickimaw/src/thesis/dickimaw-thesis.tex + RELOC/doc/latex/dickimaw/src/thesis/dickimawthesis.cls + RELOC/doc/latex/dickimaw/src/thesis/glsentries.tex + RELOC/doc/latex/dickimaw/src/thesis/imgsource/titlepage.tex + RELOC/doc/latex/dickimaw/src/thesis/listing-samples/helloworld.c + RELOC/doc/latex/dickimaw/src/thesis/listing-samples/sqrt.c + RELOC/doc/latex/dickimaw/src/thesis/pictures/arara-installer.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/bibertool.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/doibutton.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/generatekey.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-dataprop-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-dataprop.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-pref-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-pref.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport1-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport1.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport2-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport2.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport3-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref-textimport3.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref1-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref1.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref10-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref10.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref11.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref12-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref12.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref2.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref3-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref3.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref4-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref4.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref5-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref5.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref6-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref6.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref7-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref7.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref8-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref8.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref9-thumbnail.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/jabref9.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/pagestyle.tex + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-addbutton.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-arara.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-arara2.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-bibtex.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-latexmk.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-latexmkbibtex.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-makeglossaries.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-pdflatex.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-pref.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/texworks-texindy.png + RELOC/doc/latex/dickimaw/src/thesis/pictures/titlepage.pdf + RELOC/doc/latex/dickimaw/src/thesis/thesis-a4paper.sty + RELOC/doc/latex/dickimaw/src/thesis/thesis-index.ist + RELOC/doc/latex/dickimaw/src/thesis/thesis.bib +catalogue-ctan /info/dickimaw +catalogue-date 2014-12-06 22:51:28 +0100 +catalogue-license fdl + +name dictsym +category Package +revision 20031 +shortdesc DictSym font and macro package +relocated 1 +longdesc This directory contains the DictSym Type1 font designed by +longdesc Georg Verweyen and all files required to use it with LaTeX on +longdesc the Unix or PC platforms. The font provides a number of symbols +longdesc commonly used in dictionaries. The accompanying macro package +longdesc makes the symbols accessible as LaTeX commands. +execute addMap dictsym.map +runfiles size=20 + RELOC/fonts/afm/public/dictsym/dictsym.afm + RELOC/fonts/map/dvips/dictsym/dictsym.map + RELOC/fonts/tfm/public/dictsym/dictsym.tfm + RELOC/fonts/type1/public/dictsym/dictsym.pfb + RELOC/fonts/type1/public/dictsym/dictsym.pfm + RELOC/tex/latex/dictsym/dictsym.sty +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 + +name digiconfigs +category Package +revision 15878 +shortdesc Writing "configurations" +relocated 1 +longdesc In Stochastic Geometry and Digital Image Analysis some problems +longdesc can be solved in terms of so-called "configurations". A +longdesc configuration is basically a square matrix of \circ and \bullet +longdesc symbols. This package provides a convenient and compact +longdesc mechanism for displaying these configurations. +runfiles size=2 + RELOC/tex/latex/digiconfigs/digiconfigs.sty +docfiles size=34 + RELOC/doc/latex/digiconfigs/README + RELOC/doc/latex/digiconfigs/digiconfigs.pdf + RELOC/doc/latex/digiconfigs/digiconfigs.tex +catalogue-ctan /macros/latex/contrib/digiconfigs +catalogue-date 2012-06-19 18:43:32 +0200 +catalogue-license lppl +catalogue-version 0.5 + +name din1505 +category Package +revision 19441 +shortdesc Bibliography styles for German texts. +relocated 1 +longdesc A set of bibliography styles that conformt to DIN 1505, and +longdesc match the original BibTeX standard set (plain, unsrt, alpha and +longdesc abbrv), together with a style natdin to work with natbib. +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-ctan /biblio/bibtex/contrib/german/din1505 +catalogue-date 2012-06-19 18:43:32 +0200 +catalogue-license other-free + +name dinat +category Package +revision 15878 +shortdesc Bibliography style for German texts. +relocated 1 +longdesc Bibliography style files intended for texts in german. They +longdesc draw up bibliographies in accordance with the german DIN 1505, +longdesc parts 2 and 3. +runfiles size=11 + RELOC/bibtex/bst/dinat/dinat.bst +docfiles size=9 + RELOC/doc/bibtex/dinat/dinat-index.html + RELOC/doc/bibtex/dinat/history.html +catalogue-ctan /biblio/bibtex/contrib/german/dinat +catalogue-date 2012-06-19 18:43:32 +0200 +catalogue-license pd +catalogue-version 2.5 + +name dinbrief +category Package +revision 15878 +shortdesc German letter DIN style. +relocated 1 +longdesc Implements a document layout for writing letters according to +longdesc the rules of DIN (Deutsches Institut fur Normung, German +longdesc standardisation institute). A style file for LaTeX 2.09 (with +longdesc limited support of the features) is part of the package. Since +longdesc the letter layout is based on a German standard, the user guide +longdesc is written in German, but most macros have English names from +longdesc which the user can recognize what they are used for. In +longdesc addition there are example files showing how letters may be +longdesc created with the package. A graphical interface for use of the +longdesc dinbrief is provided in the dinbrief-GUI bundle. +runfiles size=17 + RELOC/tex/latex/dinbrief/dinbrief.cfg + RELOC/tex/latex/dinbrief/dinbrief.cls + RELOC/tex/latex/dinbrief/dinbrief.sty +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.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/test10.tex + RELOC/doc/latex/dinbrief/test11.tex + RELOC/doc/latex/dinbrief/test12.tex + RELOC/doc/latex/dinbrief/testnorm.tex +srcfiles size=63 + RELOC/source/latex/dinbrief/dinbrief.drv + RELOC/source/latex/dinbrief/dinbrief.dtx + RELOC/source/latex/dinbrief/dinbrief.ins +catalogue-ctan /macros/latex/contrib/dinbrief +catalogue-date 2014-09-25 17:27:57 +0200 +catalogue-license lppl + +name dingbat +category Package +revision 27918 +shortdesc Two dingbat symbol fonts. +relocated 1 +longdesc The fonts (ark10 and dingbat) are specified in Metafont; +longdesc support macros are provided for use in LaTeX. An Adobe Type 1 +longdesc version of the fonts is available in the niceframe fonts +longdesc bundle. +runfiles size=14 + RELOC/fonts/source/public/dingbat/ark10.mf + RELOC/fonts/source/public/dingbat/dingbat.mf + RELOC/fonts/tfm/public/dingbat/ark10.tfm + RELOC/fonts/tfm/public/dingbat/dingbat.tfm + RELOC/tex/latex/dingbat/dingbat.sty + RELOC/tex/latex/dingbat/uark.fd + RELOC/tex/latex/dingbat/udingbat.fd +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-license lppl +catalogue-version 1.0 + +name directory +category Package +revision 15878 +shortdesc An address book using BibTeX. +relocated 1 +longdesc A package for LaTeX and BibTeX that facilitates the +longdesc construction, maintenance and exploitation of an address book- +longdesc like database. +runfiles size=33 + RELOC/bibtex/bib/directory/business.bib + RELOC/bibtex/bib/directory/family.bib + RELOC/bibtex/bst/directory/address-html.bst + RELOC/bibtex/bst/directory/address-ldif.bst + RELOC/bibtex/bst/directory/address-vcard.bst + RELOC/bibtex/bst/directory/address.bst + RELOC/bibtex/bst/directory/birthday.bst + RELOC/bibtex/bst/directory/email-html.bst + RELOC/bibtex/bst/directory/email.bst + RELOC/bibtex/bst/directory/letter.bst + RELOC/bibtex/bst/directory/phone.bst + RELOC/tex/latex/directory/directory.sty +docfiles size=56 + RELOC/doc/latex/directory/README + RELOC/doc/latex/directory/directory.pdf + RELOC/doc/latex/directory/directory.tex +catalogue-ctan /biblio/bibtex/contrib/directory +catalogue-date 2012-12-19 20:26:21 +0100 +catalogue-license lppl +catalogue-version 1.20 + +name dirtree +category Package +revision 28524 +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 +docfiles size=37 + RELOC/doc/generic/dirtree/README + RELOC/doc/generic/dirtree/dirtree.pdf +srcfiles size=8 + RELOC/source/generic/dirtree/dirtree.dtx + RELOC/source/generic/dirtree/dirtree.ins +catalogue-ctan /macros/generic/dirtree +catalogue-date 2012-12-13 10:43:21 +0100 +catalogue-license lppl +catalogue-version 0.32 + +name dirtytalk +category Package +revision 20520 +shortdesc A package to typeset quotations easier. +relocated 1 +longdesc The package provides a macro to typeset quotations, using the +longdesc command \say{stuff}. The quotation mark glyphs are inserted by +longdesc the macro; nested quotations are detected. +runfiles size=1 + RELOC/tex/latex/dirtytalk/dirtytalk.sty +docfiles size=102 + RELOC/doc/latex/dirtytalk/README + RELOC/doc/latex/dirtytalk/dirtytalk.pdf +srcfiles size=4 + RELOC/source/latex/dirtytalk/dirtytalk.dtx + RELOC/source/latex/dirtytalk/dirtytalk.ins +catalogue-ctan /macros/latex/contrib/dirtytalk +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd +catalogue-version 1.0 + +name disser +category Package +revision 38162 +shortdesc Class and templates for typesetting dissertations in Russian +relocated 1 +longdesc Disser comprises a document class and set of templates for +longdesc typesetting dissertations in Russian. One of its primary +longdesc advantages is a simplicity of format specification for +longdesc titlepage, headers and elements of automatically generated +longdesc lists (table of contents, list of figures, etc). Bibliography +longdesc styles, that conform to the requirements of the Russian +longdesc standard GOST R 7.0.11-2011, are provided. +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 + 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/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/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/concl.tex + RELOC/doc/latex/disser/templates/bachelor/fig/Makefile + RELOC/doc/latex/disser/templates/bachelor/fig/fig.eps + RELOC/doc/latex/disser/templates/bachelor/fig/nomake.cmd + RELOC/doc/latex/disser/templates/bachelor/intro.tex + RELOC/doc/latex/disser/templates/bachelor/nomake.cmd + RELOC/doc/latex/disser/templates/bachelor/thesis.bib + RELOC/doc/latex/disser/templates/bachelor/thesis.tex + RELOC/doc/latex/disser/templates/candidate/1.tex + RELOC/doc/latex/disser/templates/candidate/Makefile + RELOC/doc/latex/disser/templates/candidate/app-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 + RELOC/doc/latex/disser/templates/candidate/fig/nomake.cmd + RELOC/doc/latex/disser/templates/candidate/fig/sec-facsimile.eps + RELOC/doc/latex/disser/templates/candidate/intro.tex + RELOC/doc/latex/disser/templates/candidate/nomake.cmd + RELOC/doc/latex/disser/templates/candidate/review.tex + RELOC/doc/latex/disser/templates/candidate/thesis.bib + RELOC/doc/latex/disser/templates/candidate/thesis.tex + RELOC/doc/latex/disser/templates/doctor/1.tex + RELOC/doc/latex/disser/templates/doctor/Makefile + RELOC/doc/latex/disser/templates/doctor/app-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 + RELOC/doc/latex/disser/templates/doctor/fig/nomake.cmd + RELOC/doc/latex/disser/templates/doctor/fig/sec-facsimile.eps + RELOC/doc/latex/disser/templates/doctor/intro.tex + RELOC/doc/latex/disser/templates/doctor/nomake.cmd + RELOC/doc/latex/disser/templates/doctor/review.tex + RELOC/doc/latex/disser/templates/doctor/thesis.bib + RELOC/doc/latex/disser/templates/doctor/thesis.tex + RELOC/doc/latex/disser/templates/master/1.tex + RELOC/doc/latex/disser/templates/master/Makefile + RELOC/doc/latex/disser/templates/master/app-a.tex + RELOC/doc/latex/disser/templates/master/concl.tex + RELOC/doc/latex/disser/templates/master/fig/Makefile + RELOC/doc/latex/disser/templates/master/fig/nomake.cmd + RELOC/doc/latex/disser/templates/master/intro.tex + RELOC/doc/latex/disser/templates/master/nomake.cmd + RELOC/doc/latex/disser/templates/master/thesis.bib + RELOC/doc/latex/disser/templates/master/thesis.tex + RELOC/doc/latex/disser/templates/nomake.cmd + RELOC/doc/latex/disser/templates/specialist/1.tex + RELOC/doc/latex/disser/templates/specialist/Makefile + RELOC/doc/latex/disser/templates/specialist/app-a.tex + RELOC/doc/latex/disser/templates/specialist/concl.tex + RELOC/doc/latex/disser/templates/specialist/fig/Makefile + RELOC/doc/latex/disser/templates/specialist/fig/fig.eps + RELOC/doc/latex/disser/templates/specialist/fig/nomake.cmd + RELOC/doc/latex/disser/templates/specialist/intro.tex + RELOC/doc/latex/disser/templates/specialist/nomake.cmd + RELOC/doc/latex/disser/templates/specialist/thesis.bib + RELOC/doc/latex/disser/templates/specialist/thesis.tex +srcfiles size=61 + RELOC/source/latex/disser/autoref.dtx + RELOC/source/latex/disser/bachelor.dtx + RELOC/source/latex/disser/candidate.dtx + RELOC/source/latex/disser/chapter.dtx + RELOC/source/latex/disser/counters.dtx + RELOC/source/latex/disser/custom.dtx + RELOC/source/latex/disser/disser.dtx + RELOC/source/latex/disser/disser.ins + RELOC/source/latex/disser/doctor.dtx + RELOC/source/latex/disser/env.dtx + RELOC/source/latex/disser/floats.dtx + RELOC/source/latex/disser/footnote.dtx + RELOC/source/latex/disser/gost705.dtx + RELOC/source/latex/disser/gost732.dtx + RELOC/source/latex/disser/lists.dtx + RELOC/source/latex/disser/master.dtx + RELOC/source/latex/disser/page.dtx + RELOC/source/latex/disser/part.dtx + RELOC/source/latex/disser/sections.dtx + RELOC/source/latex/disser/specialist.dtx + RELOC/source/latex/disser/titledefs.dtx + RELOC/source/latex/disser/titlepage.dtx + RELOC/source/latex/disser/toc.dtx +catalogue-ctan /macros/latex/contrib/disser +catalogue-date 2015-08-18 21:03:15 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 1.3.2 + +name dithesis +category Package +revision 34295 +shortdesc Thesis class for undergraduate theses at the University of Athens. +relocated 1 +longdesc The class conforms to the requirements of the Department of +longdesc Informatics and Telecommunications at the University of Athens +longdesc regarding the preparation of undergraduate theses, as of Sep 1, +longdesc 2011. The class is designed for use with XeLaTeX; by default +longdesc (on a Windows platform), the font Arial is used, but provision +longdesc is made for use under Linux (with a different sans-serif font). +runfiles size=5 + RELOC/tex/latex/dithesis/dithesis.cls +docfiles size=78 + RELOC/doc/latex/dithesis/README + RELOC/doc/latex/dithesis/athena.jpg + RELOC/doc/latex/dithesis/sample.pdf + RELOC/doc/latex/dithesis/sample.tex + RELOC/doc/latex/dithesis/sampleNoArial.pdf + RELOC/doc/latex/dithesis/sampleNoArial.tex +catalogue-ctan /macros/latex/contrib/dithesis +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl +catalogue-version 0.2 + +name dk-bib +category Package +revision 15878 +shortdesc Danish variants of standard BibTeX styles. +relocated 1 +longdesc Dk-bib is a translation of the four standard BibTeX style files +longdesc (abbrv, alpha, plain and unsrt) and the apalike style file into +longdesc Danish. The files have been extended with URL, ISBN, ISSN, +longdesc annote and printing fields which can be enabled through a LaTeX +longdesc style file. Dk-bib also comes with a couple of Danish sorting +longdesc order files for BibTeX8. +runfiles size=42 + RELOC/bibtex/bib/dk-bib/litteratur.bib + RELOC/bibtex/bst/dk-bib/dk-abbrv.bst + RELOC/bibtex/bst/dk-bib/dk-alpha.bst + RELOC/bibtex/bst/dk-bib/dk-apali.bst + RELOC/bibtex/bst/dk-bib/dk-plain.bst + RELOC/bibtex/bst/dk-bib/dk-unsrt.bst + RELOC/bibtex/csf/dk-bib/88591-dk.csf + RELOC/bibtex/csf/dk-bib/cp850-dk.csf + RELOC/bibtex/csf/dk-bib/mac-dk.csf + RELOC/bibtex/csf/dk-bib/utf8-dk.csf + RELOC/tex/latex/dk-bib/dk-apali.sty + RELOC/tex/latex/dk-bib/dk-bib.sty +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-license other-free +catalogue-version 0.6 + +name dlfltxb +category Package +revision 17337 +shortdesc Macros related to "Introdktion til LaTeX". +relocated 1 +longdesc The bundle contains various macros either used for creating the +longdesc author's book "Introduktion til LaTeX" (in Danish), or +longdesc presented in the book as code tips. The bundle comprises: +longdesc dlfltxbcodetips: various macros helpful in typesetting +longdesc mathematics; dlfltxbmarkup: provides 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 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 +docfiles size=205 + RELOC/doc/latex/dlfltxb/README + RELOC/doc/latex/dlfltxb/dlfltxbbibtex.dbj + RELOC/doc/latex/dlfltxb/dlfltxbcodetips.pdf + RELOC/doc/latex/dlfltxb/dlfltxbcodetips.tex + RELOC/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.pdf + RELOC/doc/latex/dlfltxb/dlfltxbmarkup-showkeys.tex + RELOC/doc/latex/dlfltxb/dlfltxbmarkup.pdf + RELOC/doc/latex/dlfltxb/dlfltxbmarkup.tex + RELOC/doc/latex/dlfltxb/dlfltxbmisc.pdf + 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 +catalogue-ctan /macros/latex/contrib/dlfltxb +catalogue-date 2014-09-25 17:33:29 +0200 +catalogue-license lppl + +name dnaseq +category Package +revision 17194 +shortdesc Format DNA base sequences. +relocated 1 +longdesc Defines a means of specifying sequences of bases. The bases may +longdesc be numbered (per line) and you may specify that subsequences be +longdesc coloured. For a more 'vanilla-flavoured' way of typesetting +longdesc base sequences, the user might consider the seqsplit package. +runfiles size=1 + RELOC/tex/latex/dnaseq/dnaseq.sty +docfiles size=56 + RELOC/doc/latex/dnaseq/DNAtest.tex + RELOC/doc/latex/dnaseq/README + RELOC/doc/latex/dnaseq/dnaseq.pdf +srcfiles size=3 + RELOC/source/latex/dnaseq/dnaseq.dtx + RELOC/source/latex/dnaseq/dnaseq.ins +catalogue-ctan /macros/latex/contrib/dnaseq +catalogue-date 2012-07-03 17:35:36 +0200 +catalogue-license lppl +catalogue-version 0.01 + +name dnp +category Package +revision 15878 +relocated 1 +runfiles size=1 + RELOC/fonts/sfd/dnp/DNP.sfd + +name docbytex +category Package +revision 34294 +shortdesc Creating documentation from source code +relocated 1 +longdesc The package creates documentation from C source code, or other +longdesc programming languages. +runfiles size=10 + RELOC/tex/generic/docbytex/docby.tex +docfiles size=387 + RELOC/doc/generic/docbytex/README + RELOC/doc/generic/docbytex/annonce + RELOC/doc/generic/docbytex/base.c + RELOC/doc/generic/docbytex/base.d + RELOC/doc/generic/docbytex/cosi.c + RELOC/doc/generic/docbytex/docby-e.d + RELOC/doc/generic/docbytex/docby-e.pdf + RELOC/doc/generic/docbytex/docby.d + RELOC/doc/generic/docbytex/docby.pdf + 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 +catalogue-ctan /macros/generic/docbytex +catalogue-date 2014-06-16 13:14:48 +0200 +catalogue-license other-free + +name doclicense +category Package +revision 38264 +shortdesc Support for putting documents under a license +relocated 1 +longdesc This package allows you to put your document under a license +longdesc and include a link to read about the license or include an icon +longdesc or image of the license. Currently, only Creative Commons is +longdesc supported, but this package is designed to handle all kinds of +longdesc licenses. +runfiles size=39 + RELOC/tex/latex/doclicense/doclicense-UKenglish.ldf + RELOC/tex/latex/doclicense/doclicense-USenglish.ldf + RELOC/tex/latex/doclicense/doclicense-acadian.ldf + RELOC/tex/latex/doclicense/doclicense-american.ldf + RELOC/tex/latex/doclicense/doclicense-australian.ldf + RELOC/tex/latex/doclicense/doclicense-british.ldf + RELOC/tex/latex/doclicense/doclicense-canadian.ldf + RELOC/tex/latex/doclicense/doclicense-canadien.ldf + RELOC/tex/latex/doclicense/doclicense-english.ldf + RELOC/tex/latex/doclicense/doclicense-french.ldf + RELOC/tex/latex/doclicense/doclicense-german.ldf + RELOC/tex/latex/doclicense/doclicense-newzealand.ldf + RELOC/tex/latex/doclicense/doclicense-ngerman.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-sa-eu.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc-sa.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nc.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-nd.pdf + RELOC/tex/latex/doclicense/images/doclicense-CC-by-sa.pdf + 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 +catalogue-ctan /macros/latex/contrib/doclicense +catalogue-date 2015-08-04 21:13:10 +0200 +catalogue-license lppl1.3 +catalogue-topics licence-mgmt +catalogue-version 1.3 + +name docmfp +category Package +revision 15878 +shortdesc Document non-LaTeX code. +relocated 1 +longdesc Extends the doc package to cater for documenting non-LaTeX +longdesc code, such as Metafont or Metapost, or other programming +longdesc languages. +runfiles size=2 + RELOC/tex/latex/docmfp/docmfp.sty +docfiles size=44 + RELOC/doc/latex/docmfp/README + RELOC/doc/latex/docmfp/docmfp.pdf +srcfiles size=8 + RELOC/source/latex/docmfp/docmfp.dtx + RELOC/source/latex/docmfp/docmfp.ins +catalogue-ctan /macros/latex/contrib/docmfp +catalogue-date 2012-07-03 17:36:19 +0200 +catalogue-license lppl +catalogue-version 1.2d + +name docmute +category Package +revision 25741 +shortdesc Input files ignoring LaTeX preamble, etc. +relocated 1 +longdesc Input or include stand-alone LaTeX documents, ignoring +longdesc everything but the material between \begin{document} and +longdesc \end{document}. +runfiles size=1 + RELOC/tex/latex/docmute/docmute.sty +docfiles size=38 + RELOC/doc/latex/docmute/README + RELOC/doc/latex/docmute/docmute.pdf +srcfiles size=3 + RELOC/source/latex/docmute/docmute.dtx + RELOC/source/latex/docmute/docmute.ins +catalogue-ctan /macros/latex/contrib/docmute +catalogue-date 2012-03-22 16:41:56 +0100 +catalogue-license lppl1.3 +catalogue-version 1.4 + +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. +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 + +name doctools +category Package +revision 34474 +shortdesc Tools for the documentation of LaTeX code. +relocated 1 +longdesc The package provides a collection of tools for use either in an +longdesc "ordinary" LaTeX document, or within a .dtx file. +runfiles size=5 + RELOC/tex/latex/doctools/doctools.sty +docfiles size=149 + RELOC/doc/latex/doctools/README + RELOC/doc/latex/doctools/doctools.pdf +srcfiles size=11 + RELOC/source/latex/doctools/doctools.dtx + RELOC/source/latex/doctools/doctools.ins +catalogue-ctan /macros/latex/contrib/doctools +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name documentation +category Package +revision 34521 +shortdesc Documentation support for C, Java and assembler code. +relocated 1 +longdesc The package provides a simple means of typesetting computer +longdesc programs such that the result is acceptable for inclusion in +longdesc reports, etc. +runfiles size=2 + RELOC/tex/latex/documentation/documentation.sty +docfiles size=28 + RELOC/doc/latex/documentation/README + RELOC/doc/latex/documentation/documentation.pdf +srcfiles size=6 + RELOC/source/latex/documentation/documentation.dtx + RELOC/source/latex/documentation/documentation.ins +catalogue-ctan /macros/latex/contrib/documentation +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 0.1 + +name doipubmed +category Package +revision 15878 +shortdesc Special commands for use in bibliographies. +relocated 1 +longdesc The package provides the commands \doi, \pubmed and \citeurl. +longdesc These commands are primarily designed for use in +longdesc bibliographies. A LaTeX2HTML style file is also provided. +runfiles size=1 + RELOC/tex/latex/doipubmed/doipubmed.sty +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/doipubmed.perl +srcfiles size=4 + RELOC/source/latex/doipubmed/doipubmed.dtx + RELOC/source/latex/doipubmed/doipubmed.ins +catalogue-ctan /macros/latex/contrib/doipubmed +catalogue-date 2012-06-20 18:12:53 +0200 +catalogue-license lppl +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. +longdesc A Encapsulated PostScript (EPS) file may given in a special +longdesc binary format to support the inclusion of a thumbnail. This +longdesc file format, commonly known as DOS EPS format starts with a +longdesc binary header that contains the positions of the possible +longdesc sections: Postscript (PS); Windows Metafile Format (WMF); and +longdesc Tag Image File Format (TIFF). The PS section must be present +longdesc and either the WMF file or the TIFF file should be given. The +longdesc package provides a Perl program that will extract any of the +longdesc sections of such a file, in particular providing a 'text'-form +longdesc EPS file for use with (La)TeX. +depend dosepsbin.ARCH +runfiles size=3 + texmf-dist/scripts/dosepsbin/dosepsbin.pl +docfiles size=26 + texmf-dist/doc/man/man1/dosepsbin.1 + texmf-dist/doc/man/man1/dosepsbin.man1.pdf + texmf-dist/doc/support/dosepsbin/Makefile.in + texmf-dist/doc/support/dosepsbin/README + texmf-dist/doc/support/dosepsbin/clean-case.pl + texmf-dist/doc/support/dosepsbin/dosepsbin.html + texmf-dist/doc/support/dosepsbin/dosepsbin.ltx + texmf-dist/doc/support/dosepsbin/dosepsbin.pdf + texmf-dist/doc/support/dosepsbin/dosepsbin.txt + texmf-dist/doc/support/dosepsbin/version.pl +srcfiles size=20 + texmf-dist/source/support/dosepsbin/configure + texmf-dist/source/support/dosepsbin/configure.ac + texmf-dist/source/support/dosepsbin/install-sh +catalogue-ctan /support/dosepsbin +catalogue-date 2014-10-16 20:09:26 +0200 +catalogue-license gpl +catalogue-version 1.2 + +name dosepsbin.i386-linux +category Package +revision 24759 +shortdesc i386-linux files of dosepsbin +binfiles arch=i386-linux size=1 + bin/i386-linux/dosepsbin + +name dot2texi +category Package +revision 26237 +shortdesc Create graphs within LaTeX using the dot2tex tool. +relocated 1 +longdesc The dot2texi package allows you to embed graphs in the DOT +longdesc graph description language in your LaTeX documents. The dot2tex +longdesc tool is used to invoke Graphviz for graph layout, and to +longdesc transform the output from Graphviz to LaTeX code. The generated +longdesc code relies on the TikZ and PGF package or the PSTricks +longdesc package. The process is automated if shell escape is enabled. +runfiles size=3 + RELOC/tex/latex/dot2texi/dot2texi.sty +docfiles size=95 + RELOC/doc/latex/dot2texi/README + RELOC/doc/latex/dot2texi/dot2texi.pdf + RELOC/doc/latex/dot2texi/dot2texi.tex + RELOC/doc/latex/dot2texi/examples/d2tpstexamples.pdf + RELOC/doc/latex/dot2texi/examples/d2tpstexamples.tex + RELOC/doc/latex/dot2texi/examples/d2ttikzexamples.pdf + RELOC/doc/latex/dot2texi/examples/d2ttikzexamples.tex + RELOC/doc/latex/dot2texi/examples/docgraphs.pdf + RELOC/doc/latex/dot2texi/examples/docgraphs.tex + RELOC/doc/latex/dot2texi/examples/docgraphsorig.pdf + RELOC/doc/latex/dot2texi/gpl.txt +catalogue-ctan /macros/latex/contrib/dot2texi +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 3.0 + +name dotarrow +category Package +revision 15878 +shortdesc Extendable dotted arrows. +relocated 1 +longdesc The package can draw dotted arrows that are extendable, in the +longdesc same was as \xrightarrow. +runfiles size=2 + RELOC/tex/latex/dotarrow/DotArrow.sty +docfiles size=25 + RELOC/doc/latex/dotarrow/DotArrow.pdf + RELOC/doc/latex/dotarrow/DotArrow.tex + RELOC/doc/latex/dotarrow/README +srcfiles size=4 + RELOC/source/latex/dotarrow/DotArrow.dtx + RELOC/source/latex/dotarrow/DotArrow.ins +catalogue-ctan /macros/latex/contrib/dotarrow +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.01a + +name dotseqn +category Package +revision 17195 +shortdesc Flush left equations with dotted leaders to the numbers. +relocated 1 +longdesc The package provides a different format for typesetting +longdesc equations, one reportedly used in 'old style Britsh books': +longdesc equations aligned on the left, with dots on the right leading +longdesc to the equation number. In default of an equation number, the +longdesc package operates much like the fleqn class option (no leaders). +runfiles size=1 + RELOC/tex/latex/dotseqn/dotseqn.sty +docfiles size=36 + RELOC/doc/latex/dotseqn/dotseqn.pdf + RELOC/doc/latex/dotseqn/readme +srcfiles size=5 + RELOC/source/latex/dotseqn/dotseqn.dtx + RELOC/source/latex/dotseqn/dotseqn.ins +catalogue-ctan /macros/latex/contrib/dotseqn +catalogue-date 2012-06-20 18:12:53 +0200 +catalogue-license other-free +catalogue-version 1.1 + +name dottex +category Package +revision 15878 +shortdesc Use dot code in LaTeX. +relocated 1 +longdesc The dottex package allows you to encapsulate 'dot' and 'neato' +longdesc files in your document (dot and neato are both part of +longdesc graphviz; dot creates directed graphs, neato undirected +longdesc graphs). If you have shell-escape enabled, the package will +longdesc arrange for your files to be processed at LaTeX time; +longdesc otherwise, the conversion must be done manually as an +longdesc intermediate process before a second LaTeX run. +runfiles size=2 + RELOC/tex/latex/dottex/dottex.sty +docfiles size=30 + RELOC/doc/latex/dottex/README + RELOC/doc/latex/dottex/dottex.pdf + RELOC/doc/latex/dottex/example.tex + RELOC/doc/latex/dottex/gpl.txt +srcfiles size=5 + RELOC/source/latex/dottex/dottex.dtx + RELOC/source/latex/dottex/dottex.ins +catalogue-ctan /macros/latex/contrib/dottex +catalogue-date 2012-05-07 22:13:48 +0200 +catalogue-license gpl +catalogue-version 0.6 + +name doublestroke +category Package +revision 15878 +shortdesc Typeset mathematical double stroke symbols. +relocated 1 +longdesc A font based on Computer Modern Roman useful for typesetting +longdesc the mathematical symbols for the natural numbers (N), whole +longdesc numbers (Z), rational numbers (Q), real numbers (R) and complex +longdesc numbers (C); coverage includes all Roman capital letters, '1', +longdesc 'h' and 'k'. The font is available both as Metafont source and +longdesc in Adobe Type 1 format, and LaTeX macros for its use are +longdesc provided. The fonts appear in the blackboard bold sampler. +execute addMap dstroke.map +runfiles size=58 + RELOC/fonts/map/dvips/doublestroke/dstroke.map + RELOC/fonts/source/public/doublestroke/dsrom.mf + RELOC/fonts/source/public/doublestroke/dsrom10.mf + RELOC/fonts/source/public/doublestroke/dsrom12.mf + RELOC/fonts/source/public/doublestroke/dsrom8.mf + RELOC/fonts/source/public/doublestroke/dsromo.mf + RELOC/fonts/source/public/doublestroke/dsromu.mf + RELOC/fonts/source/public/doublestroke/dsss10.mf + RELOC/fonts/source/public/doublestroke/dsss12.mf + RELOC/fonts/source/public/doublestroke/dsss8.mf + RELOC/fonts/tfm/public/doublestroke/dsrom10.tfm + RELOC/fonts/tfm/public/doublestroke/dsrom12.tfm + RELOC/fonts/tfm/public/doublestroke/dsrom8.tfm + RELOC/fonts/tfm/public/doublestroke/dsss10.tfm + RELOC/fonts/tfm/public/doublestroke/dsss12.tfm + RELOC/fonts/tfm/public/doublestroke/dsss8.tfm + RELOC/fonts/type1/public/doublestroke/dsrom10.pfb + RELOC/fonts/type1/public/doublestroke/dsrom12.pfb + RELOC/fonts/type1/public/doublestroke/dsrom8.pfb + RELOC/fonts/type1/public/doublestroke/dsss10.pfb + RELOC/fonts/type1/public/doublestroke/dsss12.pfb + RELOC/fonts/type1/public/doublestroke/dsss8.pfb + RELOC/tex/latex/doublestroke/Udsrom.fd + RELOC/tex/latex/doublestroke/Udsss.fd + RELOC/tex/latex/doublestroke/dsfont.sty +docfiles size=31 + RELOC/doc/fonts/doublestroke/README + RELOC/doc/fonts/doublestroke/dsdoc.pdf + RELOC/doc/fonts/doublestroke/dsdoc.tex +catalogue-ctan /fonts/doublestroke +catalogue-date 2014-04-24 21:17:57 +0200 +catalogue-license other-free +catalogue-version 1.111 + +name dowith +category Package +revision 29501 +shortdesc Apply a command to a list of items. +relocated 1 +longdesc The package provides macros for applying a command to all +longdesc elements of a list without separators, such as +longdesc '\DoWithAllIn{}{}', and also for extending and +longdesc reducing macros storing such lists. Applications in mind +longdesc belonged to LaTeX, but the package should work with other +longdesc formats as well. Loop and list macros in other packages are +longdesc discussed. A further package, domore, is also provided, which +longdesc enhances the functionality of dowith. +runfiles size=6 + RELOC/tex/generic/dowith/domore.sty + RELOC/tex/generic/dowith/dowith.RLS + RELOC/tex/generic/dowith/dowith.sty +docfiles size=326 + RELOC/doc/generic/dowith/Announce.txt + RELOC/doc/generic/dowith/README + RELOC/doc/generic/dowith/SrcFILEs.txt + RELOC/doc/generic/dowith/domore.pdf + RELOC/doc/generic/dowith/dowith.pdf +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 +catalogue-ctan /macros/generic/dowith +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.31a + +name download +category Package +revision 30695 +shortdesc Allow LaTeX to download files using an external process. +relocated 1 +longdesc The package allows the user to download files (using cURL or +longdesc wget), from within a document. To run the external commands, +longdesc LaTeX (or whatever) needs to be run with the --shell-escape +longdesc flag; this creates a tension between your needs and the +longdesc security implications of the flag; users should exercise due +longdesc caution. +runfiles size=2 + RELOC/tex/latex/download/download.sty +docfiles size=37 + RELOC/doc/latex/download/README + RELOC/doc/latex/download/download.pdf +srcfiles size=5 + RELOC/source/latex/download/download.tex +catalogue-ctan /macros/latex/contrib/download +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name dox +category Package +revision 20768 +shortdesc Extend the doc package. +relocated 1 +longdesc The doc package provides LaTeX developers with means to +longdesc describe the usage and the definition of new macros and +longdesc environments. However, there is no simple way to extend this +longdesc functionality to other items (options or counters, for +longdesc instance). The DoX package is designed to circumvent this +longdesc limitation. +runfiles size=2 + RELOC/tex/latex/dox/dox.sty +docfiles size=42 + RELOC/doc/latex/dox/NEWS + RELOC/doc/latex/dox/README + RELOC/doc/latex/dox/dox.el + RELOC/doc/latex/dox/dox.pdf + RELOC/doc/latex/dox/header.inc +srcfiles size=8 + RELOC/source/latex/dox/dox.dtx + RELOC/source/latex/dox/dox.ins +catalogue-ctan /macros/latex/contrib/dox +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 2.2 + +name dozenal +category Package +revision 37698 +shortdesc Typeset documents using base twelve numbering (also called "dozenal") +relocated 1 +longdesc The package supports typesetting documents whose counters are +longdesc represented in base twelve, also called "dozenal". It includes +longdesc a macro by David Kastrup for converting positive whole numbers +longdesc to dozenal from decimal (base ten) representation. The package +longdesc also includes a few other macros and redefines all the standard +longdesc counters to produce dozenal output. Fonts, in Roman, italic, +longdesc slanted, and boldface versions, provide ten and eleven (the +longdesc Pitman characters preferred by the Dozenal Society of Great +longdesc Britain). The fonts were designed to blend well with the +longdesc Computer Modern fonts, and are available both as Metafont +longdesc source and in Adobe Type 1 format. +runfiles size=168 + RELOC/fonts/afm/public/dozenal/dozchars10.afm + RELOC/fonts/afm/public/dozenal/dozchars12.afm + RELOC/fonts/afm/public/dozenal/dozchars17.afm + RELOC/fonts/afm/public/dozenal/dozchars6.afm + RELOC/fonts/afm/public/dozenal/dozchars7.afm + RELOC/fonts/afm/public/dozenal/dozchars8.afm + RELOC/fonts/afm/public/dozenal/dozchars9.afm + RELOC/fonts/afm/public/dozenal/dozchb10.afm + RELOC/fonts/afm/public/dozenal/dozchbx10.afm + RELOC/fonts/afm/public/dozenal/dozchbx12.afm + RELOC/fonts/afm/public/dozenal/dozchbx5.afm + RELOC/fonts/afm/public/dozenal/dozchbx6.afm + RELOC/fonts/afm/public/dozenal/dozchbx7.afm + RELOC/fonts/afm/public/dozenal/dozchbx8.afm + RELOC/fonts/afm/public/dozenal/dozchbx9.afm + RELOC/fonts/afm/public/dozenal/dozchbxi10.afm + RELOC/fonts/afm/public/dozenal/dozchbxsl10.afm + RELOC/fonts/afm/public/dozenal/dozchit10.afm + RELOC/fonts/afm/public/dozenal/dozchit12.afm + RELOC/fonts/afm/public/dozenal/dozchit7.afm + RELOC/fonts/afm/public/dozenal/dozchit8.afm + RELOC/fonts/afm/public/dozenal/dozchit9.afm + RELOC/fonts/afm/public/dozenal/dozchsl10.afm + RELOC/fonts/afm/public/dozenal/dozchsl12.afm + RELOC/fonts/afm/public/dozenal/dozchsl8.afm + RELOC/fonts/afm/public/dozenal/dozchsl9.afm + RELOC/fonts/map/dvips/dozenal/dozenal.map + RELOC/fonts/source/public/dozenal/dozchars10.mf + RELOC/fonts/source/public/dozenal/dozchars12.mf + RELOC/fonts/source/public/dozenal/dozchars17.mf + RELOC/fonts/source/public/dozenal/dozchars6.mf + RELOC/fonts/source/public/dozenal/dozchars7.mf + RELOC/fonts/source/public/dozenal/dozchars8.mf + RELOC/fonts/source/public/dozenal/dozchars9.mf + RELOC/fonts/source/public/dozenal/dozchb10.mf + RELOC/fonts/source/public/dozenal/dozchbx10.mf + RELOC/fonts/source/public/dozenal/dozchbx12.mf + RELOC/fonts/source/public/dozenal/dozchbx5.mf + RELOC/fonts/source/public/dozenal/dozchbx6.mf + RELOC/fonts/source/public/dozenal/dozchbx7.mf + RELOC/fonts/source/public/dozenal/dozchbx8.mf + RELOC/fonts/source/public/dozenal/dozchbx9.mf + RELOC/fonts/source/public/dozenal/dozchbxi10.mf + RELOC/fonts/source/public/dozenal/dozchbxsl10.mf + RELOC/fonts/source/public/dozenal/dozchit10.mf + RELOC/fonts/source/public/dozenal/dozchit12.mf + RELOC/fonts/source/public/dozenal/dozchit7.mf + RELOC/fonts/source/public/dozenal/dozchit8.mf + RELOC/fonts/source/public/dozenal/dozchit9.mf + RELOC/fonts/source/public/dozenal/dozchsl10.mf + RELOC/fonts/source/public/dozenal/dozchsl12.mf + RELOC/fonts/source/public/dozenal/dozchsl8.mf + RELOC/fonts/source/public/dozenal/dozchsl9.mf + RELOC/fonts/source/public/dozenal/dozenal.mf + RELOC/fonts/source/public/dozenal/dozenalb.mf + RELOC/fonts/source/public/dozenal/dozenali.mf + RELOC/fonts/source/public/dozenal/dozenalitalic.mf + RELOC/fonts/source/public/dozenal/dozenalroman.mf + RELOC/fonts/tfm/public/dozenal/dozchars10.tfm + RELOC/fonts/tfm/public/dozenal/dozchars12.tfm + RELOC/fonts/tfm/public/dozenal/dozchars17.tfm + RELOC/fonts/tfm/public/dozenal/dozchars6.tfm + RELOC/fonts/tfm/public/dozenal/dozchars7.tfm + RELOC/fonts/tfm/public/dozenal/dozchars8.tfm + RELOC/fonts/tfm/public/dozenal/dozchars9.tfm + RELOC/fonts/tfm/public/dozenal/dozchb10.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx10.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx12.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx5.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx6.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx7.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx8.tfm + RELOC/fonts/tfm/public/dozenal/dozchbx9.tfm + RELOC/fonts/tfm/public/dozenal/dozchbxi10.tfm + RELOC/fonts/tfm/public/dozenal/dozchbxsl10.tfm + RELOC/fonts/tfm/public/dozenal/dozchit10.tfm + RELOC/fonts/tfm/public/dozenal/dozchit12.tfm + RELOC/fonts/tfm/public/dozenal/dozchit7.tfm + RELOC/fonts/tfm/public/dozenal/dozchit8.tfm + RELOC/fonts/tfm/public/dozenal/dozchit9.tfm + RELOC/fonts/tfm/public/dozenal/dozchsl10.tfm + RELOC/fonts/tfm/public/dozenal/dozchsl12.tfm + RELOC/fonts/tfm/public/dozenal/dozchsl8.tfm + RELOC/fonts/tfm/public/dozenal/dozchsl9.tfm + RELOC/fonts/type1/public/dozenal/dozchars10.pfb + RELOC/fonts/type1/public/dozenal/dozchars12.pfb + RELOC/fonts/type1/public/dozenal/dozchars17.pfb + RELOC/fonts/type1/public/dozenal/dozchars6.pfb + RELOC/fonts/type1/public/dozenal/dozchars7.pfb + RELOC/fonts/type1/public/dozenal/dozchars8.pfb + RELOC/fonts/type1/public/dozenal/dozchars9.pfb + RELOC/fonts/type1/public/dozenal/dozchb10.pfb + RELOC/fonts/type1/public/dozenal/dozchbx10.pfb + RELOC/fonts/type1/public/dozenal/dozchbx12.pfb + RELOC/fonts/type1/public/dozenal/dozchbx5.pfb + RELOC/fonts/type1/public/dozenal/dozchbx6.pfb + RELOC/fonts/type1/public/dozenal/dozchbx7.pfb + RELOC/fonts/type1/public/dozenal/dozchbx8.pfb + RELOC/fonts/type1/public/dozenal/dozchbx9.pfb + RELOC/fonts/type1/public/dozenal/dozchbxi10.pfb + RELOC/fonts/type1/public/dozenal/dozchbxsl10.pfb + RELOC/fonts/type1/public/dozenal/dozchit10.pfb + RELOC/fonts/type1/public/dozenal/dozchit12.pfb + RELOC/fonts/type1/public/dozenal/dozchit7.pfb + RELOC/fonts/type1/public/dozenal/dozchit8.pfb + RELOC/fonts/type1/public/dozenal/dozchit9.pfb + RELOC/fonts/type1/public/dozenal/dozchsl10.pfb + RELOC/fonts/type1/public/dozenal/dozchsl12.pfb + RELOC/fonts/type1/public/dozenal/dozchsl8.pfb + RELOC/fonts/type1/public/dozenal/dozchsl9.pfb + RELOC/tex/latex/dozenal/dozenal.sty +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-license lppl1.3 +catalogue-topics font font-specialist font-mf font-type1 +catalogue-version 6.0 + +name dpfloat +category Package +revision 17196 +shortdesc Support for double-page floats. +relocated 1 +longdesc Provides fullpage and leftfullpage environments, that may be +longdesc used inside a figure, table, or other float environment. If the +longdesc first of a 2-page spread uses a "leftfullpage" environment, the +longdesc float will only be typeset on an even-numbered page, and the +longdesc two floats will appear side-by-side in a two-sided document. +runfiles size=1 + RELOC/tex/latex/dpfloat/dpfloat.sty +docfiles size=51 + RELOC/doc/latex/dpfloat/README + RELOC/doc/latex/dpfloat/dpfloat.pdf + RELOC/doc/latex/dpfloat/dpfloat.tex +catalogue-ctan /macros/latex/contrib/dpfloat +catalogue-date 2012-05-15 16:59:15 +0200 +catalogue-license lppl + +name dprogress +category Package +revision 15878 +shortdesc LaTeX-relevant log information for debugging. +relocated 1 +longdesc The package logs LaTeX's progress through the file, making the +longdesc LaTeX output more verbose. This helps to make LaTeX debugging +longdesc easier, as it is simpler to find where exactly LaTeX failed. +longdesc The package outputs the typesetting of section, subsection and +longdesc subsubsection headers and (if amsmath is loaded) details of the +longdesc align environment. +runfiles size=2 + RELOC/tex/latex/dprogress/dprogress.sty +docfiles size=20 + RELOC/doc/latex/dprogress/README + RELOC/doc/latex/dprogress/dprogress.pdf +srcfiles size=3 + RELOC/source/latex/dprogress/dprogress.dtx + RELOC/source/latex/dprogress/dprogress.ins +catalogue-ctan /macros/latex/contrib/dprogress +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name drac +category Package +revision 15878 +shortdesc Declare active character substitution, robustly. +relocated 1 +longdesc The package provides macros \DeclareRobustActChar and +longdesc \ReDeclareRobActChar. One uses \DeclareRobustActChar in the +longdesc same way one would use \DeclareRobustCommand; the macro +longdesc \protects the active character when it appears in a moving +longdesc argument. \ReDeclareRobActChar redefines an active character +longdesc previously defined with \DeclareRobustActChar, in the same way +longdesc that \renewcommand works for ordinary commands. +runfiles size=1 + RELOC/tex/latex/drac/drac.sty +docfiles size=183 + RELOC/doc/latex/drac/drac-fr.pdf + RELOC/doc/latex/drac/drac.pdf +srcfiles size=12 + RELOC/source/latex/drac/LISEZMOI + RELOC/source/latex/drac/Makefile + RELOC/source/latex/drac/README + RELOC/source/latex/drac/drac-en.dtx + RELOC/source/latex/drac/drac-fr.dtx + RELOC/source/latex/drac/drac.ins +catalogue-ctan /macros/latex/contrib/drac +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1 + +name draftcopy +category Package +revision 15878 +shortdesc Identify draft copies. +relocated 1 +longdesc Places the word DRAFT (or other words) in light grey diagonally +longdesc across the background (or at the bottom) of each (or selected) +longdesc pages of the document. The package uses PostScript \special +longdesc commands, and may not therefore be used with PDFLaTeX. For that +longdesc usage, consider the wallpaper or draftwatermark packages. +runfiles size=5 + RELOC/tex/latex/draftcopy/draftcopy.cfg + RELOC/tex/latex/draftcopy/draftcopy.sty +docfiles size=64 + RELOC/doc/latex/draftcopy/README + RELOC/doc/latex/draftcopy/THIS-IS-VERSION-2.16 + RELOC/doc/latex/draftcopy/draftcopy-test-1.tex + RELOC/doc/latex/draftcopy/draftcopy-test-10.tex + RELOC/doc/latex/draftcopy/draftcopy-test-11.tex + RELOC/doc/latex/draftcopy/draftcopy-test-12.tex + RELOC/doc/latex/draftcopy/draftcopy-test-13.tex + RELOC/doc/latex/draftcopy/draftcopy-test-14.tex + RELOC/doc/latex/draftcopy/draftcopy-test-15.tex + RELOC/doc/latex/draftcopy/draftcopy-test-16.tex + RELOC/doc/latex/draftcopy/draftcopy-test-2.tex + RELOC/doc/latex/draftcopy/draftcopy-test-3.tex + RELOC/doc/latex/draftcopy/draftcopy-test-4.tex + RELOC/doc/latex/draftcopy/draftcopy-test-5.tex + RELOC/doc/latex/draftcopy/draftcopy-test-6.tex + RELOC/doc/latex/draftcopy/draftcopy-test-7.tex + RELOC/doc/latex/draftcopy/draftcopy-test-8.tex + RELOC/doc/latex/draftcopy/draftcopy-test-9.tex + RELOC/doc/latex/draftcopy/draftcopy.doc + RELOC/doc/latex/draftcopy/draftcopy.pdf +srcfiles size=3 + RELOC/source/latex/draftcopy/Makefile + RELOC/source/latex/draftcopy/draftcopy.dtx + RELOC/source/latex/draftcopy/draftcopy.ins +catalogue-ctan /macros/latex/contrib/draftcopy +catalogue-date 2011-09-30 20:51:09 +0200 +catalogue-license lppl +catalogue-version 2.16 + +name draftwatermark +category Package +revision 37498 +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. +longdesc Typical usage may consist in writing words such as DRAFT or +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 +docfiles size=25 + RELOC/doc/latex/draftwatermark/README + RELOC/doc/latex/draftwatermark/draftwatermark.pdf + RELOC/doc/latex/draftwatermark/test_draftwatermark.tex +srcfiles size=6 + RELOC/source/latex/draftwatermark/draftwatermark.dtx + RELOC/source/latex/draftwatermark/draftwatermark.ins +catalogue-ctan /macros/latex/contrib/draftwatermark +catalogue-date 2015-06-10 19:37:21 +0200 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name dramatist +category Package +revision 35866 +shortdesc Typeset dramas, both in verse and in prose. +relocated 1 +longdesc This package is intended for typesetting drama of any length. +longdesc It provides two environments for typesetting dialogues in prose +longdesc or in verse; new document divisions corresponding to acts and +longdesc scenes; macros that control the appearance of characters and +longdesc stage directions; and automatic generation of a `dramatis +longdesc personae' list. +runfiles size=4 + RELOC/tex/latex/dramatist/dramatist.sty +docfiles size=103 + RELOC/doc/latex/dramatist/README + RELOC/doc/latex/dramatist/dramatist.pdf +srcfiles size=32 + RELOC/source/latex/dramatist/dramatist.dtx + RELOC/source/latex/dramatist/dramatist.ins +catalogue-ctan /macros/latex/contrib/dramatist +catalogue-date 2014-12-19 05:44:52 +0100 +catalogue-license gpl +catalogue-version 1.2e + +name dratex +category Package +revision 15878 +shortdesc General drawing macros. +relocated 1 +longdesc A low level (DraTex.sty) and a high-level (AlDraTex.sty) +longdesc drawing package written entirely in TeX. +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-license lppl + +name drawstack +category Package +revision 28582 +shortdesc Draw execution stacks. +relocated 1 +longdesc This simple LaTeX package provides support for drawing +longdesc execution stack (typically to illustrate assembly language +longdesc notions). The code is written on top of TikZ. +runfiles size=2 + RELOC/tex/latex/drawstack/drawstack.sty +docfiles size=31 + RELOC/doc/latex/drawstack/Makefile + RELOC/doc/latex/drawstack/README + RELOC/doc/latex/drawstack/stack-example.pdf + RELOC/doc/latex/drawstack/stack-example.tex +catalogue-ctan /macros/latex/contrib/drawstack +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 + +name drm +category Package +revision 38157 +shortdesc A complete family of fonts written in Metafont +relocated 1 +longdesc The package provides access to the DRM (Don's Revised Modern) +longdesc family of fonts, which includes a variety of optical sizes in +longdesc Roman (in four weights), italic, and small caps, among other +longdesc shapes, along with a set of symbols and ornaments. It is +longdesc intended to be a full-body text font, but its larger sizes can +longdesc also be used for simple display purposes, and its significant +longdesc body of symbols can stand on its own. It comes complete with +longdesc textual ("old-style") and lining figures, and even has 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. +runfiles size=8144 + RELOC/fonts/afm/public/drm/drm10.afm + RELOC/fonts/afm/public/drm/drm11.afm + RELOC/fonts/afm/public/drm/drm12.afm + RELOC/fonts/afm/public/drm/drm14.afm + RELOC/fonts/afm/public/drm/drm17.afm + RELOC/fonts/afm/public/drm/drm24.afm + RELOC/fonts/afm/public/drm/drm6.afm + RELOC/fonts/afm/public/drm/drm7.afm + RELOC/fonts/afm/public/drm/drm8.afm + RELOC/fonts/afm/public/drm/drm9.afm + RELOC/fonts/afm/public/drm/drmb10.afm + RELOC/fonts/afm/public/drm/drmb11.afm + RELOC/fonts/afm/public/drm/drmb12.afm + RELOC/fonts/afm/public/drm/drmb14.afm + RELOC/fonts/afm/public/drm/drmb17.afm + RELOC/fonts/afm/public/drm/drmb24.afm + RELOC/fonts/afm/public/drm/drmb6.afm + RELOC/fonts/afm/public/drm/drmb7.afm + RELOC/fonts/afm/public/drm/drmb8.afm + RELOC/fonts/afm/public/drm/drmb9.afm + RELOC/fonts/afm/public/drm/drmbx10.afm + RELOC/fonts/afm/public/drm/drmbx11.afm + RELOC/fonts/afm/public/drm/drmbx12.afm + RELOC/fonts/afm/public/drm/drmbx14.afm + RELOC/fonts/afm/public/drm/drmbx17.afm + RELOC/fonts/afm/public/drm/drmbx24.afm + RELOC/fonts/afm/public/drm/drmbx6.afm + RELOC/fonts/afm/public/drm/drmbx7.afm + RELOC/fonts/afm/public/drm/drmbx8.afm + RELOC/fonts/afm/public/drm/drmbx9.afm + RELOC/fonts/afm/public/drm/drmdoz10.afm + RELOC/fonts/afm/public/drm/drmdoz11.afm + RELOC/fonts/afm/public/drm/drmdoz12.afm + RELOC/fonts/afm/public/drm/drmdoz14.afm + RELOC/fonts/afm/public/drm/drmdoz17.afm + RELOC/fonts/afm/public/drm/drmdoz24.afm + RELOC/fonts/afm/public/drm/drmdoz6.afm + RELOC/fonts/afm/public/drm/drmdoz7.afm + RELOC/fonts/afm/public/drm/drmdoz8.afm + RELOC/fonts/afm/public/drm/drmdoz9.afm + RELOC/fonts/afm/public/drm/drmdozb10.afm + RELOC/fonts/afm/public/drm/drmdozb11.afm + RELOC/fonts/afm/public/drm/drmdozb12.afm + RELOC/fonts/afm/public/drm/drmdozb14.afm + RELOC/fonts/afm/public/drm/drmdozb17.afm + RELOC/fonts/afm/public/drm/drmdozb24.afm + RELOC/fonts/afm/public/drm/drmdozb6.afm + RELOC/fonts/afm/public/drm/drmdozb7.afm + RELOC/fonts/afm/public/drm/drmdozb8.afm + RELOC/fonts/afm/public/drm/drmdozb9.afm + RELOC/fonts/afm/public/drm/drmdozbx10.afm + RELOC/fonts/afm/public/drm/drmdozbx11.afm + RELOC/fonts/afm/public/drm/drmdozbx12.afm + RELOC/fonts/afm/public/drm/drmdozbx14.afm + RELOC/fonts/afm/public/drm/drmdozbx17.afm + RELOC/fonts/afm/public/drm/drmdozbx24.afm + RELOC/fonts/afm/public/drm/drmdozbx6.afm + RELOC/fonts/afm/public/drm/drmdozbx7.afm + RELOC/fonts/afm/public/drm/drmdozbx8.afm + RELOC/fonts/afm/public/drm/drmdozbx9.afm + RELOC/fonts/afm/public/drm/drmdozit10.afm + RELOC/fonts/afm/public/drm/drmdozit11.afm + RELOC/fonts/afm/public/drm/drmdozit12.afm + RELOC/fonts/afm/public/drm/drmdozit14.afm + RELOC/fonts/afm/public/drm/drmdozit17.afm + RELOC/fonts/afm/public/drm/drmdozit24.afm + RELOC/fonts/afm/public/drm/drmdozit6.afm + RELOC/fonts/afm/public/drm/drmdozit7.afm + RELOC/fonts/afm/public/drm/drmdozit8.afm + RELOC/fonts/afm/public/drm/drmdozit9.afm + RELOC/fonts/afm/public/drm/drmdozitbx10.afm + RELOC/fonts/afm/public/drm/drmdozitbx11.afm + RELOC/fonts/afm/public/drm/drmdozitbx12.afm + RELOC/fonts/afm/public/drm/drmdozitbx14.afm + RELOC/fonts/afm/public/drm/drmdozitbx17.afm + RELOC/fonts/afm/public/drm/drmdozitbx24.afm + RELOC/fonts/afm/public/drm/drmdozitbx6.afm + RELOC/fonts/afm/public/drm/drmdozitbx7.afm + RELOC/fonts/afm/public/drm/drmdozitbx8.afm + RELOC/fonts/afm/public/drm/drmdozitbx9.afm + RELOC/fonts/afm/public/drm/drmdozitsc10.afm + RELOC/fonts/afm/public/drm/drmdozitsc11.afm + RELOC/fonts/afm/public/drm/drmdozitsc12.afm + RELOC/fonts/afm/public/drm/drmdozitsc14.afm + RELOC/fonts/afm/public/drm/drmdozitsc17.afm + RELOC/fonts/afm/public/drm/drmdozitsc24.afm + RELOC/fonts/afm/public/drm/drmdozitsc6.afm + RELOC/fonts/afm/public/drm/drmdozitsc7.afm + RELOC/fonts/afm/public/drm/drmdozitsc8.afm + RELOC/fonts/afm/public/drm/drmdozitsc9.afm + RELOC/fonts/afm/public/drm/drmdozittc10.afm + RELOC/fonts/afm/public/drm/drmdozittc11.afm + RELOC/fonts/afm/public/drm/drmdozittc12.afm + RELOC/fonts/afm/public/drm/drmdozittc14.afm + RELOC/fonts/afm/public/drm/drmdozittc17.afm + RELOC/fonts/afm/public/drm/drmdozittc24.afm + RELOC/fonts/afm/public/drm/drmdozittc6.afm + RELOC/fonts/afm/public/drm/drmdozittc7.afm + RELOC/fonts/afm/public/drm/drmdozittc8.afm + RELOC/fonts/afm/public/drm/drmdozittc9.afm + RELOC/fonts/afm/public/drm/drmdozl10.afm + RELOC/fonts/afm/public/drm/drmdozl11.afm + RELOC/fonts/afm/public/drm/drmdozl12.afm + RELOC/fonts/afm/public/drm/drmdozl14.afm + RELOC/fonts/afm/public/drm/drmdozl17.afm + RELOC/fonts/afm/public/drm/drmdozl24.afm + RELOC/fonts/afm/public/drm/drmdozl6.afm + RELOC/fonts/afm/public/drm/drmdozl7.afm + RELOC/fonts/afm/public/drm/drmdozl8.afm + RELOC/fonts/afm/public/drm/drmdozl9.afm + RELOC/fonts/afm/public/drm/drmdozsc10.afm + RELOC/fonts/afm/public/drm/drmdozsc11.afm + RELOC/fonts/afm/public/drm/drmdozsc12.afm + RELOC/fonts/afm/public/drm/drmdozsc14.afm + RELOC/fonts/afm/public/drm/drmdozsc17.afm + RELOC/fonts/afm/public/drm/drmdozsc24.afm + RELOC/fonts/afm/public/drm/drmdozsc6.afm + RELOC/fonts/afm/public/drm/drmdozsc7.afm + RELOC/fonts/afm/public/drm/drmdozsc8.afm + RELOC/fonts/afm/public/drm/drmdozsc9.afm + RELOC/fonts/afm/public/drm/drmdozscbx10.afm + RELOC/fonts/afm/public/drm/drmdozscbx11.afm + RELOC/fonts/afm/public/drm/drmdozscbx12.afm + RELOC/fonts/afm/public/drm/drmdozscbx14.afm + RELOC/fonts/afm/public/drm/drmdozscbx17.afm + RELOC/fonts/afm/public/drm/drmdozscbx24.afm + RELOC/fonts/afm/public/drm/drmdozscbx6.afm + RELOC/fonts/afm/public/drm/drmdozscbx7.afm + RELOC/fonts/afm/public/drm/drmdozscbx8.afm + RELOC/fonts/afm/public/drm/drmdozscbx9.afm + RELOC/fonts/afm/public/drm/drmdozsl10.afm + RELOC/fonts/afm/public/drm/drmdozsl11.afm + RELOC/fonts/afm/public/drm/drmdozsl12.afm + RELOC/fonts/afm/public/drm/drmdozsl14.afm + RELOC/fonts/afm/public/drm/drmdozsl17.afm + RELOC/fonts/afm/public/drm/drmdozsl24.afm + RELOC/fonts/afm/public/drm/drmdozsl6.afm + RELOC/fonts/afm/public/drm/drmdozsl7.afm + RELOC/fonts/afm/public/drm/drmdozsl8.afm + RELOC/fonts/afm/public/drm/drmdozsl9.afm + RELOC/fonts/afm/public/drm/drmdoztc10.afm + RELOC/fonts/afm/public/drm/drmdoztc11.afm + RELOC/fonts/afm/public/drm/drmdoztc12.afm + RELOC/fonts/afm/public/drm/drmdoztc14.afm + RELOC/fonts/afm/public/drm/drmdoztc17.afm + RELOC/fonts/afm/public/drm/drmdoztc24.afm + RELOC/fonts/afm/public/drm/drmdoztc6.afm + RELOC/fonts/afm/public/drm/drmdoztc7.afm + RELOC/fonts/afm/public/drm/drmdoztc8.afm + RELOC/fonts/afm/public/drm/drmdoztc9.afm + RELOC/fonts/afm/public/drm/drmdoztcbx10.afm + RELOC/fonts/afm/public/drm/drmdoztcbx11.afm + RELOC/fonts/afm/public/drm/drmdoztcbx12.afm + RELOC/fonts/afm/public/drm/drmdoztcbx14.afm + RELOC/fonts/afm/public/drm/drmdoztcbx17.afm + RELOC/fonts/afm/public/drm/drmdoztcbx24.afm + RELOC/fonts/afm/public/drm/drmdoztcbx6.afm + RELOC/fonts/afm/public/drm/drmdoztcbx7.afm + RELOC/fonts/afm/public/drm/drmdoztcbx8.afm + RELOC/fonts/afm/public/drm/drmdoztcbx9.afm + RELOC/fonts/afm/public/drm/drmdozui10.afm + RELOC/fonts/afm/public/drm/drmdozui11.afm + RELOC/fonts/afm/public/drm/drmdozui12.afm + RELOC/fonts/afm/public/drm/drmdozui14.afm + RELOC/fonts/afm/public/drm/drmdozui17.afm + RELOC/fonts/afm/public/drm/drmdozui24.afm + RELOC/fonts/afm/public/drm/drmdozui6.afm + RELOC/fonts/afm/public/drm/drmdozui7.afm + RELOC/fonts/afm/public/drm/drmdozui8.afm + RELOC/fonts/afm/public/drm/drmdozui9.afm + RELOC/fonts/afm/public/drm/drmdozuibx10.afm + RELOC/fonts/afm/public/drm/drmdozuibx11.afm + RELOC/fonts/afm/public/drm/drmdozuibx12.afm + RELOC/fonts/afm/public/drm/drmdozuibx14.afm + RELOC/fonts/afm/public/drm/drmdozuibx17.afm + RELOC/fonts/afm/public/drm/drmdozuibx24.afm + RELOC/fonts/afm/public/drm/drmdozuibx6.afm + RELOC/fonts/afm/public/drm/drmdozuibx7.afm + RELOC/fonts/afm/public/drm/drmdozuibx8.afm + RELOC/fonts/afm/public/drm/drmdozuibx9.afm + RELOC/fonts/afm/public/drm/drmfigs10.afm + RELOC/fonts/afm/public/drm/drmfigs11.afm + RELOC/fonts/afm/public/drm/drmfigs12.afm + RELOC/fonts/afm/public/drm/drmfigs14.afm + RELOC/fonts/afm/public/drm/drmfigs17.afm + RELOC/fonts/afm/public/drm/drmfigs24.afm + RELOC/fonts/afm/public/drm/drmfigs6.afm + RELOC/fonts/afm/public/drm/drmfigs7.afm + RELOC/fonts/afm/public/drm/drmfigs8.afm + RELOC/fonts/afm/public/drm/drmfigs9.afm + RELOC/fonts/afm/public/drm/drmgrk10.afm + RELOC/fonts/afm/public/drm/drminf10.afm + RELOC/fonts/afm/public/drm/drminf11.afm + RELOC/fonts/afm/public/drm/drminf12.afm + RELOC/fonts/afm/public/drm/drminf14.afm + RELOC/fonts/afm/public/drm/drminf17.afm + RELOC/fonts/afm/public/drm/drminf24.afm + RELOC/fonts/afm/public/drm/drminf6.afm + RELOC/fonts/afm/public/drm/drminf7.afm + RELOC/fonts/afm/public/drm/drminf8.afm + RELOC/fonts/afm/public/drm/drminf9.afm + RELOC/fonts/afm/public/drm/drmit10.afm + RELOC/fonts/afm/public/drm/drmit11.afm + RELOC/fonts/afm/public/drm/drmit12.afm + RELOC/fonts/afm/public/drm/drmit14.afm + RELOC/fonts/afm/public/drm/drmit17.afm + RELOC/fonts/afm/public/drm/drmit24.afm + RELOC/fonts/afm/public/drm/drmit6.afm + RELOC/fonts/afm/public/drm/drmit7.afm + RELOC/fonts/afm/public/drm/drmit8.afm + RELOC/fonts/afm/public/drm/drmit9.afm + RELOC/fonts/afm/public/drm/drmitbx10.afm + RELOC/fonts/afm/public/drm/drmitbx11.afm + RELOC/fonts/afm/public/drm/drmitbx12.afm + RELOC/fonts/afm/public/drm/drmitbx14.afm + RELOC/fonts/afm/public/drm/drmitbx17.afm + RELOC/fonts/afm/public/drm/drmitbx24.afm + RELOC/fonts/afm/public/drm/drmitbx6.afm + RELOC/fonts/afm/public/drm/drmitbx7.afm + RELOC/fonts/afm/public/drm/drmitbx8.afm + RELOC/fonts/afm/public/drm/drmitbx9.afm + RELOC/fonts/afm/public/drm/drmitsc10.afm + RELOC/fonts/afm/public/drm/drmitsc11.afm + RELOC/fonts/afm/public/drm/drmitsc12.afm + RELOC/fonts/afm/public/drm/drmitsc14.afm + RELOC/fonts/afm/public/drm/drmitsc17.afm + RELOC/fonts/afm/public/drm/drmitsc24.afm + RELOC/fonts/afm/public/drm/drmitsc6.afm + RELOC/fonts/afm/public/drm/drmitsc7.afm + RELOC/fonts/afm/public/drm/drmitsc8.afm + RELOC/fonts/afm/public/drm/drmitsc9.afm + RELOC/fonts/afm/public/drm/drmittc10.afm + RELOC/fonts/afm/public/drm/drmittc11.afm + RELOC/fonts/afm/public/drm/drmittc12.afm + RELOC/fonts/afm/public/drm/drmittc14.afm + RELOC/fonts/afm/public/drm/drmittc17.afm + RELOC/fonts/afm/public/drm/drmittc24.afm + RELOC/fonts/afm/public/drm/drmittc6.afm + RELOC/fonts/afm/public/drm/drmittc7.afm + RELOC/fonts/afm/public/drm/drmittc8.afm + RELOC/fonts/afm/public/drm/drmittc9.afm + RELOC/fonts/afm/public/drm/drml10.afm + RELOC/fonts/afm/public/drm/drml11.afm + RELOC/fonts/afm/public/drm/drml12.afm + RELOC/fonts/afm/public/drm/drml14.afm + RELOC/fonts/afm/public/drm/drml17.afm + RELOC/fonts/afm/public/drm/drml24.afm + RELOC/fonts/afm/public/drm/drml6.afm + RELOC/fonts/afm/public/drm/drml7.afm + RELOC/fonts/afm/public/drm/drml8.afm + RELOC/fonts/afm/public/drm/drml9.afm + RELOC/fonts/afm/public/drm/drmmi10.afm + RELOC/fonts/afm/public/drm/drmsc10.afm + RELOC/fonts/afm/public/drm/drmsc11.afm + RELOC/fonts/afm/public/drm/drmsc12.afm + RELOC/fonts/afm/public/drm/drmsc14.afm + RELOC/fonts/afm/public/drm/drmsc17.afm + RELOC/fonts/afm/public/drm/drmsc24.afm + RELOC/fonts/afm/public/drm/drmsc6.afm + RELOC/fonts/afm/public/drm/drmsc7.afm + RELOC/fonts/afm/public/drm/drmsc8.afm + RELOC/fonts/afm/public/drm/drmsc9.afm + RELOC/fonts/afm/public/drm/drmscbx10.afm + RELOC/fonts/afm/public/drm/drmscbx11.afm + RELOC/fonts/afm/public/drm/drmscbx12.afm + RELOC/fonts/afm/public/drm/drmscbx14.afm + RELOC/fonts/afm/public/drm/drmscbx17.afm + RELOC/fonts/afm/public/drm/drmscbx24.afm + RELOC/fonts/afm/public/drm/drmscbx6.afm + RELOC/fonts/afm/public/drm/drmscbx7.afm + RELOC/fonts/afm/public/drm/drmscbx8.afm + RELOC/fonts/afm/public/drm/drmscbx9.afm + RELOC/fonts/afm/public/drm/drmsl10.afm + RELOC/fonts/afm/public/drm/drmsl11.afm + RELOC/fonts/afm/public/drm/drmsl12.afm + RELOC/fonts/afm/public/drm/drmsl14.afm + RELOC/fonts/afm/public/drm/drmsl17.afm + RELOC/fonts/afm/public/drm/drmsl24.afm + RELOC/fonts/afm/public/drm/drmsl6.afm + RELOC/fonts/afm/public/drm/drmsl7.afm + RELOC/fonts/afm/public/drm/drmsl8.afm + RELOC/fonts/afm/public/drm/drmsl9.afm + RELOC/fonts/afm/public/drm/drmsy10.afm + RELOC/fonts/afm/public/drm/drmsym10.afm + RELOC/fonts/afm/public/drm/drmsym11.afm + RELOC/fonts/afm/public/drm/drmsym12.afm + RELOC/fonts/afm/public/drm/drmsym14.afm + RELOC/fonts/afm/public/drm/drmsym17.afm + RELOC/fonts/afm/public/drm/drmsym24.afm + RELOC/fonts/afm/public/drm/drmsym7.afm + RELOC/fonts/afm/public/drm/drmsym8.afm + RELOC/fonts/afm/public/drm/drmsym9.afm + RELOC/fonts/afm/public/drm/drmtc10.afm + RELOC/fonts/afm/public/drm/drmtc11.afm + RELOC/fonts/afm/public/drm/drmtc12.afm + RELOC/fonts/afm/public/drm/drmtc14.afm + RELOC/fonts/afm/public/drm/drmtc17.afm + RELOC/fonts/afm/public/drm/drmtc24.afm + RELOC/fonts/afm/public/drm/drmtc6.afm + RELOC/fonts/afm/public/drm/drmtc7.afm + RELOC/fonts/afm/public/drm/drmtc8.afm + RELOC/fonts/afm/public/drm/drmtc9.afm + RELOC/fonts/afm/public/drm/drmtcbx10.afm + RELOC/fonts/afm/public/drm/drmtcbx11.afm + RELOC/fonts/afm/public/drm/drmtcbx12.afm + RELOC/fonts/afm/public/drm/drmtcbx14.afm + RELOC/fonts/afm/public/drm/drmtcbx17.afm + RELOC/fonts/afm/public/drm/drmtcbx24.afm + RELOC/fonts/afm/public/drm/drmtcbx6.afm + RELOC/fonts/afm/public/drm/drmtcbx7.afm + RELOC/fonts/afm/public/drm/drmtcbx8.afm + RELOC/fonts/afm/public/drm/drmtcbx9.afm + RELOC/fonts/afm/public/drm/drmui10.afm + RELOC/fonts/afm/public/drm/drmui11.afm + RELOC/fonts/afm/public/drm/drmui12.afm + RELOC/fonts/afm/public/drm/drmui14.afm + RELOC/fonts/afm/public/drm/drmui17.afm + RELOC/fonts/afm/public/drm/drmui24.afm + RELOC/fonts/afm/public/drm/drmui6.afm + RELOC/fonts/afm/public/drm/drmui7.afm + RELOC/fonts/afm/public/drm/drmui8.afm + RELOC/fonts/afm/public/drm/drmui9.afm + RELOC/fonts/afm/public/drm/drmuibx10.afm + RELOC/fonts/afm/public/drm/drmuibx11.afm + RELOC/fonts/afm/public/drm/drmuibx12.afm + RELOC/fonts/afm/public/drm/drmuibx14.afm + RELOC/fonts/afm/public/drm/drmuibx17.afm + RELOC/fonts/afm/public/drm/drmuibx24.afm + RELOC/fonts/afm/public/drm/drmuibx6.afm + RELOC/fonts/afm/public/drm/drmuibx7.afm + RELOC/fonts/afm/public/drm/drmuibx8.afm + RELOC/fonts/afm/public/drm/drmuibx9.afm + RELOC/fonts/map/dvips/drm/drm.map + RELOC/fonts/opentype/public/drm/drm10.otf + RELOC/fonts/opentype/public/drm/drm11.otf + RELOC/fonts/opentype/public/drm/drm12.otf + RELOC/fonts/opentype/public/drm/drm14.otf + RELOC/fonts/opentype/public/drm/drm17.otf + RELOC/fonts/opentype/public/drm/drm24.otf + RELOC/fonts/opentype/public/drm/drm6.otf + RELOC/fonts/opentype/public/drm/drm7.otf + RELOC/fonts/opentype/public/drm/drm8.otf + RELOC/fonts/opentype/public/drm/drm9.otf + RELOC/fonts/opentype/public/drm/drmb10.otf + RELOC/fonts/opentype/public/drm/drmb11.otf + RELOC/fonts/opentype/public/drm/drmb12.otf + RELOC/fonts/opentype/public/drm/drmb14.otf + RELOC/fonts/opentype/public/drm/drmb17.otf + RELOC/fonts/opentype/public/drm/drmb24.otf + RELOC/fonts/opentype/public/drm/drmb6.otf + RELOC/fonts/opentype/public/drm/drmb7.otf + RELOC/fonts/opentype/public/drm/drmb8.otf + RELOC/fonts/opentype/public/drm/drmb9.otf + RELOC/fonts/opentype/public/drm/drmbx10.otf + RELOC/fonts/opentype/public/drm/drmbx11.otf + RELOC/fonts/opentype/public/drm/drmbx12.otf + RELOC/fonts/opentype/public/drm/drmbx14.otf + RELOC/fonts/opentype/public/drm/drmbx17.otf + RELOC/fonts/opentype/public/drm/drmbx24.otf + RELOC/fonts/opentype/public/drm/drmbx6.otf + RELOC/fonts/opentype/public/drm/drmbx7.otf + RELOC/fonts/opentype/public/drm/drmbx8.otf + RELOC/fonts/opentype/public/drm/drmbx9.otf + RELOC/fonts/opentype/public/drm/drmdoz10.otf + RELOC/fonts/opentype/public/drm/drmdoz11.otf + RELOC/fonts/opentype/public/drm/drmdoz12.otf + RELOC/fonts/opentype/public/drm/drmdoz14.otf + RELOC/fonts/opentype/public/drm/drmdoz17.otf + RELOC/fonts/opentype/public/drm/drmdoz24.otf + RELOC/fonts/opentype/public/drm/drmdoz6.otf + RELOC/fonts/opentype/public/drm/drmdoz7.otf + RELOC/fonts/opentype/public/drm/drmdoz8.otf + RELOC/fonts/opentype/public/drm/drmdoz9.otf + RELOC/fonts/opentype/public/drm/drmdozb10.otf + RELOC/fonts/opentype/public/drm/drmdozb11.otf + RELOC/fonts/opentype/public/drm/drmdozb12.otf + RELOC/fonts/opentype/public/drm/drmdozb14.otf + RELOC/fonts/opentype/public/drm/drmdozb17.otf + RELOC/fonts/opentype/public/drm/drmdozb24.otf + RELOC/fonts/opentype/public/drm/drmdozb6.otf + RELOC/fonts/opentype/public/drm/drmdozb7.otf + RELOC/fonts/opentype/public/drm/drmdozb8.otf + RELOC/fonts/opentype/public/drm/drmdozb9.otf + RELOC/fonts/opentype/public/drm/drmdozbx10.otf + RELOC/fonts/opentype/public/drm/drmdozbx11.otf + RELOC/fonts/opentype/public/drm/drmdozbx12.otf + RELOC/fonts/opentype/public/drm/drmdozbx14.otf + RELOC/fonts/opentype/public/drm/drmdozbx17.otf + RELOC/fonts/opentype/public/drm/drmdozbx24.otf + RELOC/fonts/opentype/public/drm/drmdozbx6.otf + RELOC/fonts/opentype/public/drm/drmdozbx7.otf + RELOC/fonts/opentype/public/drm/drmdozbx8.otf + RELOC/fonts/opentype/public/drm/drmdozbx9.otf + RELOC/fonts/opentype/public/drm/drmdozit10.otf + RELOC/fonts/opentype/public/drm/drmdozit11.otf + RELOC/fonts/opentype/public/drm/drmdozit12.otf + RELOC/fonts/opentype/public/drm/drmdozit14.otf + RELOC/fonts/opentype/public/drm/drmdozit17.otf + RELOC/fonts/opentype/public/drm/drmdozit24.otf + RELOC/fonts/opentype/public/drm/drmdozit6.otf + RELOC/fonts/opentype/public/drm/drmdozit7.otf + RELOC/fonts/opentype/public/drm/drmdozit8.otf + RELOC/fonts/opentype/public/drm/drmdozit9.otf + RELOC/fonts/opentype/public/drm/drmdozitbx10.otf + RELOC/fonts/opentype/public/drm/drmdozitbx11.otf + RELOC/fonts/opentype/public/drm/drmdozitbx12.otf + RELOC/fonts/opentype/public/drm/drmdozitbx14.otf + RELOC/fonts/opentype/public/drm/drmdozitbx17.otf + RELOC/fonts/opentype/public/drm/drmdozitbx24.otf + RELOC/fonts/opentype/public/drm/drmdozitbx6.otf + RELOC/fonts/opentype/public/drm/drmdozitbx7.otf + RELOC/fonts/opentype/public/drm/drmdozitbx8.otf + RELOC/fonts/opentype/public/drm/drmdozitbx9.otf + RELOC/fonts/opentype/public/drm/drmdozitsc10.otf + RELOC/fonts/opentype/public/drm/drmdozitsc11.otf + RELOC/fonts/opentype/public/drm/drmdozitsc12.otf + RELOC/fonts/opentype/public/drm/drmdozitsc14.otf + RELOC/fonts/opentype/public/drm/drmdozitsc17.otf + RELOC/fonts/opentype/public/drm/drmdozitsc24.otf + RELOC/fonts/opentype/public/drm/drmdozitsc6.otf + RELOC/fonts/opentype/public/drm/drmdozitsc7.otf + RELOC/fonts/opentype/public/drm/drmdozitsc8.otf + RELOC/fonts/opentype/public/drm/drmdozitsc9.otf + RELOC/fonts/opentype/public/drm/drmdozittc10.otf + RELOC/fonts/opentype/public/drm/drmdozittc11.otf + RELOC/fonts/opentype/public/drm/drmdozittc12.otf + RELOC/fonts/opentype/public/drm/drmdozittc14.otf + RELOC/fonts/opentype/public/drm/drmdozittc17.otf + RELOC/fonts/opentype/public/drm/drmdozittc24.otf + RELOC/fonts/opentype/public/drm/drmdozittc6.otf + RELOC/fonts/opentype/public/drm/drmdozittc7.otf + RELOC/fonts/opentype/public/drm/drmdozittc8.otf + RELOC/fonts/opentype/public/drm/drmdozittc9.otf + RELOC/fonts/opentype/public/drm/drmdozl10.otf + RELOC/fonts/opentype/public/drm/drmdozl11.otf + RELOC/fonts/opentype/public/drm/drmdozl12.otf + RELOC/fonts/opentype/public/drm/drmdozl14.otf + RELOC/fonts/opentype/public/drm/drmdozl17.otf + RELOC/fonts/opentype/public/drm/drmdozl24.otf + RELOC/fonts/opentype/public/drm/drmdozl6.otf + RELOC/fonts/opentype/public/drm/drmdozl7.otf + RELOC/fonts/opentype/public/drm/drmdozl8.otf + RELOC/fonts/opentype/public/drm/drmdozl9.otf + RELOC/fonts/opentype/public/drm/drmdozsc10.otf + RELOC/fonts/opentype/public/drm/drmdozsc11.otf + RELOC/fonts/opentype/public/drm/drmdozsc12.otf + RELOC/fonts/opentype/public/drm/drmdozsc14.otf + RELOC/fonts/opentype/public/drm/drmdozsc17.otf + RELOC/fonts/opentype/public/drm/drmdozsc24.otf + RELOC/fonts/opentype/public/drm/drmdozsc6.otf + RELOC/fonts/opentype/public/drm/drmdozsc7.otf + RELOC/fonts/opentype/public/drm/drmdozsc8.otf + RELOC/fonts/opentype/public/drm/drmdozsc9.otf + RELOC/fonts/opentype/public/drm/drmdozscbx10.otf + RELOC/fonts/opentype/public/drm/drmdozscbx11.otf + RELOC/fonts/opentype/public/drm/drmdozscbx12.otf + RELOC/fonts/opentype/public/drm/drmdozscbx14.otf + RELOC/fonts/opentype/public/drm/drmdozscbx17.otf + RELOC/fonts/opentype/public/drm/drmdozscbx24.otf + RELOC/fonts/opentype/public/drm/drmdozscbx6.otf + RELOC/fonts/opentype/public/drm/drmdozscbx7.otf + RELOC/fonts/opentype/public/drm/drmdozscbx8.otf + RELOC/fonts/opentype/public/drm/drmdozscbx9.otf + RELOC/fonts/opentype/public/drm/drmdozsl10.otf + RELOC/fonts/opentype/public/drm/drmdozsl11.otf + RELOC/fonts/opentype/public/drm/drmdozsl12.otf + RELOC/fonts/opentype/public/drm/drmdozsl14.otf + RELOC/fonts/opentype/public/drm/drmdozsl17.otf + RELOC/fonts/opentype/public/drm/drmdozsl24.otf + RELOC/fonts/opentype/public/drm/drmdozsl6.otf + RELOC/fonts/opentype/public/drm/drmdozsl7.otf + RELOC/fonts/opentype/public/drm/drmdozsl8.otf + RELOC/fonts/opentype/public/drm/drmdozsl9.otf + RELOC/fonts/opentype/public/drm/drmdoztc10.otf + RELOC/fonts/opentype/public/drm/drmdoztc11.otf + RELOC/fonts/opentype/public/drm/drmdoztc12.otf + RELOC/fonts/opentype/public/drm/drmdoztc14.otf + RELOC/fonts/opentype/public/drm/drmdoztc17.otf + RELOC/fonts/opentype/public/drm/drmdoztc24.otf + RELOC/fonts/opentype/public/drm/drmdoztc6.otf + RELOC/fonts/opentype/public/drm/drmdoztc7.otf + RELOC/fonts/opentype/public/drm/drmdoztc8.otf + RELOC/fonts/opentype/public/drm/drmdoztc9.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx10.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx11.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx12.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx14.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx17.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx24.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx6.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx7.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx8.otf + RELOC/fonts/opentype/public/drm/drmdoztcbx9.otf + RELOC/fonts/opentype/public/drm/drmdozui10.otf + RELOC/fonts/opentype/public/drm/drmdozui11.otf + RELOC/fonts/opentype/public/drm/drmdozui12.otf + RELOC/fonts/opentype/public/drm/drmdozui14.otf + RELOC/fonts/opentype/public/drm/drmdozui17.otf + RELOC/fonts/opentype/public/drm/drmdozui24.otf + RELOC/fonts/opentype/public/drm/drmdozui6.otf + RELOC/fonts/opentype/public/drm/drmdozui7.otf + RELOC/fonts/opentype/public/drm/drmdozui8.otf + RELOC/fonts/opentype/public/drm/drmdozui9.otf + RELOC/fonts/opentype/public/drm/drmdozuibx10.otf + RELOC/fonts/opentype/public/drm/drmdozuibx11.otf + RELOC/fonts/opentype/public/drm/drmdozuibx12.otf + RELOC/fonts/opentype/public/drm/drmdozuibx14.otf + RELOC/fonts/opentype/public/drm/drmdozuibx17.otf + RELOC/fonts/opentype/public/drm/drmdozuibx24.otf + RELOC/fonts/opentype/public/drm/drmdozuibx6.otf + RELOC/fonts/opentype/public/drm/drmdozuibx7.otf + RELOC/fonts/opentype/public/drm/drmdozuibx8.otf + RELOC/fonts/opentype/public/drm/drmdozuibx9.otf + RELOC/fonts/opentype/public/drm/drmfigs10.otf + RELOC/fonts/opentype/public/drm/drmfigs11.otf + RELOC/fonts/opentype/public/drm/drmfigs12.otf + RELOC/fonts/opentype/public/drm/drmfigs14.otf + RELOC/fonts/opentype/public/drm/drmfigs17.otf + RELOC/fonts/opentype/public/drm/drmfigs24.otf + RELOC/fonts/opentype/public/drm/drmfigs6.otf + RELOC/fonts/opentype/public/drm/drmfigs7.otf + RELOC/fonts/opentype/public/drm/drmfigs8.otf + RELOC/fonts/opentype/public/drm/drmfigs9.otf + RELOC/fonts/opentype/public/drm/drmgrk10.otf + RELOC/fonts/opentype/public/drm/drminf10.otf + RELOC/fonts/opentype/public/drm/drminf11.otf + RELOC/fonts/opentype/public/drm/drminf12.otf + RELOC/fonts/opentype/public/drm/drminf14.otf + RELOC/fonts/opentype/public/drm/drminf17.otf + RELOC/fonts/opentype/public/drm/drminf24.otf + RELOC/fonts/opentype/public/drm/drminf6.otf + RELOC/fonts/opentype/public/drm/drminf7.otf + RELOC/fonts/opentype/public/drm/drminf8.otf + RELOC/fonts/opentype/public/drm/drminf9.otf + RELOC/fonts/opentype/public/drm/drmit10.otf + RELOC/fonts/opentype/public/drm/drmit11.otf + RELOC/fonts/opentype/public/drm/drmit12.otf + RELOC/fonts/opentype/public/drm/drmit14.otf + RELOC/fonts/opentype/public/drm/drmit17.otf + RELOC/fonts/opentype/public/drm/drmit24.otf + RELOC/fonts/opentype/public/drm/drmit6.otf + RELOC/fonts/opentype/public/drm/drmit7.otf + RELOC/fonts/opentype/public/drm/drmit8.otf + RELOC/fonts/opentype/public/drm/drmit9.otf + RELOC/fonts/opentype/public/drm/drmitbx10.otf + RELOC/fonts/opentype/public/drm/drmitbx11.otf + RELOC/fonts/opentype/public/drm/drmitbx12.otf + RELOC/fonts/opentype/public/drm/drmitbx14.otf + RELOC/fonts/opentype/public/drm/drmitbx17.otf + RELOC/fonts/opentype/public/drm/drmitbx24.otf + RELOC/fonts/opentype/public/drm/drmitbx6.otf + RELOC/fonts/opentype/public/drm/drmitbx7.otf + RELOC/fonts/opentype/public/drm/drmitbx8.otf + RELOC/fonts/opentype/public/drm/drmitbx9.otf + RELOC/fonts/opentype/public/drm/drmitsc10.otf + RELOC/fonts/opentype/public/drm/drmitsc11.otf + RELOC/fonts/opentype/public/drm/drmitsc12.otf + RELOC/fonts/opentype/public/drm/drmitsc14.otf + RELOC/fonts/opentype/public/drm/drmitsc17.otf + RELOC/fonts/opentype/public/drm/drmitsc24.otf + RELOC/fonts/opentype/public/drm/drmitsc6.otf + RELOC/fonts/opentype/public/drm/drmitsc7.otf + RELOC/fonts/opentype/public/drm/drmitsc8.otf + RELOC/fonts/opentype/public/drm/drmitsc9.otf + RELOC/fonts/opentype/public/drm/drmittc10.otf + RELOC/fonts/opentype/public/drm/drmittc11.otf + RELOC/fonts/opentype/public/drm/drmittc12.otf + RELOC/fonts/opentype/public/drm/drmittc14.otf + RELOC/fonts/opentype/public/drm/drmittc17.otf + RELOC/fonts/opentype/public/drm/drmittc24.otf + RELOC/fonts/opentype/public/drm/drmittc6.otf + RELOC/fonts/opentype/public/drm/drmittc7.otf + RELOC/fonts/opentype/public/drm/drmittc8.otf + RELOC/fonts/opentype/public/drm/drmittc9.otf + RELOC/fonts/opentype/public/drm/drml10.otf + RELOC/fonts/opentype/public/drm/drml11.otf + RELOC/fonts/opentype/public/drm/drml12.otf + RELOC/fonts/opentype/public/drm/drml14.otf + RELOC/fonts/opentype/public/drm/drml17.otf + RELOC/fonts/opentype/public/drm/drml24.otf + RELOC/fonts/opentype/public/drm/drml6.otf + RELOC/fonts/opentype/public/drm/drml7.otf + RELOC/fonts/opentype/public/drm/drml8.otf + RELOC/fonts/opentype/public/drm/drml9.otf + RELOC/fonts/opentype/public/drm/drmmi10.otf + RELOC/fonts/opentype/public/drm/drmsc10.otf + RELOC/fonts/opentype/public/drm/drmsc11.otf + RELOC/fonts/opentype/public/drm/drmsc12.otf + RELOC/fonts/opentype/public/drm/drmsc14.otf + RELOC/fonts/opentype/public/drm/drmsc17.otf + RELOC/fonts/opentype/public/drm/drmsc24.otf + RELOC/fonts/opentype/public/drm/drmsc6.otf + RELOC/fonts/opentype/public/drm/drmsc7.otf + RELOC/fonts/opentype/public/drm/drmsc8.otf + RELOC/fonts/opentype/public/drm/drmsc9.otf + RELOC/fonts/opentype/public/drm/drmscbx10.otf + RELOC/fonts/opentype/public/drm/drmscbx11.otf + RELOC/fonts/opentype/public/drm/drmscbx12.otf + RELOC/fonts/opentype/public/drm/drmscbx14.otf + RELOC/fonts/opentype/public/drm/drmscbx17.otf + RELOC/fonts/opentype/public/drm/drmscbx24.otf + RELOC/fonts/opentype/public/drm/drmscbx6.otf + RELOC/fonts/opentype/public/drm/drmscbx7.otf + RELOC/fonts/opentype/public/drm/drmscbx8.otf + RELOC/fonts/opentype/public/drm/drmscbx9.otf + RELOC/fonts/opentype/public/drm/drmsl10.otf + RELOC/fonts/opentype/public/drm/drmsl11.otf + RELOC/fonts/opentype/public/drm/drmsl12.otf + RELOC/fonts/opentype/public/drm/drmsl14.otf + RELOC/fonts/opentype/public/drm/drmsl17.otf + RELOC/fonts/opentype/public/drm/drmsl24.otf + RELOC/fonts/opentype/public/drm/drmsl6.otf + RELOC/fonts/opentype/public/drm/drmsl7.otf + RELOC/fonts/opentype/public/drm/drmsl8.otf + RELOC/fonts/opentype/public/drm/drmsl9.otf + RELOC/fonts/opentype/public/drm/drmsy10.otf + RELOC/fonts/opentype/public/drm/drmsym10.otf + RELOC/fonts/opentype/public/drm/drmsym11.otf + RELOC/fonts/opentype/public/drm/drmsym12.otf + RELOC/fonts/opentype/public/drm/drmsym14.otf + RELOC/fonts/opentype/public/drm/drmsym17.otf + RELOC/fonts/opentype/public/drm/drmsym24.otf + RELOC/fonts/opentype/public/drm/drmsym7.otf + RELOC/fonts/opentype/public/drm/drmsym8.otf + RELOC/fonts/opentype/public/drm/drmsym9.otf + RELOC/fonts/opentype/public/drm/drmtc10.otf + RELOC/fonts/opentype/public/drm/drmtc11.otf + RELOC/fonts/opentype/public/drm/drmtc12.otf + RELOC/fonts/opentype/public/drm/drmtc14.otf + RELOC/fonts/opentype/public/drm/drmtc17.otf + RELOC/fonts/opentype/public/drm/drmtc24.otf + RELOC/fonts/opentype/public/drm/drmtc6.otf + RELOC/fonts/opentype/public/drm/drmtc7.otf + RELOC/fonts/opentype/public/drm/drmtc8.otf + RELOC/fonts/opentype/public/drm/drmtc9.otf + RELOC/fonts/opentype/public/drm/drmtcbx10.otf + RELOC/fonts/opentype/public/drm/drmtcbx11.otf + RELOC/fonts/opentype/public/drm/drmtcbx12.otf + RELOC/fonts/opentype/public/drm/drmtcbx14.otf + RELOC/fonts/opentype/public/drm/drmtcbx17.otf + RELOC/fonts/opentype/public/drm/drmtcbx24.otf + RELOC/fonts/opentype/public/drm/drmtcbx6.otf + RELOC/fonts/opentype/public/drm/drmtcbx7.otf + RELOC/fonts/opentype/public/drm/drmtcbx8.otf + RELOC/fonts/opentype/public/drm/drmtcbx9.otf + RELOC/fonts/opentype/public/drm/drmui10.otf + RELOC/fonts/opentype/public/drm/drmui11.otf + RELOC/fonts/opentype/public/drm/drmui12.otf + RELOC/fonts/opentype/public/drm/drmui14.otf + RELOC/fonts/opentype/public/drm/drmui17.otf + RELOC/fonts/opentype/public/drm/drmui24.otf + RELOC/fonts/opentype/public/drm/drmui6.otf + RELOC/fonts/opentype/public/drm/drmui7.otf + RELOC/fonts/opentype/public/drm/drmui8.otf + RELOC/fonts/opentype/public/drm/drmui9.otf + RELOC/fonts/opentype/public/drm/drmuibx10.otf + RELOC/fonts/opentype/public/drm/drmuibx11.otf + RELOC/fonts/opentype/public/drm/drmuibx12.otf + RELOC/fonts/opentype/public/drm/drmuibx14.otf + RELOC/fonts/opentype/public/drm/drmuibx17.otf + RELOC/fonts/opentype/public/drm/drmuibx24.otf + RELOC/fonts/opentype/public/drm/drmuibx6.otf + RELOC/fonts/opentype/public/drm/drmuibx7.otf + RELOC/fonts/opentype/public/drm/drmuibx8.otf + RELOC/fonts/opentype/public/drm/drmuibx9.otf + RELOC/fonts/source/public/drm/backslanttest.mf + RELOC/fonts/source/public/drm/drm.mf + RELOC/fonts/source/public/drm/drm10.mf + RELOC/fonts/source/public/drm/drm11.mf + RELOC/fonts/source/public/drm/drm12.mf + RELOC/fonts/source/public/drm/drm14.mf + RELOC/fonts/source/public/drm/drm17.mf + RELOC/fonts/source/public/drm/drm24.mf + RELOC/fonts/source/public/drm/drm6.mf + RELOC/fonts/source/public/drm/drm7.mf + RELOC/fonts/source/public/drm/drm8.mf + RELOC/fonts/source/public/drm/drm9.mf + RELOC/fonts/source/public/drm/drmacc.mf + RELOC/fonts/source/public/drm/drmacclet.mf + RELOC/fonts/source/public/drm/drmb10.mf + RELOC/fonts/source/public/drm/drmb11.mf + RELOC/fonts/source/public/drm/drmb12.mf + RELOC/fonts/source/public/drm/drmb14.mf + RELOC/fonts/source/public/drm/drmb17.mf + RELOC/fonts/source/public/drm/drmb24.mf + RELOC/fonts/source/public/drm/drmb6.mf + RELOC/fonts/source/public/drm/drmb7.mf + RELOC/fonts/source/public/drm/drmb8.mf + RELOC/fonts/source/public/drm/drmb9.mf + RELOC/fonts/source/public/drm/drmbx10.mf + RELOC/fonts/source/public/drm/drmbx11.mf + RELOC/fonts/source/public/drm/drmbx12.mf + RELOC/fonts/source/public/drm/drmbx14.mf + RELOC/fonts/source/public/drm/drmbx17.mf + RELOC/fonts/source/public/drm/drmbx24.mf + RELOC/fonts/source/public/drm/drmbx6.mf + RELOC/fonts/source/public/drm/drmbx7.mf + RELOC/fonts/source/public/drm/drmbx8.mf + RELOC/fonts/source/public/drm/drmbx9.mf + RELOC/fonts/source/public/drm/drmcap.mf + RELOC/fonts/source/public/drm/drmdigs.mf + RELOC/fonts/source/public/drm/drmdoz10.mf + RELOC/fonts/source/public/drm/drmdoz11.mf + RELOC/fonts/source/public/drm/drmdoz12.mf + RELOC/fonts/source/public/drm/drmdoz14.mf + RELOC/fonts/source/public/drm/drmdoz17.mf + RELOC/fonts/source/public/drm/drmdoz24.mf + RELOC/fonts/source/public/drm/drmdoz6.mf + RELOC/fonts/source/public/drm/drmdoz7.mf + RELOC/fonts/source/public/drm/drmdoz8.mf + RELOC/fonts/source/public/drm/drmdoz9.mf + RELOC/fonts/source/public/drm/drmdozb10.mf + RELOC/fonts/source/public/drm/drmdozb11.mf + RELOC/fonts/source/public/drm/drmdozb12.mf + RELOC/fonts/source/public/drm/drmdozb14.mf + RELOC/fonts/source/public/drm/drmdozb17.mf + RELOC/fonts/source/public/drm/drmdozb24.mf + RELOC/fonts/source/public/drm/drmdozb6.mf + RELOC/fonts/source/public/drm/drmdozb7.mf + RELOC/fonts/source/public/drm/drmdozb8.mf + RELOC/fonts/source/public/drm/drmdozb9.mf + RELOC/fonts/source/public/drm/drmdozbx10.mf + RELOC/fonts/source/public/drm/drmdozbx11.mf + RELOC/fonts/source/public/drm/drmdozbx12.mf + RELOC/fonts/source/public/drm/drmdozbx14.mf + RELOC/fonts/source/public/drm/drmdozbx17.mf + RELOC/fonts/source/public/drm/drmdozbx24.mf + RELOC/fonts/source/public/drm/drmdozbx6.mf + RELOC/fonts/source/public/drm/drmdozbx7.mf + RELOC/fonts/source/public/drm/drmdozbx8.mf + RELOC/fonts/source/public/drm/drmdozbx9.mf + RELOC/fonts/source/public/drm/drmdozdigs.mf + RELOC/fonts/source/public/drm/drmdozit10.mf + RELOC/fonts/source/public/drm/drmdozit11.mf + RELOC/fonts/source/public/drm/drmdozit12.mf + RELOC/fonts/source/public/drm/drmdozit14.mf + RELOC/fonts/source/public/drm/drmdozit17.mf + RELOC/fonts/source/public/drm/drmdozit24.mf + RELOC/fonts/source/public/drm/drmdozit6.mf + RELOC/fonts/source/public/drm/drmdozit7.mf + RELOC/fonts/source/public/drm/drmdozit8.mf + RELOC/fonts/source/public/drm/drmdozit9.mf + RELOC/fonts/source/public/drm/drmdozitbx10.mf + RELOC/fonts/source/public/drm/drmdozitbx11.mf + RELOC/fonts/source/public/drm/drmdozitbx12.mf + RELOC/fonts/source/public/drm/drmdozitbx14.mf + RELOC/fonts/source/public/drm/drmdozitbx17.mf + RELOC/fonts/source/public/drm/drmdozitbx24.mf + RELOC/fonts/source/public/drm/drmdozitbx6.mf + RELOC/fonts/source/public/drm/drmdozitbx7.mf + RELOC/fonts/source/public/drm/drmdozitbx8.mf + RELOC/fonts/source/public/drm/drmdozitbx9.mf + RELOC/fonts/source/public/drm/drmdozitdigs.mf + RELOC/fonts/source/public/drm/drmdozitsc10.mf + RELOC/fonts/source/public/drm/drmdozitsc11.mf + RELOC/fonts/source/public/drm/drmdozitsc12.mf + RELOC/fonts/source/public/drm/drmdozitsc14.mf + RELOC/fonts/source/public/drm/drmdozitsc17.mf + RELOC/fonts/source/public/drm/drmdozitsc24.mf + RELOC/fonts/source/public/drm/drmdozitsc6.mf + RELOC/fonts/source/public/drm/drmdozitsc7.mf + RELOC/fonts/source/public/drm/drmdozitsc8.mf + RELOC/fonts/source/public/drm/drmdozitsc9.mf + RELOC/fonts/source/public/drm/drmdozittc10.mf + RELOC/fonts/source/public/drm/drmdozittc11.mf + RELOC/fonts/source/public/drm/drmdozittc12.mf + RELOC/fonts/source/public/drm/drmdozittc14.mf + RELOC/fonts/source/public/drm/drmdozittc17.mf + RELOC/fonts/source/public/drm/drmdozittc24.mf + RELOC/fonts/source/public/drm/drmdozittc6.mf + RELOC/fonts/source/public/drm/drmdozittc7.mf + RELOC/fonts/source/public/drm/drmdozittc8.mf + RELOC/fonts/source/public/drm/drmdozittc9.mf + RELOC/fonts/source/public/drm/drmdozl10.mf + RELOC/fonts/source/public/drm/drmdozl11.mf + RELOC/fonts/source/public/drm/drmdozl12.mf + RELOC/fonts/source/public/drm/drmdozl14.mf + RELOC/fonts/source/public/drm/drmdozl17.mf + RELOC/fonts/source/public/drm/drmdozl24.mf + RELOC/fonts/source/public/drm/drmdozl6.mf + RELOC/fonts/source/public/drm/drmdozl7.mf + RELOC/fonts/source/public/drm/drmdozl8.mf + RELOC/fonts/source/public/drm/drmdozl9.mf + RELOC/fonts/source/public/drm/drmdozsc10.mf + RELOC/fonts/source/public/drm/drmdozsc11.mf + RELOC/fonts/source/public/drm/drmdozsc12.mf + RELOC/fonts/source/public/drm/drmdozsc14.mf + RELOC/fonts/source/public/drm/drmdozsc17.mf + RELOC/fonts/source/public/drm/drmdozsc24.mf + RELOC/fonts/source/public/drm/drmdozsc6.mf + RELOC/fonts/source/public/drm/drmdozsc7.mf + RELOC/fonts/source/public/drm/drmdozsc8.mf + RELOC/fonts/source/public/drm/drmdozsc9.mf + RELOC/fonts/source/public/drm/drmdozscbx10.mf + RELOC/fonts/source/public/drm/drmdozscbx11.mf + RELOC/fonts/source/public/drm/drmdozscbx12.mf + RELOC/fonts/source/public/drm/drmdozscbx14.mf + RELOC/fonts/source/public/drm/drmdozscbx17.mf + RELOC/fonts/source/public/drm/drmdozscbx24.mf + RELOC/fonts/source/public/drm/drmdozscbx6.mf + RELOC/fonts/source/public/drm/drmdozscbx7.mf + RELOC/fonts/source/public/drm/drmdozscbx8.mf + RELOC/fonts/source/public/drm/drmdozscbx9.mf + RELOC/fonts/source/public/drm/drmdozscdigs.mf + RELOC/fonts/source/public/drm/drmdozsl10.mf + RELOC/fonts/source/public/drm/drmdozsl11.mf + RELOC/fonts/source/public/drm/drmdozsl12.mf + RELOC/fonts/source/public/drm/drmdozsl14.mf + RELOC/fonts/source/public/drm/drmdozsl17.mf + RELOC/fonts/source/public/drm/drmdozsl24.mf + RELOC/fonts/source/public/drm/drmdozsl6.mf + RELOC/fonts/source/public/drm/drmdozsl7.mf + RELOC/fonts/source/public/drm/drmdozsl8.mf + RELOC/fonts/source/public/drm/drmdozsl9.mf + RELOC/fonts/source/public/drm/drmdoztc10.mf + RELOC/fonts/source/public/drm/drmdoztc11.mf + RELOC/fonts/source/public/drm/drmdoztc12.mf + RELOC/fonts/source/public/drm/drmdoztc14.mf + RELOC/fonts/source/public/drm/drmdoztc17.mf + RELOC/fonts/source/public/drm/drmdoztc24.mf + RELOC/fonts/source/public/drm/drmdoztc6.mf + RELOC/fonts/source/public/drm/drmdoztc7.mf + RELOC/fonts/source/public/drm/drmdoztc8.mf + RELOC/fonts/source/public/drm/drmdoztc9.mf + RELOC/fonts/source/public/drm/drmdoztcbx10.mf + RELOC/fonts/source/public/drm/drmdoztcbx11.mf + RELOC/fonts/source/public/drm/drmdoztcbx12.mf + RELOC/fonts/source/public/drm/drmdoztcbx14.mf + RELOC/fonts/source/public/drm/drmdoztcbx17.mf + RELOC/fonts/source/public/drm/drmdoztcbx24.mf + RELOC/fonts/source/public/drm/drmdoztcbx6.mf + RELOC/fonts/source/public/drm/drmdoztcbx7.mf + RELOC/fonts/source/public/drm/drmdoztcbx8.mf + RELOC/fonts/source/public/drm/drmdoztcbx9.mf + RELOC/fonts/source/public/drm/drmdoztcdigs.mf + RELOC/fonts/source/public/drm/drmdozui10.mf + RELOC/fonts/source/public/drm/drmdozui11.mf + RELOC/fonts/source/public/drm/drmdozui12.mf + RELOC/fonts/source/public/drm/drmdozui14.mf + RELOC/fonts/source/public/drm/drmdozui17.mf + RELOC/fonts/source/public/drm/drmdozui24.mf + RELOC/fonts/source/public/drm/drmdozui6.mf + RELOC/fonts/source/public/drm/drmdozui7.mf + RELOC/fonts/source/public/drm/drmdozui8.mf + RELOC/fonts/source/public/drm/drmdozui9.mf + RELOC/fonts/source/public/drm/drmdozuibx10.mf + RELOC/fonts/source/public/drm/drmdozuibx11.mf + RELOC/fonts/source/public/drm/drmdozuibx12.mf + RELOC/fonts/source/public/drm/drmdozuibx14.mf + RELOC/fonts/source/public/drm/drmdozuibx17.mf + RELOC/fonts/source/public/drm/drmdozuibx24.mf + RELOC/fonts/source/public/drm/drmdozuibx6.mf + RELOC/fonts/source/public/drm/drmdozuibx7.mf + RELOC/fonts/source/public/drm/drmdozuibx8.mf + RELOC/fonts/source/public/drm/drmdozuibx9.mf + RELOC/fonts/source/public/drm/drmfigs10.mf + RELOC/fonts/source/public/drm/drmfigs11.mf + RELOC/fonts/source/public/drm/drmfigs12.mf + RELOC/fonts/source/public/drm/drmfigs14.mf + RELOC/fonts/source/public/drm/drmfigs17.mf + RELOC/fonts/source/public/drm/drmfigs24.mf + RELOC/fonts/source/public/drm/drmfigs6.mf + RELOC/fonts/source/public/drm/drmfigs7.mf + RELOC/fonts/source/public/drm/drmfigs8.mf + RELOC/fonts/source/public/drm/drmfigs9.mf + RELOC/fonts/source/public/drm/drmgrk10.mf + RELOC/fonts/source/public/drm/drmgrkacc.mf + RELOC/fonts/source/public/drm/drmgrkacclet.mf + RELOC/fonts/source/public/drm/drmgrkcap.mf + RELOC/fonts/source/public/drm/drmgrkligs.mf + RELOC/fonts/source/public/drm/drmgrklow.mf + RELOC/fonts/source/public/drm/drmgrkpunct.mf + RELOC/fonts/source/public/drm/drmgrkup.mf + RELOC/fonts/source/public/drm/drminf10.mf + RELOC/fonts/source/public/drm/drminf11.mf + RELOC/fonts/source/public/drm/drminf12.mf + RELOC/fonts/source/public/drm/drminf14.mf + RELOC/fonts/source/public/drm/drminf17.mf + RELOC/fonts/source/public/drm/drminf24.mf + RELOC/fonts/source/public/drm/drminf6.mf + RELOC/fonts/source/public/drm/drminf7.mf + RELOC/fonts/source/public/drm/drminf8.mf + RELOC/fonts/source/public/drm/drminf9.mf + RELOC/fonts/source/public/drm/drminffigs.mf + RELOC/fonts/source/public/drm/drmit10.mf + RELOC/fonts/source/public/drm/drmit11.mf + RELOC/fonts/source/public/drm/drmit12.mf + RELOC/fonts/source/public/drm/drmit14.mf + RELOC/fonts/source/public/drm/drmit17.mf + RELOC/fonts/source/public/drm/drmit24.mf + RELOC/fonts/source/public/drm/drmit6.mf + RELOC/fonts/source/public/drm/drmit7.mf + RELOC/fonts/source/public/drm/drmit8.mf + RELOC/fonts/source/public/drm/drmit9.mf + RELOC/fonts/source/public/drm/drmitacclet.mf + RELOC/fonts/source/public/drm/drmitbx10.mf + RELOC/fonts/source/public/drm/drmitbx11.mf + RELOC/fonts/source/public/drm/drmitbx12.mf + RELOC/fonts/source/public/drm/drmitbx14.mf + RELOC/fonts/source/public/drm/drmitbx17.mf + RELOC/fonts/source/public/drm/drmitbx24.mf + RELOC/fonts/source/public/drm/drmitbx6.mf + RELOC/fonts/source/public/drm/drmitbx7.mf + RELOC/fonts/source/public/drm/drmitbx8.mf + RELOC/fonts/source/public/drm/drmitbx9.mf + RELOC/fonts/source/public/drm/drmitcap.mf + RELOC/fonts/source/public/drm/drmitdigs.mf + RELOC/fonts/source/public/drm/drmitligs.mf + RELOC/fonts/source/public/drm/drmitlow.mf + RELOC/fonts/source/public/drm/drmitoldstydigs.mf + RELOC/fonts/source/public/drm/drmitpunct.mf + RELOC/fonts/source/public/drm/drmitsc10.mf + RELOC/fonts/source/public/drm/drmitsc11.mf + RELOC/fonts/source/public/drm/drmitsc12.mf + RELOC/fonts/source/public/drm/drmitsc14.mf + RELOC/fonts/source/public/drm/drmitsc17.mf + RELOC/fonts/source/public/drm/drmitsc24.mf + RELOC/fonts/source/public/drm/drmitsc6.mf + RELOC/fonts/source/public/drm/drmitsc7.mf + RELOC/fonts/source/public/drm/drmitsc8.mf + RELOC/fonts/source/public/drm/drmitsc9.mf + RELOC/fonts/source/public/drm/drmittc10.mf + RELOC/fonts/source/public/drm/drmittc11.mf + RELOC/fonts/source/public/drm/drmittc12.mf + RELOC/fonts/source/public/drm/drmittc14.mf + RELOC/fonts/source/public/drm/drmittc17.mf + RELOC/fonts/source/public/drm/drmittc24.mf + RELOC/fonts/source/public/drm/drmittc6.mf + RELOC/fonts/source/public/drm/drmittc7.mf + RELOC/fonts/source/public/drm/drmittc8.mf + RELOC/fonts/source/public/drm/drmittc9.mf + RELOC/fonts/source/public/drm/drml10.mf + RELOC/fonts/source/public/drm/drml11.mf + RELOC/fonts/source/public/drm/drml12.mf + RELOC/fonts/source/public/drm/drml14.mf + RELOC/fonts/source/public/drm/drml17.mf + RELOC/fonts/source/public/drm/drml24.mf + RELOC/fonts/source/public/drm/drml6.mf + RELOC/fonts/source/public/drm/drml7.mf + RELOC/fonts/source/public/drm/drml8.mf + RELOC/fonts/source/public/drm/drml9.mf + RELOC/fonts/source/public/drm/drmligs.mf + RELOC/fonts/source/public/drm/drmlow.mf + RELOC/fonts/source/public/drm/drmlowmac.mf + RELOC/fonts/source/public/drm/drmmatharrows.mf + RELOC/fonts/source/public/drm/drmmathcal.mf + RELOC/fonts/source/public/drm/drmmathcursell.mf + RELOC/fonts/source/public/drm/drmmathfrac.mf + RELOC/fonts/source/public/drm/drmmathgrklow.mf + RELOC/fonts/source/public/drm/drmmathgrkup.mf + RELOC/fonts/source/public/drm/drmmathheb.mf + RELOC/fonts/source/public/drm/drmmathoms.mf + RELOC/fonts/source/public/drm/drmmathomx.mf + RELOC/fonts/source/public/drm/drmmathsym.mf + RELOC/fonts/source/public/drm/drmmi10.mf + RELOC/fonts/source/public/drm/drmoe.mf + RELOC/fonts/source/public/drm/drmoldstyfracs.mf + RELOC/fonts/source/public/drm/drmoldstynums.mf + RELOC/fonts/source/public/drm/drmomx10.mf + RELOC/fonts/source/public/drm/drmornaments.mf + RELOC/fonts/source/public/drm/drmornbars.mf + RELOC/fonts/source/public/drm/drmornfont.mf + RELOC/fonts/source/public/drm/drmorns.mf + RELOC/fonts/source/public/drm/drmpunct.mf + RELOC/fonts/source/public/drm/drmromannums.mf + RELOC/fonts/source/public/drm/drmsc10.mf + RELOC/fonts/source/public/drm/drmsc11.mf + RELOC/fonts/source/public/drm/drmsc12.mf + RELOC/fonts/source/public/drm/drmsc14.mf + RELOC/fonts/source/public/drm/drmsc17.mf + RELOC/fonts/source/public/drm/drmsc24.mf + RELOC/fonts/source/public/drm/drmsc6.mf + RELOC/fonts/source/public/drm/drmsc7.mf + RELOC/fonts/source/public/drm/drmsc8.mf + RELOC/fonts/source/public/drm/drmsc9.mf + RELOC/fonts/source/public/drm/drmscacclet.mf + RELOC/fonts/source/public/drm/drmscap.mf + RELOC/fonts/source/public/drm/drmscbx10.mf + RELOC/fonts/source/public/drm/drmscbx11.mf + RELOC/fonts/source/public/drm/drmscbx12.mf + RELOC/fonts/source/public/drm/drmscbx14.mf + RELOC/fonts/source/public/drm/drmscbx17.mf + RELOC/fonts/source/public/drm/drmscbx24.mf + RELOC/fonts/source/public/drm/drmscbx6.mf + RELOC/fonts/source/public/drm/drmscbx7.mf + RELOC/fonts/source/public/drm/drmscbx8.mf + RELOC/fonts/source/public/drm/drmscbx9.mf + RELOC/fonts/source/public/drm/drmscdigs.mf + RELOC/fonts/source/public/drm/drmscdol.mf + RELOC/fonts/source/public/drm/drmscligs.mf + RELOC/fonts/source/public/drm/drmsl10.mf + RELOC/fonts/source/public/drm/drmsl11.mf + RELOC/fonts/source/public/drm/drmsl12.mf + RELOC/fonts/source/public/drm/drmsl14.mf + RELOC/fonts/source/public/drm/drmsl17.mf + RELOC/fonts/source/public/drm/drmsl24.mf + RELOC/fonts/source/public/drm/drmsl6.mf + RELOC/fonts/source/public/drm/drmsl7.mf + RELOC/fonts/source/public/drm/drmsl8.mf + RELOC/fonts/source/public/drm/drmsl9.mf + RELOC/fonts/source/public/drm/drmsupfigs.mf + RELOC/fonts/source/public/drm/drmsy10.mf + RELOC/fonts/source/public/drm/drmsym10.mf + RELOC/fonts/source/public/drm/drmsym11.mf + RELOC/fonts/source/public/drm/drmsym12.mf + RELOC/fonts/source/public/drm/drmsym14.mf + RELOC/fonts/source/public/drm/drmsym17.mf + RELOC/fonts/source/public/drm/drmsym24.mf + RELOC/fonts/source/public/drm/drmsym7.mf + RELOC/fonts/source/public/drm/drmsym8.mf + RELOC/fonts/source/public/drm/drmsym9.mf + RELOC/fonts/source/public/drm/drmsymbols.mf + RELOC/fonts/source/public/drm/drmtc10.mf + RELOC/fonts/source/public/drm/drmtc11.mf + RELOC/fonts/source/public/drm/drmtc12.mf + RELOC/fonts/source/public/drm/drmtc14.mf + RELOC/fonts/source/public/drm/drmtc17.mf + RELOC/fonts/source/public/drm/drmtc24.mf + RELOC/fonts/source/public/drm/drmtc6.mf + RELOC/fonts/source/public/drm/drmtc7.mf + RELOC/fonts/source/public/drm/drmtc8.mf + RELOC/fonts/source/public/drm/drmtc9.mf + RELOC/fonts/source/public/drm/drmtcacclet.mf + RELOC/fonts/source/public/drm/drmtcap.mf + RELOC/fonts/source/public/drm/drmtcbx10.mf + RELOC/fonts/source/public/drm/drmtcbx11.mf + RELOC/fonts/source/public/drm/drmtcbx12.mf + RELOC/fonts/source/public/drm/drmtcbx14.mf + RELOC/fonts/source/public/drm/drmtcbx17.mf + RELOC/fonts/source/public/drm/drmtcbx24.mf + RELOC/fonts/source/public/drm/drmtcbx6.mf + RELOC/fonts/source/public/drm/drmtcbx7.mf + RELOC/fonts/source/public/drm/drmtcbx8.mf + RELOC/fonts/source/public/drm/drmtcbx9.mf + RELOC/fonts/source/public/drm/drmtcdigs.mf + RELOC/fonts/source/public/drm/drmtcdol.mf + RELOC/fonts/source/public/drm/drmtcligs.mf + RELOC/fonts/source/public/drm/drmttcap.mf + RELOC/fonts/source/public/drm/drmui10.mf + RELOC/fonts/source/public/drm/drmui11.mf + RELOC/fonts/source/public/drm/drmui12.mf + RELOC/fonts/source/public/drm/drmui14.mf + RELOC/fonts/source/public/drm/drmui17.mf + RELOC/fonts/source/public/drm/drmui24.mf + RELOC/fonts/source/public/drm/drmui6.mf + RELOC/fonts/source/public/drm/drmui7.mf + RELOC/fonts/source/public/drm/drmui8.mf + RELOC/fonts/source/public/drm/drmui9.mf + RELOC/fonts/source/public/drm/drmuibx10.mf + RELOC/fonts/source/public/drm/drmuibx11.mf + RELOC/fonts/source/public/drm/drmuibx12.mf + RELOC/fonts/source/public/drm/drmuibx14.mf + RELOC/fonts/source/public/drm/drmuibx17.mf + RELOC/fonts/source/public/drm/drmuibx24.mf + RELOC/fonts/source/public/drm/drmuibx6.mf + RELOC/fonts/source/public/drm/drmuibx7.mf + RELOC/fonts/source/public/drm/drmuibx8.mf + RELOC/fonts/source/public/drm/drmuibx9.mf + RELOC/fonts/source/public/drm/drmuiligs.mf + RELOC/fonts/tfm/public/drm/drm10.tfm + RELOC/fonts/tfm/public/drm/drm100.tfm + RELOC/fonts/tfm/public/drm/drm11.tfm + RELOC/fonts/tfm/public/drm/drm12.tfm + RELOC/fonts/tfm/public/drm/drm14.tfm + RELOC/fonts/tfm/public/drm/drm17.tfm + RELOC/fonts/tfm/public/drm/drm24.tfm + RELOC/fonts/tfm/public/drm/drm6.tfm + RELOC/fonts/tfm/public/drm/drm7.tfm + RELOC/fonts/tfm/public/drm/drm8.tfm + RELOC/fonts/tfm/public/drm/drm9.tfm + RELOC/fonts/tfm/public/drm/drmb10.tfm + RELOC/fonts/tfm/public/drm/drmb11.tfm + RELOC/fonts/tfm/public/drm/drmb12.tfm + RELOC/fonts/tfm/public/drm/drmb14.tfm + RELOC/fonts/tfm/public/drm/drmb17.tfm + RELOC/fonts/tfm/public/drm/drmb24.tfm + RELOC/fonts/tfm/public/drm/drmb6.tfm + RELOC/fonts/tfm/public/drm/drmb7.tfm + RELOC/fonts/tfm/public/drm/drmb8.tfm + RELOC/fonts/tfm/public/drm/drmb9.tfm + RELOC/fonts/tfm/public/drm/drmbs10.tfm + RELOC/fonts/tfm/public/drm/drmbx10.tfm + RELOC/fonts/tfm/public/drm/drmbx11.tfm + RELOC/fonts/tfm/public/drm/drmbx12.tfm + RELOC/fonts/tfm/public/drm/drmbx14.tfm + RELOC/fonts/tfm/public/drm/drmbx17.tfm + RELOC/fonts/tfm/public/drm/drmbx24.tfm + RELOC/fonts/tfm/public/drm/drmbx6.tfm + RELOC/fonts/tfm/public/drm/drmbx7.tfm + RELOC/fonts/tfm/public/drm/drmbx8.tfm + RELOC/fonts/tfm/public/drm/drmbx9.tfm + RELOC/fonts/tfm/public/drm/drmdoz10.tfm + RELOC/fonts/tfm/public/drm/drmdoz11.tfm + RELOC/fonts/tfm/public/drm/drmdoz12.tfm + RELOC/fonts/tfm/public/drm/drmdoz14.tfm + RELOC/fonts/tfm/public/drm/drmdoz17.tfm + RELOC/fonts/tfm/public/drm/drmdoz24.tfm + RELOC/fonts/tfm/public/drm/drmdoz6.tfm + RELOC/fonts/tfm/public/drm/drmdoz7.tfm + RELOC/fonts/tfm/public/drm/drmdoz8.tfm + RELOC/fonts/tfm/public/drm/drmdoz9.tfm + RELOC/fonts/tfm/public/drm/drmdozb10.tfm + RELOC/fonts/tfm/public/drm/drmdozb11.tfm + RELOC/fonts/tfm/public/drm/drmdozb12.tfm + RELOC/fonts/tfm/public/drm/drmdozb14.tfm + RELOC/fonts/tfm/public/drm/drmdozb17.tfm + RELOC/fonts/tfm/public/drm/drmdozb24.tfm + RELOC/fonts/tfm/public/drm/drmdozb6.tfm + RELOC/fonts/tfm/public/drm/drmdozb7.tfm + RELOC/fonts/tfm/public/drm/drmdozb8.tfm + RELOC/fonts/tfm/public/drm/drmdozb9.tfm + RELOC/fonts/tfm/public/drm/drmdozbx10.tfm + RELOC/fonts/tfm/public/drm/drmdozbx11.tfm + RELOC/fonts/tfm/public/drm/drmdozbx12.tfm + RELOC/fonts/tfm/public/drm/drmdozbx14.tfm + RELOC/fonts/tfm/public/drm/drmdozbx17.tfm + RELOC/fonts/tfm/public/drm/drmdozbx24.tfm + RELOC/fonts/tfm/public/drm/drmdozbx6.tfm + RELOC/fonts/tfm/public/drm/drmdozbx7.tfm + RELOC/fonts/tfm/public/drm/drmdozbx8.tfm + RELOC/fonts/tfm/public/drm/drmdozbx9.tfm + RELOC/fonts/tfm/public/drm/drmdozit10.tfm + RELOC/fonts/tfm/public/drm/drmdozit11.tfm + RELOC/fonts/tfm/public/drm/drmdozit12.tfm + RELOC/fonts/tfm/public/drm/drmdozit14.tfm + RELOC/fonts/tfm/public/drm/drmdozit17.tfm + RELOC/fonts/tfm/public/drm/drmdozit24.tfm + RELOC/fonts/tfm/public/drm/drmdozit6.tfm + RELOC/fonts/tfm/public/drm/drmdozit7.tfm + RELOC/fonts/tfm/public/drm/drmdozit8.tfm + RELOC/fonts/tfm/public/drm/drmdozit9.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx10.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx11.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx12.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx14.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx17.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx24.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx6.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx7.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx8.tfm + RELOC/fonts/tfm/public/drm/drmdozitbx9.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc10.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc11.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc12.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc14.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc17.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc24.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc6.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc7.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc8.tfm + RELOC/fonts/tfm/public/drm/drmdozitsc9.tfm + RELOC/fonts/tfm/public/drm/drmdozittc10.tfm + RELOC/fonts/tfm/public/drm/drmdozittc11.tfm + RELOC/fonts/tfm/public/drm/drmdozittc12.tfm + RELOC/fonts/tfm/public/drm/drmdozittc14.tfm + RELOC/fonts/tfm/public/drm/drmdozittc17.tfm + RELOC/fonts/tfm/public/drm/drmdozittc24.tfm + RELOC/fonts/tfm/public/drm/drmdozittc6.tfm + RELOC/fonts/tfm/public/drm/drmdozittc7.tfm + RELOC/fonts/tfm/public/drm/drmdozittc8.tfm + RELOC/fonts/tfm/public/drm/drmdozittc9.tfm + RELOC/fonts/tfm/public/drm/drmdozl10.tfm + RELOC/fonts/tfm/public/drm/drmdozl11.tfm + RELOC/fonts/tfm/public/drm/drmdozl12.tfm + RELOC/fonts/tfm/public/drm/drmdozl14.tfm + RELOC/fonts/tfm/public/drm/drmdozl17.tfm + RELOC/fonts/tfm/public/drm/drmdozl24.tfm + RELOC/fonts/tfm/public/drm/drmdozl6.tfm + RELOC/fonts/tfm/public/drm/drmdozl7.tfm + RELOC/fonts/tfm/public/drm/drmdozl8.tfm + RELOC/fonts/tfm/public/drm/drmdozl9.tfm + RELOC/fonts/tfm/public/drm/drmdozsc10.tfm + RELOC/fonts/tfm/public/drm/drmdozsc11.tfm + RELOC/fonts/tfm/public/drm/drmdozsc12.tfm + RELOC/fonts/tfm/public/drm/drmdozsc14.tfm + RELOC/fonts/tfm/public/drm/drmdozsc17.tfm + RELOC/fonts/tfm/public/drm/drmdozsc24.tfm + RELOC/fonts/tfm/public/drm/drmdozsc6.tfm + RELOC/fonts/tfm/public/drm/drmdozsc7.tfm + RELOC/fonts/tfm/public/drm/drmdozsc8.tfm + RELOC/fonts/tfm/public/drm/drmdozsc9.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx10.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx11.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx12.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx14.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx17.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx24.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx6.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx7.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx8.tfm + RELOC/fonts/tfm/public/drm/drmdozscbx9.tfm + RELOC/fonts/tfm/public/drm/drmdozsl10.tfm + RELOC/fonts/tfm/public/drm/drmdozsl11.tfm + RELOC/fonts/tfm/public/drm/drmdozsl12.tfm + RELOC/fonts/tfm/public/drm/drmdozsl14.tfm + RELOC/fonts/tfm/public/drm/drmdozsl17.tfm + RELOC/fonts/tfm/public/drm/drmdozsl24.tfm + RELOC/fonts/tfm/public/drm/drmdozsl6.tfm + RELOC/fonts/tfm/public/drm/drmdozsl7.tfm + RELOC/fonts/tfm/public/drm/drmdozsl8.tfm + RELOC/fonts/tfm/public/drm/drmdozsl9.tfm + RELOC/fonts/tfm/public/drm/drmdoztc10.tfm + RELOC/fonts/tfm/public/drm/drmdoztc11.tfm + RELOC/fonts/tfm/public/drm/drmdoztc12.tfm + RELOC/fonts/tfm/public/drm/drmdoztc14.tfm + RELOC/fonts/tfm/public/drm/drmdoztc17.tfm + RELOC/fonts/tfm/public/drm/drmdoztc24.tfm + RELOC/fonts/tfm/public/drm/drmdoztc6.tfm + RELOC/fonts/tfm/public/drm/drmdoztc7.tfm + RELOC/fonts/tfm/public/drm/drmdoztc8.tfm + RELOC/fonts/tfm/public/drm/drmdoztc9.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx10.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx11.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx12.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx14.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx17.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx24.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx6.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx7.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx8.tfm + RELOC/fonts/tfm/public/drm/drmdoztcbx9.tfm + RELOC/fonts/tfm/public/drm/drmdozui10.tfm + RELOC/fonts/tfm/public/drm/drmdozui11.tfm + RELOC/fonts/tfm/public/drm/drmdozui12.tfm + RELOC/fonts/tfm/public/drm/drmdozui14.tfm + RELOC/fonts/tfm/public/drm/drmdozui17.tfm + RELOC/fonts/tfm/public/drm/drmdozui24.tfm + RELOC/fonts/tfm/public/drm/drmdozui6.tfm + RELOC/fonts/tfm/public/drm/drmdozui7.tfm + RELOC/fonts/tfm/public/drm/drmdozui8.tfm + RELOC/fonts/tfm/public/drm/drmdozui9.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx10.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx11.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx12.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx14.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx17.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx24.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx6.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx7.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx8.tfm + RELOC/fonts/tfm/public/drm/drmdozuibx9.tfm + RELOC/fonts/tfm/public/drm/drmfigs10.tfm + RELOC/fonts/tfm/public/drm/drmfigs11.tfm + RELOC/fonts/tfm/public/drm/drmfigs12.tfm + RELOC/fonts/tfm/public/drm/drmfigs14.tfm + RELOC/fonts/tfm/public/drm/drmfigs17.tfm + RELOC/fonts/tfm/public/drm/drmfigs24.tfm + RELOC/fonts/tfm/public/drm/drmfigs6.tfm + RELOC/fonts/tfm/public/drm/drmfigs7.tfm + RELOC/fonts/tfm/public/drm/drmfigs8.tfm + RELOC/fonts/tfm/public/drm/drmfigs9.tfm + RELOC/fonts/tfm/public/drm/drmgrk10.tfm + RELOC/fonts/tfm/public/drm/drminf10.tfm + RELOC/fonts/tfm/public/drm/drminf11.tfm + RELOC/fonts/tfm/public/drm/drminf12.tfm + RELOC/fonts/tfm/public/drm/drminf14.tfm + RELOC/fonts/tfm/public/drm/drminf17.tfm + RELOC/fonts/tfm/public/drm/drminf24.tfm + RELOC/fonts/tfm/public/drm/drminf6.tfm + RELOC/fonts/tfm/public/drm/drminf7.tfm + RELOC/fonts/tfm/public/drm/drminf8.tfm + RELOC/fonts/tfm/public/drm/drminf9.tfm + RELOC/fonts/tfm/public/drm/drmit10.tfm + RELOC/fonts/tfm/public/drm/drmit11.tfm + RELOC/fonts/tfm/public/drm/drmit12.tfm + RELOC/fonts/tfm/public/drm/drmit14.tfm + RELOC/fonts/tfm/public/drm/drmit17.tfm + RELOC/fonts/tfm/public/drm/drmit24.tfm + RELOC/fonts/tfm/public/drm/drmit6.tfm + RELOC/fonts/tfm/public/drm/drmit7.tfm + RELOC/fonts/tfm/public/drm/drmit8.tfm + RELOC/fonts/tfm/public/drm/drmit9.tfm + RELOC/fonts/tfm/public/drm/drmitbx10.tfm + RELOC/fonts/tfm/public/drm/drmitbx11.tfm + RELOC/fonts/tfm/public/drm/drmitbx12.tfm + RELOC/fonts/tfm/public/drm/drmitbx14.tfm + RELOC/fonts/tfm/public/drm/drmitbx17.tfm + RELOC/fonts/tfm/public/drm/drmitbx24.tfm + RELOC/fonts/tfm/public/drm/drmitbx6.tfm + RELOC/fonts/tfm/public/drm/drmitbx7.tfm + RELOC/fonts/tfm/public/drm/drmitbx8.tfm + RELOC/fonts/tfm/public/drm/drmitbx9.tfm + RELOC/fonts/tfm/public/drm/drmitsc10.tfm + RELOC/fonts/tfm/public/drm/drmitsc11.tfm + RELOC/fonts/tfm/public/drm/drmitsc12.tfm + RELOC/fonts/tfm/public/drm/drmitsc14.tfm + RELOC/fonts/tfm/public/drm/drmitsc17.tfm + RELOC/fonts/tfm/public/drm/drmitsc24.tfm + RELOC/fonts/tfm/public/drm/drmitsc6.tfm + RELOC/fonts/tfm/public/drm/drmitsc7.tfm + RELOC/fonts/tfm/public/drm/drmitsc8.tfm + RELOC/fonts/tfm/public/drm/drmitsc9.tfm + RELOC/fonts/tfm/public/drm/drmittc10.tfm + RELOC/fonts/tfm/public/drm/drmittc11.tfm + RELOC/fonts/tfm/public/drm/drmittc12.tfm + RELOC/fonts/tfm/public/drm/drmittc14.tfm + RELOC/fonts/tfm/public/drm/drmittc17.tfm + RELOC/fonts/tfm/public/drm/drmittc24.tfm + RELOC/fonts/tfm/public/drm/drmittc6.tfm + RELOC/fonts/tfm/public/drm/drmittc7.tfm + RELOC/fonts/tfm/public/drm/drmittc8.tfm + RELOC/fonts/tfm/public/drm/drmittc9.tfm + RELOC/fonts/tfm/public/drm/drml10.tfm + RELOC/fonts/tfm/public/drm/drml11.tfm + RELOC/fonts/tfm/public/drm/drml12.tfm + RELOC/fonts/tfm/public/drm/drml14.tfm + RELOC/fonts/tfm/public/drm/drml17.tfm + RELOC/fonts/tfm/public/drm/drml24.tfm + RELOC/fonts/tfm/public/drm/drml6.tfm + RELOC/fonts/tfm/public/drm/drml7.tfm + RELOC/fonts/tfm/public/drm/drml8.tfm + RELOC/fonts/tfm/public/drm/drml9.tfm + RELOC/fonts/tfm/public/drm/drmmi10.tfm + RELOC/fonts/tfm/public/drm/drmomx10.tfm + RELOC/fonts/tfm/public/drm/drmorns.tfm + RELOC/fonts/tfm/public/drm/drmsc10.tfm + RELOC/fonts/tfm/public/drm/drmsc11.tfm + RELOC/fonts/tfm/public/drm/drmsc12.tfm + RELOC/fonts/tfm/public/drm/drmsc14.tfm + RELOC/fonts/tfm/public/drm/drmsc17.tfm + RELOC/fonts/tfm/public/drm/drmsc24.tfm + RELOC/fonts/tfm/public/drm/drmsc6.tfm + RELOC/fonts/tfm/public/drm/drmsc7.tfm + RELOC/fonts/tfm/public/drm/drmsc8.tfm + RELOC/fonts/tfm/public/drm/drmsc9.tfm + RELOC/fonts/tfm/public/drm/drmscbx10.tfm + RELOC/fonts/tfm/public/drm/drmscbx11.tfm + RELOC/fonts/tfm/public/drm/drmscbx12.tfm + RELOC/fonts/tfm/public/drm/drmscbx14.tfm + RELOC/fonts/tfm/public/drm/drmscbx17.tfm + RELOC/fonts/tfm/public/drm/drmscbx24.tfm + RELOC/fonts/tfm/public/drm/drmscbx6.tfm + RELOC/fonts/tfm/public/drm/drmscbx7.tfm + RELOC/fonts/tfm/public/drm/drmscbx8.tfm + RELOC/fonts/tfm/public/drm/drmscbx9.tfm + RELOC/fonts/tfm/public/drm/drmsl10.tfm + RELOC/fonts/tfm/public/drm/drmsl11.tfm + RELOC/fonts/tfm/public/drm/drmsl12.tfm + RELOC/fonts/tfm/public/drm/drmsl14.tfm + RELOC/fonts/tfm/public/drm/drmsl17.tfm + RELOC/fonts/tfm/public/drm/drmsl24.tfm + RELOC/fonts/tfm/public/drm/drmsl6.tfm + RELOC/fonts/tfm/public/drm/drmsl7.tfm + RELOC/fonts/tfm/public/drm/drmsl8.tfm + RELOC/fonts/tfm/public/drm/drmsl9.tfm + RELOC/fonts/tfm/public/drm/drmsy10.tfm + RELOC/fonts/tfm/public/drm/drmsym10.tfm + RELOC/fonts/tfm/public/drm/drmsym11.tfm + RELOC/fonts/tfm/public/drm/drmsym12.tfm + RELOC/fonts/tfm/public/drm/drmsym14.tfm + RELOC/fonts/tfm/public/drm/drmsym17.tfm + RELOC/fonts/tfm/public/drm/drmsym24.tfm + RELOC/fonts/tfm/public/drm/drmsym7.tfm + RELOC/fonts/tfm/public/drm/drmsym8.tfm + RELOC/fonts/tfm/public/drm/drmsym9.tfm + RELOC/fonts/tfm/public/drm/drmtc10.tfm + RELOC/fonts/tfm/public/drm/drmtc11.tfm + RELOC/fonts/tfm/public/drm/drmtc12.tfm + RELOC/fonts/tfm/public/drm/drmtc14.tfm + RELOC/fonts/tfm/public/drm/drmtc17.tfm + RELOC/fonts/tfm/public/drm/drmtc24.tfm + RELOC/fonts/tfm/public/drm/drmtc6.tfm + RELOC/fonts/tfm/public/drm/drmtc7.tfm + RELOC/fonts/tfm/public/drm/drmtc8.tfm + RELOC/fonts/tfm/public/drm/drmtc9.tfm + RELOC/fonts/tfm/public/drm/drmtcbx10.tfm + RELOC/fonts/tfm/public/drm/drmtcbx11.tfm + RELOC/fonts/tfm/public/drm/drmtcbx12.tfm + RELOC/fonts/tfm/public/drm/drmtcbx14.tfm + RELOC/fonts/tfm/public/drm/drmtcbx17.tfm + RELOC/fonts/tfm/public/drm/drmtcbx24.tfm + RELOC/fonts/tfm/public/drm/drmtcbx6.tfm + RELOC/fonts/tfm/public/drm/drmtcbx7.tfm + RELOC/fonts/tfm/public/drm/drmtcbx8.tfm + RELOC/fonts/tfm/public/drm/drmtcbx9.tfm + RELOC/fonts/tfm/public/drm/drmui10.tfm + RELOC/fonts/tfm/public/drm/drmui11.tfm + RELOC/fonts/tfm/public/drm/drmui12.tfm + RELOC/fonts/tfm/public/drm/drmui14.tfm + RELOC/fonts/tfm/public/drm/drmui17.tfm + RELOC/fonts/tfm/public/drm/drmui24.tfm + RELOC/fonts/tfm/public/drm/drmui6.tfm + RELOC/fonts/tfm/public/drm/drmui7.tfm + RELOC/fonts/tfm/public/drm/drmui8.tfm + RELOC/fonts/tfm/public/drm/drmui9.tfm + RELOC/fonts/tfm/public/drm/drmuibx10.tfm + RELOC/fonts/tfm/public/drm/drmuibx11.tfm + RELOC/fonts/tfm/public/drm/drmuibx12.tfm + RELOC/fonts/tfm/public/drm/drmuibx14.tfm + RELOC/fonts/tfm/public/drm/drmuibx17.tfm + RELOC/fonts/tfm/public/drm/drmuibx24.tfm + RELOC/fonts/tfm/public/drm/drmuibx6.tfm + RELOC/fonts/tfm/public/drm/drmuibx7.tfm + RELOC/fonts/tfm/public/drm/drmuibx8.tfm + RELOC/fonts/tfm/public/drm/drmuibx9.tfm + RELOC/fonts/type1/public/drm/drm10.pfb + RELOC/fonts/type1/public/drm/drm11.pfb + RELOC/fonts/type1/public/drm/drm12.pfb + RELOC/fonts/type1/public/drm/drm14.pfb + RELOC/fonts/type1/public/drm/drm17.pfb + RELOC/fonts/type1/public/drm/drm24.pfb + RELOC/fonts/type1/public/drm/drm6.pfb + RELOC/fonts/type1/public/drm/drm7.pfb + RELOC/fonts/type1/public/drm/drm8.pfb + RELOC/fonts/type1/public/drm/drm9.pfb + RELOC/fonts/type1/public/drm/drmb10.pfb + RELOC/fonts/type1/public/drm/drmb11.pfb + RELOC/fonts/type1/public/drm/drmb12.pfb + RELOC/fonts/type1/public/drm/drmb14.pfb + RELOC/fonts/type1/public/drm/drmb17.pfb + RELOC/fonts/type1/public/drm/drmb24.pfb + RELOC/fonts/type1/public/drm/drmb6.pfb + RELOC/fonts/type1/public/drm/drmb7.pfb + RELOC/fonts/type1/public/drm/drmb8.pfb + RELOC/fonts/type1/public/drm/drmb9.pfb + RELOC/fonts/type1/public/drm/drmbx10.pfb + RELOC/fonts/type1/public/drm/drmbx11.pfb + RELOC/fonts/type1/public/drm/drmbx12.pfb + RELOC/fonts/type1/public/drm/drmbx14.pfb + RELOC/fonts/type1/public/drm/drmbx17.pfb + RELOC/fonts/type1/public/drm/drmbx24.pfb + RELOC/fonts/type1/public/drm/drmbx6.pfb + RELOC/fonts/type1/public/drm/drmbx7.pfb + RELOC/fonts/type1/public/drm/drmbx8.pfb + RELOC/fonts/type1/public/drm/drmbx9.pfb + RELOC/fonts/type1/public/drm/drmdoz10.pfb + RELOC/fonts/type1/public/drm/drmdoz11.pfb + RELOC/fonts/type1/public/drm/drmdoz12.pfb + RELOC/fonts/type1/public/drm/drmdoz14.pfb + RELOC/fonts/type1/public/drm/drmdoz17.pfb + RELOC/fonts/type1/public/drm/drmdoz24.pfb + RELOC/fonts/type1/public/drm/drmdoz6.pfb + RELOC/fonts/type1/public/drm/drmdoz7.pfb + RELOC/fonts/type1/public/drm/drmdoz8.pfb + RELOC/fonts/type1/public/drm/drmdoz9.pfb + RELOC/fonts/type1/public/drm/drmdozb10.pfb + RELOC/fonts/type1/public/drm/drmdozb11.pfb + RELOC/fonts/type1/public/drm/drmdozb12.pfb + RELOC/fonts/type1/public/drm/drmdozb14.pfb + RELOC/fonts/type1/public/drm/drmdozb17.pfb + RELOC/fonts/type1/public/drm/drmdozb24.pfb + RELOC/fonts/type1/public/drm/drmdozb6.pfb + RELOC/fonts/type1/public/drm/drmdozb7.pfb + RELOC/fonts/type1/public/drm/drmdozb8.pfb + RELOC/fonts/type1/public/drm/drmdozb9.pfb + RELOC/fonts/type1/public/drm/drmdozbx10.pfb + RELOC/fonts/type1/public/drm/drmdozbx11.pfb + RELOC/fonts/type1/public/drm/drmdozbx12.pfb + RELOC/fonts/type1/public/drm/drmdozbx14.pfb + RELOC/fonts/type1/public/drm/drmdozbx17.pfb + RELOC/fonts/type1/public/drm/drmdozbx24.pfb + RELOC/fonts/type1/public/drm/drmdozbx6.pfb + RELOC/fonts/type1/public/drm/drmdozbx7.pfb + RELOC/fonts/type1/public/drm/drmdozbx8.pfb + RELOC/fonts/type1/public/drm/drmdozbx9.pfb + RELOC/fonts/type1/public/drm/drmdozit10.pfb + RELOC/fonts/type1/public/drm/drmdozit11.pfb + RELOC/fonts/type1/public/drm/drmdozit12.pfb + RELOC/fonts/type1/public/drm/drmdozit14.pfb + RELOC/fonts/type1/public/drm/drmdozit17.pfb + RELOC/fonts/type1/public/drm/drmdozit24.pfb + RELOC/fonts/type1/public/drm/drmdozit6.pfb + RELOC/fonts/type1/public/drm/drmdozit7.pfb + RELOC/fonts/type1/public/drm/drmdozit8.pfb + RELOC/fonts/type1/public/drm/drmdozit9.pfb + RELOC/fonts/type1/public/drm/drmdozitbx10.pfb + RELOC/fonts/type1/public/drm/drmdozitbx11.pfb + RELOC/fonts/type1/public/drm/drmdozitbx12.pfb + RELOC/fonts/type1/public/drm/drmdozitbx14.pfb + RELOC/fonts/type1/public/drm/drmdozitbx17.pfb + RELOC/fonts/type1/public/drm/drmdozitbx24.pfb + RELOC/fonts/type1/public/drm/drmdozitbx6.pfb + RELOC/fonts/type1/public/drm/drmdozitbx7.pfb + RELOC/fonts/type1/public/drm/drmdozitbx8.pfb + RELOC/fonts/type1/public/drm/drmdozitbx9.pfb + RELOC/fonts/type1/public/drm/drmdozitsc10.pfb + RELOC/fonts/type1/public/drm/drmdozitsc11.pfb + RELOC/fonts/type1/public/drm/drmdozitsc12.pfb + RELOC/fonts/type1/public/drm/drmdozitsc14.pfb + RELOC/fonts/type1/public/drm/drmdozitsc17.pfb + RELOC/fonts/type1/public/drm/drmdozitsc24.pfb + RELOC/fonts/type1/public/drm/drmdozitsc6.pfb + RELOC/fonts/type1/public/drm/drmdozitsc7.pfb + RELOC/fonts/type1/public/drm/drmdozitsc8.pfb + RELOC/fonts/type1/public/drm/drmdozitsc9.pfb + RELOC/fonts/type1/public/drm/drmdozittc10.pfb + RELOC/fonts/type1/public/drm/drmdozittc11.pfb + RELOC/fonts/type1/public/drm/drmdozittc12.pfb + RELOC/fonts/type1/public/drm/drmdozittc14.pfb + RELOC/fonts/type1/public/drm/drmdozittc17.pfb + RELOC/fonts/type1/public/drm/drmdozittc24.pfb + RELOC/fonts/type1/public/drm/drmdozittc6.pfb + RELOC/fonts/type1/public/drm/drmdozittc7.pfb + RELOC/fonts/type1/public/drm/drmdozittc8.pfb + RELOC/fonts/type1/public/drm/drmdozittc9.pfb + RELOC/fonts/type1/public/drm/drmdozl10.pfb + RELOC/fonts/type1/public/drm/drmdozl11.pfb + RELOC/fonts/type1/public/drm/drmdozl12.pfb + RELOC/fonts/type1/public/drm/drmdozl14.pfb + RELOC/fonts/type1/public/drm/drmdozl17.pfb + RELOC/fonts/type1/public/drm/drmdozl24.pfb + RELOC/fonts/type1/public/drm/drmdozl6.pfb + RELOC/fonts/type1/public/drm/drmdozl7.pfb + RELOC/fonts/type1/public/drm/drmdozl8.pfb + RELOC/fonts/type1/public/drm/drmdozl9.pfb + RELOC/fonts/type1/public/drm/drmdozsc10.pfb + RELOC/fonts/type1/public/drm/drmdozsc11.pfb + RELOC/fonts/type1/public/drm/drmdozsc12.pfb + RELOC/fonts/type1/public/drm/drmdozsc14.pfb + RELOC/fonts/type1/public/drm/drmdozsc17.pfb + RELOC/fonts/type1/public/drm/drmdozsc24.pfb + RELOC/fonts/type1/public/drm/drmdozsc6.pfb + RELOC/fonts/type1/public/drm/drmdozsc7.pfb + RELOC/fonts/type1/public/drm/drmdozsc8.pfb + RELOC/fonts/type1/public/drm/drmdozsc9.pfb + RELOC/fonts/type1/public/drm/drmdozscbx10.pfb + RELOC/fonts/type1/public/drm/drmdozscbx11.pfb + RELOC/fonts/type1/public/drm/drmdozscbx12.pfb + RELOC/fonts/type1/public/drm/drmdozscbx14.pfb + RELOC/fonts/type1/public/drm/drmdozscbx17.pfb + RELOC/fonts/type1/public/drm/drmdozscbx24.pfb + RELOC/fonts/type1/public/drm/drmdozscbx6.pfb + RELOC/fonts/type1/public/drm/drmdozscbx7.pfb + RELOC/fonts/type1/public/drm/drmdozscbx8.pfb + RELOC/fonts/type1/public/drm/drmdozscbx9.pfb + RELOC/fonts/type1/public/drm/drmdozsl10.pfb + RELOC/fonts/type1/public/drm/drmdozsl11.pfb + RELOC/fonts/type1/public/drm/drmdozsl12.pfb + RELOC/fonts/type1/public/drm/drmdozsl14.pfb + RELOC/fonts/type1/public/drm/drmdozsl17.pfb + RELOC/fonts/type1/public/drm/drmdozsl24.pfb + RELOC/fonts/type1/public/drm/drmdozsl6.pfb + RELOC/fonts/type1/public/drm/drmdozsl7.pfb + RELOC/fonts/type1/public/drm/drmdozsl8.pfb + RELOC/fonts/type1/public/drm/drmdozsl9.pfb + RELOC/fonts/type1/public/drm/drmdoztc10.pfb + RELOC/fonts/type1/public/drm/drmdoztc11.pfb + RELOC/fonts/type1/public/drm/drmdoztc12.pfb + RELOC/fonts/type1/public/drm/drmdoztc14.pfb + RELOC/fonts/type1/public/drm/drmdoztc17.pfb + RELOC/fonts/type1/public/drm/drmdoztc24.pfb + RELOC/fonts/type1/public/drm/drmdoztc6.pfb + RELOC/fonts/type1/public/drm/drmdoztc7.pfb + RELOC/fonts/type1/public/drm/drmdoztc8.pfb + RELOC/fonts/type1/public/drm/drmdoztc9.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx10.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx11.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx12.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx14.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx17.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx24.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx6.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx7.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx8.pfb + RELOC/fonts/type1/public/drm/drmdoztcbx9.pfb + RELOC/fonts/type1/public/drm/drmdozui10.pfb + RELOC/fonts/type1/public/drm/drmdozui11.pfb + RELOC/fonts/type1/public/drm/drmdozui12.pfb + RELOC/fonts/type1/public/drm/drmdozui14.pfb + RELOC/fonts/type1/public/drm/drmdozui17.pfb + RELOC/fonts/type1/public/drm/drmdozui24.pfb + RELOC/fonts/type1/public/drm/drmdozui6.pfb + RELOC/fonts/type1/public/drm/drmdozui7.pfb + RELOC/fonts/type1/public/drm/drmdozui8.pfb + RELOC/fonts/type1/public/drm/drmdozui9.pfb + RELOC/fonts/type1/public/drm/drmdozuibx10.pfb + RELOC/fonts/type1/public/drm/drmdozuibx11.pfb + RELOC/fonts/type1/public/drm/drmdozuibx12.pfb + RELOC/fonts/type1/public/drm/drmdozuibx14.pfb + RELOC/fonts/type1/public/drm/drmdozuibx17.pfb + RELOC/fonts/type1/public/drm/drmdozuibx24.pfb + RELOC/fonts/type1/public/drm/drmdozuibx6.pfb + RELOC/fonts/type1/public/drm/drmdozuibx7.pfb + RELOC/fonts/type1/public/drm/drmdozuibx8.pfb + RELOC/fonts/type1/public/drm/drmdozuibx9.pfb + RELOC/fonts/type1/public/drm/drmfigs10.pfb + RELOC/fonts/type1/public/drm/drmfigs11.pfb + RELOC/fonts/type1/public/drm/drmfigs12.pfb + RELOC/fonts/type1/public/drm/drmfigs14.pfb + RELOC/fonts/type1/public/drm/drmfigs17.pfb + RELOC/fonts/type1/public/drm/drmfigs24.pfb + RELOC/fonts/type1/public/drm/drmfigs6.pfb + RELOC/fonts/type1/public/drm/drmfigs7.pfb + RELOC/fonts/type1/public/drm/drmfigs8.pfb + RELOC/fonts/type1/public/drm/drmfigs9.pfb + RELOC/fonts/type1/public/drm/drmgrk10.pfb + RELOC/fonts/type1/public/drm/drminf10.pfb + RELOC/fonts/type1/public/drm/drminf11.pfb + RELOC/fonts/type1/public/drm/drminf12.pfb + RELOC/fonts/type1/public/drm/drminf14.pfb + RELOC/fonts/type1/public/drm/drminf17.pfb + RELOC/fonts/type1/public/drm/drminf24.pfb + RELOC/fonts/type1/public/drm/drminf6.pfb + RELOC/fonts/type1/public/drm/drminf7.pfb + RELOC/fonts/type1/public/drm/drminf8.pfb + RELOC/fonts/type1/public/drm/drminf9.pfb + RELOC/fonts/type1/public/drm/drmit10.pfb + RELOC/fonts/type1/public/drm/drmit11.pfb + RELOC/fonts/type1/public/drm/drmit12.pfb + RELOC/fonts/type1/public/drm/drmit14.pfb + RELOC/fonts/type1/public/drm/drmit17.pfb + RELOC/fonts/type1/public/drm/drmit24.pfb + RELOC/fonts/type1/public/drm/drmit6.pfb + RELOC/fonts/type1/public/drm/drmit7.pfb + RELOC/fonts/type1/public/drm/drmit8.pfb + RELOC/fonts/type1/public/drm/drmit9.pfb + RELOC/fonts/type1/public/drm/drmitbx10.pfb + RELOC/fonts/type1/public/drm/drmitbx11.pfb + RELOC/fonts/type1/public/drm/drmitbx12.pfb + RELOC/fonts/type1/public/drm/drmitbx14.pfb + RELOC/fonts/type1/public/drm/drmitbx17.pfb + RELOC/fonts/type1/public/drm/drmitbx24.pfb + RELOC/fonts/type1/public/drm/drmitbx6.pfb + RELOC/fonts/type1/public/drm/drmitbx7.pfb + RELOC/fonts/type1/public/drm/drmitbx8.pfb + RELOC/fonts/type1/public/drm/drmitbx9.pfb + RELOC/fonts/type1/public/drm/drmitsc10.pfb + RELOC/fonts/type1/public/drm/drmitsc11.pfb + RELOC/fonts/type1/public/drm/drmitsc12.pfb + RELOC/fonts/type1/public/drm/drmitsc14.pfb + RELOC/fonts/type1/public/drm/drmitsc17.pfb + RELOC/fonts/type1/public/drm/drmitsc24.pfb + RELOC/fonts/type1/public/drm/drmitsc6.pfb + RELOC/fonts/type1/public/drm/drmitsc7.pfb + RELOC/fonts/type1/public/drm/drmitsc8.pfb + RELOC/fonts/type1/public/drm/drmitsc9.pfb + RELOC/fonts/type1/public/drm/drmittc10.pfb + RELOC/fonts/type1/public/drm/drmittc11.pfb + RELOC/fonts/type1/public/drm/drmittc12.pfb + RELOC/fonts/type1/public/drm/drmittc14.pfb + RELOC/fonts/type1/public/drm/drmittc17.pfb + RELOC/fonts/type1/public/drm/drmittc24.pfb + RELOC/fonts/type1/public/drm/drmittc6.pfb + RELOC/fonts/type1/public/drm/drmittc7.pfb + RELOC/fonts/type1/public/drm/drmittc8.pfb + RELOC/fonts/type1/public/drm/drmittc9.pfb + RELOC/fonts/type1/public/drm/drml10.pfb + RELOC/fonts/type1/public/drm/drml11.pfb + RELOC/fonts/type1/public/drm/drml12.pfb + RELOC/fonts/type1/public/drm/drml14.pfb + RELOC/fonts/type1/public/drm/drml17.pfb + RELOC/fonts/type1/public/drm/drml24.pfb + RELOC/fonts/type1/public/drm/drml6.pfb + RELOC/fonts/type1/public/drm/drml7.pfb + RELOC/fonts/type1/public/drm/drml8.pfb + RELOC/fonts/type1/public/drm/drml9.pfb + RELOC/fonts/type1/public/drm/drmmi10.pfb + RELOC/fonts/type1/public/drm/drmsc10.pfb + RELOC/fonts/type1/public/drm/drmsc11.pfb + RELOC/fonts/type1/public/drm/drmsc12.pfb + RELOC/fonts/type1/public/drm/drmsc14.pfb + RELOC/fonts/type1/public/drm/drmsc17.pfb + RELOC/fonts/type1/public/drm/drmsc24.pfb + RELOC/fonts/type1/public/drm/drmsc6.pfb + RELOC/fonts/type1/public/drm/drmsc7.pfb + RELOC/fonts/type1/public/drm/drmsc8.pfb + RELOC/fonts/type1/public/drm/drmsc9.pfb + RELOC/fonts/type1/public/drm/drmscbx10.pfb + RELOC/fonts/type1/public/drm/drmscbx11.pfb + RELOC/fonts/type1/public/drm/drmscbx12.pfb + RELOC/fonts/type1/public/drm/drmscbx14.pfb + RELOC/fonts/type1/public/drm/drmscbx17.pfb + RELOC/fonts/type1/public/drm/drmscbx24.pfb + RELOC/fonts/type1/public/drm/drmscbx6.pfb + RELOC/fonts/type1/public/drm/drmscbx7.pfb + RELOC/fonts/type1/public/drm/drmscbx8.pfb + RELOC/fonts/type1/public/drm/drmscbx9.pfb + RELOC/fonts/type1/public/drm/drmsl10.pfb + RELOC/fonts/type1/public/drm/drmsl11.pfb + RELOC/fonts/type1/public/drm/drmsl12.pfb + RELOC/fonts/type1/public/drm/drmsl14.pfb + RELOC/fonts/type1/public/drm/drmsl17.pfb + RELOC/fonts/type1/public/drm/drmsl24.pfb + RELOC/fonts/type1/public/drm/drmsl6.pfb + RELOC/fonts/type1/public/drm/drmsl7.pfb + RELOC/fonts/type1/public/drm/drmsl8.pfb + RELOC/fonts/type1/public/drm/drmsl9.pfb + RELOC/fonts/type1/public/drm/drmsy10.pfb + RELOC/fonts/type1/public/drm/drmsym10.pfb + RELOC/fonts/type1/public/drm/drmsym11.pfb + RELOC/fonts/type1/public/drm/drmsym12.pfb + RELOC/fonts/type1/public/drm/drmsym14.pfb + RELOC/fonts/type1/public/drm/drmsym17.pfb + RELOC/fonts/type1/public/drm/drmsym24.pfb + RELOC/fonts/type1/public/drm/drmsym7.pfb + RELOC/fonts/type1/public/drm/drmsym8.pfb + RELOC/fonts/type1/public/drm/drmsym9.pfb + RELOC/fonts/type1/public/drm/drmtc10.pfb + RELOC/fonts/type1/public/drm/drmtc11.pfb + RELOC/fonts/type1/public/drm/drmtc12.pfb + RELOC/fonts/type1/public/drm/drmtc14.pfb + RELOC/fonts/type1/public/drm/drmtc17.pfb + RELOC/fonts/type1/public/drm/drmtc24.pfb + RELOC/fonts/type1/public/drm/drmtc6.pfb + RELOC/fonts/type1/public/drm/drmtc7.pfb + RELOC/fonts/type1/public/drm/drmtc8.pfb + RELOC/fonts/type1/public/drm/drmtc9.pfb + RELOC/fonts/type1/public/drm/drmtcbx10.pfb + RELOC/fonts/type1/public/drm/drmtcbx11.pfb + RELOC/fonts/type1/public/drm/drmtcbx12.pfb + RELOC/fonts/type1/public/drm/drmtcbx14.pfb + RELOC/fonts/type1/public/drm/drmtcbx17.pfb + RELOC/fonts/type1/public/drm/drmtcbx24.pfb + RELOC/fonts/type1/public/drm/drmtcbx6.pfb + RELOC/fonts/type1/public/drm/drmtcbx7.pfb + RELOC/fonts/type1/public/drm/drmtcbx8.pfb + RELOC/fonts/type1/public/drm/drmtcbx9.pfb + RELOC/fonts/type1/public/drm/drmui10.pfb + RELOC/fonts/type1/public/drm/drmui11.pfb + RELOC/fonts/type1/public/drm/drmui12.pfb + RELOC/fonts/type1/public/drm/drmui14.pfb + RELOC/fonts/type1/public/drm/drmui17.pfb + RELOC/fonts/type1/public/drm/drmui24.pfb + RELOC/fonts/type1/public/drm/drmui6.pfb + RELOC/fonts/type1/public/drm/drmui7.pfb + RELOC/fonts/type1/public/drm/drmui8.pfb + RELOC/fonts/type1/public/drm/drmui9.pfb + RELOC/fonts/type1/public/drm/drmuibx10.pfb + RELOC/fonts/type1/public/drm/drmuibx11.pfb + RELOC/fonts/type1/public/drm/drmuibx12.pfb + RELOC/fonts/type1/public/drm/drmuibx14.pfb + RELOC/fonts/type1/public/drm/drmuibx17.pfb + RELOC/fonts/type1/public/drm/drmuibx24.pfb + RELOC/fonts/type1/public/drm/drmuibx6.pfb + RELOC/fonts/type1/public/drm/drmuibx7.pfb + RELOC/fonts/type1/public/drm/drmuibx8.pfb + RELOC/fonts/type1/public/drm/drmuibx9.pfb + RELOC/tex/latex/drm/drm.sty +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-license lppl1.3 +catalogue-topics font font-otf font-type1 font-mf +catalogue-version 4.4 + +name droid +category Package +revision 23912 +shortdesc LaTeX support for the Droid font families. +relocated 1 +longdesc The Droid typeface family was designed in the fall of 2006 by +longdesc Steve Matteson, as a commission from Google to create a set of +longdesc system fonts for its Android platform. The goal was to provide +longdesc optimal quality and comfort on a mobile handset when rendered +longdesc in application menus, web browsers and for other screen text. +longdesc The Droid family consists of Droid Serif, Droid Sans and Droid +longdesc Sans Mono fonts, licensed under the Apache License Version 2.0. +longdesc The bundle includes the fonts in both TrueType and Adobe Type 1 +longdesc formats. The package does not support the Droid Pro family of +longdesc fonts, available for purchase from the Ascender foundry. +execute addMap droid.map +runfiles size=2093 + RELOC/fonts/afm/public/droid/DroidSans-Bold.afm + RELOC/fonts/afm/public/droid/DroidSans.afm + RELOC/fonts/afm/public/droid/DroidSansMono.afm + RELOC/fonts/afm/public/droid/DroidSerif-Bold.afm + RELOC/fonts/afm/public/droid/DroidSerif-BoldItalic.afm + RELOC/fonts/afm/public/droid/DroidSerif-Italic.afm + RELOC/fonts/afm/public/droid/DroidSerif-Regular.afm + RELOC/fonts/enc/dvips/droid/droid-01.enc + RELOC/fonts/enc/dvips/droid/droid-02.enc + RELOC/fonts/enc/dvips/droid/droid-03.enc + RELOC/fonts/enc/dvips/droid/droid-04.enc + RELOC/fonts/map/dvips/droid/droid.map + RELOC/fonts/tfm/public/droid/DroidSans-01.tfm + RELOC/fonts/tfm/public/droid/DroidSans-02.tfm + RELOC/fonts/tfm/public/droid/DroidSans-03.tfm + RELOC/fonts/tfm/public/droid/DroidSans-04.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-01.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-02.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-03.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-04.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-01.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-02.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-03.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-04.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-Slanted-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Bold-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-01.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-02.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-03.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-04.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-Slanted-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSans-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSans-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSans-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSans-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSans-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSans-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSans-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSans-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSans-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSans-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSans-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-01.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-02.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-03.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-04.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-01.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-02.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-03.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-04.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-Slanted-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSansMono-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-01.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-02.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-03.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-04.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-01.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-02.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-03.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-04.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-Slanted-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Bold-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-01.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-02.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-03.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-04.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-01.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-02.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-03.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-04.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-Upright-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-BoldItalic-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-01.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-02.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-03.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-04.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-01.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-02.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-03.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-04.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-Upright-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Italic-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-01.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-02.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-03.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-04.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-01.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-02.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-03.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-04.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-Slanted-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-SmallCaps-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-SmallCaps-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-SmallCaps-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-SmallCaps-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-SmallCaps-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-SmallCaps-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-SmallCaps-x2.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-lgr.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-ot1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-t1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-t2a.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-t2b.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-t2c.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-ts1.tfm + RELOC/fonts/tfm/public/droid/DroidSerif-Regular-x2.tfm + RELOC/fonts/truetype/public/droid/DroidSans-Bold.ttf + RELOC/fonts/truetype/public/droid/DroidSans.ttf + RELOC/fonts/truetype/public/droid/DroidSansMono.ttf + RELOC/fonts/truetype/public/droid/DroidSerif-Bold.ttf + RELOC/fonts/truetype/public/droid/DroidSerif-BoldItalic.ttf + RELOC/fonts/truetype/public/droid/DroidSerif-Italic.ttf + RELOC/fonts/truetype/public/droid/DroidSerif-Regular.ttf + RELOC/fonts/type1/public/droid/DroidSans-Bold.pfb + RELOC/fonts/type1/public/droid/DroidSans.pfb + RELOC/fonts/type1/public/droid/DroidSansMono.pfb + RELOC/fonts/type1/public/droid/DroidSerif-Bold.pfb + RELOC/fonts/type1/public/droid/DroidSerif-BoldItalic.pfb + RELOC/fonts/type1/public/droid/DroidSerif-Italic.pfb + RELOC/fonts/type1/public/droid/DroidSerif-Regular.pfb + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-lgr.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-ot1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-t1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-t2a.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-t2b.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-t2c.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-ts1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-Slanted-x2.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-lgr.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-ot1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-t1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-t2a.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-t2b.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-t2c.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-ts1.vf + RELOC/fonts/vf/public/droid/DroidSans-Bold-x2.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-lgr.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-ot1.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-t1.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-t2a.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-t2b.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-t2c.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-ts1.vf + RELOC/fonts/vf/public/droid/DroidSans-Slanted-x2.vf + RELOC/fonts/vf/public/droid/DroidSans-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSans-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSans-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSans-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSans-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSans-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSans-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSans-lgr.vf + RELOC/fonts/vf/public/droid/DroidSans-ot1.vf + RELOC/fonts/vf/public/droid/DroidSans-t1.vf + RELOC/fonts/vf/public/droid/DroidSans-t2a.vf + RELOC/fonts/vf/public/droid/DroidSans-t2b.vf + RELOC/fonts/vf/public/droid/DroidSans-t2c.vf + RELOC/fonts/vf/public/droid/DroidSans-ts1.vf + RELOC/fonts/vf/public/droid/DroidSans-x2.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-lgr.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-ot1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-t1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-t2a.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-t2b.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-t2c.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-ts1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-Slanted-x2.vf + RELOC/fonts/vf/public/droid/DroidSansMono-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSansMono-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSansMono-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSansMono-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSansMono-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSansMono-lgr.vf + RELOC/fonts/vf/public/droid/DroidSansMono-ot1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-t1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-t2a.vf + RELOC/fonts/vf/public/droid/DroidSansMono-t2b.vf + RELOC/fonts/vf/public/droid/DroidSansMono-t2c.vf + RELOC/fonts/vf/public/droid/DroidSansMono-ts1.vf + RELOC/fonts/vf/public/droid/DroidSansMono-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-ts1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-Slanted-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-ts1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Bold-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-ts1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-Upright-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-ts1.vf + RELOC/fonts/vf/public/droid/DroidSerif-BoldItalic-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-ts1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-Upright-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-ts1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Italic-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-ts1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-Slanted-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-SmallCaps-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-SmallCaps-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-SmallCaps-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-SmallCaps-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-SmallCaps-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-SmallCaps-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-SmallCaps-x2.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-lgr.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-ot1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-t1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-t2a.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-t2b.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-t2c.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-ts1.vf + RELOC/fonts/vf/public/droid/DroidSerif-Regular-x2.vf + RELOC/tex/latex/droid/droid.sty + RELOC/tex/latex/droid/droidmono.sty + RELOC/tex/latex/droid/droidsans.sty + RELOC/tex/latex/droid/droidserif.sty + RELOC/tex/latex/droid/lgrfdm.fd + RELOC/tex/latex/droid/lgrfdr.fd + RELOC/tex/latex/droid/lgrfds.fd + RELOC/tex/latex/droid/ot1fdm.fd + RELOC/tex/latex/droid/ot1fdr.fd + RELOC/tex/latex/droid/ot1fds.fd + RELOC/tex/latex/droid/t1fdm.fd + RELOC/tex/latex/droid/t1fdr.fd + RELOC/tex/latex/droid/t1fds.fd + RELOC/tex/latex/droid/t2afdm.fd + RELOC/tex/latex/droid/t2afdr.fd + RELOC/tex/latex/droid/t2afds.fd + RELOC/tex/latex/droid/t2bfdm.fd + RELOC/tex/latex/droid/t2bfdr.fd + RELOC/tex/latex/droid/t2bfds.fd + RELOC/tex/latex/droid/t2cfdm.fd + RELOC/tex/latex/droid/t2cfdr.fd + RELOC/tex/latex/droid/t2cfds.fd + RELOC/tex/latex/droid/ts1fdm.fd + RELOC/tex/latex/droid/ts1fdr.fd + RELOC/tex/latex/droid/ts1fds.fd + 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-license lppl1.3 +catalogue-version 2.1 + +name droit-fr +category Package +revision 32918 +shortdesc Document class and bibliographic style for French law. +relocated 1 +longdesc The bundle provides a toolkit intended for students writing a +longdesc thesis in French law. It features: a LaTeX document class; a +longdesc bibliographic style for Biblatex package; a practical example +longdesc of french thesis document; and documentation. The class assumes +longdesc use of biber and biblatex. +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 + 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 + RELOC/doc/latex/droit-fr/example/conclusion.tex + RELOC/doc/latex/droit-fr/example/glossaire.tex + RELOC/doc/latex/droit-fr/example/index.tex + RELOC/doc/latex/droit-fr/example/introduction.tex + RELOC/doc/latex/droit-fr/example/journaux.bib + RELOC/doc/latex/droit-fr/example/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/sommaire.tex + RELOC/doc/latex/droit-fr/example/titre.tex + RELOC/doc/latex/droit-fr/example/toc.tex +catalogue-ctan /macros/latex/contrib/droit-fr +catalogue-date 2014-09-25 18:18:46 +0200 +catalogue-license lppl1.3 +catalogue-version 0.4 + +name drs +category Package +revision 19232 +shortdesc Typeset Discourse Representation Structures (DRS). +relocated 1 +longdesc The package draws Discourse Representation Structures (DRSs). +longdesc It can draw embedded DRSs, if-then conditions and +longdesc quantificational "duplex conditions" (with a properly scaled +longdesc connecting diamond). Formatting parameters allow the user to +longdesc control the appearance and placement of DRSs, and of DRS +longdesc variables and conditions. The package is based on DRS macros in +longdesc the covington package. +runfiles size=3 + RELOC/tex/latex/drs/drs.sty +docfiles size=30 + RELOC/doc/latex/drs/README + RELOC/doc/latex/drs/drsdoc.pdf + RELOC/doc/latex/drs/drsdoc.tex +catalogue-ctan /macros/latex/contrib/drs +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1b + +name drv +category Package +revision 29349 +shortdesc Derivation trees with MetaPost. +relocated 1 +longdesc A set of MetaPost macros for typesetting derivation trees (such +longdesc as used in sequent calculus, type inference, programming +longdesc language semantics...). No MetaPost knowledge is needed to use +longdesc these macros. +runfiles size=21 + RELOC/metapost/drv/drv.mp +docfiles size=160 + RELOC/doc/metapost/drv/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/sample/coq-sample.mp + RELOC/doc/metapost/drv/sample/coq-sample.tex + RELOC/doc/metapost/drv/sample/drv.mp + RELOC/doc/metapost/drv/sample/makefile + RELOC/doc/metapost/drv/sample/readme.sh + RELOC/doc/metapost/drv/template/drv.mp + RELOC/doc/metapost/drv/template/makefile + RELOC/doc/metapost/drv/template/readme.sh + RELOC/doc/metapost/drv/template/template.mp + RELOC/doc/metapost/drv/template/template.tex +catalogue-ctan /graphics/metapost/contrib/macros/drv +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.97 + +name dsptricks +category Package +revision 34724 +shortdesc Macros for Digital Signal Processing plots. +relocated 1 +longdesc The package provides a set of LaTeX macros (based on PSTricks) +longdesc for plotting the kind of graphs and figures that are usually +longdesc employed in digital signal processing publications. DSPTricks +longdesc provides facilities for standard discrete-time "lollipop" +longdesc plots, continuous-time and frequency plots, and pole-zero +longdesc plots. The companion package DSPFunctions (dspfunctions.sty) +longdesc provides macros for computing frequency responses and DFTs, +longdesc while the package DSPBlocks (dspblocks.sty) supports DSP block +longdesc diagrams. +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-license lppl +catalogue-version 1.0 + +name dtk +category Package +revision 36372 +shortdesc Document class for the journal of DANTE. +relocated 1 +longdesc The bundle provides a class and style file for typesetting "Die +longdesc TeXnische Komodie" -- the communications of the German TeX +longdesc Users Group DANTE e.V. The arrangement means that the class may +longdesc be used by article writers to typeset a single article as well +longdesc as to produce the complete journal. +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 + RELOC/doc/latex/dtk/doc/beispiel.bib + RELOC/doc/latex/dtk/doc/beispiel.pdf + 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 +catalogue-ctan /usergrps/dante/dtk +catalogue-date 2015-02-24 14:09:09 +0100 +catalogue-license lppl1.3 +catalogue-version 1.32 + +name dtl +category TLCore +revision 37078 +shortdesc Tools to dis-assemble and re-assemble DVI files. +longdesc DTL (DVI Text Language) is a means of expressing the content of +longdesc a DVI file, which is readily readable by humans. The DTL bundle +longdesc contains an assembler dt2dv (which produces DVI files from DTL +longdesc files) and a disassembler dv2dt (which produces DTL files from +longdesc DVI files). The DTL bundle was developed so as to avoid some +longdesc infelicities of dvitype (among other pressing reasons). +depend dtl.ARCH +docfiles size=12 + texmf-dist/doc/man/man1/dt2dv.1 + texmf-dist/doc/man/man1/dt2dv.man1.pdf + texmf-dist/doc/man/man1/dv2dt.1 + texmf-dist/doc/man/man1/dv2dt.man1.pdf +catalogue-ctan /dviware/dtl +catalogue-date 2012-04-09 22:37:34 +0200 +catalogue-license pd +catalogue-version 0.6.1 + +name dtl.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of dtl +binfiles arch=i386-linux size=22 + bin/i386-linux/dt2dv + bin/i386-linux/dv2dt + +name dtxgallery +category Package +revision 15878 +shortdesc A small collection of minimal DTX examples. +relocated 1 +longdesc A collection of files that demonstrate simple things that are +longdesc possible with the flexible and under-appreciated docstrip file +longdesc format. Each file of the collection is provided as a .dtx file +longdesc and as the corresponding .pdf. The set is intended as a +longdesc companion to Scott Pakin's excellent and influential dtxtut +longdesc example of producing LaTeX packages in this way. +docfiles size=95 + RELOC/doc/latex/dtxgallery/README + RELOC/doc/latex/dtxgallery/conditional-code.pdf + RELOC/doc/latex/dtxgallery/dtxgallery.pdf + RELOC/doc/latex/dtxgallery/rearrange.pdf + 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-license lppl +catalogue-version 1 + +name dtxgen +category Package +revision 38325 +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 +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-license gpl +catalogue-topics file-mgmt +catalogue-version 1.06 + +name dtxgen.i386-linux +category Package +revision 29031 +shortdesc i386-linux files of dtxgen +binfiles arch=i386-linux size=1 + bin/i386-linux/dtxgen + +name dtxtut +category Package +revision 38375 +shortdesc Tutorial on writing .dtx and .ins files +relocated 1 +longdesc This tutorial is intended for advanced LaTeX2e users who want +longdesc to learn how to create .ins and .dtx files for distributing +longdesc their homebrewed classes and package files. +docfiles size=98 + RELOC/doc/latex/dtxtut/README + RELOC/doc/latex/dtxtut/cskeleton.dtx + RELOC/doc/latex/dtxtut/cskeleton.ins + RELOC/doc/latex/dtxtut/dtxtut.pdf + 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-license lppl1.3 +catalogue-topics tut-latex-prg +catalogue-version 2.1 + +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. +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 + +name duerer +category Package +revision 20741 +shortdesc Computer Duerer fonts. +relocated 1 +longdesc These fonts are designed for titling use, and consist of +longdesc capital roman letters only. Together with the normal set of +longdesc base shapes, the family also offers an informal shape. The +longdesc distribution is as Metafont source. LaTeX support is available +longdesc in the duerer-latex bundle. +runfiles size=30 + RELOC/fonts/source/public/duerer/cdb10.mf + RELOC/fonts/source/public/duerer/cdi10.mf + RELOC/fonts/source/public/duerer/cdr10.mf + RELOC/fonts/source/public/duerer/cdsl10.mf + RELOC/fonts/source/public/duerer/cdss10.mf + RELOC/fonts/source/public/duerer/cdtt10.mf + RELOC/fonts/source/public/duerer/dromani.mf + RELOC/fonts/source/public/duerer/dromanu.mf + RELOC/fonts/source/public/duerer/dtitle.mf + RELOC/fonts/tfm/public/duerer/cdb10.tfm + RELOC/fonts/tfm/public/duerer/cdi10.tfm + RELOC/fonts/tfm/public/duerer/cdr10.tfm + RELOC/fonts/tfm/public/duerer/cdsl10.tfm + RELOC/fonts/tfm/public/duerer/cdss10.tfm + RELOC/fonts/tfm/public/duerer/cdtt10.tfm +docfiles size=1 + RELOC/doc/fonts/duerer/README +catalogue-ctan /fonts/duerer +catalogue-date 2014-04-25 21:03:35 +0200 +catalogue-license pd + +name duotenzor +category Package +revision 18728 +shortdesc Drawing package for circuit and duotensor diagrams. +relocated 1 +longdesc This is a drawing package for circuit and duotensor diagrams +longdesc within LaTeX documents. It consists of about eighty commands, +longdesc calling on TikZ for support. +runfiles size=10 + RELOC/tex/latex/duotenzor/duotenzor.sty +docfiles size=45 + RELOC/doc/latex/duotenzor/README + RELOC/doc/latex/duotenzor/duotenzormanual.pdf + RELOC/doc/latex/duotenzor/duotenzormanual.tex +catalogue-ctan /graphics/duotenzor +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.00 + +name dutchcal +category Package +revision 23448 +shortdesc A reworking of ESSTIX13, adding a bold version. +relocated 1 +longdesc This package reworks the mathematical calligraphic font +longdesc ESSTIX13, adding a bold version. LaTeX support files are +longdesc included. The new fonts may also be accessed from the most +longdesc recent version of mathalfa. The fonts themselves are subject to +longdesc the SIL OPEN FONT LICENSE, version 1.1. +execute addMap dutchcal.map +runfiles size=20 + RELOC/fonts/afm/public/dutchcal/DutchCalBold.afm + RELOC/fonts/afm/public/dutchcal/DutchCalReg.afm + RELOC/fonts/map/dvips/dutchcal/dutchcal.map + RELOC/fonts/tfm/public/dutchcal/dutchcal-b.tfm + RELOC/fonts/tfm/public/dutchcal/dutchcal-r.tfm + RELOC/fonts/tfm/public/dutchcal/rdutchcalb.tfm + RELOC/fonts/tfm/public/dutchcal/rdutchcalr.tfm + RELOC/fonts/type1/public/dutchcal/DutchCalBold.pfb + RELOC/fonts/type1/public/dutchcal/DutchCalReg.pfb + RELOC/fonts/vf/public/dutchcal/dutchcal-b.vf + RELOC/fonts/vf/public/dutchcal/dutchcal-r.vf + RELOC/tex/latex/dutchcal/dutchcal.sty + RELOC/tex/latex/dutchcal/udutchcal.fd +docfiles size=1 + RELOC/doc/fonts/dutchcal/README +catalogue-ctan /fonts/dutchcal +catalogue-date 2014-04-25 21:03:35 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name dvdcoll +category Package +revision 15878 +shortdesc A class for typesetting DVD archives +relocated 1 +longdesc Having lost the overview of my DVD archives, I simply could not +longdesc remember if I already recorded the documentary running on TV +longdesc that day. I chose to recreate the index using LaTeX: the design +longdesc aim was a hyperlinked and fully searchable PDF-document, +longdesc listing my DVDs with all titles, lengths and so on. Further +longdesc requirements were support for seasons of tv series and a list +longdesc with all faulty or missing programs for rerecording. The +longdesc dvdcoll class supports all these requirements. dvdcoll.cls +longdesc follows the structure <length>. As a result, the +longdesc class is not limited to DVDs--you can of course typeset +longdesc archives of CD-ROMs, Audio-CDs and so on. Supported languages +longdesc at the moment: English, French, German, Italian, Polish, +longdesc Portuguese, Spanish. Some help is needed for other languages! +runfiles size=42 + RELOC/bibtex/bst/dvdcoll/dcbib.bst + RELOC/tex/latex/dvdcoll/dcl/UKenglish.dcl + RELOC/tex/latex/dvdcoll/dcl/USenglish.dcl + RELOC/tex/latex/dvdcoll/dcl/acadian.dcl + RELOC/tex/latex/dvdcoll/dcl/american.dcl + RELOC/tex/latex/dvdcoll/dcl/australian.dcl + RELOC/tex/latex/dvdcoll/dcl/austrian.dcl + RELOC/tex/latex/dvdcoll/dcl/brazil.dcl + RELOC/tex/latex/dvdcoll/dcl/brazilian.dcl + RELOC/tex/latex/dvdcoll/dcl/british.dcl + RELOC/tex/latex/dvdcoll/dcl/canadian.dcl + RELOC/tex/latex/dvdcoll/dcl/canadien.dcl + RELOC/tex/latex/dvdcoll/dcl/english.dcl + RELOC/tex/latex/dvdcoll/dcl/francais.dcl + RELOC/tex/latex/dvdcoll/dcl/french.dcl + RELOC/tex/latex/dvdcoll/dcl/frenchb.dcl + RELOC/tex/latex/dvdcoll/dcl/german.dcl + RELOC/tex/latex/dvdcoll/dcl/germanb.dcl + RELOC/tex/latex/dvdcoll/dcl/italian.dcl + RELOC/tex/latex/dvdcoll/dcl/naustrian.dcl + RELOC/tex/latex/dvdcoll/dcl/newzealand.dcl + RELOC/tex/latex/dvdcoll/dcl/ngerman.dcl + RELOC/tex/latex/dvdcoll/dcl/polish.dcl + RELOC/tex/latex/dvdcoll/dcl/portuges.dcl + RELOC/tex/latex/dvdcoll/dcl/portuguese.dcl + RELOC/tex/latex/dvdcoll/dcl/spanish.dcl + RELOC/tex/latex/dvdcoll/dcwrtbib.sty + RELOC/tex/latex/dvdcoll/dvdcoll.cls + RELOC/tex/latex/dvdcoll/pdfnotiz.sty +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-license lppl +catalogue-version v1.1a + +name dvgloss +category Package +revision 29103 +shortdesc Facilities for setting interlinear glossed text. +relocated 1 +longdesc The package provides extensible macros for setting interlinear +longdesc glossed text -- useful, for instance, for typing linguistics +longdesc papers. The operative word here is "extensible": few features +longdesc are built in, but some flexible and powerful facilities are +longdesc included for adding your own. +runfiles size=1 + RELOC/tex/latex/dvgloss/dvgloss.sty +docfiles size=52 + RELOC/doc/latex/dvgloss/README + RELOC/doc/latex/dvgloss/dvgloss.pdf +srcfiles size=8 + RELOC/source/latex/dvgloss/dvgloss.dtx + RELOC/source/latex/dvgloss/dvgloss.ins +catalogue-ctan /macros/latex/contrib/dvgloss +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name dvi2tty +category TLCore +revision 37078 +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 + 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-ctan /dviware/dvi2tty +catalogue-date 2012-04-09 22:37:34 +0200 +catalogue-license gpl +catalogue-version 3.5.1 + +name dvi2tty.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of dvi2tty +binfiles arch=i386-linux size=45 + bin/i386-linux/disdvi + bin/i386-linux/dvi2tty + +name dviasm +category Package +revision 36814 +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 +docfiles size=1 + texmf-dist/doc/latex/dviasm/README +catalogue-ctan /dviware/dviasm +catalogue-date 2015-04-12 13:34:40 +0200 +catalogue-license gpl3 + +name dviasm.i386-linux +category Package +revision 8329 +shortdesc i386-linux files of dviasm +binfiles arch=i386-linux size=1 + bin/i386-linux/dviasm + +name dvicopy +category TLCore +revision 37078 +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 + 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-license gpl +catalogue-version 1.5 + +name dvicopy.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of dvicopy +binfiles arch=i386-linux size=40 + bin/i386-linux/dvicopy + +name dvidvi +category TLCore +revision 37078 +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 + 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-license other-free + +name dvidvi.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of dvidvi +binfiles arch=i386-linux size=5 + bin/i386-linux/dvidvi + +name dviincl +category Package +revision 29349 +shortdesc Include a DVI page into MetaPost output. +relocated 1 +longdesc DVItoMP is one of the auxiliary programs available to any +longdesc MetaPost package; it converts a DVI file into a MetaPost file. +longdesc Using it, one can envisage including a DVI page into an EPS +longdesc files generated by MetaPost. Such files allow pages to include +longdesc other pages. +runfiles size=2 + RELOC/metapost/dviincl/fix_brks.mp + RELOC/metapost/dviincl/fix_page.mp +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/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 +catalogue-ctan /graphics/metapost/contrib/macros/dviincl +catalogue-date 2012-04-10 15:00:16 +0200 +catalogue-license pd +catalogue-version 1.00 + +name dviljk +category TLCore +revision 37078 +shortdesc DVI to Laserjet output. +longdesc A dvi driver for the LaserJet printers, using kpathsea +longdesc recursive file searching. Note: this program will not compile +longdesc simply with the sources in this distribution; it needs a full +longdesc (current) kpathsea distribution environment, such as is +longdesc available from the TeX-Live source tree. +depend dviljk.ARCH +docfiles size=54 + texmf-dist/doc/man/man1/dvihp.1 + texmf-dist/doc/man/man1/dvihp.man1.pdf + texmf-dist/doc/man/man1/dvilj.1 + texmf-dist/doc/man/man1/dvilj.man1.pdf + texmf-dist/doc/man/man1/dvilj2p.1 + texmf-dist/doc/man/man1/dvilj2p.man1.pdf + texmf-dist/doc/man/man1/dvilj4.1 + texmf-dist/doc/man/man1/dvilj4.man1.pdf + texmf-dist/doc/man/man1/dvilj4l.1 + texmf-dist/doc/man/man1/dvilj4l.man1.pdf + texmf-dist/doc/man/man1/dvilj6.1 + texmf-dist/doc/man/man1/dvilj6.man1.pdf +catalogue-ctan /dviware/dviljk +catalogue-date 2015-03-27 20:47:10 +0100 +catalogue-license gpl + +name dviljk.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of dviljk +binfiles arch=i386-linux size=167 + bin/i386-linux/dvihp + bin/i386-linux/dvilj + bin/i386-linux/dvilj2p + bin/i386-linux/dvilj4 + bin/i386-linux/dvilj4l + bin/i386-linux/dvilj6 + +name 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 dvipdfmx +category TLCore +revision 37159 +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. +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 + texmf-dist/doc/dvipdfm/Makefile + texmf-dist/doc/dvipdfm/dvipdfm.pdf + texmf-dist/doc/dvipdfm/dvipdfm.tex + texmf-dist/doc/dvipdfm/mwicks.bb + texmf-dist/doc/dvipdfm/mwicks.jpeg + texmf-dist/doc/dvipdfm/sample.tex + texmf-dist/doc/dvipdfm/something.bb + texmf-dist/doc/dvipdfm/something.eps + texmf-dist/doc/dvipdfm/something.fig + texmf-dist/doc/dvipdfm/something.pdf + texmf-dist/doc/dvipdfm/transistor.bb + texmf-dist/doc/dvipdfm/transistor.eps + texmf-dist/doc/dvipdfm/transistor.fig + texmf-dist/doc/dvipdfm/transistor.pdf + texmf-dist/doc/dvipdfmx/dvipdfmx-special.pdf + texmf-dist/doc/dvipdfmx/dvipdfmx-special.tex + texmf-dist/doc/man/man1/dvipdfm.1 + texmf-dist/doc/man/man1/dvipdfm.man1.pdf + texmf-dist/doc/man/man1/dvipdfmx.1 + texmf-dist/doc/man/man1/dvipdfmx.man1.pdf + texmf-dist/doc/man/man1/dvipdft.1 + texmf-dist/doc/man/man1/dvipdft.man1.pdf + texmf-dist/doc/man/man1/ebb.1 + texmf-dist/doc/man/man1/ebb.man1.pdf + texmf-dist/doc/man/man1/extractbb.1 + texmf-dist/doc/man/man1/extractbb.man1.pdf + texmf-dist/doc/man/man1/xdvipdfmx.1 + texmf-dist/doc/man/man1/xdvipdfmx.man1.pdf +catalogue-ctan /dviware/dvipdfmx/dvipdfmx.tar.gz +catalogue-date 2013-09-22 09:06:20 +0200 +catalogue-license gpl + +name dvipdfmx.i386-linux +category TLCore +revision 37207 +shortdesc i386-linux files of dvipdfmx +binfiles arch=i386-linux size=311 + bin/i386-linux/dvipdfm + bin/i386-linux/dvipdfmx + bin/i386-linux/dvipdft + bin/i386-linux/ebb + bin/i386-linux/extractbb + +name dvipng +category TLCore +revision 37166 +shortdesc A fast DVI to PNG/GIF converter. +longdesc This program makes PNG and/or GIF graphics from DVI files as +longdesc obtained from TeX and its relatives. Its benefits include: +longdesc Speed. It offers very fast rendering of DVI as bitmap files, +longdesc which makes it suitable for generating large amounts of images +longdesc on-the-fly, as needed in preview-latex, WeBWorK and others; It +longdesc does not read the postamble, so it can be started before TeX +longdesc finishes. There is a --follow switch that makes dvipng wait at +longdesc end-of-file for further output, unless it finds the POST marker +longdesc that indicates the end of the DVI; Interactive query of +longdesc options. dvipng can read options interactively through stdin, +longdesc and all options are usable. It is even possible to change the +longdesc input file through this interface. Support for PK, VF, +longdesc PostScript Type1, and TrueType fonts, colour specials, and +longdesc inclusion of PostScript, PNG, JPEG or GIF images. +depend dvipng.ARCH +docfiles size=107 + texmf-dist/doc/dvipng/dvipng.html + texmf-dist/doc/dvipng/dvipng.pdf + 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-ctan /dviware/dvipng +catalogue-date 2015-03-03 18:03:00 +0100 +catalogue-license lgpl +catalogue-version 1.15 + +name dvipng.i386-linux +category TLCore +revision 37100 +shortdesc i386-linux files of dvipng +binfiles arch=i386-linux size=296 + bin/i386-linux/dvigif + bin/i386-linux/dvipng + +name dvipos +category TLCore +revision 37078 +depend dvipos.ARCH +docfiles size=3 + texmf-dist/doc/man/man1/dvipos.1 + texmf-dist/doc/man/man1/dvipos.man1.pdf + +name dvipos.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of dvipos +binfiles arch=i386-linux size=38 + 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 dvips +category Package +revision 38208 +shortdesc A DVI to PostScript driver +longdesc This package has been withdrawn from CTAN, and bundled into the +longdesc distributions' package sets. The current sources of dvips may +longdesc be found in the distribution of dvipsk which forms part of the +longdesc TeX Live sources. +depend dvips.ARCH +runfiles size=1786 + 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 + texmf-dist/dvips/base/special.pro + texmf-dist/dvips/base/tex.pro + texmf-dist/dvips/base/texc.pro + texmf-dist/dvips/base/texps.pro + texmf-dist/dvips/config/alt-rule.pro + texmf-dist/dvips/config/canonex.cfg + texmf-dist/dvips/config/config.bakoma + texmf-dist/dvips/config/config.canonex + texmf-dist/dvips/config/config.cx + texmf-dist/dvips/config/config.deskjet + texmf-dist/dvips/config/config.dvired + texmf-dist/dvips/config/config.epson + texmf-dist/dvips/config/config.ibmvga + texmf-dist/dvips/config/config.ljfour + texmf-dist/dvips/config/config.luc + texmf-dist/dvips/config/config.mbn + texmf-dist/dvips/config/config.mga + texmf-dist/dvips/config/config.mirrorprint + texmf-dist/dvips/config/config.ot2 + texmf-dist/dvips/config/config.ps + texmf-dist/dvips/config/config.qms + texmf-dist/dvips/config/config.toshiba + texmf-dist/dvips/config/config.unms + texmf-dist/dvips/config/config.xyp + texmf-dist/dvips/config/cx.cfg + texmf-dist/dvips/config/deskjet.cfg + texmf-dist/dvips/config/dfaxhigh.cfg + texmf-dist/dvips/config/dvired.cfg + texmf-dist/dvips/config/epson.cfg + texmf-dist/dvips/config/ibmvga.cfg + texmf-dist/dvips/config/ljfour.cfg + texmf-dist/dvips/config/qms.cfg + texmf-dist/dvips/config/toshiba.cfg + texmf-dist/fonts/enc/dvips/base/6w.enc + texmf-dist/fonts/enc/dvips/base/7t.enc + texmf-dist/fonts/enc/dvips/base/8a.enc + texmf-dist/fonts/enc/dvips/base/8r.enc + texmf-dist/fonts/enc/dvips/base/ad.enc + texmf-dist/fonts/enc/dvips/base/ansinew.enc + texmf-dist/fonts/enc/dvips/base/asex.enc + texmf-dist/fonts/enc/dvips/base/asexp.enc + texmf-dist/fonts/enc/dvips/base/dc.enc + texmf-dist/fonts/enc/dvips/base/dvips.enc + texmf-dist/fonts/enc/dvips/base/ec.enc + texmf-dist/fonts/enc/dvips/base/extex.enc + texmf-dist/fonts/enc/dvips/base/funky.enc + texmf-dist/fonts/enc/dvips/base/odvips.enc + texmf-dist/fonts/enc/dvips/base/q-cs-uni.enc + texmf-dist/fonts/enc/dvips/base/q-ec-uni.enc + texmf-dist/fonts/enc/dvips/base/q-l7x-uni.enc + texmf-dist/fonts/enc/dvips/base/q-qx-uni.enc + texmf-dist/fonts/enc/dvips/base/q-rm-uni.enc + texmf-dist/fonts/enc/dvips/base/q-t2a-uni.enc + texmf-dist/fonts/enc/dvips/base/q-t2b-uni.enc + texmf-dist/fonts/enc/dvips/base/q-t2c-uni.enc + texmf-dist/fonts/enc/dvips/base/q-t5-uni.enc + texmf-dist/fonts/enc/dvips/base/q-texnansi-uni.enc + texmf-dist/fonts/enc/dvips/base/q-ts1-uni.enc + texmf-dist/fonts/enc/dvips/base/qx.enc + texmf-dist/fonts/enc/dvips/base/stormex.enc + texmf-dist/fonts/enc/dvips/base/tex256.enc + texmf-dist/fonts/enc/dvips/base/texmext.enc + texmf-dist/fonts/enc/dvips/base/texmital.enc + texmf-dist/fonts/enc/dvips/base/texmsym.enc + texmf-dist/fonts/enc/dvips/base/texnansx.enc + texmf-dist/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-topics dvi-print + +name dvips.i386-linux +category Package +revision 36790 +shortdesc i386-linux files of dvips +binfiles arch=i386-linux size=116 + bin/i386-linux/afm2tfm + bin/i386-linux/dvips + +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. +depend dvisvgm.ARCH +docfiles size=25 + texmf-dist/doc/man/man1/dvisvgm.1 + texmf-dist/doc/man/man1/dvisvgm.man1.pdf +catalogue-ctan /dviware/dvisvgm +catalogue-date 2014-06-20 06:48:16 +0200 +catalogue-license gpl +catalogue-version 1.7 + +name dvisvgm.i386-linux +category TLCore +revision 37257 +shortdesc i386-linux files of dvisvgm +binfiles arch=i386-linux size=515 + bin/i386-linux/dvisvgm + +name dynblocks +category Package +revision 35193 +shortdesc A simple way to create dynamic blocks for Beamer. +relocated 1 +longdesc The package provides full customisation of the aspect and +longdesc dimensions of blocks inside a presentation. +runfiles size=2 + RELOC/tex/latex/dynblocks/dynblocks.sty +docfiles size=216 + RELOC/doc/latex/dynblocks/README + RELOC/doc/latex/dynblocks/dynblocks.pdf + RELOC/doc/latex/dynblocks/dynblocks.tex + RELOC/doc/latex/dynblocks/images/alert_1.pdf + RELOC/doc/latex/dynblocks/images/alert_2.pdf + RELOC/doc/latex/dynblocks/images/align.pdf + RELOC/doc/latex/dynblocks/images/basic_1.pdf + RELOC/doc/latex/dynblocks/images/basic_2.pdf + RELOC/doc/latex/dynblocks/images/cmbx_1.pdf + RELOC/doc/latex/dynblocks/images/cmbx_2.pdf + RELOC/doc/latex/dynblocks/images/cmby_1.pdf + RELOC/doc/latex/dynblocks/images/cmby_2.pdf + RELOC/doc/latex/dynblocks/images/custcol_1.pdf + RELOC/doc/latex/dynblocks/images/custcol_2.pdf + RELOC/doc/latex/dynblocks/images/custcol_3.pdf + RELOC/doc/latex/dynblocks/images/custcol_4.pdf + RELOC/doc/latex/dynblocks/images/estl.pdf + RELOC/doc/latex/dynblocks/images/shdrndc_1.pdf + RELOC/doc/latex/dynblocks/images/shdrndc_2.pdf + RELOC/doc/latex/dynblocks/images/szeg_1.pdf + RELOC/doc/latex/dynblocks/images/szeg_2.pdf +catalogue-ctan /macros/latex/contrib/beamer-contrib/dynblocks +catalogue-date 2014-09-18 13:59:25 +0200 +catalogue-license lppl1.3 +catalogue-version 0.2b + +name dyntree +category Package +revision 15878 +shortdesc Construct Dynkin tree diagrams. +relocated 1 +longdesc The package is intended for users needing to typeset a Dynkin +longdesc Tree Diagram--a group theoretical construct consisting of +longdesc cartan coefficients in boxes connected by a series of lines. +longdesc Such a diagram is a tool for working out the states and their +longdesc weights in terms of the fundamental weights and the simple +longdesc roots. The package makes use of the author's coollist package. +runfiles size=3 + RELOC/tex/latex/dyntree/dyntree.sty +docfiles size=38 + RELOC/doc/latex/dyntree/README + RELOC/doc/latex/dyntree/dyntree.pdf +srcfiles size=12 + RELOC/source/latex/dyntree/dyntree.dtx + RELOC/source/latex/dyntree/dyntree.ins +catalogue-ctan /macros/latex/contrib/dyntree +catalogue-date 2012-04-10 17:44:48 +0200 +catalogue-license lgpl +catalogue-version 1.0 + +name ean13isbn +category Package +revision 15878 +shortdesc Print EAN13 for ISBN. +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 + +name ean +category Package +revision 20851 +shortdesc Macros for making EAN barcodes. +relocated 1 +longdesc Provides EAN-8 and EAN-13 forms. The package needs the ocr-b +longdesc fonts; note that the fonts are not available under a free +longdesc licence, as the macros are. +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-ctan /macros/generic/ean +catalogue-date 2012-04-03 18:09:05 +0200 +catalogue-license gpl + +name easyfig +category Package +revision 26424 +shortdesc Simplifying the use of common figures. +relocated 1 +longdesc The package provides the command \Figure[<key=value>...]{<image +longdesc filename>} to simplify the business of including an image as +longdesc figure in the most common form (centred and with caption and +longdesc label). Caption and label are set using the caption and label +longdesc keys; the label fig:<image filename> is used if none is given. +longdesc If the here key is given, the figure is not 'floated', and the +longdesc user is responsible for placement. The package uses the +longdesc author's package adjustbox to centre an image and to simplify +longdesc further modifications. +runfiles size=2 + RELOC/tex/latex/easyfig/easyfig.sty +docfiles size=61 + RELOC/doc/latex/easyfig/README + RELOC/doc/latex/easyfig/easyfig.pdf +srcfiles size=5 + RELOC/source/latex/easyfig/easyfig.dtx + RELOC/source/latex/easyfig/easyfig.ins +catalogue-ctan /macros/latex/contrib/easyfig +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name easylist +category Package +revision 32661 +shortdesc Lists using a single active character. +relocated 1 +longdesc This package allows you to create lists of numbered items (as +longdesc in Wittgenstein's 'Tractatus') with a single active character +longdesc as the only command. A variety of parameters are available to +longdesc configure the appearance of the list; lists may be nested +longdesc (effectively to unlimited depth). +runfiles size=8 + RELOC/tex/latex/easylist/easylist.sty +docfiles size=163 + RELOC/doc/latex/easylist/README + RELOC/doc/latex/easylist/easylist-doc.pdf + RELOC/doc/latex/easylist/easylist-doc.tex +catalogue-ctan /macros/latex/contrib/easylist +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.3 + +name easyreview +category Package +revision 38352 +shortdesc Package to provide a way to review (or perform editorial process) in LaTeX +relocated 1 +longdesc The easyReview package provides a way to review (or perform +longdesc editorial process) in LaTeX. You can use the provided commands +longdesc to claim attention in different ways to part of the text, or +longdesc even to indicate that a text was added, needs to be removed, +longdesc needs to be replaced and add comments to the text. +runfiles size=1 + RELOC/tex/latex/easyreview/easyReview.sty +docfiles size=86 + RELOC/doc/latex/easyreview/README.txt + RELOC/doc/latex/easyreview/doc/easyReview.pdf + RELOC/doc/latex/easyreview/doc/easyReview.tex +srcfiles size=3 + RELOC/source/latex/easyreview/easyReview.dtx + RELOC/source/latex/easyreview/easyReview.ins +catalogue-ctan /macros/latex/contrib/easyreview +catalogue-date 2015-09-11 21:22:23 +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. +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 +docfiles size=82 + RELOC/doc/latex/ebezier/ebezier.pdf +srcfiles size=18 + RELOC/source/latex/ebezier/ebezier.dtx + RELOC/source/latex/ebezier/ebezier.ins +catalogue-ctan /macros/latex/contrib/ebezier +catalogue-date 2012-06-07 15:01:30 +0200 +catalogue-license lppl +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. +relocated 1 +longdesc EB Garamond is a revival by Georg Duffner of the 16th century +longdesc fonts designed by Claude Garamond. The LaTeX support package +longdesc works for (pdf)LaTeX, xeLaTeX and luaLaTeX users; configuration +longdesc files for use with microtype are provided. +execute addMap EBGaramond.map +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 + 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/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/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/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/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/LY1EBGaramond-Inf.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-Sup.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/LY1EBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-Inf.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-Sup.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/OT1EBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-Inf.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-Sup.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/T1EBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramond-LF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramond-OsF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramond-TLF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramond-TOsF.fd + RELOC/tex/latex/ebgaramond/TS1EBGaramondInitials-TLF.fd + RELOC/tex/latex/ebgaramond/ebgaramond.sty + 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 + +name ebong +category Package +revision 26313 +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 +docfiles size=27 + texmf-dist/doc/latex/ebong/ANNOUNCE.txt + texmf-dist/doc/latex/ebong/README + texmf-dist/doc/latex/ebong/eb.b + texmf-dist/doc/latex/ebong/eb.pdf + texmf-dist/doc/latex/ebong/eb_tex.tex +catalogue-ctan /language/ebong +catalogue-date 2012-05-25 22:30:43 +0200 +catalogue-license pd + +name ebong.i386-linux +category Package +revision 21000 +shortdesc i386-linux files of ebong +binfiles arch=i386-linux size=1 + bin/i386-linux/ebong + +name ebook +category Package +revision 29466 +shortdesc ebook +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. +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-license pd + +name ebproof +category Package +revision 36595 +shortdesc Formal proofs in the style of sequent calculus. +relocated 1 +longdesc This package provides commands to typeset proof trees in the +longdesc style of sequent calculus and related systems. The commands +longdesc allow for writing inferences with any number of premises and +longdesc alignment of successive formulas on an arbitrary point. Various +longdesc options allow complete control over spacing, styles of +longdesc inference rules, placement of labels, etc. The package requires +longdesc 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 + RELOC/doc/latex/ebproof/ebproof.tex +catalogue-ctan /macros/latex/contrib/ebproof +catalogue-date 2015-03-22 12:33:09 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name ebsthesis +category Package +revision 15878 +shortdesc Typesetting theses for economics +relocated 1 +longdesc The ebsthesis class and ebstools package facilitate the +longdesc production of camera-ready manuscripts in conformance with the +longdesc guidelines of Gabler Verlag and typographical rules established +longdesc by the European Business School. +runfiles size=6 + RELOC/tex/latex/ebsthesis/ebsthesis.cls +docfiles size=67 + RELOC/doc/latex/ebsthesis/README + RELOC/doc/latex/ebsthesis/ebsthesis.pdf +srcfiles size=8 + RELOC/source/latex/ebsthesis/ebsthesis.dtx + RELOC/source/latex/ebsthesis/ebsthesis.ins +catalogue-ctan /macros/latex/contrib/ebsthesis +catalogue-date 2014-09-27 23:52:31 +0200 +catalogue-license lppl +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 +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. +relocated 1 +longdesc The EC fonts are European Computer Modern Fonts, supporting the +longdesc complete LaTeX T1 encoding defined at the 1990 TUG conference +longdesc hold at Cork/Ireland. These fonts are intended to be stable +longdesc with no changes being made to the tfm files. The set also +longdesc contains a Text Companion Symbol font, called tc, featuring +longdesc many useful characters needed in text typesetting, for example +longdesc oldstyle digits, currency symbols (including the newly created +longdesc Euro symbol), the permille sign, copyright, trade mark and +longdesc servicemark as well as a copyleft sign, and many others. Recent +longdesc releases of LaTeX2e support the EC fonts. The EC fonts +longdesc supersede the preliminary version released as the DC fonts. The +longdesc fonts are available in (traced) Adobe Type 1 format, as part of +longdesc the cm-super bundle. The other Computer Modern-style T1-encoded +longdesc Type 1 set, Latin Modern, is not actually a direct development +longdesc of the EC set, and differs from the EC in a number of +longdesc particulars. +runfiles size=1445 + RELOC/fonts/source/jknappen/ec/ecbi.mf + RELOC/fonts/source/jknappen/ec/ecbi0500.mf + RELOC/fonts/source/jknappen/ec/ecbi0600.mf + RELOC/fonts/source/jknappen/ec/ecbi0700.mf + RELOC/fonts/source/jknappen/ec/ecbi0800.mf + RELOC/fonts/source/jknappen/ec/ecbi0900.mf + RELOC/fonts/source/jknappen/ec/ecbi1000.mf + RELOC/fonts/source/jknappen/ec/ecbi1095.mf + RELOC/fonts/source/jknappen/ec/ecbi1200.mf + RELOC/fonts/source/jknappen/ec/ecbi1440.mf + RELOC/fonts/source/jknappen/ec/ecbi1728.mf + RELOC/fonts/source/jknappen/ec/ecbi2074.mf + RELOC/fonts/source/jknappen/ec/ecbi2488.mf + RELOC/fonts/source/jknappen/ec/ecbi2986.mf + RELOC/fonts/source/jknappen/ec/ecbi3583.mf + RELOC/fonts/source/jknappen/ec/ecbl.mf + RELOC/fonts/source/jknappen/ec/ecbl0500.mf + RELOC/fonts/source/jknappen/ec/ecbl0600.mf + RELOC/fonts/source/jknappen/ec/ecbl0700.mf + RELOC/fonts/source/jknappen/ec/ecbl0800.mf + RELOC/fonts/source/jknappen/ec/ecbl0900.mf + RELOC/fonts/source/jknappen/ec/ecbl1000.mf + RELOC/fonts/source/jknappen/ec/ecbl1095.mf + RELOC/fonts/source/jknappen/ec/ecbl1200.mf + RELOC/fonts/source/jknappen/ec/ecbl1440.mf + RELOC/fonts/source/jknappen/ec/ecbl1728.mf + RELOC/fonts/source/jknappen/ec/ecbl2074.mf + RELOC/fonts/source/jknappen/ec/ecbl2488.mf + RELOC/fonts/source/jknappen/ec/ecbl2986.mf + RELOC/fonts/source/jknappen/ec/ecbl3583.mf + RELOC/fonts/source/jknappen/ec/ecbm.mf + RELOC/fonts/source/jknappen/ec/ecbx.mf + RELOC/fonts/source/jknappen/ec/ecbx0500.mf + RELOC/fonts/source/jknappen/ec/ecbx0600.mf + RELOC/fonts/source/jknappen/ec/ecbx0700.mf + RELOC/fonts/source/jknappen/ec/ecbx0800.mf + RELOC/fonts/source/jknappen/ec/ecbx0900.mf + RELOC/fonts/source/jknappen/ec/ecbx1000.mf + RELOC/fonts/source/jknappen/ec/ecbx1095.mf + RELOC/fonts/source/jknappen/ec/ecbx1200.mf + RELOC/fonts/source/jknappen/ec/ecbx1440.mf + RELOC/fonts/source/jknappen/ec/ecbx1728.mf + RELOC/fonts/source/jknappen/ec/ecbx2074.mf + RELOC/fonts/source/jknappen/ec/ecbx2488.mf + RELOC/fonts/source/jknappen/ec/ecbx2986.mf + RELOC/fonts/source/jknappen/ec/ecbx3583.mf + RELOC/fonts/source/jknappen/ec/eccc.mf + RELOC/fonts/source/jknappen/ec/eccc0500.mf + RELOC/fonts/source/jknappen/ec/eccc0600.mf + RELOC/fonts/source/jknappen/ec/eccc0700.mf + RELOC/fonts/source/jknappen/ec/eccc0800.mf + RELOC/fonts/source/jknappen/ec/eccc0900.mf + RELOC/fonts/source/jknappen/ec/eccc1000.mf + RELOC/fonts/source/jknappen/ec/eccc1095.mf + RELOC/fonts/source/jknappen/ec/eccc1200.mf + RELOC/fonts/source/jknappen/ec/eccc1440.mf + RELOC/fonts/source/jknappen/ec/eccc1728.mf + RELOC/fonts/source/jknappen/ec/eccc2074.mf + RELOC/fonts/source/jknappen/ec/eccc2488.mf + RELOC/fonts/source/jknappen/ec/eccc2986.mf + RELOC/fonts/source/jknappen/ec/eccc3583.mf + RELOC/fonts/source/jknappen/ec/ecci.mf + RELOC/fonts/source/jknappen/ec/ecci0500.mf + RELOC/fonts/source/jknappen/ec/ecci0600.mf + RELOC/fonts/source/jknappen/ec/ecci0700.mf + RELOC/fonts/source/jknappen/ec/ecci0800.mf + RELOC/fonts/source/jknappen/ec/ecci0900.mf + RELOC/fonts/source/jknappen/ec/ecci1000.mf + RELOC/fonts/source/jknappen/ec/ecci1095.mf + RELOC/fonts/source/jknappen/ec/ecci1200.mf + RELOC/fonts/source/jknappen/ec/ecci1440.mf + RELOC/fonts/source/jknappen/ec/ecci1728.mf + RELOC/fonts/source/jknappen/ec/ecci2074.mf + RELOC/fonts/source/jknappen/ec/ecci2488.mf + RELOC/fonts/source/jknappen/ec/ecci2986.mf + RELOC/fonts/source/jknappen/ec/ecci3583.mf + RELOC/fonts/source/jknappen/ec/ecdh.mf + RELOC/fonts/source/jknappen/ec/ecdh0500.mf + RELOC/fonts/source/jknappen/ec/ecdh0600.mf + RELOC/fonts/source/jknappen/ec/ecdh0700.mf + RELOC/fonts/source/jknappen/ec/ecdh0800.mf + RELOC/fonts/source/jknappen/ec/ecdh0900.mf + RELOC/fonts/source/jknappen/ec/ecdh1000.mf + RELOC/fonts/source/jknappen/ec/ecdh1095.mf + RELOC/fonts/source/jknappen/ec/ecdh1200.mf + RELOC/fonts/source/jknappen/ec/ecdh1440.mf + RELOC/fonts/source/jknappen/ec/ecdh1728.mf + RELOC/fonts/source/jknappen/ec/ecdh2074.mf + RELOC/fonts/source/jknappen/ec/ecdh2488.mf + RELOC/fonts/source/jknappen/ec/ecdh2986.mf + RELOC/fonts/source/jknappen/ec/ecdh3583.mf + RELOC/fonts/source/jknappen/ec/ecfb.mf + RELOC/fonts/source/jknappen/ec/ecff.mf + RELOC/fonts/source/jknappen/ec/ecfi.mf + RELOC/fonts/source/jknappen/ec/ecfs.mf + RELOC/fonts/source/jknappen/ec/ecit.mf + RELOC/fonts/source/jknappen/ec/ecit0800.mf + RELOC/fonts/source/jknappen/ec/ecit0900.mf + RELOC/fonts/source/jknappen/ec/ecit1000.mf + RELOC/fonts/source/jknappen/ec/ecit1095.mf + RELOC/fonts/source/jknappen/ec/ecit1200.mf + RELOC/fonts/source/jknappen/ec/ecit1440.mf + RELOC/fonts/source/jknappen/ec/ecit1728.mf + RELOC/fonts/source/jknappen/ec/ecit2074.mf + RELOC/fonts/source/jknappen/ec/ecit2488.mf + RELOC/fonts/source/jknappen/ec/ecit2986.mf + RELOC/fonts/source/jknappen/ec/ecit3583.mf + RELOC/fonts/source/jknappen/ec/eclb8.mf + RELOC/fonts/source/jknappen/ec/ecli8.mf + RELOC/fonts/source/jknappen/ec/eclo8.mf + RELOC/fonts/source/jknappen/ec/eclq8.mf + RELOC/fonts/source/jknappen/ec/ecltt8.mf + RELOC/fonts/source/jknappen/ec/ecoc.mf + RELOC/fonts/source/jknappen/ec/ecoc0500.mf + RELOC/fonts/source/jknappen/ec/ecoc0600.mf + RELOC/fonts/source/jknappen/ec/ecoc0700.mf + RELOC/fonts/source/jknappen/ec/ecoc0800.mf + RELOC/fonts/source/jknappen/ec/ecoc0900.mf + RELOC/fonts/source/jknappen/ec/ecoc1000.mf + RELOC/fonts/source/jknappen/ec/ecoc1095.mf + RELOC/fonts/source/jknappen/ec/ecoc1200.mf + RELOC/fonts/source/jknappen/ec/ecoc1440.mf + RELOC/fonts/source/jknappen/ec/ecoc1728.mf + RELOC/fonts/source/jknappen/ec/ecoc2074.mf + RELOC/fonts/source/jknappen/ec/ecoc2488.mf + RELOC/fonts/source/jknappen/ec/ecoc2986.mf + RELOC/fonts/source/jknappen/ec/ecoc3583.mf + RELOC/fonts/source/jknappen/ec/ecqi8.mf + RELOC/fonts/source/jknappen/ec/ecrb.mf + RELOC/fonts/source/jknappen/ec/ecrb0500.mf + RELOC/fonts/source/jknappen/ec/ecrb0600.mf + RELOC/fonts/source/jknappen/ec/ecrb0700.mf + RELOC/fonts/source/jknappen/ec/ecrb0800.mf + RELOC/fonts/source/jknappen/ec/ecrb0900.mf + RELOC/fonts/source/jknappen/ec/ecrb1000.mf + RELOC/fonts/source/jknappen/ec/ecrb1095.mf + RELOC/fonts/source/jknappen/ec/ecrb1200.mf + RELOC/fonts/source/jknappen/ec/ecrb1440.mf + RELOC/fonts/source/jknappen/ec/ecrb1728.mf + RELOC/fonts/source/jknappen/ec/ecrb2074.mf + RELOC/fonts/source/jknappen/ec/ecrb2488.mf + RELOC/fonts/source/jknappen/ec/ecrb2986.mf + RELOC/fonts/source/jknappen/ec/ecrb3583.mf + RELOC/fonts/source/jknappen/ec/ecrm.mf + RELOC/fonts/source/jknappen/ec/ecrm0500.mf + RELOC/fonts/source/jknappen/ec/ecrm0600.mf + RELOC/fonts/source/jknappen/ec/ecrm0700.mf + RELOC/fonts/source/jknappen/ec/ecrm0800.mf + RELOC/fonts/source/jknappen/ec/ecrm0900.mf + RELOC/fonts/source/jknappen/ec/ecrm1000.mf + RELOC/fonts/source/jknappen/ec/ecrm1095.mf + RELOC/fonts/source/jknappen/ec/ecrm1200.mf + RELOC/fonts/source/jknappen/ec/ecrm1440.mf + RELOC/fonts/source/jknappen/ec/ecrm1728.mf + RELOC/fonts/source/jknappen/ec/ecrm2074.mf + RELOC/fonts/source/jknappen/ec/ecrm2488.mf + RELOC/fonts/source/jknappen/ec/ecrm2986.mf + RELOC/fonts/source/jknappen/ec/ecrm3583.mf + RELOC/fonts/source/jknappen/ec/ecsc.mf + RELOC/fonts/source/jknappen/ec/ecsc0500.mf + RELOC/fonts/source/jknappen/ec/ecsc0600.mf + RELOC/fonts/source/jknappen/ec/ecsc0700.mf + RELOC/fonts/source/jknappen/ec/ecsc0800.mf + RELOC/fonts/source/jknappen/ec/ecsc0900.mf + RELOC/fonts/source/jknappen/ec/ecsc1000.mf + RELOC/fonts/source/jknappen/ec/ecsc1095.mf + RELOC/fonts/source/jknappen/ec/ecsc1200.mf + RELOC/fonts/source/jknappen/ec/ecsc1440.mf + RELOC/fonts/source/jknappen/ec/ecsc1728.mf + RELOC/fonts/source/jknappen/ec/ecsc2074.mf + RELOC/fonts/source/jknappen/ec/ecsc2488.mf + RELOC/fonts/source/jknappen/ec/ecsc2986.mf + RELOC/fonts/source/jknappen/ec/ecsc3583.mf + RELOC/fonts/source/jknappen/ec/ecsi.mf + RELOC/fonts/source/jknappen/ec/ecsi0500.mf + RELOC/fonts/source/jknappen/ec/ecsi0600.mf + RELOC/fonts/source/jknappen/ec/ecsi0700.mf + RELOC/fonts/source/jknappen/ec/ecsi0800.mf + RELOC/fonts/source/jknappen/ec/ecsi0900.mf + RELOC/fonts/source/jknappen/ec/ecsi1000.mf + RELOC/fonts/source/jknappen/ec/ecsi1095.mf + RELOC/fonts/source/jknappen/ec/ecsi1200.mf + RELOC/fonts/source/jknappen/ec/ecsi1440.mf + RELOC/fonts/source/jknappen/ec/ecsi1728.mf + RELOC/fonts/source/jknappen/ec/ecsi2074.mf + RELOC/fonts/source/jknappen/ec/ecsi2488.mf + RELOC/fonts/source/jknappen/ec/ecsi2986.mf + RELOC/fonts/source/jknappen/ec/ecsi3583.mf + RELOC/fonts/source/jknappen/ec/ecsl.mf + RELOC/fonts/source/jknappen/ec/ecsl0500.mf + RELOC/fonts/source/jknappen/ec/ecsl0600.mf + RELOC/fonts/source/jknappen/ec/ecsl0700.mf + RELOC/fonts/source/jknappen/ec/ecsl0800.mf + RELOC/fonts/source/jknappen/ec/ecsl0900.mf + RELOC/fonts/source/jknappen/ec/ecsl1000.mf + RELOC/fonts/source/jknappen/ec/ecsl1095.mf + RELOC/fonts/source/jknappen/ec/ecsl1200.mf + RELOC/fonts/source/jknappen/ec/ecsl1440.mf + RELOC/fonts/source/jknappen/ec/ecsl1728.mf + RELOC/fonts/source/jknappen/ec/ecsl2074.mf + RELOC/fonts/source/jknappen/ec/ecsl2488.mf + RELOC/fonts/source/jknappen/ec/ecsl2986.mf + RELOC/fonts/source/jknappen/ec/ecsl3583.mf + RELOC/fonts/source/jknappen/ec/ecso.mf + RELOC/fonts/source/jknappen/ec/ecso0500.mf + RELOC/fonts/source/jknappen/ec/ecso0600.mf + RELOC/fonts/source/jknappen/ec/ecso0700.mf + RELOC/fonts/source/jknappen/ec/ecso0800.mf + RELOC/fonts/source/jknappen/ec/ecso0900.mf + RELOC/fonts/source/jknappen/ec/ecso1000.mf + RELOC/fonts/source/jknappen/ec/ecso1095.mf + RELOC/fonts/source/jknappen/ec/ecso1200.mf + RELOC/fonts/source/jknappen/ec/ecso1440.mf + RELOC/fonts/source/jknappen/ec/ecso1728.mf + RELOC/fonts/source/jknappen/ec/ecso2074.mf + RELOC/fonts/source/jknappen/ec/ecso2488.mf + RELOC/fonts/source/jknappen/ec/ecso2986.mf + RELOC/fonts/source/jknappen/ec/ecso3583.mf + RELOC/fonts/source/jknappen/ec/ecsq8.mf + RELOC/fonts/source/jknappen/ec/ecss.mf + RELOC/fonts/source/jknappen/ec/ecss0500.mf + RELOC/fonts/source/jknappen/ec/ecss0600.mf + RELOC/fonts/source/jknappen/ec/ecss0700.mf + RELOC/fonts/source/jknappen/ec/ecss0800.mf + RELOC/fonts/source/jknappen/ec/ecss0900.mf + RELOC/fonts/source/jknappen/ec/ecss1000.mf + RELOC/fonts/source/jknappen/ec/ecss1095.mf + RELOC/fonts/source/jknappen/ec/ecss1200.mf + RELOC/fonts/source/jknappen/ec/ecss1440.mf + RELOC/fonts/source/jknappen/ec/ecss1728.mf + RELOC/fonts/source/jknappen/ec/ecss2074.mf + RELOC/fonts/source/jknappen/ec/ecss2488.mf + RELOC/fonts/source/jknappen/ec/ecss2986.mf + RELOC/fonts/source/jknappen/ec/ecss3583.mf + RELOC/fonts/source/jknappen/ec/ecssdc10.mf + RELOC/fonts/source/jknappen/ec/ecst.mf + RELOC/fonts/source/jknappen/ec/ecst0800.mf + RELOC/fonts/source/jknappen/ec/ecst0900.mf + RELOC/fonts/source/jknappen/ec/ecst1000.mf + RELOC/fonts/source/jknappen/ec/ecst1095.mf + RELOC/fonts/source/jknappen/ec/ecst1200.mf + RELOC/fonts/source/jknappen/ec/ecst1440.mf + RELOC/fonts/source/jknappen/ec/ecst1728.mf + RELOC/fonts/source/jknappen/ec/ecst2074.mf + RELOC/fonts/source/jknappen/ec/ecst2488.mf + RELOC/fonts/source/jknappen/ec/ecst2986.mf + RELOC/fonts/source/jknappen/ec/ecst3583.mf + RELOC/fonts/source/jknappen/ec/ecsx.mf + RELOC/fonts/source/jknappen/ec/ecsx0500.mf + RELOC/fonts/source/jknappen/ec/ecsx0600.mf + RELOC/fonts/source/jknappen/ec/ecsx0700.mf + RELOC/fonts/source/jknappen/ec/ecsx0800.mf + RELOC/fonts/source/jknappen/ec/ecsx0900.mf + RELOC/fonts/source/jknappen/ec/ecsx1000.mf + RELOC/fonts/source/jknappen/ec/ecsx1095.mf + RELOC/fonts/source/jknappen/ec/ecsx1200.mf + RELOC/fonts/source/jknappen/ec/ecsx1440.mf + RELOC/fonts/source/jknappen/ec/ecsx1728.mf + RELOC/fonts/source/jknappen/ec/ecsx2074.mf + RELOC/fonts/source/jknappen/ec/ecsx2488.mf + RELOC/fonts/source/jknappen/ec/ecsx2986.mf + RELOC/fonts/source/jknappen/ec/ecsx3583.mf + RELOC/fonts/source/jknappen/ec/ectc.mf + RELOC/fonts/source/jknappen/ec/ectc0800.mf + RELOC/fonts/source/jknappen/ec/ectc0900.mf + RELOC/fonts/source/jknappen/ec/ectc1000.mf + RELOC/fonts/source/jknappen/ec/ectc1095.mf + RELOC/fonts/source/jknappen/ec/ectc1200.mf + RELOC/fonts/source/jknappen/ec/ectc1440.mf + RELOC/fonts/source/jknappen/ec/ectc1728.mf + RELOC/fonts/source/jknappen/ec/ectc2074.mf + RELOC/fonts/source/jknappen/ec/ectc2488.mf + RELOC/fonts/source/jknappen/ec/ectc2986.mf + RELOC/fonts/source/jknappen/ec/ectc3583.mf + RELOC/fonts/source/jknappen/ec/ecti.mf + RELOC/fonts/source/jknappen/ec/ecti0500.mf + RELOC/fonts/source/jknappen/ec/ecti0600.mf + RELOC/fonts/source/jknappen/ec/ecti0700.mf + RELOC/fonts/source/jknappen/ec/ecti0800.mf + RELOC/fonts/source/jknappen/ec/ecti0900.mf + RELOC/fonts/source/jknappen/ec/ecti1000.mf + RELOC/fonts/source/jknappen/ec/ecti1095.mf + RELOC/fonts/source/jknappen/ec/ecti1200.mf + RELOC/fonts/source/jknappen/ec/ecti1440.mf + RELOC/fonts/source/jknappen/ec/ecti1728.mf + RELOC/fonts/source/jknappen/ec/ecti2074.mf + RELOC/fonts/source/jknappen/ec/ecti2488.mf + RELOC/fonts/source/jknappen/ec/ecti2986.mf + RELOC/fonts/source/jknappen/ec/ecti3583.mf + RELOC/fonts/source/jknappen/ec/ectt.mf + RELOC/fonts/source/jknappen/ec/ectt0800.mf + RELOC/fonts/source/jknappen/ec/ectt0900.mf + RELOC/fonts/source/jknappen/ec/ectt1000.mf + RELOC/fonts/source/jknappen/ec/ectt1095.mf + RELOC/fonts/source/jknappen/ec/ectt1200.mf + RELOC/fonts/source/jknappen/ec/ectt1440.mf + RELOC/fonts/source/jknappen/ec/ectt1728.mf + RELOC/fonts/source/jknappen/ec/ectt2074.mf + RELOC/fonts/source/jknappen/ec/ectt2488.mf + RELOC/fonts/source/jknappen/ec/ectt2986.mf + RELOC/fonts/source/jknappen/ec/ectt3583.mf + RELOC/fonts/source/jknappen/ec/ecui.mf + RELOC/fonts/source/jknappen/ec/ecui0500.mf + RELOC/fonts/source/jknappen/ec/ecui0600.mf + RELOC/fonts/source/jknappen/ec/ecui0700.mf + RELOC/fonts/source/jknappen/ec/ecui0800.mf + RELOC/fonts/source/jknappen/ec/ecui0900.mf + RELOC/fonts/source/jknappen/ec/ecui1000.mf + RELOC/fonts/source/jknappen/ec/ecui1095.mf + RELOC/fonts/source/jknappen/ec/ecui1200.mf + RELOC/fonts/source/jknappen/ec/ecui1440.mf + RELOC/fonts/source/jknappen/ec/ecui1728.mf + RELOC/fonts/source/jknappen/ec/ecui2074.mf + RELOC/fonts/source/jknappen/ec/ecui2488.mf + RELOC/fonts/source/jknappen/ec/ecui2986.mf + RELOC/fonts/source/jknappen/ec/ecui3583.mf + RELOC/fonts/source/jknappen/ec/ecvi.mf + RELOC/fonts/source/jknappen/ec/ecvi0800.mf + RELOC/fonts/source/jknappen/ec/ecvi0900.mf + RELOC/fonts/source/jknappen/ec/ecvi1000.mf + RELOC/fonts/source/jknappen/ec/ecvi1095.mf + RELOC/fonts/source/jknappen/ec/ecvi1200.mf + RELOC/fonts/source/jknappen/ec/ecvi1440.mf + RELOC/fonts/source/jknappen/ec/ecvi1728.mf + RELOC/fonts/source/jknappen/ec/ecvi2074.mf + RELOC/fonts/source/jknappen/ec/ecvi2488.mf + RELOC/fonts/source/jknappen/ec/ecvi2986.mf + RELOC/fonts/source/jknappen/ec/ecvi3583.mf + RELOC/fonts/source/jknappen/ec/ecvt.mf + RELOC/fonts/source/jknappen/ec/ecvt0800.mf + RELOC/fonts/source/jknappen/ec/ecvt0900.mf + RELOC/fonts/source/jknappen/ec/ecvt1000.mf + RELOC/fonts/source/jknappen/ec/ecvt1095.mf + RELOC/fonts/source/jknappen/ec/ecvt1200.mf + RELOC/fonts/source/jknappen/ec/ecvt1440.mf + RELOC/fonts/source/jknappen/ec/ecvt1728.mf + RELOC/fonts/source/jknappen/ec/ecvt2074.mf + RELOC/fonts/source/jknappen/ec/ecvt2488.mf + RELOC/fonts/source/jknappen/ec/ecvt2986.mf + RELOC/fonts/source/jknappen/ec/ecvt3583.mf + RELOC/fonts/source/jknappen/ec/ecxc.mf + RELOC/fonts/source/jknappen/ec/ecxc0500.mf + RELOC/fonts/source/jknappen/ec/ecxc0600.mf + RELOC/fonts/source/jknappen/ec/ecxc0700.mf + RELOC/fonts/source/jknappen/ec/ecxc0800.mf + RELOC/fonts/source/jknappen/ec/ecxc0900.mf + RELOC/fonts/source/jknappen/ec/ecxc1000.mf + RELOC/fonts/source/jknappen/ec/ecxc1095.mf + RELOC/fonts/source/jknappen/ec/ecxc1200.mf + RELOC/fonts/source/jknappen/ec/ecxc1440.mf + RELOC/fonts/source/jknappen/ec/ecxc1728.mf + RELOC/fonts/source/jknappen/ec/ecxc2074.mf + RELOC/fonts/source/jknappen/ec/ecxc2488.mf + RELOC/fonts/source/jknappen/ec/ecxc2986.mf + RELOC/fonts/source/jknappen/ec/ecxc3583.mf + RELOC/fonts/source/jknappen/ec/exaccent.mf + RELOC/fonts/source/jknappen/ec/exaccess.mf + RELOC/fonts/source/jknappen/ec/exbase.mf + RELOC/fonts/source/jknappen/ec/exbraces.mf + RELOC/fonts/source/jknappen/ec/excligtb.mf + RELOC/fonts/source/jknappen/ec/excsc.mf + RELOC/fonts/source/jknappen/ec/excspl.mf + RELOC/fonts/source/jknappen/ec/exidigit.mf + RELOC/fonts/source/jknappen/ec/exileast.mf + RELOC/fonts/source/jknappen/ec/exilig.mf + RELOC/fonts/source/jknappen/ec/exiligtb.mf + RELOC/fonts/source/jknappen/ec/exillett.mf + RELOC/fonts/source/jknappen/ec/exilwest.mf + RELOC/fonts/source/jknappen/ec/exisixts.mf + RELOC/fonts/source/jknappen/ec/exitalp.mf + RELOC/fonts/source/jknappen/ec/exmligtb.mf + RELOC/fonts/source/jknappen/ec/expseudo.mf + RELOC/fonts/source/jknappen/ec/expunct.mf + RELOC/fonts/source/jknappen/ec/exrdigit.mf + RELOC/fonts/source/jknappen/ec/exrleast.mf + RELOC/fonts/source/jknappen/ec/exrlig.mf + RELOC/fonts/source/jknappen/ec/exrligtb.mf + RELOC/fonts/source/jknappen/ec/exrllett.mf + RELOC/fonts/source/jknappen/ec/exrlwest.mf + RELOC/fonts/source/jknappen/ec/exroman.mf + RELOC/fonts/source/jknappen/ec/exromp.mf + RELOC/fonts/source/jknappen/ec/exrueast.mf + RELOC/fonts/source/jknappen/ec/exrulett.mf + RELOC/fonts/source/jknappen/ec/exruwest.mf + RELOC/fonts/source/jknappen/ec/exsign.mf + RELOC/fonts/source/jknappen/ec/exsixtst.mf + RELOC/fonts/source/jknappen/ec/extextit.mf + RELOC/fonts/source/jknappen/ec/ieclb8.mf + RELOC/fonts/source/jknappen/ec/iecli8.mf + RELOC/fonts/source/jknappen/ec/ieclo8.mf + RELOC/fonts/source/jknappen/ec/ieclq8.mf + RELOC/fonts/source/jknappen/ec/iecltt8.mf + RELOC/fonts/source/jknappen/ec/tcbi.mf + RELOC/fonts/source/jknappen/ec/tcbi0500.mf + RELOC/fonts/source/jknappen/ec/tcbi0600.mf + RELOC/fonts/source/jknappen/ec/tcbi0700.mf + RELOC/fonts/source/jknappen/ec/tcbi0800.mf + RELOC/fonts/source/jknappen/ec/tcbi0900.mf + RELOC/fonts/source/jknappen/ec/tcbi1000.mf + RELOC/fonts/source/jknappen/ec/tcbi1095.mf + RELOC/fonts/source/jknappen/ec/tcbi1200.mf + RELOC/fonts/source/jknappen/ec/tcbi1440.mf + RELOC/fonts/source/jknappen/ec/tcbi1728.mf + RELOC/fonts/source/jknappen/ec/tcbi2074.mf + RELOC/fonts/source/jknappen/ec/tcbi2488.mf + RELOC/fonts/source/jknappen/ec/tcbi2986.mf + RELOC/fonts/source/jknappen/ec/tcbi3583.mf + RELOC/fonts/source/jknappen/ec/tcbl.mf + RELOC/fonts/source/jknappen/ec/tcbl0500.mf + RELOC/fonts/source/jknappen/ec/tcbl0600.mf + RELOC/fonts/source/jknappen/ec/tcbl0700.mf + RELOC/fonts/source/jknappen/ec/tcbl0800.mf + RELOC/fonts/source/jknappen/ec/tcbl0900.mf + RELOC/fonts/source/jknappen/ec/tcbl1000.mf + RELOC/fonts/source/jknappen/ec/tcbl1095.mf + RELOC/fonts/source/jknappen/ec/tcbl1200.mf + RELOC/fonts/source/jknappen/ec/tcbl1440.mf + RELOC/fonts/source/jknappen/ec/tcbl1728.mf + RELOC/fonts/source/jknappen/ec/tcbl2074.mf + RELOC/fonts/source/jknappen/ec/tcbl2488.mf + RELOC/fonts/source/jknappen/ec/tcbl2986.mf + RELOC/fonts/source/jknappen/ec/tcbl3583.mf + RELOC/fonts/source/jknappen/ec/tcbm.mf + RELOC/fonts/source/jknappen/ec/tcbx.mf + RELOC/fonts/source/jknappen/ec/tcbx0500.mf + RELOC/fonts/source/jknappen/ec/tcbx0600.mf + RELOC/fonts/source/jknappen/ec/tcbx0700.mf + RELOC/fonts/source/jknappen/ec/tcbx0800.mf + RELOC/fonts/source/jknappen/ec/tcbx0900.mf + RELOC/fonts/source/jknappen/ec/tcbx1000.mf + RELOC/fonts/source/jknappen/ec/tcbx1095.mf + RELOC/fonts/source/jknappen/ec/tcbx1200.mf + RELOC/fonts/source/jknappen/ec/tcbx1440.mf + RELOC/fonts/source/jknappen/ec/tcbx1728.mf + RELOC/fonts/source/jknappen/ec/tcbx2074.mf + RELOC/fonts/source/jknappen/ec/tcbx2488.mf + RELOC/fonts/source/jknappen/ec/tcbx2986.mf + RELOC/fonts/source/jknappen/ec/tcbx3583.mf + RELOC/fonts/source/jknappen/ec/tcci.mf + RELOC/fonts/source/jknappen/ec/tcci0500.mf + RELOC/fonts/source/jknappen/ec/tcci0600.mf + RELOC/fonts/source/jknappen/ec/tcci0700.mf + RELOC/fonts/source/jknappen/ec/tcci0800.mf + RELOC/fonts/source/jknappen/ec/tcci0900.mf + RELOC/fonts/source/jknappen/ec/tcci1000.mf + RELOC/fonts/source/jknappen/ec/tcci1095.mf + RELOC/fonts/source/jknappen/ec/tcci1200.mf + RELOC/fonts/source/jknappen/ec/tcci1440.mf + RELOC/fonts/source/jknappen/ec/tcci1728.mf + RELOC/fonts/source/jknappen/ec/tcci2074.mf + RELOC/fonts/source/jknappen/ec/tcci2488.mf + RELOC/fonts/source/jknappen/ec/tcci2986.mf + RELOC/fonts/source/jknappen/ec/tcci3583.mf + RELOC/fonts/source/jknappen/ec/tcdh.mf + RELOC/fonts/source/jknappen/ec/tcfb.mf + RELOC/fonts/source/jknappen/ec/tcff.mf + RELOC/fonts/source/jknappen/ec/tcfi.mf + RELOC/fonts/source/jknappen/ec/tcfs.mf + RELOC/fonts/source/jknappen/ec/tcit.mf + RELOC/fonts/source/jknappen/ec/tcit0800.mf + RELOC/fonts/source/jknappen/ec/tcit0900.mf + RELOC/fonts/source/jknappen/ec/tcit1000.mf + RELOC/fonts/source/jknappen/ec/tcit1095.mf + RELOC/fonts/source/jknappen/ec/tcit1200.mf + RELOC/fonts/source/jknappen/ec/tcit1440.mf + RELOC/fonts/source/jknappen/ec/tcit1728.mf + RELOC/fonts/source/jknappen/ec/tcit2074.mf + RELOC/fonts/source/jknappen/ec/tcit2488.mf + RELOC/fonts/source/jknappen/ec/tcit2986.mf + RELOC/fonts/source/jknappen/ec/tcit3583.mf + RELOC/fonts/source/jknappen/ec/tcrb.mf + RELOC/fonts/source/jknappen/ec/tcrb0500.mf + RELOC/fonts/source/jknappen/ec/tcrb0600.mf + RELOC/fonts/source/jknappen/ec/tcrb0700.mf + RELOC/fonts/source/jknappen/ec/tcrb0800.mf + RELOC/fonts/source/jknappen/ec/tcrb0900.mf + RELOC/fonts/source/jknappen/ec/tcrb1000.mf + RELOC/fonts/source/jknappen/ec/tcrb1095.mf + RELOC/fonts/source/jknappen/ec/tcrb1200.mf + RELOC/fonts/source/jknappen/ec/tcrb1440.mf + RELOC/fonts/source/jknappen/ec/tcrb1728.mf + RELOC/fonts/source/jknappen/ec/tcrb2074.mf + RELOC/fonts/source/jknappen/ec/tcrb2488.mf + RELOC/fonts/source/jknappen/ec/tcrb2986.mf + RELOC/fonts/source/jknappen/ec/tcrb3583.mf + RELOC/fonts/source/jknappen/ec/tcrm.mf + RELOC/fonts/source/jknappen/ec/tcrm0500.mf + RELOC/fonts/source/jknappen/ec/tcrm0600.mf + RELOC/fonts/source/jknappen/ec/tcrm0700.mf + RELOC/fonts/source/jknappen/ec/tcrm0800.mf + RELOC/fonts/source/jknappen/ec/tcrm0900.mf + RELOC/fonts/source/jknappen/ec/tcrm1000.mf + RELOC/fonts/source/jknappen/ec/tcrm1095.mf + RELOC/fonts/source/jknappen/ec/tcrm1200.mf + RELOC/fonts/source/jknappen/ec/tcrm1440.mf + RELOC/fonts/source/jknappen/ec/tcrm1728.mf + RELOC/fonts/source/jknappen/ec/tcrm2074.mf + RELOC/fonts/source/jknappen/ec/tcrm2488.mf + RELOC/fonts/source/jknappen/ec/tcrm2986.mf + RELOC/fonts/source/jknappen/ec/tcrm3583.mf + RELOC/fonts/source/jknappen/ec/tcsi.mf + RELOC/fonts/source/jknappen/ec/tcsi0500.mf + RELOC/fonts/source/jknappen/ec/tcsi0600.mf + RELOC/fonts/source/jknappen/ec/tcsi0700.mf + RELOC/fonts/source/jknappen/ec/tcsi0800.mf + RELOC/fonts/source/jknappen/ec/tcsi0900.mf + RELOC/fonts/source/jknappen/ec/tcsi1000.mf + RELOC/fonts/source/jknappen/ec/tcsi1095.mf + RELOC/fonts/source/jknappen/ec/tcsi1200.mf + RELOC/fonts/source/jknappen/ec/tcsi1440.mf + RELOC/fonts/source/jknappen/ec/tcsi1728.mf + RELOC/fonts/source/jknappen/ec/tcsi2074.mf + RELOC/fonts/source/jknappen/ec/tcsi2488.mf + RELOC/fonts/source/jknappen/ec/tcsi2986.mf + RELOC/fonts/source/jknappen/ec/tcsi3583.mf + RELOC/fonts/source/jknappen/ec/tcsl.mf + RELOC/fonts/source/jknappen/ec/tcsl0500.mf + RELOC/fonts/source/jknappen/ec/tcsl0600.mf + RELOC/fonts/source/jknappen/ec/tcsl0700.mf + RELOC/fonts/source/jknappen/ec/tcsl0800.mf + RELOC/fonts/source/jknappen/ec/tcsl0900.mf + RELOC/fonts/source/jknappen/ec/tcsl1000.mf + RELOC/fonts/source/jknappen/ec/tcsl1095.mf + RELOC/fonts/source/jknappen/ec/tcsl1200.mf + RELOC/fonts/source/jknappen/ec/tcsl1440.mf + RELOC/fonts/source/jknappen/ec/tcsl1728.mf + RELOC/fonts/source/jknappen/ec/tcsl2074.mf + RELOC/fonts/source/jknappen/ec/tcsl2488.mf + RELOC/fonts/source/jknappen/ec/tcsl2986.mf + RELOC/fonts/source/jknappen/ec/tcsl3583.mf + RELOC/fonts/source/jknappen/ec/tcso.mf + RELOC/fonts/source/jknappen/ec/tcso0500.mf + RELOC/fonts/source/jknappen/ec/tcso0600.mf + RELOC/fonts/source/jknappen/ec/tcso0700.mf + RELOC/fonts/source/jknappen/ec/tcso0800.mf + RELOC/fonts/source/jknappen/ec/tcso0900.mf + RELOC/fonts/source/jknappen/ec/tcso1000.mf + RELOC/fonts/source/jknappen/ec/tcso1095.mf + RELOC/fonts/source/jknappen/ec/tcso1200.mf + RELOC/fonts/source/jknappen/ec/tcso1440.mf + RELOC/fonts/source/jknappen/ec/tcso1728.mf + RELOC/fonts/source/jknappen/ec/tcso2074.mf + RELOC/fonts/source/jknappen/ec/tcso2488.mf + RELOC/fonts/source/jknappen/ec/tcso2986.mf + RELOC/fonts/source/jknappen/ec/tcso3583.mf + RELOC/fonts/source/jknappen/ec/tcss.mf + RELOC/fonts/source/jknappen/ec/tcss0500.mf + RELOC/fonts/source/jknappen/ec/tcss0600.mf + RELOC/fonts/source/jknappen/ec/tcss0700.mf + RELOC/fonts/source/jknappen/ec/tcss0800.mf + RELOC/fonts/source/jknappen/ec/tcss0900.mf + RELOC/fonts/source/jknappen/ec/tcss1000.mf + RELOC/fonts/source/jknappen/ec/tcss1095.mf + RELOC/fonts/source/jknappen/ec/tcss1200.mf + RELOC/fonts/source/jknappen/ec/tcss1440.mf + RELOC/fonts/source/jknappen/ec/tcss1728.mf + RELOC/fonts/source/jknappen/ec/tcss2074.mf + RELOC/fonts/source/jknappen/ec/tcss2488.mf + RELOC/fonts/source/jknappen/ec/tcss2986.mf + RELOC/fonts/source/jknappen/ec/tcss3583.mf + RELOC/fonts/source/jknappen/ec/tcst.mf + RELOC/fonts/source/jknappen/ec/tcst0800.mf + RELOC/fonts/source/jknappen/ec/tcst0900.mf + RELOC/fonts/source/jknappen/ec/tcst1000.mf + RELOC/fonts/source/jknappen/ec/tcst1095.mf + RELOC/fonts/source/jknappen/ec/tcst1200.mf + RELOC/fonts/source/jknappen/ec/tcst1440.mf + RELOC/fonts/source/jknappen/ec/tcst1728.mf + RELOC/fonts/source/jknappen/ec/tcst2074.mf + RELOC/fonts/source/jknappen/ec/tcst2488.mf + RELOC/fonts/source/jknappen/ec/tcst2986.mf + RELOC/fonts/source/jknappen/ec/tcst3583.mf + RELOC/fonts/source/jknappen/ec/tcsx.mf + RELOC/fonts/source/jknappen/ec/tcsx0500.mf + RELOC/fonts/source/jknappen/ec/tcsx0600.mf + RELOC/fonts/source/jknappen/ec/tcsx0700.mf + RELOC/fonts/source/jknappen/ec/tcsx0800.mf + RELOC/fonts/source/jknappen/ec/tcsx0900.mf + RELOC/fonts/source/jknappen/ec/tcsx1000.mf + RELOC/fonts/source/jknappen/ec/tcsx1095.mf + RELOC/fonts/source/jknappen/ec/tcsx1200.mf + RELOC/fonts/source/jknappen/ec/tcsx1440.mf + RELOC/fonts/source/jknappen/ec/tcsx1728.mf + RELOC/fonts/source/jknappen/ec/tcsx2074.mf + RELOC/fonts/source/jknappen/ec/tcsx2488.mf + RELOC/fonts/source/jknappen/ec/tcsx2986.mf + RELOC/fonts/source/jknappen/ec/tcsx3583.mf + RELOC/fonts/source/jknappen/ec/tcti.mf + RELOC/fonts/source/jknappen/ec/tcti0500.mf + RELOC/fonts/source/jknappen/ec/tcti0600.mf + RELOC/fonts/source/jknappen/ec/tcti0700.mf + RELOC/fonts/source/jknappen/ec/tcti0800.mf + RELOC/fonts/source/jknappen/ec/tcti0900.mf + RELOC/fonts/source/jknappen/ec/tcti1000.mf + RELOC/fonts/source/jknappen/ec/tcti1095.mf + RELOC/fonts/source/jknappen/ec/tcti1200.mf + RELOC/fonts/source/jknappen/ec/tcti1440.mf + RELOC/fonts/source/jknappen/ec/tcti1728.mf + RELOC/fonts/source/jknappen/ec/tcti2074.mf + RELOC/fonts/source/jknappen/ec/tcti2488.mf + RELOC/fonts/source/jknappen/ec/tcti2986.mf + RELOC/fonts/source/jknappen/ec/tcti3583.mf + RELOC/fonts/source/jknappen/ec/tctt.mf + RELOC/fonts/source/jknappen/ec/tctt0800.mf + RELOC/fonts/source/jknappen/ec/tctt0900.mf + RELOC/fonts/source/jknappen/ec/tctt1000.mf + RELOC/fonts/source/jknappen/ec/tctt1095.mf + RELOC/fonts/source/jknappen/ec/tctt1200.mf + RELOC/fonts/source/jknappen/ec/tctt1440.mf + RELOC/fonts/source/jknappen/ec/tctt1728.mf + RELOC/fonts/source/jknappen/ec/tctt2074.mf + RELOC/fonts/source/jknappen/ec/tctt2488.mf + RELOC/fonts/source/jknappen/ec/tctt2986.mf + RELOC/fonts/source/jknappen/ec/tctt3583.mf + RELOC/fonts/source/jknappen/ec/tcui.mf + RELOC/fonts/source/jknappen/ec/tcui0500.mf + RELOC/fonts/source/jknappen/ec/tcui0600.mf + RELOC/fonts/source/jknappen/ec/tcui0700.mf + RELOC/fonts/source/jknappen/ec/tcui0800.mf + RELOC/fonts/source/jknappen/ec/tcui0900.mf + RELOC/fonts/source/jknappen/ec/tcui1000.mf + RELOC/fonts/source/jknappen/ec/tcui1095.mf + RELOC/fonts/source/jknappen/ec/tcui1200.mf + RELOC/fonts/source/jknappen/ec/tcui1440.mf + RELOC/fonts/source/jknappen/ec/tcui1728.mf + RELOC/fonts/source/jknappen/ec/tcui2074.mf + RELOC/fonts/source/jknappen/ec/tcui2488.mf + RELOC/fonts/source/jknappen/ec/tcui2986.mf + RELOC/fonts/source/jknappen/ec/tcui3583.mf + RELOC/fonts/source/jknappen/ec/tcvi.mf + RELOC/fonts/source/jknappen/ec/tcvi0800.mf + RELOC/fonts/source/jknappen/ec/tcvi0900.mf + RELOC/fonts/source/jknappen/ec/tcvi1000.mf + RELOC/fonts/source/jknappen/ec/tcvi1095.mf + RELOC/fonts/source/jknappen/ec/tcvi1200.mf + RELOC/fonts/source/jknappen/ec/tcvi1440.mf + RELOC/fonts/source/jknappen/ec/tcvi1728.mf + RELOC/fonts/source/jknappen/ec/tcvi2074.mf + RELOC/fonts/source/jknappen/ec/tcvi2488.mf + RELOC/fonts/source/jknappen/ec/tcvi2986.mf + RELOC/fonts/source/jknappen/ec/tcvi3583.mf + RELOC/fonts/source/jknappen/ec/tcvt.mf + RELOC/fonts/source/jknappen/ec/tcvt0800.mf + RELOC/fonts/source/jknappen/ec/tcvt0900.mf + RELOC/fonts/source/jknappen/ec/tcvt1000.mf + RELOC/fonts/source/jknappen/ec/tcvt1095.mf + RELOC/fonts/source/jknappen/ec/tcvt1200.mf + RELOC/fonts/source/jknappen/ec/tcvt1440.mf + RELOC/fonts/source/jknappen/ec/tcvt1728.mf + RELOC/fonts/source/jknappen/ec/tcvt2074.mf + RELOC/fonts/source/jknappen/ec/tcvt2488.mf + RELOC/fonts/source/jknappen/ec/tcvt2986.mf + RELOC/fonts/source/jknappen/ec/tcvt3583.mf + RELOC/fonts/source/jknappen/ec/txaccent.mf + RELOC/fonts/source/jknappen/ec/txgen.mf + RELOC/fonts/source/jknappen/ec/txifract.mf + RELOC/fonts/source/jknappen/ec/txisuper.mf + RELOC/fonts/source/jknappen/ec/txitlod.mf + RELOC/fonts/source/jknappen/ec/txpseudo.mf + RELOC/fonts/source/jknappen/ec/txrfract.mf + RELOC/fonts/source/jknappen/ec/txromod.mf + RELOC/fonts/source/jknappen/ec/txrsuper.mf + RELOC/fonts/source/jknappen/ec/txsymb.mf + RELOC/fonts/source/jknappen/ec/txsymbol.mf + RELOC/fonts/tfm/jknappen/ec/ecbi0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecbi3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecbl3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecbx3583.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0500.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0600.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0700.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0800.tfm + RELOC/fonts/tfm/jknappen/ec/eccc0900.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1000.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1095.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1200.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1440.tfm + RELOC/fonts/tfm/jknappen/ec/eccc1728.tfm + RELOC/fonts/tfm/jknappen/ec/eccc2074.tfm + RELOC/fonts/tfm/jknappen/ec/eccc2488.tfm + RELOC/fonts/tfm/jknappen/ec/eccc2986.tfm + RELOC/fonts/tfm/jknappen/ec/eccc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecci0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecci1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecci2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecci2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecci2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecci3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecdh3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecit0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecit0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecit1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecit2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecit2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecit2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecit3583.tfm + RELOC/fonts/tfm/jknappen/ec/eclb8.tfm + RELOC/fonts/tfm/jknappen/ec/ecli8.tfm + RELOC/fonts/tfm/jknappen/ec/eclo8.tfm + RELOC/fonts/tfm/jknappen/ec/eclq8.tfm + RELOC/fonts/tfm/jknappen/ec/ecltt8.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecoc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecrb3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecrm3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecsc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecsi3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecsl3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecso0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecso1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecso2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecso2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecso2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecso3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecss0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecss1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecss2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecss2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecss2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecss3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecst0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecst0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecst1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecst2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecst2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecst2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecst3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecsx3583.tfm + RELOC/fonts/tfm/jknappen/ec/ectc0800.tfm + RELOC/fonts/tfm/jknappen/ec/ectc0900.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1000.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1095.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1200.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1440.tfm + RELOC/fonts/tfm/jknappen/ec/ectc1728.tfm + RELOC/fonts/tfm/jknappen/ec/ectc2074.tfm + RELOC/fonts/tfm/jknappen/ec/ectc2488.tfm + RELOC/fonts/tfm/jknappen/ec/ectc2986.tfm + RELOC/fonts/tfm/jknappen/ec/ectc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecti0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecti1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecti2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecti2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecti2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecti3583.tfm + RELOC/fonts/tfm/jknappen/ec/ectt0800.tfm + RELOC/fonts/tfm/jknappen/ec/ectt0900.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1000.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1095.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1200.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1440.tfm + RELOC/fonts/tfm/jknappen/ec/ectt1728.tfm + RELOC/fonts/tfm/jknappen/ec/ectt2074.tfm + RELOC/fonts/tfm/jknappen/ec/ectt2488.tfm + RELOC/fonts/tfm/jknappen/ec/ectt2986.tfm + RELOC/fonts/tfm/jknappen/ec/ectt3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecui0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecui1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecui2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecui2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecui2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecui3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecvi3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecvt3583.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0500.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0600.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0700.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0800.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc0900.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1000.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1095.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1200.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1440.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc1728.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc2074.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc2488.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc2986.tfm + RELOC/fonts/tfm/jknappen/ec/ecxc3583.tfm + RELOC/fonts/tfm/jknappen/ec/ieclb8.tfm + RELOC/fonts/tfm/jknappen/ec/iecli8.tfm + RELOC/fonts/tfm/jknappen/ec/ieclo8.tfm + RELOC/fonts/tfm/jknappen/ec/ieclq8.tfm + RELOC/fonts/tfm/jknappen/ec/iecltt8.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcbi3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcbl3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcbx3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcci0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcci1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcci2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcci2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcci2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcci3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcit0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcit0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcit1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcit2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcit2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcit2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcit3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcrb3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcrm3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcsi3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcsl3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcso0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcso1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcso2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcso2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcso2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcso3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcss0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcss1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcss2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcss2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcss2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcss3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcst0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcst0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcst1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcst2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcst2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcst2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcst3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcsx3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcti0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcti1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcti2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcti2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcti2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcti3583.tfm + RELOC/fonts/tfm/jknappen/ec/tctt0800.tfm + RELOC/fonts/tfm/jknappen/ec/tctt0900.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1000.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1095.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1200.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1440.tfm + RELOC/fonts/tfm/jknappen/ec/tctt1728.tfm + RELOC/fonts/tfm/jknappen/ec/tctt2074.tfm + RELOC/fonts/tfm/jknappen/ec/tctt2488.tfm + RELOC/fonts/tfm/jknappen/ec/tctt2986.tfm + RELOC/fonts/tfm/jknappen/ec/tctt3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0500.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0600.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0700.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcui0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcui1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcui2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcui2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcui2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcui3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcvi3583.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt0800.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt0900.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1000.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1095.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1200.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1440.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt1728.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt2074.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt2488.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt2986.tfm + RELOC/fonts/tfm/jknappen/ec/tcvt3583.tfm +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-ctan /fonts/ec +catalogue-date 2014-07-11 15:31:42 +0200 +catalogue-license other-free +catalogue-version 1.0 + +name ecv +category Package +revision 24928 +shortdesc A fancy Curriculum Vitae class. +relocated 1 +longdesc The class provides an environment for creating a fancily laid +longdesc out tabular curriculum vitae inspired by the european +longdesc curriculum vitae. The distribution comes with a German and an +longdesc English template. +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 +docfiles size=104 + RELOC/doc/latex/ecv/COPYING + RELOC/doc/latex/ecv/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/template/CV-template_de.tex + RELOC/doc/latex/ecv/template/CV-template_en.pdf + RELOC/doc/latex/ecv/template/CV-template_en.tex + RELOC/doc/latex/ecv/template/Makefile + RELOC/doc/latex/ecv/template/portrait.eps +srcfiles size=11 + RELOC/source/latex/ecv/ecv.dtx + RELOC/source/latex/ecv/ecv.ins +catalogue-ctan /macros/latex/contrib/ecv +catalogue-date 2014-11-07 14:37:14 +0100 +catalogue-license other-free +catalogue-version 0.3 + +name edfnotes +category Package +revision 21540 +shortdesc Critical annotations to footnotes with ednotes. +relocated 1 +longdesc The package modifies the annotation commands and label-test +longdesc mechanism of the ednotes package so that critical notes appear +longdesc on the pages and in the order that one would expect. +runfiles size=11 + RELOC/tex/latex/edfnotes/edfnotes.sty +docfiles size=95 + RELOC/doc/latex/edfnotes/PdUsample.pdf + RELOC/doc/latex/edfnotes/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 +srcfiles size=4 + RELOC/source/latex/edfnotes/README.tex + RELOC/source/latex/edfnotes/edfnotes.tex + RELOC/source/latex/edfnotes/srcfiles.tex +catalogue-ctan /macros/latex/contrib/edfnotes +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.6b + +name edmac +category Package +revision 15878 +shortdesc Typeset critical editions. +relocated 1 +longdesc This is the type example package for typesetting scholarly +longdesc critical editions. +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 +docfiles size=89 + RELOC/doc/latex/edmac/COPYRIGHT + RELOC/doc/latex/edmac/braonain.tex + RELOC/doc/latex/edmac/copying + RELOC/doc/latex/edmac/ed-nfss.txt + RELOC/doc/latex/edmac/edmac.doc + RELOC/doc/latex/edmac/edstanza.doc + RELOC/doc/latex/edmac/edszadoc.tex + RELOC/doc/latex/edmac/features.tex + RELOC/doc/latex/edmac/readme +srcfiles size=1 + RELOC/source/latex/edmac/edmac.drv +catalogue-ctan /macros/plain/contrib/edmac +catalogue-date 2012-01-26 15:57:28 +0100 +catalogue-license gpl2 +catalogue-version 3.17 + +name edmargin +category Package +revision 27599 +shortdesc Multiple series of endnotes for critical editions. +relocated 1 +longdesc Edmargin provides a very simple scheme for endnote sections for +longdesc critical editions. Endnotes can either be marked in the text, +longdesc or with marginal references to the page in the note sections +longdesc where the note is to be found. Notes can be set in individual +longdesc paragraphs, or in block paragraph mode (where there are many +longdesc short notes). Note sections will have running headers of the +longdesc form "Textual notes to pp. xx--yy". New note sections can be +longdesc created on the fly. There are predefined endnote sections for +longdesc textual notes, emendations, and explanatory notes. +runfiles size=6 + RELOC/tex/latex/edmargin/edmargin.sty +docfiles size=75 + RELOC/doc/latex/edmargin/README + RELOC/doc/latex/edmargin/edmargin.pdf +srcfiles size=16 + RELOC/source/latex/edmargin/edmargin.dtx + RELOC/source/latex/edmargin/edmargin.ins +catalogue-ctan /macros/latex/contrib/edmargin +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name ednotes +category Package +revision 35829 +shortdesc Typeset scholarly editions. +relocated 1 +longdesc A macro package for typesetting scholarly critical editions. +longdesc Provides macros for critical edition typesetting with LaTeX, +longdesc including support for line numbers and layers of footnotes. +depend ncctools +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 +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.TEXLIVE + RELOC/doc/latex/ednotes/README4U.txt + RELOC/doc/latex/ednotes/READMORE.txt + RELOC/doc/latex/ednotes/ednotes.pdf + RELOC/doc/latex/ednotes/ednotes.tex + RELOC/doc/latex/ednotes/ednotugb.pdf + RELOC/doc/latex/ednotes/emathtst.tex + RELOC/doc/latex/ednotes/varnrule.tex + RELOC/doc/latex/ednotes/visible.txt +catalogue-ctan /macros/latex/contrib/ednotes +catalogue-date 2012-05-25 14:20:18 +0200 +catalogue-license lppl +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. +relocated 1 +longdesc Defines macros for third-person singular pronouns (\E, \Em, +longdesc \Eir, \Eirs), which expand differently according to a +longdesc masculine/feminine switch. (If the switch is 'masculine', they +longdesc would expand to 'he', 'him', 'his' and 'his'; if 'feminine', +longdesc they would expand to 'she', 'her', 'her' and 'hers'. Apart from +longdesc the pronouns, one can define 'word pairs', such as +longdesc mother/father, daughter/son, and so on. Gender may be defined +longdesc once per document, as an environment, or may be flipped on the +longdesc fly. +runfiles size=1 + RELOC/tex/latex/eemeir/eemeir.sty +docfiles size=41 + RELOC/doc/latex/eemeir/README + RELOC/doc/latex/eemeir/eemeir.pdf +srcfiles size=6 + RELOC/source/latex/eemeir/eemeir.dtx + RELOC/source/latex/eemeir/eemeir.ins +catalogue-ctan /macros/latex/contrib/eemeir +catalogue-date 2015-03-08 08:25:35 +0100 +catalogue-license lppl +catalogue-version 1.1b + +name eepic +category Package +revision 15878 +shortdesc Extensions to epic and the LaTeX drawing tools. +relocated 1 +longdesc Extensions to epic and the LaTeX picture drawing environment, +longdesc include the drawing of lines at any slope, the drawing of +longdesc circles in any radii, and the drawing of dotted and dashed +longdesc lines much faster with much less TeX memory, and providing +longdesc several new commands for drawing ellipses, arcs, splines, and +longdesc filled circles and ellipses. The package uses tpic \special +longdesc commands. +runfiles size=13 + RELOC/tex/latex/eepic/eepic.sty + RELOC/tex/latex/eepic/eepicemu.sty + RELOC/tex/latex/eepic/epic.sty +docfiles size=46 + RELOC/doc/latex/eepic/eepic.pdf + RELOC/doc/latex/eepic/eepic.tex + RELOC/doc/latex/eepic/epic-eg3.fig + RELOC/doc/latex/eepic/epic-eg3.tex + RELOC/doc/latex/eepic/epic-eg4.fig + RELOC/doc/latex/eepic/epic-eg4.tex + RELOC/doc/latex/eepic/fig2eepic/epic-eg3.fig + RELOC/doc/latex/eepic/fig2eepic/epic-eg4.fig + RELOC/doc/latex/eepic/fig2eepic/fig2epic.1 + RELOC/doc/latex/eepic/fig2eepic/makefile + RELOC/doc/latex/eepic/fig2eepic/readme + RELOC/doc/latex/eepic/grafig.shar + RELOC/doc/latex/eepic/readme +catalogue-ctan /macros/latex/contrib/eepic +catalogue-date 2012-05-25 14:20:18 +0200 +catalogue-license pd +catalogue-version 1.1e + +name efbox +category Package +revision 33236 +shortdesc Extension of \fbox, with controllable frames and colours. +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 +docfiles size=37 + RELOC/doc/latex/efbox/README + RELOC/doc/latex/efbox/efbox.pdf +srcfiles size=4 + RELOC/source/latex/efbox/efbox.dtx + RELOC/source/latex/efbox/efbox.ins +catalogue-ctan /macros/latex/contrib/efbox +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.3 +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. +relocated 1 +longdesc The style is intended to have enough features to draw any +longdesc extensive game with relative ease. The facilities of PSTricks +longdesc are used for graphics. (An older version of the package, which +longdesc uses the LaTeX picture environment rather than PSTricks and +longdesc consequently has many fewer features is available on the +longdesc package home page.) +runfiles size=11 + RELOC/tex/latex/egameps/egameps.sty +docfiles size=51 + RELOC/doc/latex/egameps/README + RELOC/doc/latex/egameps/egameps.pdf + RELOC/doc/latex/egameps/egameps.tex +catalogue-ctan /macros/latex/contrib/egameps +catalogue-date 2012-05-25 14:20:18 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name egplot +category Package +revision 20617 +shortdesc Encapsulate Gnuplot sources in LaTeX documents. +relocated 1 +longdesc A package to encapsulate gnuplot commands in a LaTeX source +longdesc file, so that a document's figures are maintained in parallel +longdesc with the document source itself. +runfiles size=3 + RELOC/tex/latex/egplot/egplot.sty +docfiles size=120 + RELOC/doc/latex/egplot/egplot.README + RELOC/doc/latex/egplot/egplot.pdf + RELOC/doc/latex/egplot/manual.ps.gz +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 +catalogue-ctan /macros/latex/contrib/egplot +catalogue-date 2012-05-25 14:41:32 +0200 +catalogue-license gpl +catalogue-version 1.02a + +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. +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 +catalogue-version 1.0 + +name eiad +category Package +revision 15878 +shortdesc Traditional style Irish fonts. +relocated 1 +longdesc In both lower and upper case 32 letters are defined (18 'plain' +longdesc ones, 5 long vowels and 9 aspirated consonants). The ligature +longdesc 'agus' is also made available. The remaining characters +longdesc (digits, punctuation and accents) are inherited from the +longdesc Computer Modern family of fonts. The font definitions use code +longdesc from the sauter fonts, so those fonts have to be installed +longdesc before using eiad. OT1*.fd files are provided for use with +longdesc LaTeX. +runfiles size=86 + RELOC/fonts/source/public/eiad/eiadb10.mf + RELOC/fonts/source/public/eiad/eiadbx10.mf + RELOC/fonts/source/public/eiad/eiadbxi10.mf + RELOC/fonts/source/public/eiad/eiadbxsl10.mf + RELOC/fonts/source/public/eiad/eiadccsc10.mf + RELOC/fonts/source/public/eiad/eiadci10.mf + RELOC/fonts/source/public/eiad/eiadcr10.mf + RELOC/fonts/source/public/eiad/eiadcsc10.mf + RELOC/fonts/source/public/eiad/eiadcsl10.mf + RELOC/fonts/source/public/eiad/eiadcslc9.mf + RELOC/fonts/source/public/eiad/eiaddunh10.mf + RELOC/fonts/source/public/eiad/eiadff10.mf + RELOC/fonts/source/public/eiad/eiadfi10.mf + RELOC/fonts/source/public/eiad/eiadfib8.mf + RELOC/fonts/source/public/eiad/eiadi10.mf + RELOC/fonts/source/public/eiad/eiaditt10.mf + RELOC/fonts/source/public/eiad/eiadr10.mf + RELOC/fonts/source/public/eiad/eiadr12.mf + RELOC/fonts/source/public/eiad/eiadr17.mf + RELOC/fonts/source/public/eiad/eiadsl10.mf + RELOC/fonts/source/public/eiad/eiadsltt10.mf + RELOC/fonts/source/public/eiad/eiadss10.mf + RELOC/fonts/source/public/eiad/eiadssbx10.mf + RELOC/fonts/source/public/eiad/eiadssdc10.mf + RELOC/fonts/source/public/eiad/eiadssi10.mf + RELOC/fonts/source/public/eiad/eiadssq8.mf + RELOC/fonts/source/public/eiad/eiadssqi8.mf + RELOC/fonts/source/public/eiad/eiadtcsc10.mf + RELOC/fonts/source/public/eiad/eiadtt10.mf + RELOC/fonts/source/public/eiad/eiadvtt10.mf + RELOC/fonts/source/public/eiad/eira.mf + RELOC/fonts/source/public/eiad/eirl.mf + RELOC/fonts/source/public/eiad/eiru.mf + RELOC/fonts/source/public/eiad/gaec7cb.mf + RELOC/fonts/source/public/eiad/gaelach.mf + RELOC/fonts/tfm/public/eiad/eiadb10.tfm + RELOC/fonts/tfm/public/eiad/eiadbx10.tfm + RELOC/fonts/tfm/public/eiad/eiadbxi10.tfm + RELOC/fonts/tfm/public/eiad/eiadbxsl10.tfm + RELOC/fonts/tfm/public/eiad/eiadccsc10.tfm + RELOC/fonts/tfm/public/eiad/eiadci10.tfm + RELOC/fonts/tfm/public/eiad/eiadcr10.tfm + RELOC/fonts/tfm/public/eiad/eiadcsc10.tfm + RELOC/fonts/tfm/public/eiad/eiadcsl10.tfm + RELOC/fonts/tfm/public/eiad/eiadcslc9.tfm + RELOC/fonts/tfm/public/eiad/eiaddunh10.tfm + RELOC/fonts/tfm/public/eiad/eiadff10.tfm + RELOC/fonts/tfm/public/eiad/eiadfi10.tfm + RELOC/fonts/tfm/public/eiad/eiadfib8.tfm + RELOC/fonts/tfm/public/eiad/eiadi10.tfm + RELOC/fonts/tfm/public/eiad/eiaditt10.tfm + RELOC/fonts/tfm/public/eiad/eiadr10.tfm + RELOC/fonts/tfm/public/eiad/eiadr12.tfm + RELOC/fonts/tfm/public/eiad/eiadr17.tfm + RELOC/fonts/tfm/public/eiad/eiadsl10.tfm + RELOC/fonts/tfm/public/eiad/eiadsltt10.tfm + RELOC/fonts/tfm/public/eiad/eiadss10.tfm + RELOC/fonts/tfm/public/eiad/eiadssbx10.tfm + RELOC/fonts/tfm/public/eiad/eiadssdc10.tfm + RELOC/fonts/tfm/public/eiad/eiadssi10.tfm + RELOC/fonts/tfm/public/eiad/eiadssq8.tfm + RELOC/fonts/tfm/public/eiad/eiadssqi8.tfm + RELOC/fonts/tfm/public/eiad/eiadtcsc10.tfm + RELOC/fonts/tfm/public/eiad/eiadtt10.tfm + RELOC/fonts/tfm/public/eiad/eiadvtt10.tfm + RELOC/tex/latex/eiad/OT1eiad.fd + RELOC/tex/latex/eiad/OT1eiadcc.fd + RELOC/tex/latex/eiad/OT1eiadss.fd + RELOC/tex/latex/eiad/OT1eiadtt.fd +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-license pd + +name eijkhout +category Package +revision 15878 +shortdesc Victor Eijkhout's packages. +relocated 1 +longdesc Three unrelated packages: DB_process, to parse and process +longdesc database output; CD_labeler, to typeset user text to fit on a +longdesc CD label; and repeat, a nestable, generic loop macro. +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-license 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" +docfiles size=1167 + RELOC/doc/latex/einfuehrung/03-01-1.ltxverb + RELOC/doc/latex/einfuehrung/03-01-2.xltxverb + RELOC/doc/latex/einfuehrung/03-01-3.luaverb + RELOC/doc/latex/einfuehrung/03-01-4.ltx + RELOC/doc/latex/einfuehrung/03-01-5.ltx + RELOC/doc/latex/einfuehrung/03-01-6.ltx + RELOC/doc/latex/einfuehrung/03-01-7.ltx + RELOC/doc/latex/einfuehrung/03-03-1.ltxps + RELOC/doc/latex/einfuehrung/03-03-2.ctx + RELOC/doc/latex/einfuehrung/03-03-3.ctxcrop + RELOC/doc/latex/einfuehrung/03-03-4.ltx + RELOC/doc/latex/einfuehrung/03-05-1.ltx + RELOC/doc/latex/einfuehrung/03-05-2.ltx + RELOC/doc/latex/einfuehrung/03-05-3.xltx + RELOC/doc/latex/einfuehrung/03-05-4.lualtx + RELOC/doc/latex/einfuehrung/03-05-5.xltx + RELOC/doc/latex/einfuehrung/03-05-6.xltx + RELOC/doc/latex/einfuehrung/03-05-7.lualtx + RELOC/doc/latex/einfuehrung/03-06-1.ltx + RELOC/doc/latex/einfuehrung/03-06-2.ltx + RELOC/doc/latex/einfuehrung/03-06-3.ltx + RELOC/doc/latex/einfuehrung/03-06-4.xltx + RELOC/doc/latex/einfuehrung/03-06-5.xltx + RELOC/doc/latex/einfuehrung/03-06-6.lualtx + RELOC/doc/latex/einfuehrung/03-07-1.ltx + RELOC/doc/latex/einfuehrung/03-07-10.xltx + RELOC/doc/latex/einfuehrung/03-07-11.ltx + RELOC/doc/latex/einfuehrung/03-07-12.xltx + RELOC/doc/latex/einfuehrung/03-07-13.ltx + RELOC/doc/latex/einfuehrung/03-07-14.ltx + RELOC/doc/latex/einfuehrung/03-07-2.ltx + RELOC/doc/latex/einfuehrung/03-07-3.ltx + RELOC/doc/latex/einfuehrung/03-07-4.ltx + RELOC/doc/latex/einfuehrung/03-07-5.ltx + RELOC/doc/latex/einfuehrung/03-07-6.ltx + RELOC/doc/latex/einfuehrung/03-07-7.ltx + RELOC/doc/latex/einfuehrung/03-07-8.ltx + RELOC/doc/latex/einfuehrung/03-07-9.ltx + RELOC/doc/latex/einfuehrung/03-08-1.ltx + RELOC/doc/latex/einfuehrung/03-08-2.ltx + RELOC/doc/latex/einfuehrung/03-08-3.xltx + RELOC/doc/latex/einfuehrung/03-08-4.ltx + RELOC/doc/latex/einfuehrung/03-08-5.xltx + RELOC/doc/latex/einfuehrung/03-08-6.xltx + RELOC/doc/latex/einfuehrung/03-08-7.xltx + RELOC/doc/latex/einfuehrung/04-02-1.ltx2crop + RELOC/doc/latex/einfuehrung/04-02-2.ltx2 + RELOC/doc/latex/einfuehrung/04-02-3.ltx2 + RELOC/doc/latex/einfuehrung/04-02-4.ltx2 + RELOC/doc/latex/einfuehrung/04-02-5.ltx2 + RELOC/doc/latex/einfuehrung/04-02-6.ltxps + RELOC/doc/latex/einfuehrung/04-02-7.ltx2 + RELOC/doc/latex/einfuehrung/04-02-8.ltx + RELOC/doc/latex/einfuehrung/04-02-9.ltx2 + RELOC/doc/latex/einfuehrung/04-03-1.ltx + RELOC/doc/latex/einfuehrung/04-03-2.ltx + RELOC/doc/latex/einfuehrung/04-03-3.ltx + RELOC/doc/latex/einfuehrung/04-03-4.ltx + RELOC/doc/latex/einfuehrung/04-03-5.ltx2 + RELOC/doc/latex/einfuehrung/04-03-6.ltx + RELOC/doc/latex/einfuehrung/04-04-1.ltx2 + RELOC/doc/latex/einfuehrung/04-04-2.ltx + RELOC/doc/latex/einfuehrung/05-01-1.ltx2crop + RELOC/doc/latex/einfuehrung/05-01-2.ltx2 + RELOC/doc/latex/einfuehrung/05-01-3.ltx2 + RELOC/doc/latex/einfuehrung/05-01-4.ltx2 + RELOC/doc/latex/einfuehrung/05-02-1.ltx2 + RELOC/doc/latex/einfuehrung/05-02-10.ltx2crop + RELOC/doc/latex/einfuehrung/05-02-11.ltx2 + RELOC/doc/latex/einfuehrung/05-02-12.ltx2 + RELOC/doc/latex/einfuehrung/05-02-13.ltx2 + RELOC/doc/latex/einfuehrung/05-02-14.ltx + RELOC/doc/latex/einfuehrung/05-02-2.ltx2 + RELOC/doc/latex/einfuehrung/05-02-3.ltx2 + RELOC/doc/latex/einfuehrung/05-02-4.ltx + RELOC/doc/latex/einfuehrung/05-02-5.ltx2crop + RELOC/doc/latex/einfuehrung/05-02-6.ltx2 + RELOC/doc/latex/einfuehrung/05-02-7.ltx2 + RELOC/doc/latex/einfuehrung/05-02-8.ltx2 + RELOC/doc/latex/einfuehrung/05-02-9.ltx + RELOC/doc/latex/einfuehrung/05-03-1.ltx2 + RELOC/doc/latex/einfuehrung/05-03-10.ltx + RELOC/doc/latex/einfuehrung/05-03-11.ltx + RELOC/doc/latex/einfuehrung/05-03-12.ltx2 + RELOC/doc/latex/einfuehrung/05-03-2.ltx2 + RELOC/doc/latex/einfuehrung/05-03-3.ltx + RELOC/doc/latex/einfuehrung/05-03-4.ltx2 + RELOC/doc/latex/einfuehrung/05-03-5.ltx + RELOC/doc/latex/einfuehrung/05-03-6.ltx + RELOC/doc/latex/einfuehrung/05-03-7.ltx + RELOC/doc/latex/einfuehrung/05-03-8.ltx + RELOC/doc/latex/einfuehrung/05-03-9.ltx + RELOC/doc/latex/einfuehrung/05-04-1.ltx + RELOC/doc/latex/einfuehrung/05-04-10.ltx + RELOC/doc/latex/einfuehrung/05-04-11.xltx + RELOC/doc/latex/einfuehrung/05-04-12.ltx + RELOC/doc/latex/einfuehrung/05-04-13.ltx + RELOC/doc/latex/einfuehrung/05-04-14.ltx + RELOC/doc/latex/einfuehrung/05-04-2.ltx + RELOC/doc/latex/einfuehrung/05-04-3.ltx + RELOC/doc/latex/einfuehrung/05-04-4.ltx + RELOC/doc/latex/einfuehrung/05-04-5.ltx + RELOC/doc/latex/einfuehrung/05-04-6.ltx + RELOC/doc/latex/einfuehrung/05-04-7.ltx + RELOC/doc/latex/einfuehrung/05-04-8.ltx + RELOC/doc/latex/einfuehrung/05-04-9.ltx + RELOC/doc/latex/einfuehrung/05-05-1.ltx + RELOC/doc/latex/einfuehrung/05-05-2.ltx + RELOC/doc/latex/einfuehrung/05-06-1.ltx + RELOC/doc/latex/einfuehrung/05-07-1.ltx2crop + RELOC/doc/latex/einfuehrung/05-07-10.ltx + RELOC/doc/latex/einfuehrung/05-07-2.ltx2 + RELOC/doc/latex/einfuehrung/05-07-3.ltx2crop + RELOC/doc/latex/einfuehrung/05-07-4.ltx2 + RELOC/doc/latex/einfuehrung/05-07-5.ltx + RELOC/doc/latex/einfuehrung/05-07-6.ltx + RELOC/doc/latex/einfuehrung/05-07-7.ltx + RELOC/doc/latex/einfuehrung/05-07-8.ltx2 + RELOC/doc/latex/einfuehrung/05-07-9.ltx + RELOC/doc/latex/einfuehrung/05-08-1.ltx + RELOC/doc/latex/einfuehrung/05-08-2.ltx2crop + RELOC/doc/latex/einfuehrung/05-08-3.ltx + RELOC/doc/latex/einfuehrung/05-09-1.ltx + RELOC/doc/latex/einfuehrung/05-09-2.ltx + RELOC/doc/latex/einfuehrung/05-09-3.ltx + RELOC/doc/latex/einfuehrung/05-09-4.ltx + RELOC/doc/latex/einfuehrung/05-09-5.ltx + RELOC/doc/latex/einfuehrung/05-09-6.ltx + RELOC/doc/latex/einfuehrung/05-09-7.ltx2crop + RELOC/doc/latex/einfuehrung/05-09-8.ltx2crop + RELOC/doc/latex/einfuehrung/05-09-9.ltx + RELOC/doc/latex/einfuehrung/05-10-1.ltx + RELOC/doc/latex/einfuehrung/05-10-2.ltx + RELOC/doc/latex/einfuehrung/05-10-3.ltx + RELOC/doc/latex/einfuehrung/05-10-4.ltx + RELOC/doc/latex/einfuehrung/05-10-5.ltx + RELOC/doc/latex/einfuehrung/05-10-6.ltx + RELOC/doc/latex/einfuehrung/05-10-7.ltx + RELOC/doc/latex/einfuehrung/05-10-8.ltx + RELOC/doc/latex/einfuehrung/05-10-9.lualtx + RELOC/doc/latex/einfuehrung/05-11-1.ltx + RELOC/doc/latex/einfuehrung/05-11-10.ltx + RELOC/doc/latex/einfuehrung/05-11-11.ltx + RELOC/doc/latex/einfuehrung/05-11-12.ltx + RELOC/doc/latex/einfuehrung/05-11-13.ltx + RELOC/doc/latex/einfuehrung/05-11-2.ltx + RELOC/doc/latex/einfuehrung/05-11-3.ltx + RELOC/doc/latex/einfuehrung/05-11-4.ltx + RELOC/doc/latex/einfuehrung/05-11-5.ltx + RELOC/doc/latex/einfuehrung/05-11-6.ltx + RELOC/doc/latex/einfuehrung/05-11-7.ltx + RELOC/doc/latex/einfuehrung/05-11-8.ltx2crop + RELOC/doc/latex/einfuehrung/05-11-9.ltx2crop + RELOC/doc/latex/einfuehrung/05-12-1.ltx + RELOC/doc/latex/einfuehrung/05-12-2.ltx + RELOC/doc/latex/einfuehrung/05-12-3.ltx + RELOC/doc/latex/einfuehrung/05-13-1.ltx1 + RELOC/doc/latex/einfuehrung/05-13-2.ltx1 + RELOC/doc/latex/einfuehrung/05-13-3.ltx1ps + RELOC/doc/latex/einfuehrung/05-13-4.ltx + RELOC/doc/latex/einfuehrung/05-13-5.ltx + RELOC/doc/latex/einfuehrung/05-14-1.ltx + RELOC/doc/latex/einfuehrung/05-14-2.ltx + RELOC/doc/latex/einfuehrung/05-14-3.ltx + RELOC/doc/latex/einfuehrung/05-15-1.ltx2 + RELOC/doc/latex/einfuehrung/05-15-2.ltx + RELOC/doc/latex/einfuehrung/05-15-3.ltx + RELOC/doc/latex/einfuehrung/05-15-4.ltx + RELOC/doc/latex/einfuehrung/05-16-1.ltx + RELOC/doc/latex/einfuehrung/06-02-1.ltxps + RELOC/doc/latex/einfuehrung/06-02-10.ltx + RELOC/doc/latex/einfuehrung/06-02-2.ltx + RELOC/doc/latex/einfuehrung/06-02-3.ltx + RELOC/doc/latex/einfuehrung/06-02-4.ltx + RELOC/doc/latex/einfuehrung/06-02-5.ltx + RELOC/doc/latex/einfuehrung/06-02-6.ltx + RELOC/doc/latex/einfuehrung/06-02-7.ltx + RELOC/doc/latex/einfuehrung/06-02-8.ltx + RELOC/doc/latex/einfuehrung/06-02-9.ltx + RELOC/doc/latex/einfuehrung/06-03-1.ltx + RELOC/doc/latex/einfuehrung/06-03-10.ltx + RELOC/doc/latex/einfuehrung/06-03-100.ltx + RELOC/doc/latex/einfuehrung/06-03-101.ltx + RELOC/doc/latex/einfuehrung/06-03-102.ltx + RELOC/doc/latex/einfuehrung/06-03-103.ltx + RELOC/doc/latex/einfuehrung/06-03-104.ltx + RELOC/doc/latex/einfuehrung/06-03-105.ltx + RELOC/doc/latex/einfuehrung/06-03-106.ltx + RELOC/doc/latex/einfuehrung/06-03-107.ltx + RELOC/doc/latex/einfuehrung/06-03-108.ltx + RELOC/doc/latex/einfuehrung/06-03-109.ltx + RELOC/doc/latex/einfuehrung/06-03-11.ltx + RELOC/doc/latex/einfuehrung/06-03-110.ltx + RELOC/doc/latex/einfuehrung/06-03-111.ltx + RELOC/doc/latex/einfuehrung/06-03-112.ltx + RELOC/doc/latex/einfuehrung/06-03-113.ltx + RELOC/doc/latex/einfuehrung/06-03-114.ltx + RELOC/doc/latex/einfuehrung/06-03-115.ltx + RELOC/doc/latex/einfuehrung/06-03-116.ltx + RELOC/doc/latex/einfuehrung/06-03-117.ltx + RELOC/doc/latex/einfuehrung/06-03-118.ltx + RELOC/doc/latex/einfuehrung/06-03-119.ltx + RELOC/doc/latex/einfuehrung/06-03-12.ltx + RELOC/doc/latex/einfuehrung/06-03-120.ltx + RELOC/doc/latex/einfuehrung/06-03-121.ltx + RELOC/doc/latex/einfuehrung/06-03-122.ltx + RELOC/doc/latex/einfuehrung/06-03-123.ltx + RELOC/doc/latex/einfuehrung/06-03-124.ltx + RELOC/doc/latex/einfuehrung/06-03-125.ltx + RELOC/doc/latex/einfuehrung/06-03-126.ltx + RELOC/doc/latex/einfuehrung/06-03-127.ltx + RELOC/doc/latex/einfuehrung/06-03-128.ltx + RELOC/doc/latex/einfuehrung/06-03-129.ltx + RELOC/doc/latex/einfuehrung/06-03-13.ltx + RELOC/doc/latex/einfuehrung/06-03-130.ltx + RELOC/doc/latex/einfuehrung/06-03-131.ltx + RELOC/doc/latex/einfuehrung/06-03-132.ltx + RELOC/doc/latex/einfuehrung/06-03-133.ltx + RELOC/doc/latex/einfuehrung/06-03-134.ltx + RELOC/doc/latex/einfuehrung/06-03-135.ltx + RELOC/doc/latex/einfuehrung/06-03-136.ltx + RELOC/doc/latex/einfuehrung/06-03-137.ltx + RELOC/doc/latex/einfuehrung/06-03-14.ltx + RELOC/doc/latex/einfuehrung/06-03-15.ltx + RELOC/doc/latex/einfuehrung/06-03-16.ltx + RELOC/doc/latex/einfuehrung/06-03-17.ltx + RELOC/doc/latex/einfuehrung/06-03-18.ltx + RELOC/doc/latex/einfuehrung/06-03-19.ltx + RELOC/doc/latex/einfuehrung/06-03-2.ltx + RELOC/doc/latex/einfuehrung/06-03-20.ltx + RELOC/doc/latex/einfuehrung/06-03-21.ltx + RELOC/doc/latex/einfuehrung/06-03-22.ltx + RELOC/doc/latex/einfuehrung/06-03-23.ltx + RELOC/doc/latex/einfuehrung/06-03-24.xltx + RELOC/doc/latex/einfuehrung/06-03-25.xltx + RELOC/doc/latex/einfuehrung/06-03-26.xltx + RELOC/doc/latex/einfuehrung/06-03-27.xltx + RELOC/doc/latex/einfuehrung/06-03-28.xltx + RELOC/doc/latex/einfuehrung/06-03-29.ltx + RELOC/doc/latex/einfuehrung/06-03-3.ltx + RELOC/doc/latex/einfuehrung/06-03-30.ltx + RELOC/doc/latex/einfuehrung/06-03-31.ltx + RELOC/doc/latex/einfuehrung/06-03-32.ltx + RELOC/doc/latex/einfuehrung/06-03-33.ltx + RELOC/doc/latex/einfuehrung/06-03-34.ltx + RELOC/doc/latex/einfuehrung/06-03-35.ltx + RELOC/doc/latex/einfuehrung/06-03-36.ltx + RELOC/doc/latex/einfuehrung/06-03-37.ltx + RELOC/doc/latex/einfuehrung/06-03-38.ltx + RELOC/doc/latex/einfuehrung/06-03-39.ltx + RELOC/doc/latex/einfuehrung/06-03-4.ltx + RELOC/doc/latex/einfuehrung/06-03-40.ltx + RELOC/doc/latex/einfuehrung/06-03-41.ltx + RELOC/doc/latex/einfuehrung/06-03-42.ltx + RELOC/doc/latex/einfuehrung/06-03-43.ltx + RELOC/doc/latex/einfuehrung/06-03-44.ltx + RELOC/doc/latex/einfuehrung/06-03-45.ltx + RELOC/doc/latex/einfuehrung/06-03-46.ltx + RELOC/doc/latex/einfuehrung/06-03-47.ltx + RELOC/doc/latex/einfuehrung/06-03-48.ltx + RELOC/doc/latex/einfuehrung/06-03-49.ltx2 + RELOC/doc/latex/einfuehrung/06-03-5.ltx + RELOC/doc/latex/einfuehrung/06-03-50.ltx + RELOC/doc/latex/einfuehrung/06-03-51.ltx + RELOC/doc/latex/einfuehrung/06-03-52.ltx + RELOC/doc/latex/einfuehrung/06-03-53.ltx + RELOC/doc/latex/einfuehrung/06-03-54.ltx + RELOC/doc/latex/einfuehrung/06-03-55.ltx + RELOC/doc/latex/einfuehrung/06-03-56.ltx + RELOC/doc/latex/einfuehrung/06-03-57.ltx + RELOC/doc/latex/einfuehrung/06-03-58.ltx + RELOC/doc/latex/einfuehrung/06-03-59.ltx + RELOC/doc/latex/einfuehrung/06-03-6.ltx + RELOC/doc/latex/einfuehrung/06-03-60.ltx + RELOC/doc/latex/einfuehrung/06-03-61.ltx + RELOC/doc/latex/einfuehrung/06-03-62.ltx + RELOC/doc/latex/einfuehrung/06-03-63.ltx + RELOC/doc/latex/einfuehrung/06-03-64.ltx2 + RELOC/doc/latex/einfuehrung/06-03-65.ltx2 + RELOC/doc/latex/einfuehrung/06-03-66.ltx2 + RELOC/doc/latex/einfuehrung/06-03-67.ltx2 + RELOC/doc/latex/einfuehrung/06-03-68.ltx + RELOC/doc/latex/einfuehrung/06-03-69.ltx2 + RELOC/doc/latex/einfuehrung/06-03-7.ltx + RELOC/doc/latex/einfuehrung/06-03-70.ltx2 + RELOC/doc/latex/einfuehrung/06-03-71.ltx2 + RELOC/doc/latex/einfuehrung/06-03-72.ltx2 + RELOC/doc/latex/einfuehrung/06-03-73.ltx2 + RELOC/doc/latex/einfuehrung/06-03-74.ltx2 + RELOC/doc/latex/einfuehrung/06-03-75.ltx + RELOC/doc/latex/einfuehrung/06-03-76.ltx + RELOC/doc/latex/einfuehrung/06-03-77.ltx + RELOC/doc/latex/einfuehrung/06-03-78.ltx + RELOC/doc/latex/einfuehrung/06-03-79.ltx + RELOC/doc/latex/einfuehrung/06-03-8.ltx + RELOC/doc/latex/einfuehrung/06-03-80.ltx + RELOC/doc/latex/einfuehrung/06-03-81.ltx + RELOC/doc/latex/einfuehrung/06-03-82.ltx + RELOC/doc/latex/einfuehrung/06-03-83.ltx + RELOC/doc/latex/einfuehrung/06-03-84.ltx + RELOC/doc/latex/einfuehrung/06-03-85.ltx + RELOC/doc/latex/einfuehrung/06-03-86.ltx + RELOC/doc/latex/einfuehrung/06-03-87.ltx + RELOC/doc/latex/einfuehrung/06-03-88.ltx + RELOC/doc/latex/einfuehrung/06-03-89.ltx + RELOC/doc/latex/einfuehrung/06-03-9.ltx + RELOC/doc/latex/einfuehrung/06-03-90.ltx + RELOC/doc/latex/einfuehrung/06-03-91.ltx + RELOC/doc/latex/einfuehrung/06-03-92.ltx + RELOC/doc/latex/einfuehrung/06-03-93.ltx + RELOC/doc/latex/einfuehrung/06-03-94.ltx + RELOC/doc/latex/einfuehrung/06-03-95.ltx + RELOC/doc/latex/einfuehrung/06-03-96.ltx + RELOC/doc/latex/einfuehrung/06-03-97.ltx + RELOC/doc/latex/einfuehrung/06-03-98.ltx + RELOC/doc/latex/einfuehrung/06-03-99.ltx + RELOC/doc/latex/einfuehrung/07-00-1.ltx + RELOC/doc/latex/einfuehrung/07-01-1.ltx + RELOC/doc/latex/einfuehrung/07-01-10.ltx + RELOC/doc/latex/einfuehrung/07-01-2.ltx + RELOC/doc/latex/einfuehrung/07-01-3.ltx + RELOC/doc/latex/einfuehrung/07-01-4.ltx + RELOC/doc/latex/einfuehrung/07-01-5.ltx + RELOC/doc/latex/einfuehrung/07-01-6.ltx + RELOC/doc/latex/einfuehrung/07-01-7.ltx + RELOC/doc/latex/einfuehrung/07-01-8.ltx + RELOC/doc/latex/einfuehrung/07-01-9.ltx + RELOC/doc/latex/einfuehrung/07-02-1.ltx + RELOC/doc/latex/einfuehrung/07-02-2.ltx + RELOC/doc/latex/einfuehrung/07-02-3.ltx + RELOC/doc/latex/einfuehrung/07-02-4.ltx + RELOC/doc/latex/einfuehrung/07-02-5.ltx2 + RELOC/doc/latex/einfuehrung/07-03-1.ltx + RELOC/doc/latex/einfuehrung/07-04-1.ltx + RELOC/doc/latex/einfuehrung/07-04-2.ltx + RELOC/doc/latex/einfuehrung/07-04-3.ltx + RELOC/doc/latex/einfuehrung/07-04-4.ltx + RELOC/doc/latex/einfuehrung/07-04-5.ltx + RELOC/doc/latex/einfuehrung/07-04-6.ltx + RELOC/doc/latex/einfuehrung/07-04-7.ltx + RELOC/doc/latex/einfuehrung/07-04-8.ltx + RELOC/doc/latex/einfuehrung/08-02-1.ltx2crop + RELOC/doc/latex/einfuehrung/08-02-2.ltx2crop + RELOC/doc/latex/einfuehrung/08-02-3.ltx2crop + RELOC/doc/latex/einfuehrung/08-03-1.ltx + RELOC/doc/latex/einfuehrung/08-04-1.ltx2crop + RELOC/doc/latex/einfuehrung/08-04-2.ltx2crop + RELOC/doc/latex/einfuehrung/08-05-1.ltx2crop + RELOC/doc/latex/einfuehrung/08-05-2.ltx2crop + RELOC/doc/latex/einfuehrung/08-05-3.ltx2crop + RELOC/doc/latex/einfuehrung/08-05-4.ltx2crop + RELOC/doc/latex/einfuehrung/08-05-5.ltx2crop + RELOC/doc/latex/einfuehrung/08-05-6.ltx2crop + RELOC/doc/latex/einfuehrung/08-05-7.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-1.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-10.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-11.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-12.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-13.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-2.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-3.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-4.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-5.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-6.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-7.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-8.ltx2crop + RELOC/doc/latex/einfuehrung/08-06-9.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-1.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-10.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-11.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-12.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-13.ltx + RELOC/doc/latex/einfuehrung/08-07-14.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-15.ltx + RELOC/doc/latex/einfuehrung/08-07-16.ltx + RELOC/doc/latex/einfuehrung/08-07-17.ltx + RELOC/doc/latex/einfuehrung/08-07-18.ltx + RELOC/doc/latex/einfuehrung/08-07-19.ltx + RELOC/doc/latex/einfuehrung/08-07-2.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-20.ltx + RELOC/doc/latex/einfuehrung/08-07-21.ltx + RELOC/doc/latex/einfuehrung/08-07-22.ltx + RELOC/doc/latex/einfuehrung/08-07-23.ltx + RELOC/doc/latex/einfuehrung/08-07-24.ltx + RELOC/doc/latex/einfuehrung/08-07-25.ltx + RELOC/doc/latex/einfuehrung/08-07-26.ltx + RELOC/doc/latex/einfuehrung/08-07-27.ltx + RELOC/doc/latex/einfuehrung/08-07-28.ltx + RELOC/doc/latex/einfuehrung/08-07-29.ltx + RELOC/doc/latex/einfuehrung/08-07-3.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-30.ltx + RELOC/doc/latex/einfuehrung/08-07-31.ltx + RELOC/doc/latex/einfuehrung/08-07-32.ltx + RELOC/doc/latex/einfuehrung/08-07-4.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-5.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-6.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-7.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-8.ltx2crop + RELOC/doc/latex/einfuehrung/08-07-9.ltx2crop + RELOC/doc/latex/einfuehrung/08-08-1.ltx + RELOC/doc/latex/einfuehrung/08-08-10.ltx2crop + RELOC/doc/latex/einfuehrung/08-08-11.ltx2crop + RELOC/doc/latex/einfuehrung/08-08-2.ltx + RELOC/doc/latex/einfuehrung/08-08-3.ltx + RELOC/doc/latex/einfuehrung/08-08-4.ltx + RELOC/doc/latex/einfuehrung/08-08-5.ltx + RELOC/doc/latex/einfuehrung/08-08-6.ltx + RELOC/doc/latex/einfuehrung/08-08-7.ltx + RELOC/doc/latex/einfuehrung/08-08-8.ltx + RELOC/doc/latex/einfuehrung/08-08-9.ltx + RELOC/doc/latex/einfuehrung/08-09-1.ltx + RELOC/doc/latex/einfuehrung/08-09-2.ltx2 + RELOC/doc/latex/einfuehrung/08-09-3.ltx2 + RELOC/doc/latex/einfuehrung/08-09-4.ltx2 + RELOC/doc/latex/einfuehrung/09-02-1.ltx + RELOC/doc/latex/einfuehrung/09-02-2.ltx + RELOC/doc/latex/einfuehrung/09-02-3.ltx + RELOC/doc/latex/einfuehrung/09-02-4.ltx + RELOC/doc/latex/einfuehrung/09-02-5.ltx + RELOC/doc/latex/einfuehrung/09-03-1.ltx + RELOC/doc/latex/einfuehrung/09-03-10.ltx + RELOC/doc/latex/einfuehrung/09-03-11.ltx + RELOC/doc/latex/einfuehrung/09-03-2.ltx + RELOC/doc/latex/einfuehrung/09-03-3.ltx + RELOC/doc/latex/einfuehrung/09-03-4.ltx + RELOC/doc/latex/einfuehrung/09-03-5.ltx + RELOC/doc/latex/einfuehrung/09-03-6.ltx + RELOC/doc/latex/einfuehrung/09-03-7.ltx + RELOC/doc/latex/einfuehrung/09-03-8.ltx2 + RELOC/doc/latex/einfuehrung/09-03-9.ltx2 + RELOC/doc/latex/einfuehrung/09-04-1.ltx + RELOC/doc/latex/einfuehrung/09-05-1.ltx + RELOC/doc/latex/einfuehrung/09-05-2.ltx + RELOC/doc/latex/einfuehrung/09-05-3.ltx + RELOC/doc/latex/einfuehrung/09-06-1.ltx + RELOC/doc/latex/einfuehrung/09-06-10.ltx + RELOC/doc/latex/einfuehrung/09-06-11.ltx + RELOC/doc/latex/einfuehrung/09-06-12.ltx + RELOC/doc/latex/einfuehrung/09-06-13.ltx + RELOC/doc/latex/einfuehrung/09-06-14.ltx + RELOC/doc/latex/einfuehrung/09-06-15.ltx + RELOC/doc/latex/einfuehrung/09-06-16.ltx + RELOC/doc/latex/einfuehrung/09-06-17.ltx + RELOC/doc/latex/einfuehrung/09-06-18.ltx + RELOC/doc/latex/einfuehrung/09-06-19.ltx + RELOC/doc/latex/einfuehrung/09-06-2.ltx + RELOC/doc/latex/einfuehrung/09-06-20.ltx + RELOC/doc/latex/einfuehrung/09-06-21.ltx + RELOC/doc/latex/einfuehrung/09-06-22.ltx + RELOC/doc/latex/einfuehrung/09-06-23.ltx + RELOC/doc/latex/einfuehrung/09-06-24.ltx + RELOC/doc/latex/einfuehrung/09-06-25.ltx + RELOC/doc/latex/einfuehrung/09-06-26.ltx + RELOC/doc/latex/einfuehrung/09-06-27.ltx + RELOC/doc/latex/einfuehrung/09-06-28.ltx + RELOC/doc/latex/einfuehrung/09-06-29.ltx + RELOC/doc/latex/einfuehrung/09-06-3.ltx + RELOC/doc/latex/einfuehrung/09-06-30.ltx + RELOC/doc/latex/einfuehrung/09-06-31.ltx + RELOC/doc/latex/einfuehrung/09-06-32.ltx + RELOC/doc/latex/einfuehrung/09-06-33.ltx + RELOC/doc/latex/einfuehrung/09-06-34.ltx + RELOC/doc/latex/einfuehrung/09-06-35.ltx + RELOC/doc/latex/einfuehrung/09-06-36.ltx + RELOC/doc/latex/einfuehrung/09-06-37.ltx + RELOC/doc/latex/einfuehrung/09-06-38.ltx + RELOC/doc/latex/einfuehrung/09-06-39.ltx + RELOC/doc/latex/einfuehrung/09-06-4.ltx + RELOC/doc/latex/einfuehrung/09-06-40.ltx + RELOC/doc/latex/einfuehrung/09-06-41.ltx + RELOC/doc/latex/einfuehrung/09-06-42.ltx + RELOC/doc/latex/einfuehrung/09-06-43.ltx + RELOC/doc/latex/einfuehrung/09-06-44.ltx + RELOC/doc/latex/einfuehrung/09-06-45.ltx + RELOC/doc/latex/einfuehrung/09-06-46.ltx + RELOC/doc/latex/einfuehrung/09-06-47.ltx + RELOC/doc/latex/einfuehrung/09-06-48.ltx + RELOC/doc/latex/einfuehrung/09-06-49.ltx + RELOC/doc/latex/einfuehrung/09-06-5.ltx + RELOC/doc/latex/einfuehrung/09-06-6.ltx + RELOC/doc/latex/einfuehrung/09-06-7.ltx + RELOC/doc/latex/einfuehrung/09-06-8.ltx + RELOC/doc/latex/einfuehrung/09-06-9.ltx + RELOC/doc/latex/einfuehrung/09-07-1.ltx + RELOC/doc/latex/einfuehrung/09-07-10.ltx + RELOC/doc/latex/einfuehrung/09-07-11.ltx + RELOC/doc/latex/einfuehrung/09-07-12.ltx + RELOC/doc/latex/einfuehrung/09-07-13.ltx + RELOC/doc/latex/einfuehrung/09-07-14.ltx + RELOC/doc/latex/einfuehrung/09-07-15.ltx + RELOC/doc/latex/einfuehrung/09-07-16.ltx + RELOC/doc/latex/einfuehrung/09-07-17.ltx + RELOC/doc/latex/einfuehrung/09-07-18.ltx + RELOC/doc/latex/einfuehrung/09-07-19.ltx + RELOC/doc/latex/einfuehrung/09-07-2.ltx + RELOC/doc/latex/einfuehrung/09-07-20.ltx + RELOC/doc/latex/einfuehrung/09-07-21.ltx + RELOC/doc/latex/einfuehrung/09-07-22.ltx + RELOC/doc/latex/einfuehrung/09-07-23.ltx + RELOC/doc/latex/einfuehrung/09-07-24.ltx + RELOC/doc/latex/einfuehrung/09-07-25.ltx + RELOC/doc/latex/einfuehrung/09-07-26.ltx + RELOC/doc/latex/einfuehrung/09-07-27.ltx + RELOC/doc/latex/einfuehrung/09-07-28.ltx + RELOC/doc/latex/einfuehrung/09-07-29.ltx + RELOC/doc/latex/einfuehrung/09-07-3.ltx + RELOC/doc/latex/einfuehrung/09-07-30.ltx + RELOC/doc/latex/einfuehrung/09-07-31.ltx + RELOC/doc/latex/einfuehrung/09-07-32.ltx + RELOC/doc/latex/einfuehrung/09-07-33.ltx + RELOC/doc/latex/einfuehrung/09-07-34.ltx + RELOC/doc/latex/einfuehrung/09-07-35.ltx + RELOC/doc/latex/einfuehrung/09-07-36.ltx + RELOC/doc/latex/einfuehrung/09-07-37.ltx + RELOC/doc/latex/einfuehrung/09-07-38.ltx + RELOC/doc/latex/einfuehrung/09-07-39.ltx + RELOC/doc/latex/einfuehrung/09-07-4.ltx + RELOC/doc/latex/einfuehrung/09-07-40.ltx + RELOC/doc/latex/einfuehrung/09-07-41.ltx + RELOC/doc/latex/einfuehrung/09-07-42.ltx + RELOC/doc/latex/einfuehrung/09-07-43.ltx + RELOC/doc/latex/einfuehrung/09-07-44.ltx + RELOC/doc/latex/einfuehrung/09-07-45.ltx + RELOC/doc/latex/einfuehrung/09-07-46.ltx + RELOC/doc/latex/einfuehrung/09-07-47.ltx + RELOC/doc/latex/einfuehrung/09-07-48.ltx + RELOC/doc/latex/einfuehrung/09-07-49.ltx + RELOC/doc/latex/einfuehrung/09-07-5.ltx + RELOC/doc/latex/einfuehrung/09-07-50.ltx + RELOC/doc/latex/einfuehrung/09-07-51.ltx + RELOC/doc/latex/einfuehrung/09-07-52.ltx + RELOC/doc/latex/einfuehrung/09-07-53.ltx + RELOC/doc/latex/einfuehrung/09-07-54.ltx + RELOC/doc/latex/einfuehrung/09-07-55.ltx + RELOC/doc/latex/einfuehrung/09-07-56.ltx + RELOC/doc/latex/einfuehrung/09-07-57.ltx + RELOC/doc/latex/einfuehrung/09-07-58.ltx + RELOC/doc/latex/einfuehrung/09-07-59.ltx + RELOC/doc/latex/einfuehrung/09-07-6.ltx + RELOC/doc/latex/einfuehrung/09-07-60.ltx + RELOC/doc/latex/einfuehrung/09-07-61.ltx + RELOC/doc/latex/einfuehrung/09-07-62.ltx + RELOC/doc/latex/einfuehrung/09-07-63.ltx + RELOC/doc/latex/einfuehrung/09-07-64.ltx + RELOC/doc/latex/einfuehrung/09-07-65.ltx + RELOC/doc/latex/einfuehrung/09-07-7.ltx + RELOC/doc/latex/einfuehrung/09-07-8.ltx + RELOC/doc/latex/einfuehrung/09-07-9.ltx + RELOC/doc/latex/einfuehrung/09-08-1.ltx + RELOC/doc/latex/einfuehrung/09-08-10.ltx + RELOC/doc/latex/einfuehrung/09-08-11.ltx + RELOC/doc/latex/einfuehrung/09-08-12.ltx + RELOC/doc/latex/einfuehrung/09-08-13.ltx + RELOC/doc/latex/einfuehrung/09-08-14.ltx + RELOC/doc/latex/einfuehrung/09-08-15.ltx + RELOC/doc/latex/einfuehrung/09-08-16.ltx + RELOC/doc/latex/einfuehrung/09-08-17.ltx + RELOC/doc/latex/einfuehrung/09-08-18.ltx + RELOC/doc/latex/einfuehrung/09-08-19.ltx + RELOC/doc/latex/einfuehrung/09-08-2.ltx + RELOC/doc/latex/einfuehrung/09-08-20.ltx + RELOC/doc/latex/einfuehrung/09-08-21.ltx + RELOC/doc/latex/einfuehrung/09-08-22.ltx + RELOC/doc/latex/einfuehrung/09-08-23.ltx + RELOC/doc/latex/einfuehrung/09-08-24.ltx + RELOC/doc/latex/einfuehrung/09-08-25.xltx + RELOC/doc/latex/einfuehrung/09-08-26.ltx + RELOC/doc/latex/einfuehrung/09-08-27.ltx + RELOC/doc/latex/einfuehrung/09-08-28.ltx + RELOC/doc/latex/einfuehrung/09-08-29.ltx + RELOC/doc/latex/einfuehrung/09-08-3.ltx + RELOC/doc/latex/einfuehrung/09-08-30.ltx + RELOC/doc/latex/einfuehrung/09-08-31.ltx + RELOC/doc/latex/einfuehrung/09-08-32.ltx + RELOC/doc/latex/einfuehrung/09-08-33.ltx + RELOC/doc/latex/einfuehrung/09-08-34.ltx + RELOC/doc/latex/einfuehrung/09-08-35.ltx + RELOC/doc/latex/einfuehrung/09-08-36.ltx4 + RELOC/doc/latex/einfuehrung/09-08-37.ltx + RELOC/doc/latex/einfuehrung/09-08-38.ltx + RELOC/doc/latex/einfuehrung/09-08-39.ltx + RELOC/doc/latex/einfuehrung/09-08-4.ltx + RELOC/doc/latex/einfuehrung/09-08-40.ltx + RELOC/doc/latex/einfuehrung/09-08-41.ltx + RELOC/doc/latex/einfuehrung/09-08-42.ltx + RELOC/doc/latex/einfuehrung/09-08-43.ltx + RELOC/doc/latex/einfuehrung/09-08-44.ltx + RELOC/doc/latex/einfuehrung/09-08-45.ltx + RELOC/doc/latex/einfuehrung/09-08-46.ltx + RELOC/doc/latex/einfuehrung/09-08-5.ltx + RELOC/doc/latex/einfuehrung/09-08-6.ltx + RELOC/doc/latex/einfuehrung/09-08-7.ltx + RELOC/doc/latex/einfuehrung/09-08-8.ltx + RELOC/doc/latex/einfuehrung/09-08-9.ltx + RELOC/doc/latex/einfuehrung/10-01-1.ltx + RELOC/doc/latex/einfuehrung/10-01-2.ltx2 + RELOC/doc/latex/einfuehrung/10-01-3.ltx2 + RELOC/doc/latex/einfuehrung/10-01-4.ltx + RELOC/doc/latex/einfuehrung/10-01-5.ltx + RELOC/doc/latex/einfuehrung/10-01-6.ltx + RELOC/doc/latex/einfuehrung/10-02-1.ltx + RELOC/doc/latex/einfuehrung/10-03-1.ltx + RELOC/doc/latex/einfuehrung/10-03-2.ltx + RELOC/doc/latex/einfuehrung/10-03-3.ltx + RELOC/doc/latex/einfuehrung/10-04-1.ltx + RELOC/doc/latex/einfuehrung/10-04-2.ltx + RELOC/doc/latex/einfuehrung/10-04-3.ltx + RELOC/doc/latex/einfuehrung/10-05-1.ltx2 + RELOC/doc/latex/einfuehrung/10-05-2.ltx2 + RELOC/doc/latex/einfuehrung/10-05-3.ltx2 + RELOC/doc/latex/einfuehrung/10-05-4.ltx2 + RELOC/doc/latex/einfuehrung/10-06-1.ltx2 + RELOC/doc/latex/einfuehrung/10-07-1.ltx + RELOC/doc/latex/einfuehrung/10-07-10.ltx2 + RELOC/doc/latex/einfuehrung/10-07-11.ltx2 + RELOC/doc/latex/einfuehrung/10-07-12.ltx2 + RELOC/doc/latex/einfuehrung/10-07-13.ltx2 + RELOC/doc/latex/einfuehrung/10-07-14.ltx + RELOC/doc/latex/einfuehrung/10-07-15.ltx + RELOC/doc/latex/einfuehrung/10-07-16.ltx + RELOC/doc/latex/einfuehrung/10-07-17.ltx2 + RELOC/doc/latex/einfuehrung/10-07-18.ltx2 + RELOC/doc/latex/einfuehrung/10-07-19.ltx2 + RELOC/doc/latex/einfuehrung/10-07-2.ltx2 + RELOC/doc/latex/einfuehrung/10-07-20.ltx2 + RELOC/doc/latex/einfuehrung/10-07-21.ltx + RELOC/doc/latex/einfuehrung/10-07-22.ltx + RELOC/doc/latex/einfuehrung/10-07-23.ltx + RELOC/doc/latex/einfuehrung/10-07-24.ltx + RELOC/doc/latex/einfuehrung/10-07-25.ltx + RELOC/doc/latex/einfuehrung/10-07-26.ltx + RELOC/doc/latex/einfuehrung/10-07-27.ltx + RELOC/doc/latex/einfuehrung/10-07-28.ltx2 + RELOC/doc/latex/einfuehrung/10-07-29.ltx2 + RELOC/doc/latex/einfuehrung/10-07-3.ltx2 + RELOC/doc/latex/einfuehrung/10-07-30.ltx2 + RELOC/doc/latex/einfuehrung/10-07-31.ltx + RELOC/doc/latex/einfuehrung/10-07-32.ltx2 + RELOC/doc/latex/einfuehrung/10-07-4.ltx + RELOC/doc/latex/einfuehrung/10-07-5.ltx + RELOC/doc/latex/einfuehrung/10-07-6.ltx + RELOC/doc/latex/einfuehrung/10-07-7.ltx2 + RELOC/doc/latex/einfuehrung/10-07-8.ltx + RELOC/doc/latex/einfuehrung/10-07-9.ltx2 + RELOC/doc/latex/einfuehrung/10-08-1.ltx + RELOC/doc/latex/einfuehrung/10-08-10.xltx + RELOC/doc/latex/einfuehrung/10-08-11.ltx + RELOC/doc/latex/einfuehrung/10-08-2.ltx2crop + RELOC/doc/latex/einfuehrung/10-08-3.ltx2crop + RELOC/doc/latex/einfuehrung/10-08-4.ltx + RELOC/doc/latex/einfuehrung/10-08-5.ltx2crop + RELOC/doc/latex/einfuehrung/10-08-6.ltx2crop + RELOC/doc/latex/einfuehrung/10-08-7.ltx2 + RELOC/doc/latex/einfuehrung/10-08-8.ltx + RELOC/doc/latex/einfuehrung/10-08-9.ltx2 + RELOC/doc/latex/einfuehrung/11-01-1.ltx + RELOC/doc/latex/einfuehrung/11-01-2.ltx + RELOC/doc/latex/einfuehrung/11-02-1.ltx + RELOC/doc/latex/einfuehrung/11-02-2.ltx + RELOC/doc/latex/einfuehrung/11-03-1.ltx + RELOC/doc/latex/einfuehrung/11-05-1.ltx + RELOC/doc/latex/einfuehrung/11-05-10.ltx + RELOC/doc/latex/einfuehrung/11-05-11.ltx + RELOC/doc/latex/einfuehrung/11-05-12.ltx + RELOC/doc/latex/einfuehrung/11-05-13.ltx + RELOC/doc/latex/einfuehrung/11-05-14.ltx + RELOC/doc/latex/einfuehrung/11-05-15.ltx2 + RELOC/doc/latex/einfuehrung/11-05-16.ltx2 + RELOC/doc/latex/einfuehrung/11-05-17.ltx2 + RELOC/doc/latex/einfuehrung/11-05-18.ltx2 + RELOC/doc/latex/einfuehrung/11-05-19.ltx + RELOC/doc/latex/einfuehrung/11-05-2.ltx + RELOC/doc/latex/einfuehrung/11-05-20.ltx + RELOC/doc/latex/einfuehrung/11-05-21.ltx + RELOC/doc/latex/einfuehrung/11-05-22.ltx + RELOC/doc/latex/einfuehrung/11-05-23.ltx + RELOC/doc/latex/einfuehrung/11-05-3.ltx + RELOC/doc/latex/einfuehrung/11-05-4.ltx + RELOC/doc/latex/einfuehrung/11-05-5.ltx + RELOC/doc/latex/einfuehrung/11-05-6.ltx + RELOC/doc/latex/einfuehrung/11-05-7.ltx + RELOC/doc/latex/einfuehrung/11-05-8.ltx + RELOC/doc/latex/einfuehrung/11-05-9.ltx + RELOC/doc/latex/einfuehrung/11-06-1.ltx + RELOC/doc/latex/einfuehrung/11-06-10.ltx + RELOC/doc/latex/einfuehrung/11-06-11.ltx + RELOC/doc/latex/einfuehrung/11-06-12.ltx + RELOC/doc/latex/einfuehrung/11-06-13.ltx + RELOC/doc/latex/einfuehrung/11-06-14.ltx + RELOC/doc/latex/einfuehrung/11-06-2.ltx + RELOC/doc/latex/einfuehrung/11-06-3.ltx + RELOC/doc/latex/einfuehrung/11-06-4.ltx + RELOC/doc/latex/einfuehrung/11-06-5.ltx + RELOC/doc/latex/einfuehrung/11-06-6.ltx + RELOC/doc/latex/einfuehrung/11-06-7.ltx + RELOC/doc/latex/einfuehrung/11-06-8.ltx + RELOC/doc/latex/einfuehrung/11-06-9.ltx + RELOC/doc/latex/einfuehrung/11-07-1.lualtx + RELOC/doc/latex/einfuehrung/12-01-1.xinl + RELOC/doc/latex/einfuehrung/12-01-10.xinl + RELOC/doc/latex/einfuehrung/12-01-11.xinl + RELOC/doc/latex/einfuehrung/12-01-12.xinl + RELOC/doc/latex/einfuehrung/12-01-13.xinl + RELOC/doc/latex/einfuehrung/12-01-2.xinl + RELOC/doc/latex/einfuehrung/12-01-3.xinl + RELOC/doc/latex/einfuehrung/12-01-4.xinl + RELOC/doc/latex/einfuehrung/12-01-5.xinl + RELOC/doc/latex/einfuehrung/12-01-6.xinl + RELOC/doc/latex/einfuehrung/12-01-7.xinl + RELOC/doc/latex/einfuehrung/12-01-8.xinl + RELOC/doc/latex/einfuehrung/12-01-9.xinl + RELOC/doc/latex/einfuehrung/12-02-1.ltx + RELOC/doc/latex/einfuehrung/12-02-2.ltx + RELOC/doc/latex/einfuehrung/12-02-3.ltx + RELOC/doc/latex/einfuehrung/12-02-4.ltx + RELOC/doc/latex/einfuehrung/12-02-5.ltx + RELOC/doc/latex/einfuehrung/12-02-6.ltx + RELOC/doc/latex/einfuehrung/12-03-1.ltx + RELOC/doc/latex/einfuehrung/12-04-1.sh + RELOC/doc/latex/einfuehrung/12-04-10.lualtx + RELOC/doc/latex/einfuehrung/12-04-11.xltx + RELOC/doc/latex/einfuehrung/12-04-12.xltx + RELOC/doc/latex/einfuehrung/12-04-13.xltx + RELOC/doc/latex/einfuehrung/12-04-14.xltx + RELOC/doc/latex/einfuehrung/12-04-15.lualtx + RELOC/doc/latex/einfuehrung/12-04-16.lualtx2 + RELOC/doc/latex/einfuehrung/12-04-17.lualtx2 + RELOC/doc/latex/einfuehrung/12-04-18.lualtx + RELOC/doc/latex/einfuehrung/12-04-2.xltx + RELOC/doc/latex/einfuehrung/12-04-3.sh + RELOC/doc/latex/einfuehrung/12-04-4.sh + RELOC/doc/latex/einfuehrung/12-04-5.lualtx + RELOC/doc/latex/einfuehrung/12-04-6.xltx + RELOC/doc/latex/einfuehrung/12-04-7.xltx + RELOC/doc/latex/einfuehrung/12-04-8.xltx + RELOC/doc/latex/einfuehrung/12-04-9.lualtx + RELOC/doc/latex/einfuehrung/13-01-1.ltxb + RELOC/doc/latex/einfuehrung/13-01-2.ltxb + RELOC/doc/latex/einfuehrung/13-01-3.ltxb + RELOC/doc/latex/einfuehrung/13-01-4.ltxb + RELOC/doc/latex/einfuehrung/13-02-1.ltxb + RELOC/doc/latex/einfuehrung/13-02-10.ltxb + RELOC/doc/latex/einfuehrung/13-02-11.ltxb + RELOC/doc/latex/einfuehrung/13-02-12.ltxb + RELOC/doc/latex/einfuehrung/13-02-13.ltxb + RELOC/doc/latex/einfuehrung/13-02-14.ltxb + RELOC/doc/latex/einfuehrung/13-02-15.ltxb + RELOC/doc/latex/einfuehrung/13-02-16.ltxb + RELOC/doc/latex/einfuehrung/13-02-17.ltxb + RELOC/doc/latex/einfuehrung/13-02-18.ltxb + RELOC/doc/latex/einfuehrung/13-02-19.ltxb + RELOC/doc/latex/einfuehrung/13-02-2.ltx2 + RELOC/doc/latex/einfuehrung/13-02-20.ltxb + RELOC/doc/latex/einfuehrung/13-02-3.ltxb + RELOC/doc/latex/einfuehrung/13-02-4.ltxb + RELOC/doc/latex/einfuehrung/13-02-5.ltxb + RELOC/doc/latex/einfuehrung/13-02-6.ltxb + RELOC/doc/latex/einfuehrung/13-02-7.ltxb + RELOC/doc/latex/einfuehrung/13-02-8.ltxbps + RELOC/doc/latex/einfuehrung/13-02-9.ltxb + RELOC/doc/latex/einfuehrung/13-03-1.ltxb + RELOC/doc/latex/einfuehrung/13-03-10.ltxb + RELOC/doc/latex/einfuehrung/13-03-11.ltxb + RELOC/doc/latex/einfuehrung/13-03-2.ltxb + RELOC/doc/latex/einfuehrung/13-03-3.ltxb + RELOC/doc/latex/einfuehrung/13-03-4.ltxb + RELOC/doc/latex/einfuehrung/13-03-5.ltxb + RELOC/doc/latex/einfuehrung/13-03-6.ltxb + RELOC/doc/latex/einfuehrung/13-03-7.ltxb + RELOC/doc/latex/einfuehrung/13-03-8.ltxb + RELOC/doc/latex/einfuehrung/13-03-9.ltxb + RELOC/doc/latex/einfuehrung/13-04-1.ltxb + RELOC/doc/latex/einfuehrung/13-04-2.ltxb + RELOC/doc/latex/einfuehrung/13-05-1.ltxb + RELOC/doc/latex/einfuehrung/13-05-2.ltxb + RELOC/doc/latex/einfuehrung/13-05-3.ltxb + RELOC/doc/latex/einfuehrung/13-05-4.ltxb + RELOC/doc/latex/einfuehrung/13-06-1.ltxb + RELOC/doc/latex/einfuehrung/13-06-2.ltxb + RELOC/doc/latex/einfuehrung/13-07-1.ltxb + RELOC/doc/latex/einfuehrung/13-07-2.ltxb + RELOC/doc/latex/einfuehrung/14-01-1.ltx + RELOC/doc/latex/einfuehrung/14-01-10.ltx + RELOC/doc/latex/einfuehrung/14-01-11.ltx + RELOC/doc/latex/einfuehrung/14-01-12.ltx + RELOC/doc/latex/einfuehrung/14-01-13.ltx + RELOC/doc/latex/einfuehrung/14-01-2.ltx + RELOC/doc/latex/einfuehrung/14-01-3.ltx + RELOC/doc/latex/einfuehrung/14-01-4.ltx + RELOC/doc/latex/einfuehrung/14-01-5.ltx + RELOC/doc/latex/einfuehrung/14-01-6.ltx + RELOC/doc/latex/einfuehrung/14-01-7.ltx + RELOC/doc/latex/einfuehrung/14-01-8.ltxps + RELOC/doc/latex/einfuehrung/14-01-9.ltx + RELOC/doc/latex/einfuehrung/14-02-1.ltx + RELOC/doc/latex/einfuehrung/14-02-2.ltx + RELOC/doc/latex/einfuehrung/14-02-3.ltx + RELOC/doc/latex/einfuehrung/14-02-4.ltx + RELOC/doc/latex/einfuehrung/14-02-5.ltx + RELOC/doc/latex/einfuehrung/14-02-6.ltx + RELOC/doc/latex/einfuehrung/14-02-7.ltx + RELOC/doc/latex/einfuehrung/14-03-1.ltx + RELOC/doc/latex/einfuehrung/14-03-10.ltx2crop + RELOC/doc/latex/einfuehrung/14-03-11.ltx + RELOC/doc/latex/einfuehrung/14-03-12.ltx + RELOC/doc/latex/einfuehrung/14-03-13.ltx + RELOC/doc/latex/einfuehrung/14-03-14.ltx + RELOC/doc/latex/einfuehrung/14-03-15.ltx2crop + RELOC/doc/latex/einfuehrung/14-03-16.ltx2crop + RELOC/doc/latex/einfuehrung/14-03-2.ltx + RELOC/doc/latex/einfuehrung/14-03-3.ltx + RELOC/doc/latex/einfuehrung/14-03-4.ltx + RELOC/doc/latex/einfuehrung/14-03-5.ltx + RELOC/doc/latex/einfuehrung/14-03-6.ltx + RELOC/doc/latex/einfuehrung/14-03-7.ltx + RELOC/doc/latex/einfuehrung/14-03-8.ltx + RELOC/doc/latex/einfuehrung/14-03-9.ltx + RELOC/doc/latex/einfuehrung/14-04-1.ltx + RELOC/doc/latex/einfuehrung/14-04-2.ltx + RELOC/doc/latex/einfuehrung/14-04-3.ltx + RELOC/doc/latex/einfuehrung/14-04-4.ltx + RELOC/doc/latex/einfuehrung/14-04-5.ltx + RELOC/doc/latex/einfuehrung/14-04-6.ltx + RELOC/doc/latex/einfuehrung/14-04-7.ltx + RELOC/doc/latex/einfuehrung/14-04-8.ltx + RELOC/doc/latex/einfuehrung/14-04-9.ltx + RELOC/doc/latex/einfuehrung/14-05-1.xltx + RELOC/doc/latex/einfuehrung/15-01-1.ltx + RELOC/doc/latex/einfuehrung/15-01-10.ltx + RELOC/doc/latex/einfuehrung/15-01-11.ltx + RELOC/doc/latex/einfuehrung/15-01-12.ltx + RELOC/doc/latex/einfuehrung/15-01-13.ltx + RELOC/doc/latex/einfuehrung/15-01-2.ltx + RELOC/doc/latex/einfuehrung/15-01-3.ltx + RELOC/doc/latex/einfuehrung/15-01-4.ltx + RELOC/doc/latex/einfuehrung/15-01-5.ltx + RELOC/doc/latex/einfuehrung/15-01-6.ltx + RELOC/doc/latex/einfuehrung/15-01-7.ltx + RELOC/doc/latex/einfuehrung/15-01-8.ltx + RELOC/doc/latex/einfuehrung/15-01-9.ltx + RELOC/doc/latex/einfuehrung/15-02-1.mp3 + RELOC/doc/latex/einfuehrung/15-02-10.mp + RELOC/doc/latex/einfuehrung/15-02-11.mp + RELOC/doc/latex/einfuehrung/15-02-12.mp + RELOC/doc/latex/einfuehrung/15-02-13.mp + RELOC/doc/latex/einfuehrung/15-02-14.mp + RELOC/doc/latex/einfuehrung/15-02-15.mp + RELOC/doc/latex/einfuehrung/15-02-16.mp + RELOC/doc/latex/einfuehrung/15-02-17.mp + RELOC/doc/latex/einfuehrung/15-02-18.mp + RELOC/doc/latex/einfuehrung/15-02-19.mp + RELOC/doc/latex/einfuehrung/15-02-2.ltxps + RELOC/doc/latex/einfuehrung/15-02-20.mp + RELOC/doc/latex/einfuehrung/15-02-21.mp + RELOC/doc/latex/einfuehrung/15-02-22.mp + RELOC/doc/latex/einfuehrung/15-02-23.mp + RELOC/doc/latex/einfuehrung/15-02-24.mp + RELOC/doc/latex/einfuehrung/15-02-25.mp + RELOC/doc/latex/einfuehrung/15-02-26.mp + RELOC/doc/latex/einfuehrung/15-02-27.mp + RELOC/doc/latex/einfuehrung/15-02-28.mp + RELOC/doc/latex/einfuehrung/15-02-29.mp + RELOC/doc/latex/einfuehrung/15-02-3.ltx + RELOC/doc/latex/einfuehrung/15-02-30.mp + RELOC/doc/latex/einfuehrung/15-02-31.mp + RELOC/doc/latex/einfuehrung/15-02-32.mp + RELOC/doc/latex/einfuehrung/15-02-33.mp2 + RELOC/doc/latex/einfuehrung/15-02-34.mp2 + RELOC/doc/latex/einfuehrung/15-02-35.mp2 + RELOC/doc/latex/einfuehrung/15-02-36.mp2 + RELOC/doc/latex/einfuehrung/15-02-37.mp + RELOC/doc/latex/einfuehrung/15-02-38.mp2 + RELOC/doc/latex/einfuehrung/15-02-39.mp2 + RELOC/doc/latex/einfuehrung/15-02-4.mp + RELOC/doc/latex/einfuehrung/15-02-40.mp2 + RELOC/doc/latex/einfuehrung/15-02-41.mp2 + RELOC/doc/latex/einfuehrung/15-02-42.mp2 + RELOC/doc/latex/einfuehrung/15-02-43.mp2 + RELOC/doc/latex/einfuehrung/15-02-44.mp2 + RELOC/doc/latex/einfuehrung/15-02-45.mp2 + RELOC/doc/latex/einfuehrung/15-02-46.mp2 + RELOC/doc/latex/einfuehrung/15-02-47.mp2 + RELOC/doc/latex/einfuehrung/15-02-48.mp2 + RELOC/doc/latex/einfuehrung/15-02-49.mp2 + RELOC/doc/latex/einfuehrung/15-02-5.mp + RELOC/doc/latex/einfuehrung/15-02-50.mp2 + RELOC/doc/latex/einfuehrung/15-02-51.mp2 + RELOC/doc/latex/einfuehrung/15-02-52.mp2 + RELOC/doc/latex/einfuehrung/15-02-53.mp2 + RELOC/doc/latex/einfuehrung/15-02-54.mp2 + RELOC/doc/latex/einfuehrung/15-02-55.mp2 + RELOC/doc/latex/einfuehrung/15-02-56.mp2 + RELOC/doc/latex/einfuehrung/15-02-57.mp2 + RELOC/doc/latex/einfuehrung/15-02-58.mp2 + RELOC/doc/latex/einfuehrung/15-02-59.mp2 + RELOC/doc/latex/einfuehrung/15-02-6.mp + RELOC/doc/latex/einfuehrung/15-02-60.mp2 + RELOC/doc/latex/einfuehrung/15-02-61.mp2 + RELOC/doc/latex/einfuehrung/15-02-62.mp2 + RELOC/doc/latex/einfuehrung/15-02-63.mp2 + RELOC/doc/latex/einfuehrung/15-02-64.mp2 + RELOC/doc/latex/einfuehrung/15-02-65.mp2 + RELOC/doc/latex/einfuehrung/15-02-66.mp2 + RELOC/doc/latex/einfuehrung/15-02-67.mp2 + RELOC/doc/latex/einfuehrung/15-02-68.mp2 + RELOC/doc/latex/einfuehrung/15-02-69.mp2 + RELOC/doc/latex/einfuehrung/15-02-7.mp + RELOC/doc/latex/einfuehrung/15-02-8.mp + RELOC/doc/latex/einfuehrung/15-02-9.mp + RELOC/doc/latex/einfuehrung/15-03-1.ltxps + RELOC/doc/latex/einfuehrung/15-03-10.ltxps + RELOC/doc/latex/einfuehrung/15-03-11.ltxps + RELOC/doc/latex/einfuehrung/15-03-12.ltxps + RELOC/doc/latex/einfuehrung/15-03-13.ltxps + RELOC/doc/latex/einfuehrung/15-03-14.ltxps + RELOC/doc/latex/einfuehrung/15-03-15.ltxps + RELOC/doc/latex/einfuehrung/15-03-16.ltxps + RELOC/doc/latex/einfuehrung/15-03-17.ltxps + RELOC/doc/latex/einfuehrung/15-03-18.ltxps + RELOC/doc/latex/einfuehrung/15-03-19.ltxps + RELOC/doc/latex/einfuehrung/15-03-2.ltxps + RELOC/doc/latex/einfuehrung/15-03-20.ltxps + RELOC/doc/latex/einfuehrung/15-03-21.ltxps + RELOC/doc/latex/einfuehrung/15-03-22.ltxps + RELOC/doc/latex/einfuehrung/15-03-23.ltxps + RELOC/doc/latex/einfuehrung/15-03-24.ltxps + RELOC/doc/latex/einfuehrung/15-03-25.ltxps + RELOC/doc/latex/einfuehrung/15-03-26.ltxps + RELOC/doc/latex/einfuehrung/15-03-27.ltxps + RELOC/doc/latex/einfuehrung/15-03-28.ltxps + RELOC/doc/latex/einfuehrung/15-03-29.ltxps + RELOC/doc/latex/einfuehrung/15-03-3.ltxps + RELOC/doc/latex/einfuehrung/15-03-30.ltxps + RELOC/doc/latex/einfuehrung/15-03-31.ltxps + RELOC/doc/latex/einfuehrung/15-03-32.ltxps + RELOC/doc/latex/einfuehrung/15-03-33.ltxps + RELOC/doc/latex/einfuehrung/15-03-34.ltxps + RELOC/doc/latex/einfuehrung/15-03-35.ltxps + RELOC/doc/latex/einfuehrung/15-03-36.ltxps + RELOC/doc/latex/einfuehrung/15-03-37.ltxps + RELOC/doc/latex/einfuehrung/15-03-38.ltxps + RELOC/doc/latex/einfuehrung/15-03-39.ltxps + RELOC/doc/latex/einfuehrung/15-03-4.ltxps + RELOC/doc/latex/einfuehrung/15-03-40.ltxps + RELOC/doc/latex/einfuehrung/15-03-41.ltxps + RELOC/doc/latex/einfuehrung/15-03-42.ltxps + RELOC/doc/latex/einfuehrung/15-03-43.ltxps + RELOC/doc/latex/einfuehrung/15-03-44.ltxps + RELOC/doc/latex/einfuehrung/15-03-45.ltxps + RELOC/doc/latex/einfuehrung/15-03-46.ltxps + RELOC/doc/latex/einfuehrung/15-03-47.ltxps + RELOC/doc/latex/einfuehrung/15-03-48.ltxps + RELOC/doc/latex/einfuehrung/15-03-49.ltxps + RELOC/doc/latex/einfuehrung/15-03-5.ltxps + RELOC/doc/latex/einfuehrung/15-03-50.ltxps + RELOC/doc/latex/einfuehrung/15-03-51.ltxps + RELOC/doc/latex/einfuehrung/15-03-6.ltxps + RELOC/doc/latex/einfuehrung/15-03-7.ltxps + RELOC/doc/latex/einfuehrung/15-03-8.ltxps + RELOC/doc/latex/einfuehrung/15-03-9.ltxps + RELOC/doc/latex/einfuehrung/15-04-1.ltx + RELOC/doc/latex/einfuehrung/15-04-10.ltx + RELOC/doc/latex/einfuehrung/15-04-11.ltx + RELOC/doc/latex/einfuehrung/15-04-12.ltx + RELOC/doc/latex/einfuehrung/15-04-13.ltx + RELOC/doc/latex/einfuehrung/15-04-14.ltx + RELOC/doc/latex/einfuehrung/15-04-15.ltx + RELOC/doc/latex/einfuehrung/15-04-16.ltx + RELOC/doc/latex/einfuehrung/15-04-17.ltx + RELOC/doc/latex/einfuehrung/15-04-18.ltx + RELOC/doc/latex/einfuehrung/15-04-19.ltx + RELOC/doc/latex/einfuehrung/15-04-2.ltx + RELOC/doc/latex/einfuehrung/15-04-20.ltx + RELOC/doc/latex/einfuehrung/15-04-21.ltx + RELOC/doc/latex/einfuehrung/15-04-22.ltx + RELOC/doc/latex/einfuehrung/15-04-23.ltx + RELOC/doc/latex/einfuehrung/15-04-24.ltx + RELOC/doc/latex/einfuehrung/15-04-25.ltx + RELOC/doc/latex/einfuehrung/15-04-26.ltx + RELOC/doc/latex/einfuehrung/15-04-27.ltx + RELOC/doc/latex/einfuehrung/15-04-28.ltx + RELOC/doc/latex/einfuehrung/15-04-29.ltx + RELOC/doc/latex/einfuehrung/15-04-3.ltx + RELOC/doc/latex/einfuehrung/15-04-30.ltx + RELOC/doc/latex/einfuehrung/15-04-31.ltx + RELOC/doc/latex/einfuehrung/15-04-32.ltx + RELOC/doc/latex/einfuehrung/15-04-33.ltx + RELOC/doc/latex/einfuehrung/15-04-34.ltx + RELOC/doc/latex/einfuehrung/15-04-35.ltx + RELOC/doc/latex/einfuehrung/15-04-36.ltx + RELOC/doc/latex/einfuehrung/15-04-37.ltx + RELOC/doc/latex/einfuehrung/15-04-38.ltx + RELOC/doc/latex/einfuehrung/15-04-39.ltx + RELOC/doc/latex/einfuehrung/15-04-4.ltx + RELOC/doc/latex/einfuehrung/15-04-40.ltx + RELOC/doc/latex/einfuehrung/15-04-41.ltx + RELOC/doc/latex/einfuehrung/15-04-42.ltx + RELOC/doc/latex/einfuehrung/15-04-43.ltx + RELOC/doc/latex/einfuehrung/15-04-44.ltx + RELOC/doc/latex/einfuehrung/15-04-45.ltx + RELOC/doc/latex/einfuehrung/15-04-46.ltx + RELOC/doc/latex/einfuehrung/15-04-47.ltx + RELOC/doc/latex/einfuehrung/15-04-48.ltx + RELOC/doc/latex/einfuehrung/15-04-49.ltx + RELOC/doc/latex/einfuehrung/15-04-5.ltx + RELOC/doc/latex/einfuehrung/15-04-50.ltx + RELOC/doc/latex/einfuehrung/15-04-51.ltx + RELOC/doc/latex/einfuehrung/15-04-52.ltx + RELOC/doc/latex/einfuehrung/15-04-53.ltx + RELOC/doc/latex/einfuehrung/15-04-54.ltx + RELOC/doc/latex/einfuehrung/15-04-55.ltx + RELOC/doc/latex/einfuehrung/15-04-56.ltx + RELOC/doc/latex/einfuehrung/15-04-57.ltx + RELOC/doc/latex/einfuehrung/15-04-58.ltx + RELOC/doc/latex/einfuehrung/15-04-59.ltx + RELOC/doc/latex/einfuehrung/15-04-6.ltx + RELOC/doc/latex/einfuehrung/15-04-60.ltx + RELOC/doc/latex/einfuehrung/15-04-61.ltx + RELOC/doc/latex/einfuehrung/15-04-62.ltx + RELOC/doc/latex/einfuehrung/15-04-63.ltx + RELOC/doc/latex/einfuehrung/15-04-64.ltx + RELOC/doc/latex/einfuehrung/15-04-65.ltx + RELOC/doc/latex/einfuehrung/15-04-66.ltx + RELOC/doc/latex/einfuehrung/15-04-67.ltx + RELOC/doc/latex/einfuehrung/15-04-68.ltx + RELOC/doc/latex/einfuehrung/15-04-69.ltx4 + RELOC/doc/latex/einfuehrung/15-04-7.ltx + RELOC/doc/latex/einfuehrung/15-04-70.ltx + RELOC/doc/latex/einfuehrung/15-04-71.ltx + RELOC/doc/latex/einfuehrung/15-04-72.ltx + RELOC/doc/latex/einfuehrung/15-04-73.ltx + RELOC/doc/latex/einfuehrung/15-04-74.ltx + RELOC/doc/latex/einfuehrung/15-04-75.ltx + RELOC/doc/latex/einfuehrung/15-04-76.ltx + RELOC/doc/latex/einfuehrung/15-04-77.ltx + RELOC/doc/latex/einfuehrung/15-04-78.ltx + RELOC/doc/latex/einfuehrung/15-04-79.ltx + RELOC/doc/latex/einfuehrung/15-04-8.ltx + RELOC/doc/latex/einfuehrung/15-04-80.ltx + RELOC/doc/latex/einfuehrung/15-04-9.ltx + RELOC/doc/latex/einfuehrung/A-02-1.ltx + RELOC/doc/latex/einfuehrung/A-03-1.ltx + RELOC/doc/latex/einfuehrung/A-04-1.ltx2 + RELOC/doc/latex/einfuehrung/A-04-2.ltx + RELOC/doc/latex/einfuehrung/A-04-3.ltx + RELOC/doc/latex/einfuehrung/A-04-4.ltx + RELOC/doc/latex/einfuehrung/A-04-5.ltx + RELOC/doc/latex/einfuehrung/A-12-1.ltx + RELOC/doc/latex/einfuehrung/A-12-2.ltx + RELOC/doc/latex/einfuehrung/A-12-3.ltx + RELOC/doc/latex/einfuehrung/A-12-4.ltx + RELOC/doc/latex/einfuehrung/A-12-5.ltx + RELOC/doc/latex/einfuehrung/A-12-6.ltx + RELOC/doc/latex/einfuehrung/B.pdf + RELOC/doc/latex/einfuehrung/CTdefault.tex + RELOC/doc/latex/einfuehrung/DEexa.sty + RELOC/doc/latex/einfuehrung/DEoptions.sty + 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/UTF8.bib + RELOC/doc/latex/einfuehrung/VerbatimOut.xltx + RELOC/doc/latex/einfuehrung/beispiel.cls + RELOC/doc/latex/einfuehrung/biblatex-examples.bib + RELOC/doc/latex/einfuehrung/bspcalweekly.cls + RELOC/doc/latex/einfuehrung/bspdvdcoll.cls + RELOC/doc/latex/einfuehrung/bspfont.cls + RELOC/doc/latex/einfuehrung/bsppstricks.cls + RELOC/doc/latex/einfuehrung/data0.csv + RELOC/doc/latex/einfuehrung/data1T.csv + RELOC/doc/latex/einfuehrung/de-examples-dw.bib + RELOC/doc/latex/einfuehrung/demo.ist + RELOC/doc/latex/einfuehrung/demo11.bib + RELOC/doc/latex/einfuehrung/demo4.bib + RELOC/doc/latex/einfuehrung/demo5.bib + RELOC/doc/latex/einfuehrung/demo6.bib + RELOC/doc/latex/einfuehrung/demo7.bib + RELOC/doc/latex/einfuehrung/doc_data.txt + RELOC/doc/latex/einfuehrung/exa-fontconfig.tex + RELOC/doc/latex/einfuehrung/exaarticle.cls + RELOC/doc/latex/einfuehrung/exaarticle2.cls + RELOC/doc/latex/einfuehrung/exaartplain.cls + RELOC/doc/latex/einfuehrung/exabeamer.cls + RELOC/doc/latex/einfuehrung/exabook.cls + RELOC/doc/latex/einfuehrung/exabook2.cls + RELOC/doc/latex/einfuehrung/exadante.cls + RELOC/doc/latex/einfuehrung/exafoils.cls + RELOC/doc/latex/einfuehrung/exafubeamer.cls + RELOC/doc/latex/einfuehrung/exafupd.cls + RELOC/doc/latex/einfuehrung/examargin.cls + RELOC/doc/latex/einfuehrung/examemoir.cls + RELOC/doc/latex/einfuehrung/examinimal-mathsymbols.cls + RELOC/doc/latex/einfuehrung/examinimal.cls + RELOC/doc/latex/einfuehrung/examples-dw.bib + RELOC/doc/latex/einfuehrung/examples.bib + RELOC/doc/latex/einfuehrung/examplesA.bib + RELOC/doc/latex/einfuehrung/examplesB.bib + RELOC/doc/latex/einfuehrung/exapd.cls + RELOC/doc/latex/einfuehrung/exaprosper.cls + RELOC/doc/latex/einfuehrung/exareport.cls + RELOC/doc/latex/einfuehrung/exaseminar.cls + RELOC/doc/latex/einfuehrung/exaslidenotes.cls + RELOC/doc/latex/einfuehrung/exasymbol.cls + RELOC/doc/latex/einfuehrung/exaxetex.cls + RELOC/doc/latex/einfuehrung/fontDemo-E.tex + RELOC/doc/latex/einfuehrung/fontDemo.tex + RELOC/doc/latex/einfuehrung/foo.lua + RELOC/doc/latex/einfuehrung/mpxerr.tex + RELOC/doc/latex/einfuehrung/myModuleB.xdy + RELOC/doc/latex/einfuehrung/myModuleC.xdy + RELOC/doc/latex/einfuehrung/myModuleE.xdy + RELOC/doc/latex/einfuehrung/myModuleF.xdy + RELOC/doc/latex/einfuehrung/myModuleG.xdy + RELOC/doc/latex/einfuehrung/myModuleH.xdy + RELOC/doc/latex/einfuehrung/myModuleI.xdy + RELOC/doc/latex/einfuehrung/plainDemo.bst + RELOC/doc/latex/einfuehrung/preamble.tex + RELOC/doc/latex/einfuehrung/screxa.cls + RELOC/doc/latex/einfuehrung/screxabook.cls + RELOC/doc/latex/einfuehrung/screxareport.cls + RELOC/doc/latex/einfuehrung/tab.tex + RELOC/doc/latex/einfuehrung/tabelle1.tex + RELOC/doc/latex/einfuehrung/textdemo.sty +catalogue-ctan /info/examples/Einfuehrung +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 + +name ejpecp +category Package +revision 36678 +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 + RELOC/doc/latex/ejpecp/LPPL + RELOC/doc/latex/ejpecp/README + RELOC/doc/latex/ejpecp/ejpecp.pdf + RELOC/doc/latex/ejpecp/mgetmref.py + RELOC/doc/latex/ejpecp/sample.pdf + RELOC/doc/latex/ejpecp/sample.tex +srcfiles size=6 + RELOC/source/latex/ejpecp/ejpecp.dtx + RELOC/source/latex/ejpecp/ejpecp.ins +catalogue-ctan /macros/latex/contrib/ejpecp +catalogue-date 2015-03-31 06:26:13 +0200 +catalogue-license lppl1.2 +catalogue-version 1.1 + +name ekaia +category Package +revision 35927 +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 + RELOC/doc/latex/ekaia/ekaia_EUS.tex + RELOC/doc/latex/ekaia/ekaia_example.pdf + RELOC/doc/latex/ekaia/ekaia_example.tex +srcfiles size=10 + RELOC/source/latex/ekaia/ekaia.dtx + RELOC/source/latex/ekaia/ekaia.ins +catalogue-ctan /macros/latex/contrib/ekaia +catalogue-date 2015-01-14 14:16:00 +0100 +catalogue-license lppl1.2 +catalogue-version 1.02 + +name elbioimp +category Package +revision 21758 +shortdesc A LaTeX document class for the Journal of Electrical Bioimpedance. +relocated 1 +longdesc A document class for writing articles to the Journal of +longdesc Electrical Bioimpedance. +runfiles size=2 + RELOC/tex/latex/elbioimp/elbioimp.cls +docfiles size=79 + RELOC/doc/latex/elbioimp/Makefile + RELOC/doc/latex/elbioimp/README + RELOC/doc/latex/elbioimp/elbioimp-basis.tex + RELOC/doc/latex/elbioimp/elbioimp.pdf + RELOC/doc/latex/elbioimp/test-bib.bib + RELOC/doc/latex/elbioimp/test-ill.png + RELOC/doc/latex/elbioimp/test1.tex +srcfiles size=5 + RELOC/source/latex/elbioimp/elbioimp.dtx + RELOC/source/latex/elbioimp/elbioimp.ins +catalogue-ctan /macros/latex/contrib/elbioimp +catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-license lppl +catalogue-version 1.2 + +name electrum +category Package +revision 19705 +catalogue electrumadf +shortdesc Electrum ADF fonts collection. +relocated 1 +longdesc Electrum ADF is a slab-serif font featuring optical and italic +longdesc small-caps; additional ligatures and an alternate Q; lining, +longdesc hanging, inferior and superior digits; and four weights. The +longdesc fonts are provided in Adobe Type 1 format and the support +longdesc material enables use with LaTeX. Licence is mixed: LPPL for +longdesc LaTeX support; GPL with font exception for the fonts. +execute addMap yes.map +runfiles size=846 + RELOC/fonts/afm/arkandis/electrum/yesb8a.afm + RELOC/fonts/afm/arkandis/electrum/yesbo8a.afm + RELOC/fonts/afm/arkandis/electrum/yesl8a.afm + RELOC/fonts/afm/arkandis/electrum/yeslo8a.afm + RELOC/fonts/afm/arkandis/electrum/yesr8a.afm + RELOC/fonts/afm/arkandis/electrum/yesro8a.afm + RELOC/fonts/afm/arkandis/electrum/yess8a.afm + RELOC/fonts/afm/arkandis/electrum/yesso8a.afm + RELOC/fonts/enc/dvips/electrum/supp-yes.enc + RELOC/fonts/map/dvips/electrum/yes.map + RELOC/fonts/tfm/arkandis/electrum/yesb08c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb08t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb0o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb0o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb18c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb18t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb1o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb1o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesb8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbc8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbco8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbcw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbj8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbjo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbo8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbo8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesbw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl08c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl08t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl0o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl0o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl18c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl18t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl1o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl1o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesl8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslc8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslco8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslcw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslj8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesljo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesljo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesljow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesljw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslo8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslo8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yeslw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr08c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr08t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr0o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr0o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr18c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr18t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr1o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr1o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesr8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrc8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrco8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrcw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrj8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrjo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesro8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesro8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesro8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesro8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesrw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess08c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess08t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess0o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess0o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess18c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess18t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess1o8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess1o8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yess8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yess8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yess8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yess8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessc8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessco8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesscw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessj8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yessj8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessjo8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yessjo8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessjow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessjw8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yesso8c.tfm + RELOC/fonts/tfm/arkandis/electrum/yesso8r.tfm + RELOC/fonts/tfm/arkandis/electrum/yesso8s.tfm + RELOC/fonts/tfm/arkandis/electrum/yesso8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessow8t.tfm + RELOC/fonts/tfm/arkandis/electrum/yessw8t.tfm + RELOC/fonts/type1/arkandis/electrum/yesb8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesb8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesbo8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesbo8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesl8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesl8a.pfm + RELOC/fonts/type1/arkandis/electrum/yeslo8a.pfb + RELOC/fonts/type1/arkandis/electrum/yeslo8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesr8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesr8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesro8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesro8a.pfm + RELOC/fonts/type1/arkandis/electrum/yess8a.pfb + RELOC/fonts/type1/arkandis/electrum/yess8a.pfm + RELOC/fonts/type1/arkandis/electrum/yesso8a.pfb + RELOC/fonts/type1/arkandis/electrum/yesso8a.pfm + RELOC/fonts/vf/arkandis/electrum/yesb08c.vf + RELOC/fonts/vf/arkandis/electrum/yesb08t.vf + RELOC/fonts/vf/arkandis/electrum/yesb0o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesb0o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesb18c.vf + RELOC/fonts/vf/arkandis/electrum/yesb18t.vf + RELOC/fonts/vf/arkandis/electrum/yesb1o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesb1o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesb8c.vf + RELOC/fonts/vf/arkandis/electrum/yesb8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbc8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbco8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbcw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbj8c.vf + RELOC/fonts/vf/arkandis/electrum/yesbj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbjo8c.vf + RELOC/fonts/vf/arkandis/electrum/yesbjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbo8c.vf + RELOC/fonts/vf/arkandis/electrum/yesbo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesbw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesl08c.vf + RELOC/fonts/vf/arkandis/electrum/yesl08t.vf + RELOC/fonts/vf/arkandis/electrum/yesl0o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesl0o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesl18c.vf + RELOC/fonts/vf/arkandis/electrum/yesl18t.vf + RELOC/fonts/vf/arkandis/electrum/yesl1o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesl1o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesl8c.vf + RELOC/fonts/vf/arkandis/electrum/yesl8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslc8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcj8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslco8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcow8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslcw8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslj8c.vf + RELOC/fonts/vf/arkandis/electrum/yeslj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesljo8c.vf + RELOC/fonts/vf/arkandis/electrum/yesljo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesljow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesljw8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslo8c.vf + RELOC/fonts/vf/arkandis/electrum/yeslo8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslow8t.vf + RELOC/fonts/vf/arkandis/electrum/yeslw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesr08c.vf + RELOC/fonts/vf/arkandis/electrum/yesr08t.vf + RELOC/fonts/vf/arkandis/electrum/yesr0o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesr0o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesr18c.vf + RELOC/fonts/vf/arkandis/electrum/yesr18t.vf + RELOC/fonts/vf/arkandis/electrum/yesr1o8c.vf + RELOC/fonts/vf/arkandis/electrum/yesr1o8t.vf + RELOC/fonts/vf/arkandis/electrum/yesr8c.vf + RELOC/fonts/vf/arkandis/electrum/yesr8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrc8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrco8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrcw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrj8c.vf + RELOC/fonts/vf/arkandis/electrum/yesrj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrjo8c.vf + RELOC/fonts/vf/arkandis/electrum/yesrjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesro8c.vf + RELOC/fonts/vf/arkandis/electrum/yesro8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesrw8t.vf + RELOC/fonts/vf/arkandis/electrum/yess08c.vf + RELOC/fonts/vf/arkandis/electrum/yess08t.vf + RELOC/fonts/vf/arkandis/electrum/yess0o8c.vf + RELOC/fonts/vf/arkandis/electrum/yess0o8t.vf + RELOC/fonts/vf/arkandis/electrum/yess18c.vf + RELOC/fonts/vf/arkandis/electrum/yess18t.vf + RELOC/fonts/vf/arkandis/electrum/yess1o8c.vf + RELOC/fonts/vf/arkandis/electrum/yess1o8t.vf + RELOC/fonts/vf/arkandis/electrum/yess8c.vf + RELOC/fonts/vf/arkandis/electrum/yess8t.vf + RELOC/fonts/vf/arkandis/electrum/yessc8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscj8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yessco8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscow8t.vf + RELOC/fonts/vf/arkandis/electrum/yesscw8t.vf + RELOC/fonts/vf/arkandis/electrum/yessj8c.vf + RELOC/fonts/vf/arkandis/electrum/yessj8t.vf + RELOC/fonts/vf/arkandis/electrum/yessjo8c.vf + RELOC/fonts/vf/arkandis/electrum/yessjo8t.vf + RELOC/fonts/vf/arkandis/electrum/yessjow8t.vf + RELOC/fonts/vf/arkandis/electrum/yessjw8t.vf + RELOC/fonts/vf/arkandis/electrum/yesso8c.vf + RELOC/fonts/vf/arkandis/electrum/yesso8t.vf + RELOC/fonts/vf/arkandis/electrum/yessow8t.vf + RELOC/fonts/vf/arkandis/electrum/yessw8t.vf + RELOC/tex/latex/electrum/electrum.sty + RELOC/tex/latex/electrum/t1yes.fd + RELOC/tex/latex/electrum/t1yes0.fd + RELOC/tex/latex/electrum/t1yes1.fd + RELOC/tex/latex/electrum/t1yesj.fd + RELOC/tex/latex/electrum/t1yesjw.fd + RELOC/tex/latex/electrum/t1yesw.fd + RELOC/tex/latex/electrum/ts1yes.fd + RELOC/tex/latex/electrum/ts1yes0.fd + RELOC/tex/latex/electrum/ts1yes1.fd + RELOC/tex/latex/electrum/ts1yesj.fd + RELOC/tex/latex/electrum/ts1yesjw.fd + RELOC/tex/latex/electrum/ts1yesw.fd +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-ctan /fonts/electrumadf +catalogue-date 2014-04-26 19:51:19 +0200 +catalogue-license other-free +catalogue-version 1.005-b + +name eledform +category Package +revision 38114 +shortdesc Define textual variants +relocated 1 +longdesc The package provides commands to formalize textual variants in +longdesc critical editions typeset using eledmac. +runfiles size=1 + RELOC/tex/latex/eledform/eledform.sty +docfiles size=37 + RELOC/doc/latex/eledform/README.md + RELOC/doc/latex/eledform/eledform.pdf + RELOC/doc/latex/eledform/example.pdf + RELOC/doc/latex/eledform/example.tex + RELOC/doc/latex/eledform/include/stemma.tex + RELOC/doc/latex/eledform/makefile +srcfiles size=5 + RELOC/source/latex/eledform/eledform.dtx + RELOC/source/latex/eledform/eledform.ins +catalogue-ctan /macros/latex/contrib/eledform +catalogue-date 2015-08-13 14:25:03 +0200 +catalogue-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 1.1a + +name eledmac +category Package +revision 38276 +shortdesc Typeset scholarly editions +relocated 1 +longdesc A package for typesetting scholarly critical editions, +longdesc replacing the established ledmac package. Ledmac itself was a +longdesc LaTeX port of the plain TeX EDMAC macros. The package supports +longdesc indexing by page and by line numbers, and simple tabular- and +longdesc array-style environments. The package is distributed with the +longdesc related eledpar package. The package is now superseded by +longdesc reledmac. +runfiles size=66 + RELOC/tex/latex/eledmac/eledmac.sty + RELOC/tex/latex/eledmac/eledpar.sty +docfiles size=528 + RELOC/doc/latex/eledmac/Makefile + RELOC/doc/latex/eledmac/README + RELOC/doc/latex/eledmac/eledmac.pdf + RELOC/doc/latex/eledmac/eledpar.pdf + RELOC/doc/latex/eledmac/examples/1-criticalnotes.pdf + RELOC/doc/latex/eledmac/examples/1-criticalnotes.tex + RELOC/doc/latex/eledmac/examples/1-sidenotes.pdf + RELOC/doc/latex/eledmac/examples/1-sidenotes.tex + RELOC/doc/latex/eledmac/examples/1-tabular.pdf + RELOC/doc/latex/eledmac/examples/1-tabular.tex + RELOC/doc/latex/eledmac/examples/1-verses.pdf + RELOC/doc/latex/eledmac/examples/1-verses.tex + RELOC/doc/latex/eledmac/examples/2-cross_referencing.pdf + RELOC/doc/latex/eledmac/examples/2-cross_referencing.tex + RELOC/doc/latex/eledmac/examples/2-footnote_spacing.pdf + RELOC/doc/latex/eledmac/examples/2-footnote_spacing.tex + RELOC/doc/latex/eledmac/examples/2-indexing.pdf + RELOC/doc/latex/eledmac/examples/2-indexing.tex + RELOC/doc/latex/eledmac/examples/2-lemma_disambigution.pdf + RELOC/doc/latex/eledmac/examples/2-lemma_disambigution.tex + RELOC/doc/latex/eledmac/examples/2-line_numbers_in_header.pdf + RELOC/doc/latex/eledmac/examples/2-line_numbers_in_header.tex + RELOC/doc/latex/eledmac/examples/2-one_series_per_pstart.pdf + RELOC/doc/latex/eledmac/examples/2-one_series_per_pstart.tex + RELOC/doc/latex/eledmac/examples/2-performances.pdf + RELOC/doc/latex/eledmac/examples/2-performances.tex + RELOC/doc/latex/eledmac/examples/2-titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/eledmac/examples/2-titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/eledmac/examples/2-titles_not_in_line_numbering.pdf + RELOC/doc/latex/eledmac/examples/2-titles_not_in_line_numbering.tex + RELOC/doc/latex/eledmac/examples/3-eledpar_columns_different_languages.pdf + RELOC/doc/latex/eledmac/examples/3-eledpar_columns_different_languages.tex + RELOC/doc/latex/eledmac/examples/3-eledpar_mwe.pdf + RELOC/doc/latex/eledmac/examples/3-eledpar_mwe.tex + RELOC/doc/latex/eledmac/examples/3-eledpar_pages_different_languages_lualatex.pdf + RELOC/doc/latex/eledmac/examples/3-eledpar_pages_different_languages_lualatex.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_column_mix_with_not_column.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_column_mix_with_not_column.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_columns_alignment.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_columns_alignment.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_columns_titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_columns_titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_one_series_per_pstart.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_one_series_per_pstart.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_page_titles_in_line_numbering_with_notes.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_page_titles_in_line_numbering_with_notes.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_long_notes.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_long_notes.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_notes_leftpage.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_notes_leftpage.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_paragraph_separator_between.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_pages_paragraph_separator_between.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_titles_not_in_line_numbering.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_titles_not_in_line_numbering.tex + RELOC/doc/latex/eledmac/examples/4-eledpar_verse_text_between.pdf + RELOC/doc/latex/eledmac/examples/4-eledpar_verse_text_between.tex + RELOC/doc/latex/eledmac/examples/eledmac.xdy + RELOC/doc/latex/eledmac/examples/makefile + RELOC/doc/latex/eledmac/latexmkrc +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 +catalogue-also ednotes poemscol ledmac +catalogue-ctan /macros/latex/contrib/eledmac +catalogue-date 2015-09-02 18:26:56 +0200 +catalogue-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 1.24.8 + +name elements +category Package +revision 37723 +shortdesc Provides properties of chemical elements +relocated 1 +longdesc The package provides means for retrieving properties of +longdesc chemical elements like atomic number, element symbol, element +longdesc name, electron distribution or isotope number. Properties are +longdesc defined for the elements up to the atomic number 112. This +longdesc package is a spin-off of the package bohr by the same author. +runfiles size=10 + 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 +catalogue-ctan /macros/latex/contrib/elements +catalogue-date 2015-06-30 15:57:53 +0200 +catalogue-license lppl1.3 +catalogue-topics chemistry +catalogue-version 0.1a + +name ellipsis +category Package +revision 15878 +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 +docfiles size=34 + RELOC/doc/latex/ellipsis/README + RELOC/doc/latex/ellipsis/ellipsis.pdf +srcfiles size=6 + RELOC/source/latex/ellipsis/ellipsis.dtx + RELOC/source/latex/ellipsis/ellipsis.ins +catalogue-ctan /macros/latex/contrib/ellipsis +catalogue-date 2012-05-25 14:41:32 +0200 +catalogue-license lppl + +name elmath +category Package +revision 15878 +shortdesc Mathematics in Greek texts. +relocated 1 +longdesc This package has been designed to facilitate the use of Greek +longdesc letters in mathematical mode. The package allows one to +longdesc directly type in Greek letters (in ISO 8859-7 encoding) in math +longdesc mode. +runfiles size=3 + RELOC/tex/latex/elmath/elmath.sty +docfiles size=24 + RELOC/doc/latex/elmath/elmath.pdf +srcfiles size=4 + RELOC/source/latex/elmath/elmath.dtx + RELOC/source/latex/elmath/elmath.ins +catalogue-ctan /macros/latex/contrib/elmath +catalogue-date 2012-04-10 17:44:48 +0200 +catalogue-license lppl +catalogue-version v1.2 + +name elocalloc +category Package +revision 37644 +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 +docfiles size=39 + RELOC/doc/latex/elocalloc/README + RELOC/doc/latex/elocalloc/elocalloc.pdf +srcfiles size=3 + RELOC/source/latex/elocalloc/elocalloc.dtx + RELOC/source/latex/elocalloc/elocalloc.ins +catalogue-also etex-pkg +catalogue-ctan /macros/latex/contrib/elocalloc +catalogue-date 2015-06-21 12:20:25 +0200 +catalogue-license lppl +catalogue-topics macro-supp +catalogue-version 0.02 + +name elpres +category Package +revision 15878 +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 + RELOC/doc/latex/elpres/elpres-example.tex + RELOC/doc/latex/elpres/elpres-manual.pdf + RELOC/doc/latex/elpres/elpres-manual.tex + RELOC/doc/latex/elpres/gradient1.png + RELOC/doc/latex/elpres/gradient2.png +catalogue-ctan /macros/latex/contrib/elpres +catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-license lppl +catalogue-version v0.3 + +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 + RELOC/doc/latex/elsarticle/elsarticle-template-harv.tex + RELOC/doc/latex/elsarticle/elsarticle-template-num.tex + RELOC/doc/latex/elsarticle/elsdoc.pdf + RELOC/doc/latex/elsarticle/elsdoc.tex + 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 + RELOC/source/latex/elsarticle/elsarticle.dtx + RELOC/source/latex/elsarticle/elsarticle.ins +catalogue-ctan /macros/latex/contrib/elsarticle +catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-license lppl1.2 +catalogue-version 1.20 + +name elteikthesis +category Package +revision 22513 +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 +docfiles size=1207 + RELOC/doc/latex/elteikthesis/README + RELOC/doc/latex/elteikthesis/elteikthesis.pdf + 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 +srcfiles size=6 + RELOC/source/latex/elteikthesis/elteikthesis.dtx + RELOC/source/latex/elteikthesis/elteikthesis.ins +catalogue-ctan /macros/latex/contrib/elteikthesis +catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-license lppl1.2 +catalogue-version 1.2 + +name eltex +category Package +revision 15878 +shortdesc Simple circuit diagrams in LaTeX picture mode. +relocated 1 +longdesc The macros enable the user to draw simple circuit diagrams in +longdesc the picture environment, with no need of special resources. The +longdesc macros are appropriate for drawing for school materials. The +longdesc circuit symbols accord to the various parts of the standard IEC +longdesc 617. +runfiles size=26 + RELOC/tex/latex/eltex/eltex1.tex + RELOC/tex/latex/eltex/eltex2.tex + RELOC/tex/latex/eltex/eltex3.tex + RELOC/tex/latex/eltex/eltex4.tex + RELOC/tex/latex/eltex/eltex5.tex + RELOC/tex/latex/eltex/eltex6.tex + RELOC/tex/latex/eltex/eltex7.tex +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-ctan /macros/latex/contrib/eltex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 2.0 + +name elvish +category Package +revision 15878 +shortdesc Fonts for typesetting Tolkien Elvish scripts. +relocated 1 +longdesc The bundle provides fonts for Cirth (cirth.mf, etc.) and for +longdesc Tengwar (teng10.mf). The Tengwar fonts are supported by macros +longdesc in teng.tex, or by the (better documented) tengtex package. +runfiles size=22 + RELOC/fonts/source/public/elvish/cirth.mf + RELOC/fonts/source/public/elvish/teng10.mf + RELOC/fonts/source/public/elvish/tengdev.mf + RELOC/fonts/source/public/elvish/tengmacs.mf + RELOC/fonts/source/public/elvish/tengmain.mf + RELOC/fonts/source/public/elvish/tengsecs.mf + RELOC/fonts/source/public/elvish/tengteht.mf + RELOC/fonts/tfm/public/elvish/cirth.tfm + RELOC/fonts/tfm/public/elvish/teng10.tfm +docfiles size=2 + RELOC/doc/fonts/elvish/README + RELOC/doc/fonts/elvish/teng.tex +catalogue-ctan /fonts/elvish +catalogue-date 2014-04-26 19:51:19 +0200 +catalogue-license other-free + +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 + RELOC/source/latex/elzcards/elzcards.dtx + RELOC/source/latex/elzcards/elzcards.ins +catalogue-ctan /macros/latex/contrib/elzcards +catalogue-date 2015-04-26 12:26:50 +0200 +catalogue-license lppl1.3 +catalogue-version 1.20 + +name emarks +category Package +revision 24504 +shortdesc Named mark registers with e-TeX. +relocated 1 +longdesc E-TeX provides 32 768 mark registers; using this facility is +longdesc far more comfortable than LaTeX tricks with \markright, +longdesc \markboth, \leftmark and \rightmark. The package provides two +longdesc commands for marking: \marksthe and \marksthecs, which have * +longdesc forms which disable expansion; new mark registers are allocated +longdesc as needed. Syntax is closely modelled on the \marks primitive. +longdesc Four commands are provided for retrieving the marks registers' +longdesc content: \thefirstmarks, \thebotmarks, thetopmarks and +longdesc \getthemarks; and the command \ifmarksequal is available for +longdesc comparing the content of marks registers. The package requires +longdesc an e-TeX-enabled engine, and the etex package. +runfiles size=1 + RELOC/tex/latex/emarks/emarks.sty +docfiles size=590 + RELOC/doc/latex/emarks/Fingerprint.jpg + RELOC/doc/latex/emarks/README + RELOC/doc/latex/emarks/emarks-fingerprint.png + RELOC/doc/latex/emarks/emarks.pdf +srcfiles size=9 + RELOC/source/latex/emarks/emarks.drv + RELOC/source/latex/emarks/emarks.dtx + RELOC/source/latex/emarks/emarks.ins +catalogue-ctan /macros/latex/contrib/emarks +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name embedall +category Package +revision 31903 +shortdesc Embed source files into the generated PDF. +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 + RELOC/source/latex/embedall/embedall.dtx + RELOC/source/latex/embedall/embedall.ins +catalogue-ctan /macros/latex/contrib/embedall +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.0 + +name embrac +category Package +revision 38317 +shortdesc Upright brackets in emphasised text +relocated 1 +longdesc The package redefines the commands \emph and \textit so that +longdesc parentheses and square brackets are typeset in an upright font +longdesc in their arguments. The package requires expl3 from the +longdesc l3kernel bundle, and xparse and l3keys2e from the l3packages +longdesc bundle. +runfiles size=5 + RELOC/tex/latex/embrac/embrac.sty +docfiles size=119 + RELOC/doc/latex/embrac/README + RELOC/doc/latex/embrac/embrac_en.pdf + RELOC/doc/latex/embrac/embrac_en.tex + RELOC/doc/latex/embrac/embrac_kerning_test.tex +catalogue-ctan /macros/latex/contrib/embrac +catalogue-date 2015-09-07 13:02:13 +0200 +catalogue-license lppl1.3 +catalogue-topics typesetting expl3 +catalogue-version 0.6b + +name emp +category Package +revision 23483 +shortdesc "Encapsulate" MetaPost figures in a document. +relocated 1 +longdesc Emp is a package for encapsulating MetaPost figures in LaTeX: +longdesc the package provides environments where you can place MetaPost +longdesc commands, and means of using that code as fragments for +longdesc building up figures to include in your document. So, with emp, +longdesc the procedure is to run your document with LaTeX, run MetaPost, +longdesc and then complete running your document in the normal way. Emp +longdesc is therefore useful for keeping illustrations in synchrony with +longdesc the text. It also frees you from inventing descriptive names +longdesc for PostScript files that fit into the confines of file system +longdesc conventions. +runfiles size=2 + RELOC/tex/latex/emp/emp.sty +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 +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 +catalogue-ctan /macros/latex/contrib/emp +catalogue-date 2013-04-03 11:13:43 +0200 +catalogue-license gpl + +name emptypage +category Package +revision 18064 +shortdesc Make empty pages really empty. +relocated 1 +longdesc This package prevents page numbers and headings from appearing +longdesc on empty pages. +runfiles size=1 + RELOC/tex/latex/emptypage/emptypage.sty +docfiles size=16 + RELOC/doc/latex/emptypage/README + RELOC/doc/latex/emptypage/emptypage.pdf +srcfiles size=2 + RELOC/source/latex/emptypage/emptypage.dtx + RELOC/source/latex/emptypage/emptypage.ins +catalogue-ctan /macros/latex/contrib/emptypage +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.2 + +name emulateapj +category Package +revision 28469 +shortdesc Produce output similar to that of APJ. +relocated 1 +longdesc A LaTeX class (based on current RevTeX) to produce preprints +longdesc with the page layout similar to that of the Astrophysical +longdesc Journal. +runfiles size=16 + RELOC/tex/latex/emulateapj/emulateapj.cls +docfiles size=48 + RELOC/doc/latex/emulateapj/README + RELOC/doc/latex/emulateapj/sample.pdf + RELOC/doc/latex/emulateapj/sample.tex +catalogue-ctan /macros/latex/contrib/emulateapj +catalogue-date 2014-09-26 13:30:12 +0200 +catalogue-license lppl + +name enctex +category Package +revision 34957 +shortdesc A TeX extension that translates input on its way into TeX. +relocated 1 +longdesc EncTeX is (another) TeX extension, written at the change-file +longdesc level. It provides means of translating input on the way into +longdesc TeX. It allows, for example, translation of multibyte +longdesc sequences, such as utf-8 encoding. +runfiles size=62 + RELOC/tex/generic/enctex/1250-csf.tex + RELOC/tex/generic/enctex/1250-il2.tex + RELOC/tex/generic/enctex/1250-latex.tex + RELOC/tex/generic/enctex/1250-t1.tex + RELOC/tex/generic/enctex/852-csf.tex + RELOC/tex/generic/enctex/852-il2.tex + RELOC/tex/generic/enctex/852-latex.tex + RELOC/tex/generic/enctex/852-t1.tex + RELOC/tex/generic/enctex/csfmacro.tex + RELOC/tex/generic/enctex/enc-u.tex + RELOC/tex/generic/enctex/encmacro.tex + RELOC/tex/generic/enctex/il2-1250.tex + RELOC/tex/generic/enctex/il2-852.tex + RELOC/tex/generic/enctex/il2-csf.tex + RELOC/tex/generic/enctex/il2-kam.tex + RELOC/tex/generic/enctex/il2-t1.tex + RELOC/tex/generic/enctex/kam-csf.tex + RELOC/tex/generic/enctex/kam-il2.tex + RELOC/tex/generic/enctex/kam-latex.tex + RELOC/tex/generic/enctex/kam-t1.tex + RELOC/tex/generic/enctex/mixcodes.tex + RELOC/tex/generic/enctex/noprefnt.tex + RELOC/tex/generic/enctex/plain-1250-cs.tex + RELOC/tex/generic/enctex/plain-852-cs.tex + RELOC/tex/generic/enctex/plain-il2-cs.tex + RELOC/tex/generic/enctex/plain-kam-cs.tex + RELOC/tex/generic/enctex/plain-utf8-cs.tex + RELOC/tex/generic/enctex/plain-utf8-ec.tex + RELOC/tex/generic/enctex/polyset.tex + RELOC/tex/generic/enctex/t1macro.tex + RELOC/tex/generic/enctex/utf8-csf.tex + RELOC/tex/generic/enctex/utf8-t1.tex + RELOC/tex/generic/enctex/utf8cseq.tex + RELOC/tex/generic/enctex/utf8lat1.tex + RELOC/tex/generic/enctex/utf8lata.tex + RELOC/tex/generic/enctex/utf8math.tex + RELOC/tex/generic/enctex/utf8off.tex + RELOC/tex/generic/enctex/utf8raw.tex + RELOC/tex/generic/enctex/utf8unkn.tex + RELOC/tex/generic/enctex/utf8warn.tex +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-license gpl + +name encxvlna +category Package +revision 34087 +shortdesc Insert nonbreakable spaces, using encTeX. +relocated 1 +longdesc The package provides tools for inserting nonbreakable spaces +longdesc after nonsyllabic prepositions and single letter conjunctions +longdesc as required by Czech and Slovak typographical rules. It is +longdesc implemented using encTeX and provides files both for plain TeX +longdesc and LaTeX. The LaTeX solution tries to avoid conflicts with +longdesc other packages. +runfiles size=3 + RELOC/tex/latex/encxvlna/encxvlna.sty + RELOC/tex/plain/encxvlna/encxvlna.tex +docfiles size=70 + RELOC/doc/generic/encxvlna/License.txt + RELOC/doc/generic/encxvlna/README + RELOC/doc/generic/encxvlna/encxvlna.pdf + RELOC/doc/generic/encxvlna/encxvlna.tex + RELOC/doc/generic/encxvlna/vlna-inc.tex +catalogue-ctan /macros/generic/encxvlna +catalogue-date 2014-05-17 20:01:25 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name endfloat +category Package +revision 24962 +shortdesc Move floats to the end, leaving markers where they belong. +relocated 1 +longdesc Place all floats on pages by themselves at the end of the +longdesc document, optionally leaving markers like "[Figure 3 about +longdesc here]" in the text near to where the figure (or table) would +longdesc normally have occurred. Float types figure and table are +longdesc recognised by the package, unmodified. Since several packages +longdesc define other types of float, it is possible to register these +longdesc float types with endfloat. +runfiles size=5 + RELOC/tex/latex/endfloat/efxmpl.cfg + RELOC/tex/latex/endfloat/endfloat.sty +docfiles size=49 + RELOC/doc/latex/endfloat/COPYING + RELOC/doc/latex/endfloat/README + RELOC/doc/latex/endfloat/endfloat.pdf +srcfiles size=26 + RELOC/source/latex/endfloat/endfloat.dtx + RELOC/source/latex/endfloat/endfloat.ins +catalogue-ctan /macros/latex/contrib/endfloat +catalogue-date 2011-12-31 01:27:20 +0100 +catalogue-license gpl +catalogue-version 2.5d + +name endheads +category Package +revision 31921 +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 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 + RELOC/source/latex/endheads/endheads.dtx + RELOC/source/latex/endheads/endheads.ins +catalogue-ctan /macros/latex/contrib/endheads +catalogue-date 2013-10-18 10:55:45 +0200 +catalogue-license lppl +catalogue-version v1.5 + +name endiagram +category Package +revision 34486 +shortdesc Easy creation of potential energy curve diagrams. +relocated 1 +longdesc The package provides the facility of drawing potential energy +longdesc curve diagrams with just a few simple commands. The package +longdesc cannot (yet) be considered stable. +runfiles size=17 + RELOC/tex/latex/endiagram/endiagram.sty +docfiles size=167 + RELOC/doc/latex/endiagram/README + RELOC/doc/latex/endiagram/endiagram_en.pdf + RELOC/doc/latex/endiagram/endiagram_en.tex +catalogue-ctan /macros/latex/contrib/endiagram +catalogue-date 2014-08-08 18:24:57 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1d + +name endnotes +category Package +revision 17197 +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 +docfiles size=69 + RELOC/doc/latex/endnotes/endnotes.pdf + RELOC/doc/latex/endnotes/endnotes.tex +catalogue-ctan /macros/latex/contrib/endnotes +catalogue-date 2012-06-14 17:25:45 +0200 +catalogue-license lppl1.2 + +name engpron +category Package +revision 16558 +shortdesc Helps to type the pronunciation of English words. +relocated 1 +longdesc This package provides macros beginning with the 'PS' character, +longdesc made active, which enable us to write the British or American +longdesc English pronunciation as one can find it in the 'English +longdesc Pronouncing Dictionary' by Daniel Jones. There is an option to +longdesc typeset the pronunciation in the style of Harrap's dictionary. +runfiles size=4 + RELOC/tex/latex/engpron/engpron-tools.sty + RELOC/tex/latex/engpron/engpron.sty +docfiles size=608 + RELOC/doc/latex/engpron/LISEZMOI + RELOC/doc/latex/engpron/README + 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-ex-en.tex + RELOC/doc/latex/engpron/engpron-ex-fr.pdf + 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 +srcfiles size=24 + RELOC/source/latex/engpron/Makefile + RELOC/source/latex/engpron/engpron.dtx + RELOC/source/latex/engpron/engpron.ins +catalogue-ctan /macros/latex/contrib/engpron +catalogue-date 2012-02-10 18:22:03 +0100 +catalogue-license lppl +catalogue-version 2 + +name engrec +category Package +revision 15878 +shortdesc Enumerate with lower- or uppercase Greek letters. +relocated 1 +longdesc This package provides two macros \engrec and \EnGrec to convert +longdesc number arguments to lower case or upper case greek letters. +longdesc They have the syntax of \alph, i.e. \engrec{a_counter}, +longdesc \EnGrec{a_counter}. Options are provided to work with the +longdesc upgreek and fourier packages. Requires amstext. +runfiles size=2 + RELOC/tex/latex/engrec/engrec.sty +docfiles size=71 + RELOC/doc/latex/engrec/LISEZMOI + RELOC/doc/latex/engrec/README + RELOC/doc/latex/engrec/engrec.pdf +srcfiles size=7 + RELOC/source/latex/engrec/Makefile + RELOC/source/latex/engrec/engrec.dtx + RELOC/source/latex/engrec/engrec.ins +catalogue-ctan /macros/latex/contrib/engrec +catalogue-date 2012-01-23 15:27:59 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name engtlc +category Package +revision 28571 +shortdesc Support for users in Telecommunications Engineering. +relocated 1 +longdesc The package provides a wide range of abbreviations for terms +longdesc used in Telecommunications Engineering. +runfiles size=4 + RELOC/tex/latex/engtlc/engtlc.sty +docfiles size=210 + RELOC/doc/latex/engtlc/README + RELOC/doc/latex/engtlc/engtlc.pdf + RELOC/doc/latex/engtlc/engtlc.tex + RELOC/doc/latex/engtlc/itengtlc.pdf + RELOC/doc/latex/engtlc/itengtlc.tex +catalogue-ctan /macros/latex/contrib/engtlc +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 3.2 + +name enigma +category Package +revision 29802 +shortdesc Encrypt documents with a three rotor Enigma. +relocated 1 +longdesc The package provides historical encryption (Enigma cipher) for +longdesc LuaTeX-based formats. +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 +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/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 +catalogue-ctan /macros/luatex/generic/enigma +catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-license bsd +catalogue-version 0.1 + +name enotez +category Package +revision 37995 +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 + RELOC/doc/latex/enotez/enotez_en.tex + RELOC/doc/latex/enotez/enotez_split_example.tex +catalogue-also endnote endnotes +catalogue-ctan /macros/latex/contrib/enotez +catalogue-date 2015-07-29 12:34:24 +0200 +catalogue-license lppl1.3 +catalogue-topics endnote expl3 +catalogue-version 0.8a + +name enumitem +category Package +revision 24146 +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 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 + RELOC/doc/latex/enumitem/enumitem.tex +catalogue-ctan /macros/latex/contrib/enumitem +catalogue-date 2011-11-22 17:17:59 +0100 +catalogue-license lppl +catalogue-version 3.5.2 + +name enumitem-zref +category Package +revision 21472 +shortdesc Extended references to items for enumitem package. +relocated 1 +longdesc The package is a companion for the enumitem package; it makes +longdesc it possible to reference any item in lists formatted by +longdesc enumitem lists, viz., enumerated, itemize and description +longdesc lists, and any list defined (or customised) with \newlist or +longdesc \setlist. References may be typeset differently with +longdesc options/properties and even arbitrary text. With hyperref, +longdesc anchors are added for each item to enable hyperlinks within the +longdesc document or even to external documents. Three schemes are +longdesc provided to make reference names (including the standard \label +longdesc command). +runfiles size=7 + RELOC/tex/latex/enumitem-zref/enumitem-zref.sty +docfiles size=242 + RELOC/doc/latex/enumitem-zref/README + RELOC/doc/latex/enumitem-zref/enumitem-zexample.tex + RELOC/doc/latex/enumitem-zref/enumitem-zref.pdf +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 +catalogue-ctan /macros/latex/contrib/enumitem-zref +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.8 + +name envbig +category Package +revision 15878 +shortdesc Printing addresses on envelopes. +relocated 1 +longdesc A simple package, that prints both 'from' and 'to' addresses. +runfiles size=1 + RELOC/tex/latex/envbig/envbig.sty +docfiles size=1 + RELOC/doc/latex/envbig/README +catalogue-ctan /macros/latex/contrib/envbig +catalogue-date 2012-06-14 17:41:33 +0200 +catalogue-license lppl + +name environ +category Package +revision 33821 +shortdesc A new interface for environments in LaTeX. +relocated 1 +longdesc The package provides the \collect@body command (as in amsmath), +longdesc as well as a \long version \Collect@Body, for collecting the +longdesc body text of an environment. These commands are used to define +longdesc a new author interface to creating new environments. For +longdesc example: \NewEnviron{test} wraps the entire environment body in +longdesc square brackets, doing the right thing in ignoring leading and +longdesc trailing spaces. +runfiles size=2 + RELOC/tex/latex/environ/environ.sty +docfiles size=40 + RELOC/doc/latex/environ/README + RELOC/doc/latex/environ/environ.pdf +srcfiles size=6 + RELOC/source/latex/environ/environ.dtx + RELOC/source/latex/environ/environ.ins +catalogue-ctan /macros/latex/contrib/environ +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.3 + +name envlab +category Package +revision 15878 +shortdesc Addresses on envelopes or mailing labels. +relocated 1 +longdesc A LaTeX package for producing mailing envelopes and labels, +longdesc including barcodes and address formatting according to the US +longdesc Postal Service rules. Redefines the standard \makelabels +longdesc command of the LaTeX letter documentclass. +runfiles size=7 + RELOC/tex/latex/envlab/envlab.cfg + RELOC/tex/latex/envlab/envlab.sty +docfiles size=109 + RELOC/doc/latex/envlab/elguide.pdf + RELOC/doc/latex/envlab/elguide.tex + RELOC/doc/latex/envlab/envlab.pdf + RELOC/doc/latex/envlab/readme.v12 +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 +catalogue-ctan /macros/latex/contrib/envlab +catalogue-date 2014-09-25 21:17:33 +0200 +catalogue-license lppl +catalogue-version 1.2 + +name epigrafica +category Package +revision 17210 +shortdesc A Greek and Latin font. +relocated 1 +longdesc Epigrafica is forked from the development of the MgOpen font +longdesc Cosmetica, which is a similar design to Optima and includes +longdesc Greek. Development has been supported by the Laboratory of +longdesc Digital Typography and Mathematical Software, of the Department +longdesc of Mathematics of the University of the Aegean, Greece. +execute addMap epigrafica.map +runfiles size=161 + RELOC/fonts/afm/public/epigrafica/Epigrafica-Entona.afm + RELOC/fonts/afm/public/epigrafica/Epigrafica-EntonaReonta.afm + RELOC/fonts/afm/public/epigrafica/Epigrafica-Ortha.afm + RELOC/fonts/afm/public/epigrafica/Epigrafica-Pezokefalaia.afm + RELOC/fonts/afm/public/epigrafica/Epigrafica-Reonta.afm + RELOC/fonts/enc/dvips/epigrafica/epigraficahellenic.enc + RELOC/fonts/map/dvips/epigrafica/epigrafica.map + RELOC/fonts/tfm/public/epigrafica/epigraficab8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficab8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficabi8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficabi8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficabo8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficabo8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficac8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficac8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahb7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahb7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahbi7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahbi7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahbo7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahbo7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahc7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahc7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahi7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahi7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficahn7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficaho7a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficaho7r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficai8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficai8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigrafican8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigrafican8r.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficao8a.tfm + RELOC/fonts/tfm/public/epigrafica/epigraficao8r.tfm + RELOC/fonts/tfm/public/epigrafica/gepigraficahn7a.tfm + RELOC/fonts/type1/public/epigrafica/Epigrafica-Entona.pfb + RELOC/fonts/type1/public/epigrafica/Epigrafica-EntonaReonta.pfb + RELOC/fonts/type1/public/epigrafica/Epigrafica-Ortha.pfb + RELOC/fonts/type1/public/epigrafica/Epigrafica-Pezokefalaia.pfb + RELOC/fonts/type1/public/epigrafica/Epigrafica-Reonta.pfb + RELOC/fonts/vf/public/epigrafica/epigraficab8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficabi8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficabo8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficac8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahb7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahbi7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahbo7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahc7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahi7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficahn7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficaho7r.vf + RELOC/fonts/vf/public/epigrafica/epigraficai8r.vf + RELOC/fonts/vf/public/epigrafica/epigrafican8r.vf + RELOC/fonts/vf/public/epigrafica/epigraficao8r.vf + RELOC/tex/latex/epigrafica/epigrafica.sty + RELOC/tex/latex/epigrafica/lgrepigrafica.fd + RELOC/tex/latex/epigrafica/ot1epigrafica.fd +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-ctan /fonts/greek/epigrafica +catalogue-date 2014-04-26 10:32:59 +0200 +catalogue-license gpl +catalogue-version 1.01 + +name epigram +category Package +revision 20513 +shortdesc Display short quotations. +relocated 1 +longdesc The package determines (on the basis of the width of the text +longdesc of the epigram, laid out on a single line) whether to produce a +longdesc line or a displayed paragraph. +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-license pd + +name epigraph +category Package +revision 15878 +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 +docfiles size=46 + RELOC/doc/latex/epigraph/README + RELOC/doc/latex/epigraph/epigraph.pdf +srcfiles size=9 + RELOC/source/latex/epigraph/epigraph.dtx + RELOC/source/latex/epigraph/epigraph.ins +catalogue-ctan /macros/latex/contrib/epigraph +catalogue-date 2012-07-10 21:25:56 +0200 +catalogue-license lppl1.3 +catalogue-version 1.5c + +name epiolmec +category Package +revision 15878 +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. +execute addMap epiolmec.map +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-license lppl + +name eplain +category Package +revision 36217 +shortdesc Extended plain TeX macros. +longdesc An extended version of the plain TeX format, adding support for +longdesc bibliographies, tables of contents, enumerated lists, verbatim +longdesc input of files, numbered equations, tables, two-column output, +longdesc footnotes, hyperlinks in PDF output and commutative diagrams. +longdesc Eplain can also load some of the more useful LaTeX packages, +longdesc notably graphics, graphicx (an extended of version of +longdesc graphics), color, autopict (a package instance of the LaTeX +longdesc picture code), psfrag, and url. +depend pdftex +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 + 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/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/lscommnt.jpg + texmf-dist/doc/eplain/util/idxuniq + texmf-dist/doc/eplain/util/trimsee + texmf-dist/doc/eplain/xhyper.jpg + texmf-dist/doc/info/eplain.info + texmf-dist/doc/man/man1/eplain.1 + texmf-dist/doc/man/man1/eplain.man1.pdf +srcfiles size=133 + texmf-dist/source/eplain/eplain-source-3.7.zip + texmf-dist/source/eplain/xeplain.tex +catalogue-ctan /macros/eplain +catalogue-date 2015-03-29 07:34:44 +0200 +catalogue-license gpl2 +catalogue-version 3.7 + +name eplain.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of eplain +binfiles arch=i386-linux size=1 + bin/i386-linux/eplain + +name epsdice +category Package +revision 15878 +shortdesc A scalable dice "font". +relocated 1 +longdesc The epsdice package defines a single command \epsdice that +longdesc takes a numeric argument (in the range 1-6), and selects a face +longdesc image from a file that contains each of the 6 possible die +longdesc faces. The graphic file is provided in both Encapsulated +longdesc PostScript and PDF formats. +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 +docfiles size=22 + RELOC/doc/latex/epsdice/README + RELOC/doc/latex/epsdice/dice.eps + RELOC/doc/latex/epsdice/dice.pdf + RELOC/doc/latex/epsdice/epsdice.pdf +srcfiles size=6 + RELOC/source/latex/epsdice/epsdice.dtx + RELOC/source/latex/epsdice/epsdice.ins +catalogue-ctan /macros/latex/contrib/epsdice +catalogue-date 2012-04-27 11:57:13 +0200 +catalogue-license lppl +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. +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 +docfiles size=98 + RELOC/doc/generic/epsf/LICENSE + RELOC/doc/generic/epsf/Makefile + RELOC/doc/generic/epsf/README + RELOC/doc/generic/epsf/bboxgrid.ps + RELOC/doc/generic/epsf/epsf-doc.pdf + RELOC/doc/generic/epsf/epsf-doc.tex + RELOC/doc/generic/epsf/fndbadps + RELOC/doc/generic/epsf/okay/teps.eps + RELOC/doc/generic/epsf/okay/tepsf.eps + RELOC/doc/generic/epsf/okay/tepsf1.dvi + RELOC/doc/generic/epsf/okay/tepsf2.dvi + RELOC/doc/generic/epsf/okay/tepsf3.dvi + RELOC/doc/generic/epsf/teps.eps + RELOC/doc/generic/epsf/tepsf.eps + RELOC/doc/generic/epsf/tepsf1.tex + RELOC/doc/generic/epsf/tepsf2.ltx + RELOC/doc/generic/epsf/tepsf3.tex +catalogue-ctan /macros/generic/epsf +catalogue-date 2013-09-10 14:43:07 +0200 +catalogue-license pd +catalogue-version 2.7.4 + +name epsincl +category Package +revision 29349 +shortdesc Include EPS in MetaPost figures. +relocated 1 +longdesc The package facilitates including EPS files in MetaPost +longdesc figures; it makes use of (G)AWK. +runfiles size=1 + RELOC/metapost/epsincl/epsincl.mp +docfiles size=9 + RELOC/doc/metapost/epsincl/0info.txt + RELOC/doc/metapost/epsincl/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 +catalogue-ctan /graphics/metapost/contrib/macros/epsincl +catalogue-date 2012-07-10 22:47:12 +0200 +catalogue-license pd +catalogue-version 0.2 + +name epslatex-fr +category Package +revision 19440 +catalogue fepslatex +shortdesc French version of "graphics in LaTeX". +relocated 1 +longdesc This is the French translation of epslatex, and describes how +longdesc to use imported graphics in LaTeX(2e) documents. +docfiles size=824 + RELOC/doc/latex/epslatex-fr/Ball.eps + RELOC/doc/latex/epslatex-fr/CHAP2.sty + RELOC/doc/latex/epslatex-fr/Construction.eps + RELOC/doc/latex/epslatex-fr/Franc-chap.sty + RELOC/doc/latex/epslatex-fr/README + RELOC/doc/latex/epslatex-fr/README.TEXLIVE + RELOC/doc/latex/epslatex-fr/Warning.eps + RELOC/doc/latex/epslatex-fr/alltex.sty + RELOC/doc/latex/epslatex-fr/auteurs.sty + RELOC/doc/latex/epslatex-fr/bases.sty + RELOC/doc/latex/epslatex-fr/block.sty + RELOC/doc/latex/epslatex-fr/box1.eps + RELOC/doc/latex/epslatex-fr/box2.eps + RELOC/doc/latex/epslatex-fr/boxes.sty + RELOC/doc/latex/epslatex-fr/btxdoc.bib + RELOC/doc/latex/epslatex-fr/cm.eps + RELOC/doc/latex/epslatex-fr/cm.ps + RELOC/doc/latex/epslatex-fr/danger.eps + RELOC/doc/latex/epslatex-fr/divers.sty + RELOC/doc/latex/epslatex-fr/ebnf.sty + RELOC/doc/latex/epslatex-fr/export.sty + RELOC/doc/latex/epslatex-fr/fepslatex.pdf + RELOC/doc/latex/epslatex-fr/fepslatex.tex + RELOC/doc/latex/epslatex-fr/fill.sty + RELOC/doc/latex/epslatex-fr/fmparhack.sty + RELOC/doc/latex/epslatex-fr/foot.sty + RELOC/doc/latex/epslatex-fr/fr.sty + RELOC/doc/latex/epslatex-fr/franc.sty + RELOC/doc/latex/epslatex-fr/frnew.sty + RELOC/doc/latex/epslatex-fr/g_toc_entry.sty + RELOC/doc/latex/epslatex-fr/graphic.eps + RELOC/doc/latex/epslatex-fr/hands.sty + RELOC/doc/latex/epslatex-fr/header.tex + RELOC/doc/latex/epslatex-fr/indentondemand.sty + RELOC/doc/latex/epslatex-fr/makecmds.sty + RELOC/doc/latex/epslatex-fr/makerobust.sty + RELOC/doc/latex/epslatex-fr/mass.eps + RELOC/doc/latex/epslatex-fr/mypatches.sty + RELOC/doc/latex/epslatex-fr/myvarioref.sty + RELOC/doc/latex/epslatex-fr/nrfoot.sty + RELOC/doc/latex/epslatex-fr/origin.eps + RELOC/doc/latex/epslatex-fr/overlay.sty + RELOC/doc/latex/epslatex-fr/pale.eps + RELOC/doc/latex/epslatex-fr/pend.eps + RELOC/doc/latex/epslatex-fr/pretzel.eps + RELOC/doc/latex/epslatex-fr/pretzel.ps + RELOC/doc/latex/epslatex-fr/rdanger.eps + RELOC/doc/latex/epslatex-fr/rosette.eps + RELOC/doc/latex/epslatex-fr/rosette.ps + RELOC/doc/latex/epslatex-fr/sgte.sty + RELOC/doc/latex/epslatex-fr/smaller.sty + RELOC/doc/latex/epslatex-fr/square.eps + RELOC/doc/latex/epslatex-fr/topcapt.sty + RELOC/doc/latex/epslatex-fr/topfig.sty + RELOC/doc/latex/epslatex-fr/warn.sty + RELOC/doc/latex/epslatex-fr/wdesc.sty + RELOC/doc/latex/epslatex-fr/whitecdp.sty + RELOC/doc/latex/epslatex-fr/wide.eps + RELOC/doc/latex/epslatex-fr/widecenter.sty + RELOC/doc/latex/epslatex-fr/xb.sty +catalogue-ctan /info/epslatex/french +catalogue-date 2013-10-03 14:20:59 +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 + +name epspdf +category Package +revision 35762 +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 + 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/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 +catalogue-ctan /support/epspdf +catalogue-date 2014-12-07 20:39:16 +0100 +catalogue-license gpl +catalogue-version 0.6.1 + +name epspdf.i386-linux +category Package +revision 29050 +shortdesc i386-linux files of epspdf +binfiles arch=i386-linux size=2 + bin/i386-linux/epspdf + bin/i386-linux/epspdftk + +name epstopdf +category Package +revision 36139 +shortdesc Convert EPS to 'encapsulated' PDF using Ghostscript. +longdesc Epstopdf is a Perl script that converts an EPS file to an +longdesc 'encapsulated' PDF file (a single page file whose media box is +longdesc the same as the original EPS's bounding box). The resulting +longdesc file suitable for inclusion by PDFTeX as an image. The script +longdesc is adapted to run both on Windows and on Unix-alike systems. +longdesc The script makes use of Ghostscript for the actual conversion +longdesc to PDF. It assumes Ghostscript version 6.51 or later, and (by +longdesc default) suppresses its automatic rotation of pages where most +longdesc of the text is not horizontal. LaTeX users may make use of the +longdesc epstopdf package, which will run the epstopdf script "on the +longdesc fly", thus giving the illusion that PDFLaTeX is accepting EPS +longdesc graphic files. +depend epstopdf.ARCH +runfiles size=9 + texmf-dist/scripts/epstopdf/epstopdf.pl +docfiles size=10 + texmf-dist/doc/man/man1/epstopdf.1 + texmf-dist/doc/man/man1/epstopdf.man1.pdf + texmf-dist/doc/man/man1/repstopdf.1 + texmf-dist/doc/man/man1/repstopdf.man1.pdf + texmf-dist/doc/support/epstopdf/README +catalogue-ctan /support/epstopdf +catalogue-date 2015-03-29 23:12:12 +0200 +catalogue-license other-free +catalogue-version 2.23 + +name epstopdf.i386-linux +category Package +revision 18336 +shortdesc i386-linux files of epstopdf +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 eqell +category Package +revision 22931 +shortdesc Sympathetically spaced ellipsis after punctuation. +relocated 1 +longdesc The package provides commands that give a well-spaced ellipsis +longdesc after !, ?, !? or ?!. +runfiles size=1 + RELOC/tex/latex/eqell/eqell.sty +docfiles size=48 + RELOC/doc/latex/eqell/README + RELOC/doc/latex/eqell/eqell.pdf + RELOC/doc/latex/eqell/eqell.tex +catalogue-ctan /macros/latex/contrib/eqell +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl + +name eqlist +category Package +revision 32257 +shortdesc Description lists with equal indentation. +relocated 1 +longdesc This package provides a list environment which sets a +longdesc description-like list in which the indentation corresponds to +longdesc the longest item of the list. +runfiles size=1 + RELOC/tex/latex/eqlist/eqlist.sty +docfiles size=22 + RELOC/doc/latex/eqlist/README + RELOC/doc/latex/eqlist/eqlist.pdf + RELOC/doc/latex/eqlist/eqlist.tex +srcfiles size=7 + RELOC/source/latex/eqlist/eqlist.dtx + RELOC/source/latex/eqlist/eqlist.ins +catalogue-ctan /macros/latex/contrib/eqlist +catalogue-date 2012-01-23 15:27:59 +0100 +catalogue-license lppl +catalogue-version 2.1 + +name eqname +category Package +revision 20678 +shortdesc Name tags for equations. +relocated 1 +longdesc The \eqname command provides a name tag for the current +longdesc equation, in place of an equation number. The name tag will be +longdesc picked up by a subsequent \label command. +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-license other-free + +name eqnarray +category Package +revision 20641 +shortdesc More generalised equation arrays with numbering. +relocated 1 +longdesc Defines an equationarray environment, that allows more than +longdesc three columns, but otherwise behaves like LaTeX's eqnarray +longdesc environment. This environment is similar, in some ways, to the +longdesc align environment of amsmath. The package requires the array +longdesc package. +runfiles size=2 + RELOC/tex/latex/eqnarray/eqnarray.sty +docfiles size=30 + RELOC/doc/latex/eqnarray/README + RELOC/doc/latex/eqnarray/eqnarray.pdf +srcfiles size=6 + RELOC/source/latex/eqnarray/eqnarray.drv + RELOC/source/latex/eqnarray/eqnarray.dtx + RELOC/source/latex/eqnarray/eqnarray.ins +catalogue-ctan /macros/latex/contrib/eqnarray +catalogue-date 2014-05-14 16:12:10 +0200 +catalogue-license gpl3 +catalogue-version 1.3 + +name eqparbox +category Package +revision 29419 +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 + RELOC/source/latex/eqparbox/eqparbox.dtx + RELOC/source/latex/eqparbox/eqparbox.ins +catalogue-ctan /macros/latex/contrib/eqparbox +catalogue-date 2013-03-17 00:02:27 +0100 +catalogue-license lppl1.3 +catalogue-version 4.0 + +name erdc +category Package +revision 15878 +shortdesc Style for Reports by US Army Corps of Engineers. +relocated 1 +longdesc A class for typesetting Technical Information Reports of the +longdesc Engineer Research and Development Center, US Army Corps of +longdesc Engineers. The class was commissioned and paid for by US Army +longdesc Corps of Engineers, Engineer Research and Development Center, +longdesc 3909 Halls Ferry Road, Vicksburg, MS 39180-6199. +runfiles size=5 + RELOC/tex/latex/erdc/erdc.cls +docfiles size=215 + RELOC/doc/latex/erdc/README + RELOC/doc/latex/erdc/erdc.bib + RELOC/doc/latex/erdc/erdc.pdf + 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.tex +srcfiles size=17 + RELOC/source/latex/erdc/Makefile + RELOC/source/latex/erdc/erdc.dtx + RELOC/source/latex/erdc/erdc.ins +catalogue-ctan /macros/latex/contrib/erdc +catalogue-date 2014-09-26 13:30:12 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name erewhon +category Package +revision 36743 +shortdesc Font package derived from Heuristica and Utopia. +relocated 1 +longdesc Erewhon is based on the Heuristica package, which is based in +longdesc turn on Utopia. Erewhon adds a number of new features -- small +longdesc caps in all styles rather than just regular, added figure +longdesc styles (proportional, inferior, numerator, denominator) and +longdesc superior letters. The size is 6% smaller than Heuristica, +longdesc matching that of UtopiaStd. +execute addMap erewhon.map +runfiles size=2425 + 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/map/dvips/erewhon/erewhon.map + RELOC/fonts/opentype/public/erewhon/Erewhon-Bold.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-BoldItalic.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-BoldSlanted.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-Italic.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-Regular.otf + RELOC/fonts/opentype/public/erewhon/Erewhon-RegularSlanted.otf + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-BoldSlanted-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-dnom-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-inf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-lf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-numr-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-osf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-sup-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tlf-ts1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t1.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t2a.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t2b.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-t2c.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/erewhon/Erewhon-RegularSlanted-tosf-ts1.tfm + RELOC/fonts/type1/public/erewhon/Erewhon-Bold.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-BoldItalic.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-BoldSlanted.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-Italic.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-Regular.pfb + RELOC/fonts/type1/public/erewhon/Erewhon-RegularSlanted.pfb + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-lf-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-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-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-BoldSlanted-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-lf-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-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-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-dnom-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-inf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-lf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-numr-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-osf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-sup-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tlf-ts1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-ly1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-sc-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-t1.vf + RELOC/fonts/vf/public/erewhon/Erewhon-RegularSlanted-tosf-ts1.vf + RELOC/tex/latex/erewhon/LY1erewhon-Dnom.fd + RELOC/tex/latex/erewhon/LY1erewhon-Inf.fd + RELOC/tex/latex/erewhon/LY1erewhon-LF.fd + RELOC/tex/latex/erewhon/LY1erewhon-Numr.fd + RELOC/tex/latex/erewhon/LY1erewhon-OsF.fd + RELOC/tex/latex/erewhon/LY1erewhon-Sup.fd + RELOC/tex/latex/erewhon/LY1erewhon-TLF.fd + RELOC/tex/latex/erewhon/LY1erewhon-TOsF.fd + RELOC/tex/latex/erewhon/T1erewhon-Dnom.fd + RELOC/tex/latex/erewhon/T1erewhon-Inf.fd + RELOC/tex/latex/erewhon/T1erewhon-LF.fd + RELOC/tex/latex/erewhon/T1erewhon-Numr.fd + RELOC/tex/latex/erewhon/T1erewhon-OsF.fd + RELOC/tex/latex/erewhon/T1erewhon-Sup.fd + RELOC/tex/latex/erewhon/T1erewhon-TLF.fd + RELOC/tex/latex/erewhon/T1erewhon-TOsF.fd + RELOC/tex/latex/erewhon/T2Aerewhon-Dnom.fd + RELOC/tex/latex/erewhon/T2Aerewhon-Inf.fd + RELOC/tex/latex/erewhon/T2Aerewhon-LF.fd + RELOC/tex/latex/erewhon/T2Aerewhon-Numr.fd + RELOC/tex/latex/erewhon/T2Aerewhon-OsF.fd + RELOC/tex/latex/erewhon/T2Aerewhon-Sup.fd + RELOC/tex/latex/erewhon/T2Aerewhon-TLF.fd + RELOC/tex/latex/erewhon/T2Aerewhon-TOsF.fd + RELOC/tex/latex/erewhon/T2Berewhon-Dnom.fd + RELOC/tex/latex/erewhon/T2Berewhon-Inf.fd + RELOC/tex/latex/erewhon/T2Berewhon-LF.fd + RELOC/tex/latex/erewhon/T2Berewhon-Numr.fd + RELOC/tex/latex/erewhon/T2Berewhon-OsF.fd + RELOC/tex/latex/erewhon/T2Berewhon-Sup.fd + RELOC/tex/latex/erewhon/T2Berewhon-TLF.fd + RELOC/tex/latex/erewhon/T2Berewhon-TOsF.fd + RELOC/tex/latex/erewhon/T2Cerewhon-Dnom.fd + RELOC/tex/latex/erewhon/T2Cerewhon-Inf.fd + RELOC/tex/latex/erewhon/T2Cerewhon-LF.fd + RELOC/tex/latex/erewhon/T2Cerewhon-Numr.fd + RELOC/tex/latex/erewhon/T2Cerewhon-OsF.fd + RELOC/tex/latex/erewhon/T2Cerewhon-Sup.fd + RELOC/tex/latex/erewhon/T2Cerewhon-TLF.fd + RELOC/tex/latex/erewhon/T2Cerewhon-TOsF.fd + RELOC/tex/latex/erewhon/TS1erewhon-LF.fd + RELOC/tex/latex/erewhon/TS1erewhon-OsF.fd + RELOC/tex/latex/erewhon/TS1erewhon-TLF.fd + RELOC/tex/latex/erewhon/TS1erewhon-TOsF.fd + RELOC/tex/latex/erewhon/erewhon.fontspec + RELOC/tex/latex/erewhon/erewhon.sty +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 + +name errata +category Package +revision 15878 +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 +docfiles size=44 + RELOC/doc/latex/errata/README + RELOC/doc/latex/errata/errata-errata.tex + RELOC/doc/latex/errata/errata.pdf +srcfiles size=6 + RELOC/source/latex/errata/errata.dtx + RELOC/source/latex/errata/errata.ins +catalogue-ctan /macros/latex/contrib/errata +catalogue-date 2011-09-30 20:51:09 +0200 +catalogue-license lppl1 +catalogue-version v0.3 + +name esami +category Package +revision 37828 +shortdesc Typeset exams with scrambled questions and answers. +relocated 1 +longdesc The package enables the user to typeset exams with multiple +longdesc choice, open questions and many other types of exercise. Both +longdesc questions and answers may be randomly distributed within the +longdesc exam, and the solutions are typeset automatically. Exercises +longdesc may contain a wide number of random parameters and it is +longdesc possible to do arithmetical operations on them. The package is +longdesc localised in Italian, English, French, German, Greek 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 + 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.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 + RELOC/doc/latex/esami/doc/examples/problem2-tabella.tex + RELOC/doc/latex/esami/doc/examples/problem2.tex + RELOC/doc/latex/esami/doc/examples/problem3-matching.tex + RELOC/doc/latex/esami/doc/examples/problem4-fillin.tex + RELOC/doc/latex/esami/doc/examples/test1.tex + RELOC/doc/latex/esami/doc/examples/test11.tex + RELOC/doc/latex/esami/doc/examples/test12.tex + RELOC/doc/latex/esami/doc/examples/test13.tex + RELOC/doc/latex/esami/doc/examples/test14.tex + RELOC/doc/latex/esami/doc/examples/test2.tex + RELOC/doc/latex/esami/doc/examples/test3.tex + RELOC/doc/latex/esami/doc/examples/test4.tex + RELOC/doc/latex/esami/doc/examples/test5-fillin.tex + RELOC/doc/latex/esami/doc/examples/test9.tex + RELOC/doc/latex/esami/doc/examples/testA-luatex-sol.pdf + RELOC/doc/latex/esami/doc/examples/testA-luatex.pdf + RELOC/doc/latex/esami/doc/examples/testA-sol.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 + RELOC/doc/latex/esami/doc/examples/testA-xetex.pdf + RELOC/doc/latex/esami/doc/examples/testA.pdf + RELOC/doc/latex/esami/doc/examples/testA.tex + RELOC/doc/latex/esami/doc/examples/totale-versioni.tex + RELOC/doc/latex/esami/esami-xyz.cfg +catalogue-ctan /macros/latex/contrib/esami +catalogue-date 2015-02-27 11:20:16 +0100 +catalogue-license lppl +catalogue-topics exam +catalogue-version 2.0 + +name esdiff +category Package +revision 21385 +shortdesc Simplify typesetting of derivatives. +relocated 1 +longdesc The package makes writing derivatives very easy. It offers +longdesc macros for derivatives, partial derivatives and multiple +longdesc derivatives, and allows specification of the point at which the +longdesc value is calculated. Some typographic alternatives may be +longdesc selected by package options +runfiles size=2 + RELOC/tex/latex/esdiff/esdiff.sty +docfiles size=25 + RELOC/doc/latex/esdiff/README + RELOC/doc/latex/esdiff/esdiff.pdf +srcfiles size=4 + RELOC/source/latex/esdiff/esdiff.dtx + RELOC/source/latex/esdiff/esdiff.ins +catalogue-ctan /macros/latex/contrib/esdiff +catalogue-date 2012-07-11 16:16:45 +0200 +catalogue-license lppl1 +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. +relocated 1 +longdesc The esint package permits access to alternate integral symbols +longdesc when you're using the Computer Modern fonts. In the original +longdesc set, several integral symbols are missing, such as \oiint. Many +longdesc of these symbols are available in other font sets (pxfonts, +longdesc txfonts, etc.), but there is no good solution if you want to +longdesc use Computer Modern. The package provides Metafont source and +longdesc LaTeX macro support. +runfiles size=18 + RELOC/fonts/source/public/esint/bigint.mf + RELOC/fonts/source/public/esint/esint10.mf + RELOC/fonts/source/public/esint/mathint.mf + RELOC/fonts/tfm/public/esint/esint10.tfm + RELOC/tex/latex/esint/esint.sty + RELOC/tex/latex/esint/uesint.fd +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-ctan /macros/latex/contrib/esint +catalogue-date 2014-04-26 10:32:59 +0200 +catalogue-license pd +catalogue-version 1.1 + +name esint-type1 +category Package +revision 15878 +shortdesc Font esint10 in Type 1 format +relocated 1 +longdesc This is Eddie Saudrais's font esint10 in Adobe Type 1 format. +longdesc The Adobe Type 1 implementation was generated from the original +longdesc Metafont using mftrace. This distribution does not contain the +longdesc TFM files that are necessary to use the fonts with TeX; the TFM +longdesc files can be generated from the Metafont sources obtained by +longdesc following the instructions in the normal way. +depend esint +execute addMixedMap esint.map +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-license pd + +name eskd +category Package +revision 15878 +shortdesc Modern Russian typesetting. +relocated 1 +longdesc The class offers modern Russian text formatting, in accordance +longdesc with accepted design standards. Fonts not (apparently) +longdesc available on CTAN are required for use of the class. +runfiles size=5 + RELOC/tex/latex/eskd/eskd.cls +docfiles size=231 + RELOC/doc/latex/eskd/README + RELOC/doc/latex/eskd/eskd.pdf + RELOC/doc/latex/eskd/example.eps + RELOC/doc/latex/eskd/example.tex +srcfiles size=9 + RELOC/source/latex/eskd/eskd.dtx + RELOC/source/latex/eskd/eskd.ins +catalogue-ctan /macros/latex/contrib/eskd +catalogue-date 2012-03-05 13:28:00 +0100 +catalogue-license lppl + +name eskdx +category Package +revision 29235 +shortdesc Modern Russian typesetting. +relocated 1 +longdesc Eskdx is a collection of LaTeX classes and packages to typeset +longdesc textual and graphical documents in accordance with Russian (and +longdesc probably post USSR) standards for designers. +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 +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.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.tex.in + RELOC/doc/latex/eskdx/manual/example.tex + RELOC/doc/latex/eskdx/manual/img-form1.svg + RELOC/doc/latex/eskdx/manual/img-form2.svg + RELOC/doc/latex/eskdx/manual/img-form2a.svg + RELOC/doc/latex/eskdx/manual/img-title.svg + RELOC/doc/latex/eskdx/manual/latex2html-init + RELOC/doc/latex/eskdx/source/Makefile + RELOC/doc/latex/eskdx/source/eskdafterpkg.sty.in + RELOC/doc/latex/eskdx/source/eskdappsheet.sty.in + RELOC/doc/latex/eskdx/source/eskdbiblist.sty.in + RELOC/doc/latex/eskdx/source/eskdcap.sty.in + RELOC/doc/latex/eskdx/source/eskdchngsheet.sty.in + RELOC/doc/latex/eskdx/source/eskddstu.sty.in + RELOC/doc/latex/eskdx/source/eskdexplan.sty.in + RELOC/doc/latex/eskdx/source/eskdfont.sty.in + RELOC/doc/latex/eskdx/source/eskdfootnote.sty.in + RELOC/doc/latex/eskdx/source/eskdfreesize.sty.in + RELOC/doc/latex/eskdx/source/eskdgraph.cls.in + RELOC/doc/latex/eskdx/source/eskdhash.sty.in + RELOC/doc/latex/eskdx/source/eskdindent.sty.in + RELOC/doc/latex/eskdx/source/eskdinfo.sty.in + RELOC/doc/latex/eskdx/source/eskdlang.sty.in + RELOC/doc/latex/eskdx/source/eskdlist.sty.in + RELOC/doc/latex/eskdx/source/eskdpara.sty.in + RELOC/doc/latex/eskdx/source/eskdplain.sty.in + RELOC/doc/latex/eskdx/source/eskdrussian.def.in + RELOC/doc/latex/eskdx/source/eskdsect.sty.in + RELOC/doc/latex/eskdx/source/eskdspec.sty.in + RELOC/doc/latex/eskdx/source/eskdspecii.sty.in + RELOC/doc/latex/eskdx/source/eskdstamp.sty.in + RELOC/doc/latex/eskdx/source/eskdtab.cls.in + RELOC/doc/latex/eskdx/source/eskdtext.cls.in + RELOC/doc/latex/eskdx/source/eskdtitle.sty.in + RELOC/doc/latex/eskdx/source/eskdtitlebase.sty.in + RELOC/doc/latex/eskdx/source/eskdtotal.sty.in + RELOC/doc/latex/eskdx/source/eskdukrainian.def.in + RELOC/doc/latex/eskdx/test/Makefile + RELOC/doc/latex/eskdx/test/appsheet.tex + RELOC/doc/latex/eskdx/test/drawing-a2.tex + RELOC/doc/latex/eskdx/test/drawing-a3-mp.tex + RELOC/doc/latex/eskdx/test/drawing-a3-p.tex + RELOC/doc/latex/eskdx/test/drawing-a3.tex + RELOC/doc/latex/eskdx/test/drawing-a4.tex + RELOC/doc/latex/eskdx/test/footnote.tex + RELOC/doc/latex/eskdx/test/freesizesheets.tex + RELOC/doc/latex/eskdx/test/general.tex + RELOC/doc/latex/eskdx/test/general2.tex + RELOC/doc/latex/eskdx/test/numbering.tex + RELOC/doc/latex/eskdx/test/pagestyle.tex + RELOC/doc/latex/eskdx/test/spec.tex + RELOC/doc/latex/eskdx/test/specii.tex + RELOC/doc/latex/eskdx/test/twoside.tex +catalogue-ctan /macros/latex/contrib/eskdx +catalogue-date 2012-03-05 13:28:00 +0100 +catalogue-license lppl1.3 +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. +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 +docfiles size=70 + RELOC/doc/latex/eso-pic/README + RELOC/doc/latex/eso-pic/eso-article-test.tex + RELOC/doc/latex/eso-pic/eso-ex1.tex + RELOC/doc/latex/eso-pic/eso-ex2.tex + RELOC/doc/latex/eso-pic/eso-ex3.tex + RELOC/doc/latex/eso-pic/eso-ex4.tex + RELOC/doc/latex/eso-pic/eso-ex5.tex + RELOC/doc/latex/eso-pic/eso-memoir-test.tex + RELOC/doc/latex/eso-pic/eso-pic.pdf +srcfiles size=8 + RELOC/source/latex/eso-pic/eso-pic.dtx + RELOC/source/latex/eso-pic/eso-pic.ins +catalogue-ctan /macros/latex/contrib/eso-pic +catalogue-date 2015-07-22 20:23:31 +0200 +catalogue-license lppl1.2 +catalogue-topics defer-stuff +catalogue-version 2.0g + +name esrelation +category Package +revision 37236 +shortdesc Provides a symbol set for describing relations between ordered pairs +relocated 1 +longdesc Around 2008, researcher Byron Cook and several colleagues began +longdesc developing a new set of interrelated algorithms capable of +longdesc automatically reasoning about the behavior of computer programs +longdesc and other systems (such as biological systems, circuit designs, +longdesc etc). At the center of these algorithms were new ideas about +longdesc the relationships between structures expressable as +longdesc mathematical sets and relations. Using the language of +longdesc mathematics and logic, the researchers communicated these new +longdesc results to others in their community via published papers, +longdesc research talks, etc. Unfortunately, they found the symbols +longdesc already available for reasoning about relations lacking (in +longdesc contrast to sets, which have a long-ago developed and robust +longdesc symbol vocabulary). Early presentations were unnecessarily +longdesc cluttered. To more elegantly express these ideas around +longdesc relations, Cook recruited artist Tauba Auerbach to help develop +longdesc a set of symbols. This package provides an math symbol font for +longdesc describing relations between ordered pairs by using Metafont. +execute addMap esrelation.map +runfiles size=17 + RELOC/fonts/map/dvips/esrelation/esrelation.map + RELOC/fonts/source/public/esrelation/esrelation.mf + RELOC/fonts/source/public/esrelation/esrelation10.mf + RELOC/fonts/tfm/public/esrelation/esrelation10.tfm + RELOC/fonts/type1/public/esrelation/esrelation10.pfb + RELOC/tex/latex/esrelation/esrelation.sty + RELOC/tex/latex/esrelation/uesrelation.fd +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-license lppl1.3 + +name esstix +category Package +revision 22426 +shortdesc PostScript versions of the ESSTIX, with macro support. +relocated 1 +longdesc These fonts represent translation to PostScript Type 1 of the +longdesc ESSTIX fonts. ESSTIX seem to have been a precursor to the STIX +longdesc project, and were donated by Elsevier to that project. The +longdesc accompanying virtual fonts with customized metrics and LaTeX +longdesc support files allow their use as calligraphic, fraktur and +longdesc double-struck (blackboard bold) in maths mode. +execute addMap ESSTIX.map +runfiles size=117 + RELOC/fonts/afm/esstix/ESSTIX10.PFM + RELOC/fonts/afm/esstix/ESSTIX10.afm + RELOC/fonts/afm/esstix/ESSTIX11.PFM + RELOC/fonts/afm/esstix/ESSTIX11.afm + RELOC/fonts/afm/esstix/ESSTIX12.PFM + RELOC/fonts/afm/esstix/ESSTIX12.afm + RELOC/fonts/afm/esstix/ESSTIX13.PFM + RELOC/fonts/afm/esstix/ESSTIX13.afm + RELOC/fonts/afm/esstix/ESSTIX14.PFM + RELOC/fonts/afm/esstix/ESSTIX14.afm + RELOC/fonts/afm/esstix/ESSTIX15.PFM + RELOC/fonts/afm/esstix/ESSTIX15.afm + RELOC/fonts/afm/esstix/ESSTIX16.PFM + RELOC/fonts/afm/esstix/ESSTIX16.afm + RELOC/fonts/afm/esstix/ESSTIX17.PFM + RELOC/fonts/afm/esstix/ESSTIX17.afm + RELOC/fonts/afm/esstix/ESSTIX1_.PFM + RELOC/fonts/afm/esstix/ESSTIX1_.afm + RELOC/fonts/afm/esstix/ESSTIX2_.PFM + RELOC/fonts/afm/esstix/ESSTIX2_.afm + RELOC/fonts/afm/esstix/ESSTIX3_.PFM + RELOC/fonts/afm/esstix/ESSTIX3_.afm + RELOC/fonts/afm/esstix/ESSTIX4_.PFM + RELOC/fonts/afm/esstix/ESSTIX4_.afm + RELOC/fonts/afm/esstix/ESSTIX5_.PFM + RELOC/fonts/afm/esstix/ESSTIX5_.afm + RELOC/fonts/afm/esstix/ESSTIX6_.PFM + RELOC/fonts/afm/esstix/ESSTIX6_.afm + RELOC/fonts/afm/esstix/ESSTIX7_.PFM + RELOC/fonts/afm/esstix/ESSTIX7_.afm + RELOC/fonts/afm/esstix/ESSTIX8_.PFM + RELOC/fonts/afm/esstix/ESSTIX8_.afm + RELOC/fonts/afm/esstix/ESSTIX9_.PFM + RELOC/fonts/afm/esstix/ESSTIX9_.afm + RELOC/fonts/map/dvips/esstix/ESSTIX.map + RELOC/fonts/tfm/public/esstix/esstixbb.tfm + RELOC/fonts/tfm/public/esstix/esstixcal.tfm + RELOC/fonts/tfm/public/esstix/esstixfrak.tfm + RELOC/fonts/tfm/public/esstix/rESSTIX13.tfm + RELOC/fonts/tfm/public/esstix/rESSTIX14.tfm + RELOC/fonts/tfm/public/esstix/rESSTIX15.tfm + RELOC/fonts/type1/public/esstix/ESSTIX10.pfb + RELOC/fonts/type1/public/esstix/ESSTIX11.pfb + RELOC/fonts/type1/public/esstix/ESSTIX12.pfb + RELOC/fonts/type1/public/esstix/ESSTIX13.pfb + RELOC/fonts/type1/public/esstix/ESSTIX14.pfb + RELOC/fonts/type1/public/esstix/ESSTIX15.pfb + RELOC/fonts/type1/public/esstix/ESSTIX16.pfb + RELOC/fonts/type1/public/esstix/ESSTIX17.pfb + RELOC/fonts/type1/public/esstix/ESSTIX1_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX2_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX3_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX4_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX5_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX6_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX7_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX8_.pfb + RELOC/fonts/type1/public/esstix/ESSTIX9_.pfb + RELOC/fonts/vf/public/esstix/esstixbb.vf + RELOC/fonts/vf/public/esstix/esstixcal.vf + RELOC/fonts/vf/public/esstix/esstixfrak.vf + RELOC/tex/latex/esstix/esstixbb.sty + RELOC/tex/latex/esstix/esstixcal.sty + RELOC/tex/latex/esstix/esstixfrak.sty + RELOC/tex/latex/esstix/uesstixbb.fd + RELOC/tex/latex/esstix/uesstixcal.fd + RELOC/tex/latex/esstix/uesstixfrak.fd +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-license ofl +catalogue-version 1.0 + +name estcpmm +category Package +revision 17335 +shortdesc Style for Munitions Management Project Reports. +relocated 1 +longdesc Provides a class which supports typesetting Cost and +longdesc Performance Reports and Final Reports for Munitions Management +longdesc Reports, US Environmental Security Technology Certification +longdesc Program. The class was commissioned and paid for by US Army +longdesc Corps of Engineers, Engineer Research and Development Center, +longdesc 3909 Halls Ferry Road, Vicksburg, MS 39180-6199. +runfiles size=2 + RELOC/tex/latex/estcpmm/estcpmm.cls +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/red_corps_castle2.pdf + RELOC/doc/latex/estcpmm/sample.pdf + RELOC/doc/latex/estcpmm/sample.tex +srcfiles size=9 + RELOC/source/latex/estcpmm/Makefile + RELOC/source/latex/estcpmm/estcpmm.dtx + RELOC/source/latex/estcpmm/estcpmm.ins +catalogue-ctan /macros/latex/contrib/estcpmm +catalogue-date 2014-09-26 13:30:12 +0200 +catalogue-license lppl +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. +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 +runfiles size=58 + RELOC/fonts/map/dvips/esvect/esvect.map + RELOC/fonts/source/public/esvect/mathvec.mf + RELOC/fonts/source/public/esvect/vecsym.mf + RELOC/fonts/source/public/esvect/vect10.mf + RELOC/fonts/source/public/esvect/vect5.mf + RELOC/fonts/source/public/esvect/vect6.mf + RELOC/fonts/source/public/esvect/vect7.mf + RELOC/fonts/source/public/esvect/vect8.mf + RELOC/fonts/source/public/esvect/vect9.mf + RELOC/fonts/source/public/esvect/vsymbol.mf + RELOC/fonts/tfm/public/esvect/vect10.tfm + RELOC/fonts/tfm/public/esvect/vect5.tfm + RELOC/fonts/tfm/public/esvect/vect6.tfm + RELOC/fonts/tfm/public/esvect/vect7.tfm + RELOC/fonts/tfm/public/esvect/vect8.tfm + RELOC/fonts/tfm/public/esvect/vect9.tfm + RELOC/fonts/type1/public/esvect/vect10.pfb + RELOC/fonts/type1/public/esvect/vect5.pfb + RELOC/fonts/type1/public/esvect/vect6.pfb + RELOC/fonts/type1/public/esvect/vect7.pfb + RELOC/fonts/type1/public/esvect/vect8.pfb + RELOC/fonts/type1/public/esvect/vect9.pfb + RELOC/tex/latex/esvect/esvect.sty + RELOC/tex/latex/esvect/uesvect.fd +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-license gpl +catalogue-version 1.3 + +name etaremune +category Package +revision 15878 +shortdesc Reverse-counting enumerate environment. +relocated 1 +longdesc The package implements the etaremune environment which is an +longdesc enumerate environment in which the labels decrease instead of +longdesc increasing. The package is noticeably more efficient than the +longdesc revnum package, which uses painfully many counters. +runfiles size=1 + RELOC/tex/latex/etaremune/etaremune.sty +docfiles size=22 + RELOC/doc/latex/etaremune/README + RELOC/doc/latex/etaremune/etaremune.pdf +srcfiles size=5 + RELOC/source/latex/etaremune/etaremune.dtx +catalogue-ctan /macros/latex/contrib/etaremune +catalogue-date 2012-01-23 15:27:59 +0100 +catalogue-license lppl +catalogue-version v1.2 + +name etdipa +category Package +revision 36354 +shortdesc Simple, lightweight template for scientific documents. +relocated 1 +longdesc This package provides a complete working directory for the +longdesc scientific documentation of arbitrary projects. It was +longdesc originally developed to provide a template for Austrian +longdesc "Diplomarbeiten" or "Vorwissenschaftliche Arbeiten", which are +longdesc scientfic projects of students at a secondary school. +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.tex + RELOC/doc/latex/etdipa/Help/etdipa_doc_EN.pdf + RELOC/doc/latex/etdipa/Help/etdipa_doc_EN.tex + RELOC/doc/latex/etdipa/Help/files.txt + RELOC/doc/latex/etdipa/Images/ET_logo.jpg + RELOC/doc/latex/etdipa/Images/HTL-Allgemein.jpg + RELOC/doc/latex/etdipa/Images/HTL.png + RELOC/doc/latex/etdipa/Images/Ordnerstruktur.pdf + RELOC/doc/latex/etdipa/Images/bild.pdf + RELOC/doc/latex/etdipa/Images/diplomand_erklaerung.pdf + RELOC/doc/latex/etdipa/Images/subordner.pdf + RELOC/doc/latex/etdipa/Images/titlepic.pdf + RELOC/doc/latex/etdipa/README + RELOC/doc/latex/etdipa/Textparts/abkuerzungen.tex + RELOC/doc/latex/etdipa/Textparts/abstract.tex + RELOC/doc/latex/etdipa/Textparts/danksagungen.tex + RELOC/doc/latex/etdipa/Textparts/diplomanden.tex + RELOC/doc/latex/etdipa/Textparts/literatur.tex + RELOC/doc/latex/etdipa/Textparts/zusammenfassung.tex + RELOC/doc/latex/etdipa/diplomarbeit.tex + RELOC/doc/latex/etdipa/etdipa.sty +catalogue-ctan /macros/latex/contrib/etdipa +catalogue-date 2015-02-22 16:17:29 +0100 +catalogue-license lppl1.3 +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. +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 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 +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.sty + RELOC/doc/etex/base/etex_man.tex + RELOC/doc/etex/base/etex_ref.html + RELOC/doc/etex/base/etex_src.html + RELOC/doc/etex/base/legal.html + RELOC/doc/etex/base/nts-group.html + RELOC/doc/etex/base/webmerge.tex + RELOC/doc/man/man1/etex.1 + RELOC/doc/man/man1/etex.man1.pdf +catalogue-ctan /systems/e-tex +catalogue-date 2015-03-29 23:09:44 +0200 +catalogue-license knuth + +name etextools +category Package +revision 20694 +shortdesc e-TeX tools for LaTeX users and package writers. +relocated 1 +longdesc The package provides many (purely expandable) tools for LaTeX: +longdesc Extensive list management (csv lists, lists of single +longdesc tokens/characters, etoolbox lists); purely expandable loops +longdesc (csvloop, forcsvloop, etc.); conversion (csvtolist, etc.)); +longdesc addition/deletion (csvadd, listdel, etc.); Expansion and group +longdesc control: \expandnext, \ExpandAfterCmds, \AfterGroup...; Tests +longdesc on tokens, characters and control sequences (\iffirstchar, +longdesc \ifiscs, \ifdefcount, \@ifchar...); Tests on strings +longdesc (\ifstrnum, \ifuppercase, \DeclareStringFilter...); Purely +longdesc expandable macros with options (\FE@testopt, \FE@ifstar) or +longdesc modifiers (\FE@modifiers); Some purely expandable numerics +longdesc (\interval, \locinterplin). The package is dependent on the +longdesc etex and the etoolbox packages. +runfiles size=14 + RELOC/tex/latex/etextools/etextools.sty +docfiles size=308 + RELOC/doc/latex/etextools/README + RELOC/doc/latex/etextools/etextools-examples.pdf + RELOC/doc/latex/etextools/etextools-examples.tex + RELOC/doc/latex/etextools/etextools.pdf +srcfiles size=63 + RELOC/source/latex/etextools/etextools.drv + RELOC/source/latex/etextools/etextools.dtx + RELOC/source/latex/etextools/etextools.ins +catalogue-ctan /macros/latex/contrib/etextools +catalogue-date 2014-09-25 17:21:46 +0200 +catalogue-license lppl +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. +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. +runfiles size=337 + RELOC/fonts/ofm/public/ethiop/etho10.ofm + RELOC/fonts/ofm/public/ethiop/ethob10.ofm + RELOC/fonts/ofm/public/ethiop/ethos10.ofm + RELOC/fonts/ofm/public/ethiop/ethosb10.ofm + RELOC/fonts/ovf/public/ethiop/etho10.ovf + RELOC/fonts/ovf/public/ethiop/ethob10.ovf + RELOC/fonts/ovf/public/ethiop/ethos10.ovf + RELOC/fonts/ovf/public/ethiop/ethosb10.ovf + RELOC/fonts/ovp/public/ethiop/etho10.ovp + RELOC/fonts/ovp/public/ethiop/ethob10.ovp + RELOC/fonts/ovp/public/ethiop/ethos10.ovp + RELOC/fonts/ovp/public/ethiop/ethosb10.ovp + RELOC/fonts/source/public/ethiop/eth__a.mf + RELOC/fonts/source/public/ethiop/eth__g.mf + RELOC/fonts/source/public/ethiop/eth_acce.mf + RELOC/fonts/source/public/ethiop/eth_b.mf + RELOC/fonts/source/public/ethiop/eth_c_c.mf + RELOC/fonts/source/public/ethiop/eth_cc.mf + RELOC/fonts/source/public/ethiop/eth_cc_c.mf + RELOC/fonts/source/public/ethiop/eth_ccc2.mf + RELOC/fonts/source/public/ethiop/eth_d.mf + RELOC/fonts/source/public/ethiop/eth_dd.mf + RELOC/fonts/source/public/ethiop/eth_f.mf + RELOC/fonts/source/public/ethiop/eth_fu.mf + RELOC/fonts/source/public/ethiop/eth_g.mf + RELOC/fonts/source/public/ethiop/eth_g_a.mf + RELOC/fonts/source/public/ethiop/eth_gg.mf + RELOC/fonts/source/public/ethiop/eth_ggu.mf + RELOC/fonts/source/public/ethiop/eth_gu.mf + RELOC/fonts/source/public/ethiop/eth_h.mf + RELOC/fonts/source/public/ethiop/eth_h_a.mf + RELOC/fonts/source/public/ethiop/eth_h_c.mf + RELOC/fonts/source/public/ethiop/eth_hh.mf + RELOC/fonts/source/public/ethiop/eth_hu_c.mf + RELOC/fonts/source/public/ethiop/eth_j.mf + RELOC/fonts/source/public/ethiop/eth_k.mf + RELOC/fonts/source/public/ethiop/eth_k_a.mf + RELOC/fonts/source/public/ethiop/eth_kk.mf + RELOC/fonts/source/public/ethiop/eth_kku.mf + RELOC/fonts/source/public/ethiop/eth_ku.mf + RELOC/fonts/source/public/ethiop/eth_l.mf + RELOC/fonts/source/public/ethiop/eth_m.mf + RELOC/fonts/source/public/ethiop/eth_mrf.mf + RELOC/fonts/source/public/ethiop/eth_mu.mf + RELOC/fonts/source/public/ethiop/eth_n.mf + RELOC/fonts/source/public/ethiop/eth_nn.mf + RELOC/fonts/source/public/ethiop/eth_num.mf + RELOC/fonts/source/public/ethiop/eth_p.mf + RELOC/fonts/source/public/ethiop/eth_pp.mf + RELOC/fonts/source/public/ethiop/eth_pu.mf + RELOC/fonts/source/public/ethiop/eth_punc.mf + RELOC/fonts/source/public/ethiop/eth_q.mf + RELOC/fonts/source/public/ethiop/eth_q_a.mf + RELOC/fonts/source/public/ethiop/eth_qq.mf + RELOC/fonts/source/public/ethiop/eth_qqu.mf + RELOC/fonts/source/public/ethiop/eth_qu.mf + RELOC/fonts/source/public/ethiop/eth_r.mf + RELOC/fonts/source/public/ethiop/eth_s.mf + RELOC/fonts/source/public/ethiop/eth_s_a.mf + RELOC/fonts/source/public/ethiop/eth_s_c.mf + RELOC/fonts/source/public/ethiop/eth_ss.mf + RELOC/fonts/source/public/ethiop/eth_t.mf + RELOC/fonts/source/public/ethiop/eth_tt.mf + RELOC/fonts/source/public/ethiop/eth_v.mf + RELOC/fonts/source/public/ethiop/eth_w.mf + RELOC/fonts/source/public/ethiop/eth_wu.mf + RELOC/fonts/source/public/ethiop/eth_y.mf + RELOC/fonts/source/public/ethiop/eth_z.mf + RELOC/fonts/source/public/ethiop/eth_z_c.mf + RELOC/fonts/source/public/ethiop/etha10.mf + RELOC/fonts/source/public/ethiop/etha6.mf + RELOC/fonts/source/public/ethiop/etha7.mf + RELOC/fonts/source/public/ethiop/etha8.mf + RELOC/fonts/source/public/ethiop/etha_cod.mf + RELOC/fonts/source/public/ethiop/etha_drv.mf + RELOC/fonts/source/public/ethiop/etha_lig.mf + RELOC/fonts/source/public/ethiop/ethab10.mf + RELOC/fonts/source/public/ethiop/ethab11.mf + RELOC/fonts/source/public/ethiop/ethab12.mf + RELOC/fonts/source/public/ethiop/ethab14.mf + RELOC/fonts/source/public/ethiop/ethab18.mf + RELOC/fonts/source/public/ethiop/ethab24.mf + RELOC/fonts/source/public/ethiop/ethab36.mf + RELOC/fonts/source/public/ethiop/ethab9.mf + RELOC/fonts/source/public/ethiop/ethas10.mf + RELOC/fonts/source/public/ethiop/ethasb10.mf + RELOC/fonts/source/public/ethiop/ethasb11.mf + RELOC/fonts/source/public/ethiop/ethasb12.mf + RELOC/fonts/source/public/ethiop/ethasb14.mf + RELOC/fonts/source/public/ethiop/ethasb18.mf + RELOC/fonts/source/public/ethiop/ethasb24.mf + RELOC/fonts/source/public/ethiop/ethasb36.mf + RELOC/fonts/source/public/ethiop/ethasb9.mf + RELOC/fonts/source/public/ethiop/ethatt10.mf + RELOC/fonts/source/public/ethiop/ethb10.mf + RELOC/fonts/source/public/ethiop/ethb6.mf + RELOC/fonts/source/public/ethiop/ethb7.mf + RELOC/fonts/source/public/ethiop/ethb8.mf + RELOC/fonts/source/public/ethiop/ethb_cod.mf + RELOC/fonts/source/public/ethiop/ethb_drv.mf + RELOC/fonts/source/public/ethiop/ethb_lig.mf + RELOC/fonts/source/public/ethiop/ethbb10.mf + RELOC/fonts/source/public/ethiop/ethbb11.mf + RELOC/fonts/source/public/ethiop/ethbb12.mf + RELOC/fonts/source/public/ethiop/ethbb14.mf + RELOC/fonts/source/public/ethiop/ethbb18.mf + RELOC/fonts/source/public/ethiop/ethbb24.mf + RELOC/fonts/source/public/ethiop/ethbb36.mf + RELOC/fonts/source/public/ethiop/ethbb9.mf + RELOC/fonts/source/public/ethiop/ethbs10.mf + RELOC/fonts/source/public/ethiop/ethbsb10.mf + RELOC/fonts/source/public/ethiop/ethbsb11.mf + RELOC/fonts/source/public/ethiop/ethbsb12.mf + RELOC/fonts/source/public/ethiop/ethbsb14.mf + RELOC/fonts/source/public/ethiop/ethbsb18.mf + RELOC/fonts/source/public/ethiop/ethbsb24.mf + RELOC/fonts/source/public/ethiop/ethbsb36.mf + RELOC/fonts/source/public/ethiop/ethbsb9.mf + RELOC/fonts/source/public/ethiop/ethbtt10.mf + RELOC/fonts/source/public/ethiop/ethiomac.mf + RELOC/fonts/tfm/public/ethiop/etha10.tfm + RELOC/fonts/tfm/public/ethiop/etha6.tfm + RELOC/fonts/tfm/public/ethiop/etha7.tfm + RELOC/fonts/tfm/public/ethiop/etha8.tfm + RELOC/fonts/tfm/public/ethiop/ethab10.tfm + RELOC/fonts/tfm/public/ethiop/ethab11.tfm + RELOC/fonts/tfm/public/ethiop/ethab12.tfm + RELOC/fonts/tfm/public/ethiop/ethab14.tfm + RELOC/fonts/tfm/public/ethiop/ethab18.tfm + RELOC/fonts/tfm/public/ethiop/ethab24.tfm + RELOC/fonts/tfm/public/ethiop/ethab36.tfm + RELOC/fonts/tfm/public/ethiop/ethab9.tfm + RELOC/fonts/tfm/public/ethiop/ethas10.tfm + RELOC/fonts/tfm/public/ethiop/ethasb10.tfm + RELOC/fonts/tfm/public/ethiop/ethasb11.tfm + RELOC/fonts/tfm/public/ethiop/ethasb12.tfm + RELOC/fonts/tfm/public/ethiop/ethasb14.tfm + RELOC/fonts/tfm/public/ethiop/ethasb18.tfm + RELOC/fonts/tfm/public/ethiop/ethasb24.tfm + RELOC/fonts/tfm/public/ethiop/ethasb36.tfm + RELOC/fonts/tfm/public/ethiop/ethasb9.tfm + RELOC/fonts/tfm/public/ethiop/ethatt10.tfm + RELOC/fonts/tfm/public/ethiop/ethb10.tfm + RELOC/fonts/tfm/public/ethiop/ethb6.tfm + RELOC/fonts/tfm/public/ethiop/ethb7.tfm + RELOC/fonts/tfm/public/ethiop/ethb8.tfm + RELOC/fonts/tfm/public/ethiop/ethbb10.tfm + RELOC/fonts/tfm/public/ethiop/ethbb11.tfm + RELOC/fonts/tfm/public/ethiop/ethbb12.tfm + RELOC/fonts/tfm/public/ethiop/ethbb14.tfm + RELOC/fonts/tfm/public/ethiop/ethbb18.tfm + RELOC/fonts/tfm/public/ethiop/ethbb24.tfm + RELOC/fonts/tfm/public/ethiop/ethbb36.tfm + RELOC/fonts/tfm/public/ethiop/ethbb9.tfm + RELOC/fonts/tfm/public/ethiop/ethbs10.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb10.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb11.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb12.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb14.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb18.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb24.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb36.tfm + RELOC/fonts/tfm/public/ethiop/ethbsb9.tfm + RELOC/fonts/tfm/public/ethiop/ethbtt10.tfm + RELOC/omega/ocp/ethiop/ethospc.ocp + RELOC/omega/otp/ethiop/ethospc.otp + RELOC/tex/latex/ethiop/etharab.sty + RELOC/tex/latex/ethiop/ethiop.ldf + RELOC/tex/latex/ethiop/ethiop.sty + RELOC/tex/latex/ethiop/uetha.fd + RELOC/tex/latex/ethiop/uethb.fd + RELOC/tex/latex/ethiop/uetho.fd +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-ctan /language/ethiopia/ethiop +catalogue-date 2012-05-07 22:43:29 +0200 +catalogue-license gpl +catalogue-version 0.7 + +name etoc +category Package +revision 38242 +shortdesc Completely customisable TOCs +relocated 1 +longdesc The package gives the user complete control of how the entries +longdesc of the table of contents should be constituted from the name, +longdesc number, and page number of each sectioning unit. The layout is +longdesc controlled by the definition of 'line styles' for each +longdesc sectioning level used in the document. The package provides its +longdesc own custom line styles (which may be used as examples), and +longdesc continues to support the standard formatting inherited from the +longdesc LaTeX document classes, but the package can also allow the user +longdesc to delegate the details to packages dealing with list making +longdesc environments (such as enumitem). The package's default global +longdesc style typesets tables of contents in a multi-column format, +longdesc with either a standard heading, or a ruled title (optionally +longdesc with a frame around the table). The \tableofcontents command +longdesc may be used arbitrarily many times in the same document, while +longdesc \localtableofcontents provides a 'local' table of contents. +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 + RELOC/source/latex/etoc/etoc.dtx + RELOC/source/latex/etoc/etoc.ins +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 + +name etoolbox +category Package +revision 38031 +shortdesc e-TeX tools for LaTeX +relocated 1 +longdesc The package is a toolbox of programming facilities geared +longdesc primarily towards LaTeX class and package authors. It provides +longdesc LaTeX frontends to some of the new primitives provided by e-TeX +longdesc as well as some generic tools which are not strictly related to +longdesc e-TeX but match the profile of this package. Note that the +longdesc initial versions of this package were released under the name +longdesc elatex. The package provides functions that seem to offer +longdesc alternative ways of implementing some LaTeX kernel commands; +longdesc nevertheless, the package will not modify any part of the LaTeX +longdesc kernel. +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-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 + +name euenc +category Package +revision 19795 +shortdesc Unicode font encoding definitions for XeTeX. +relocated 1 +longdesc Font encoding definitions for unicode fonts loaded by LaTeX in +longdesc XeTeX or LuaTeX. The package provides two encodings: EU1, +longdesc designed for use with XeTeX, which the fontspec uses for +longdesc unicode fonts which require no macro-level processing for +longdesc accents, and EU2, which provides the same facilities for use +longdesc with LuaTeX. Neither encoding places any restriction on the +longdesc glyphs provided by a font; use of EU2 causes the package +longdesc euxunicode to be loaded (the package is part of this +longdesc distribution). The package includes font definition files for +longdesc use with the Latin Modern OpenType fonts. +runfiles size=14 + RELOC/tex/latex/euenc/eu1enc.def + RELOC/tex/latex/euenc/eu1lmdh.fd + RELOC/tex/latex/euenc/eu1lmr.fd + RELOC/tex/latex/euenc/eu1lmss.fd + RELOC/tex/latex/euenc/eu1lmssq.fd + RELOC/tex/latex/euenc/eu1lmtt.fd + RELOC/tex/latex/euenc/eu1lmvtt.fd + RELOC/tex/latex/euenc/eu2enc.def + RELOC/tex/latex/euenc/eu2lmdh.fd + RELOC/tex/latex/euenc/eu2lmr.fd + RELOC/tex/latex/euenc/eu2lmss.fd + RELOC/tex/latex/euenc/eu2lmssq.fd + RELOC/tex/latex/euenc/eu2lmtt.fd + RELOC/tex/latex/euenc/eu2lmvtt.fd +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-ctan /macros/latex/contrib/euenc +catalogue-date 2014-10-16 20:18:43 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1h + +name eukdate +category Package +revision 15878 +shortdesc UK format dates, with weekday. +relocated 1 +longdesc The package is used to change the format of \today's date, +longdesc including the weekday, e.g., "Saturday, 26 June 2008", the 'UK +longdesc format', which is preferred in many parts of the world, as +longdesc distinct from that which is used in \maketitle of the article +longdesc class, "June 26, 2008", the 'US format'. +runfiles size=1 + RELOC/tex/latex/eukdate/eukdate.sty +docfiles size=32 + RELOC/doc/latex/eukdate/README + RELOC/doc/latex/eukdate/eukdate.pdf +srcfiles size=4 + RELOC/source/latex/eukdate/eukdate.dtx + RELOC/source/latex/eukdate/eukdate.ins +catalogue-ctan /macros/latex/contrib/eukdate +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.04 + +name euler +category Package +revision 17261 +shortdesc Use AMS Euler fonts for math. +relocated 1 +longdesc Provides a setup for using the AMS Euler family of fonts for +longdesc mathematics in LaTeX documents. "The underlying philosophy of +longdesc Zapf's Euler design was to capture the flavour of mathematics +longdesc as it might be written by a mathematician with excellent +longdesc handwriting." The euler package is based on Knuth's macros for +longdesc the book 'Concrete Mathematics'. The text fonts for the +longdesc Concrete book are supported by the beton package. +runfiles size=3 + RELOC/tex/latex/euler/euler.sty +docfiles size=63 + RELOC/doc/latex/euler/euler.pdf + RELOC/doc/latex/euler/legal.txt +srcfiles size=10 + RELOC/source/latex/euler/euler.dtx + RELOC/source/latex/euler/euler.ins +catalogue-ctan /macros/latex/contrib/euler +catalogue-date 2014-04-26 12:45:28 +0200 +catalogue-license lppl +catalogue-version 2.5 + +name eulervm +category Package +revision 15878 +shortdesc Euler virtual math fonts. +relocated 1 +longdesc The well-known Euler fonts are suitable for typsetting +longdesc mathematics in conjunction with a variety of text fonts which +longdesc do not provide mathematical character sets of their own. 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. +runfiles size=32 + RELOC/fonts/tfm/public/eulervm/zeuex10.tfm + RELOC/fonts/tfm/public/eulervm/zeurb10.tfm + RELOC/fonts/tfm/public/eulervm/zeurb5.tfm + RELOC/fonts/tfm/public/eulervm/zeurb7.tfm + RELOC/fonts/tfm/public/eulervm/zeurm10.tfm + RELOC/fonts/tfm/public/eulervm/zeurm5.tfm + RELOC/fonts/tfm/public/eulervm/zeurm7.tfm + RELOC/fonts/tfm/public/eulervm/zeusb10.tfm + RELOC/fonts/tfm/public/eulervm/zeusb5.tfm + RELOC/fonts/tfm/public/eulervm/zeusb7.tfm + RELOC/fonts/tfm/public/eulervm/zeusm10.tfm + RELOC/fonts/tfm/public/eulervm/zeusm5.tfm + RELOC/fonts/tfm/public/eulervm/zeusm7.tfm + RELOC/fonts/vf/public/eulervm/zeuex10.vf + RELOC/fonts/vf/public/eulervm/zeurb10.vf + RELOC/fonts/vf/public/eulervm/zeurb5.vf + RELOC/fonts/vf/public/eulervm/zeurb7.vf + RELOC/fonts/vf/public/eulervm/zeurm10.vf + RELOC/fonts/vf/public/eulervm/zeurm5.vf + RELOC/fonts/vf/public/eulervm/zeurm7.vf + RELOC/fonts/vf/public/eulervm/zeusb10.vf + RELOC/fonts/vf/public/eulervm/zeusb5.vf + RELOC/fonts/vf/public/eulervm/zeusb7.vf + RELOC/fonts/vf/public/eulervm/zeusm10.vf + RELOC/fonts/vf/public/eulervm/zeusm5.vf + RELOC/fonts/vf/public/eulervm/zeusm7.vf + RELOC/tex/latex/eulervm/eulervm.sty + RELOC/tex/latex/eulervm/uzeuex.fd + RELOC/tex/latex/eulervm/uzeur.fd + RELOC/tex/latex/eulervm/uzeus.fd +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-license lppl +catalogue-version 4.0 + +name euro-ce +category Package +revision 25714 +shortdesc Euro and CE sign font. +relocated 1 +longdesc Metafont source for the symbols in several variants, designed +longdesc to fit with the Computer Modern-set text. +runfiles size=26 + RELOC/fonts/source/public/euro-ce/ceit.mf + RELOC/fonts/source/public/euro-ce/cemac.mf + RELOC/fonts/source/public/euro-ce/cerm.mf + RELOC/fonts/source/public/euro-ce/cesl.mf + RELOC/fonts/source/public/euro-ce/eurobf.mf + RELOC/fonts/source/public/euro-ce/eurobfit.mf + RELOC/fonts/source/public/euro-ce/eurobfsl.mf + RELOC/fonts/source/public/euro-ce/euroit.mf + RELOC/fonts/source/public/euro-ce/euromac.mf + RELOC/fonts/source/public/euro-ce/euroof.mf + RELOC/fonts/source/public/euro-ce/eurorm.mf + RELOC/fonts/source/public/euro-ce/eurosl.mf + RELOC/fonts/source/public/euro-ce/eurosp.mf + RELOC/fonts/tfm/public/euro-ce/ceit.tfm + RELOC/fonts/tfm/public/euro-ce/cerm.tfm + RELOC/fonts/tfm/public/euro-ce/cesl.tfm + RELOC/fonts/tfm/public/euro-ce/eurobf.tfm + RELOC/fonts/tfm/public/euro-ce/eurobfit.tfm + RELOC/fonts/tfm/public/euro-ce/eurobfsl.tfm + RELOC/fonts/tfm/public/euro-ce/euroit.tfm + RELOC/fonts/tfm/public/euro-ce/euroof.tfm + RELOC/fonts/tfm/public/euro-ce/eurorm.tfm + RELOC/fonts/tfm/public/euro-ce/eurosl.tfm + RELOC/fonts/tfm/public/euro-ce/eurosp.tfm +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-license bsd +catalogue-version 3.0b + +name europasscv +category Package +revision 36540 +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 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 + RELOC/tex/latex/europasscv/address_europass_icon.pdf + RELOC/tex/latex/europasscv/europasscv.cls + RELOC/tex/latex/europasscv/europasscv_de.def + RELOC/tex/latex/europasscv/europasscv_en.def + RELOC/tex/latex/europasscv/europasscv_it.def + RELOC/tex/latex/europasscv/europasslogo2013.pdf + RELOC/tex/latex/europasscv/im_europass_icon.pdf + RELOC/tex/latex/europasscv/mail_europass_icon.pdf + RELOC/tex/latex/europasscv/mobile_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 +catalogue-ctan /macros/latex/contrib/europasscv +catalogue-date 2015-03-11 05:49:32 +0100 +catalogue-license lppl1.3 + +name europecv +category Package +revision 34454 +shortdesc Unofficial class for European curricula vitae. +relocated 1 +longdesc The europecv class is an unofficial LaTeX implementation of the +longdesc standard model for curricula vitae (the "Europass CV") as +longdesc recommended by the European Commission. Although primarily +longdesc intended for users in the European Union, the class is flexible +longdesc enough to be used for any kind of curriculum vitae. The class +longdesc has localisations for all the official languages of the EU +longdesc (plus Catalan), as well as options permitting input in UTF-8 +longdesc and koi8-r. +runfiles size=64 + RELOC/tex/latex/europecv/EuropeFlagBW.eps + RELOC/tex/latex/europecv/EuropeFlagBW.pdf + RELOC/tex/latex/europecv/EuropeFlagBlueCMYK.eps + RELOC/tex/latex/europecv/EuropeFlagBlueCMYK.pdf + RELOC/tex/latex/europecv/EuropeFlagCMYK.eps + RELOC/tex/latex/europecv/EuropeFlagCMYK.pdf + RELOC/tex/latex/europecv/EuropeFlagWB.eps + RELOC/tex/latex/europecv/EuropeFlagWB.pdf + RELOC/tex/latex/europecv/ecvbg.def + RELOC/tex/latex/europecv/ecvca.def + RELOC/tex/latex/europecv/ecvcs.def + RELOC/tex/latex/europecv/ecvda.def + RELOC/tex/latex/europecv/ecvde.def + RELOC/tex/latex/europecv/ecven.def + RELOC/tex/latex/europecv/ecves.def + RELOC/tex/latex/europecv/ecvet.def + RELOC/tex/latex/europecv/ecvfi.def + RELOC/tex/latex/europecv/ecvfr.def + RELOC/tex/latex/europecv/ecvgl.def + RELOC/tex/latex/europecv/ecvgr.def + RELOC/tex/latex/europecv/ecvhu.def + RELOC/tex/latex/europecv/ecvis.def + RELOC/tex/latex/europecv/ecvit.def + RELOC/tex/latex/europecv/ecvlt.def + RELOC/tex/latex/europecv/ecvlv.def + RELOC/tex/latex/europecv/ecvmt.def + RELOC/tex/latex/europecv/ecvnl.def + RELOC/tex/latex/europecv/ecvno.def + RELOC/tex/latex/europecv/ecvpl.def + RELOC/tex/latex/europecv/ecvpt.def + RELOC/tex/latex/europecv/ecvro.def + RELOC/tex/latex/europecv/ecvsk.def + RELOC/tex/latex/europecv/ecvsl.def + RELOC/tex/latex/europecv/ecvsr.def + RELOC/tex/latex/europecv/ecvsv.def + RELOC/tex/latex/europecv/europasslogo.eps + RELOC/tex/latex/europecv/europasslogo.pdf + RELOC/tex/latex/europecv/europecv.cls +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-ctan /macros/latex/contrib/europecv +catalogue-date 2015-03-05 20:25:14 +0100 +catalogue-license lppl + +name eurosym +category Package +revision 17265 +shortdesc Metafont and macros for Euro sign. +relocated 1 +longdesc The European currency symbol for the Euro implemented in +longdesc Metafont, using the official European Commission dimensions, +longdesc and providing several shapes (normal, slanted, bold, outline). +longdesc The package also includes a LaTeX package which defines the +longdesc macro, pre-compiled tfm files, and documentation. +execute addMixedMap eurosym.map +runfiles size=72 + RELOC/fonts/map/dvips/eurosym/eurosym.map + RELOC/fonts/source/public/eurosym/fey.mf + RELOC/fonts/source/public/eurosym/feybl10.mf + RELOC/fonts/source/public/eurosym/feybo10.mf + RELOC/fonts/source/public/eurosym/feybr10.mf + RELOC/fonts/source/public/eurosym/feyml10.mf + RELOC/fonts/source/public/eurosym/feymo10.mf + RELOC/fonts/source/public/eurosym/feymr10.mf + RELOC/fonts/tfm/public/eurosym/feybl10.tfm + RELOC/fonts/tfm/public/eurosym/feybo10.tfm + RELOC/fonts/tfm/public/eurosym/feybr10.tfm + RELOC/fonts/tfm/public/eurosym/feyml10.tfm + RELOC/fonts/tfm/public/eurosym/feymo10.tfm + RELOC/fonts/tfm/public/eurosym/feymr10.tfm + RELOC/fonts/type1/public/eurosym/feybl10.pfb + RELOC/fonts/type1/public/eurosym/feybo10.pfb + RELOC/fonts/type1/public/eurosym/feybr10.pfb + RELOC/fonts/type1/public/eurosym/feyml10.pfb + RELOC/fonts/type1/public/eurosym/feymo10.pfb + RELOC/fonts/type1/public/eurosym/feymr10.pfb + RELOC/fonts/type1/public/eurosym/geybl10.pfb + RELOC/fonts/type1/public/eurosym/geybo10.pfb + RELOC/fonts/type1/public/eurosym/geybr10.pfb + RELOC/fonts/type1/public/eurosym/geyml10.pfb + RELOC/fonts/type1/public/eurosym/geymo10.pfb + RELOC/fonts/type1/public/eurosym/geymr10.pfb + RELOC/tex/latex/eurosym/eurosym.sty +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-ctan /fonts/eurosym +catalogue-date 2014-04-26 19:51:19 +0200 +catalogue-license other-free +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 +relocated 1 +runfiles size=40 + RELOC/fonts/source/public/euxm/eubase.mf + RELOC/fonts/source/public/euxm/eusmch.mf + RELOC/fonts/source/public/euxm/euxm10.mf + RELOC/fonts/source/public/euxm/euxm5.mf + RELOC/fonts/source/public/euxm/euxm7.mf + RELOC/fonts/source/public/euxm/euxmch.mf + RELOC/fonts/tfm/public/euxm/euxm10.tfm + RELOC/fonts/tfm/public/euxm/euxm5.tfm + RELOC/fonts/tfm/public/euxm/euxm7.tfm + +name everyhook +category Package +revision 35675 +shortdesc Hooks for standard TeX token lists. +relocated 1 +longdesc The package takes control of the six TeX token registers +longdesc \everypar, \everymath, \everydisplay, \everyhbox, \everyvbox +longdesc and \everycr. Real hooks for each of the registers may be +longdesc installed using a stack like interface. For backwards +longdesc compatibility, each of the \everyX token lists can be set +longdesc without interfering with the hooks. +runfiles size=2 + RELOC/tex/latex/everyhook/everyhook.sty +docfiles size=30 + RELOC/doc/latex/everyhook/README + RELOC/doc/latex/everyhook/everyhook.pdf +srcfiles size=6 + RELOC/source/latex/everyhook/everyhook.dtx +catalogue-ctan /macros/latex/contrib/everyhook +catalogue-date 2014-11-26 21:16:27 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name everypage +category Package +revision 15878 +shortdesc Provide hooks to be run on every page of a document. +relocated 1 +longdesc The package provides hooks to perform actions on every page, or +longdesc on the current page. Specifically, actions are performed after +longdesc the page is composed, but before it is shipped, so they can be +longdesc used to prepare the output page in tasks like putting +longdesc watermarks in the background, or in setting the next page +longdesc layout, etc. +runfiles size=1 + RELOC/tex/latex/everypage/everypage.sty +docfiles size=6 + RELOC/doc/latex/everypage/README + RELOC/doc/latex/everypage/everypage.pdf +srcfiles size=4 + RELOC/source/latex/everypage/everypage.dtx + RELOC/source/latex/everypage/everypage.ins +catalogue-ctan /macros/latex/contrib/everypage +catalogue-date 2012-06-15 15:04:50 +0200 +catalogue-license lppl +catalogue-version 1.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. +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 + +name exam-n +category Package +revision 33862 +shortdesc Exam class, focused on collaborative authoring. +relocated 1 +longdesc The class design offers: Direct support for collaborative +longdesc development of an exam, using a model in which a departmental +longdesc 'exams convener' or 'exam chair' coordinates multiple authors +longdesc writing individual questions (the class file and associated +longdesc process is in regular use within a physics and astronomy +longdesc department). All of the 'traditional' exam paper features such +longdesc as sectioning, per-part running marks, 'Question n continued' +longdesc catchwords, and so on. Readily configured local adaptation. +runfiles size=10 + RELOC/tex/latex/exam-n/exam-n.cls +docfiles size=387 + RELOC/doc/latex/exam-n/README + 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/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/release-notes.html + RELOC/doc/latex/exam-n/sample/Makefile + RELOC/doc/latex/exam-n/sample/cosmo1.tex + RELOC/doc/latex/exam-n/sample/cosmo2.tex + RELOC/doc/latex/exam-n/sample/cosmo3.tex + RELOC/doc/latex/exam-n/sample/dynamical1.tex + RELOC/doc/latex/exam-n/sample/dynamical2.tex + RELOC/doc/latex/exam-n/sample/dynamical3.tex + RELOC/doc/latex/exam-n/sample/excos1.tex + RELOC/doc/latex/exam-n/sample/numerical1-solution.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_solution.pdf + RELOC/doc/latex/exam-n/style.css +srcfiles size=30 + RELOC/source/latex/exam-n/exam-n.drv + RELOC/source/latex/exam-n/exam-n.dtx + RELOC/source/latex/exam-n/exam-n.ins +catalogue-ctan /macros/latex/contrib/exam-n +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name examplep +category Package +revision 16916 +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 typesetting short verbatim phrases, a replacement for the \verb +longdesc command is also provided in the package, which can be used +longdesc inside tables and moving arguments such as footnotes and +longdesc section titles. The listings package is used for syntax +longdesc highlighting. The accompanying codep package and the wrfiles.pl +longdesc Perl script provide a convenient interface to the examplep +longdesc package for authors of manuals. With codep it is possible to +longdesc generate the source code, the LaTeX or METAPOST output and the +longdesc compilable example file from a single source embedded into the +longdesc appropriate place of the .tex document file. +runfiles size=34 + RELOC/tex/latex/examplep/codep.sty + RELOC/tex/latex/examplep/examplep.sty + RELOC/tex/latex/examplep/verbfwr.sty +docfiles size=142 + RELOC/doc/latex/examplep/README + RELOC/doc/latex/examplep/eurotex_2005_examplep.pdf + RELOC/doc/latex/examplep/eurotex_2005_examplep.tex + RELOC/doc/latex/examplep/houses.eps + RELOC/doc/latex/examplep/houses.pdf + RELOC/doc/latex/examplep/pexaminipage.eps + RELOC/doc/latex/examplep/pexaminipage.pdf + RELOC/doc/latex/examplep/shorthyp_t1xtts.eps + RELOC/doc/latex/examplep/shorthyp_t1xtts.pdf + RELOC/doc/latex/examplep/wrfiles.pl +catalogue-ctan /macros/latex/contrib/examplep +catalogue-date 2012-06-15 15:04:50 +0200 +catalogue-license gpl +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. +longdesc Exceltex is a LaTeX package combined with a helper program +longdesc written in Perl. It provides an easy to use yet powerfull and +longdesc flexible way to get data from Spreadsheets into LaTeX. In +longdesc contrast to other solutions, exceltex does not seek to make the +longdesc creation of tables in LaTeX easier, but to get data from +longdesc Spreadsheets into LaTeX as easily as possible. The Excel (TM) +longdesc file format only acts as an interface between the spreadsheet +longdesc application and exceltex beacause it is easily accessible (via +longdesc the Spreadsheet::ParseExcel Perl module) and because most +longdesc spreadsheet applications are able to read and write Excel +longdesc files. +depend exceltex.ARCH +runfiles size=6 + texmf-dist/scripts/exceltex/exceltex + texmf-dist/tex/latex/exceltex/exceltex.sty +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.TEXLIVE +catalogue-ctan /macros/latex/contrib/exceltex +catalogue-date 2012-05-07 22:43:29 +0200 +catalogue-license gpl +catalogue-version 0.5.1 + +name exceltex.i386-linux +category Package +revision 25860 +shortdesc i386-linux files of exceltex +binfiles arch=i386-linux size=1 + bin/i386-linux/exceltex + +name excludeonly +category Package +revision 17262 +shortdesc Prevent files being \include-ed. +relocated 1 +longdesc The package defines an \excludeonly command, which is (in +longdesc effect) the opposite of \includeonly. If both \includeonly and +longdesc \excludeonly exist in a document, only files "allowed" by both +longdesc will be included. The package redefines the internal \@include +longdesc command, so it conflicts with packages that do the same. +longdesc Examples are the classes paper.cls and thesis.cls. +runfiles size=1 + RELOC/tex/latex/excludeonly/excludeonly.sty +docfiles size=56 + RELOC/doc/latex/excludeonly/excludeonly.pdf + RELOC/doc/latex/excludeonly/excludeonly.tex +catalogue-ctan /macros/latex/contrib/excludeonly +catalogue-date 2012-06-15 15:04:50 +0200 +catalogue-license pd +catalogue-version 1.0 + +name exercise +category Package +revision 35417 +shortdesc Typeset exercises, problems, etc. and their answers +relocated 1 +longdesc The package helps to typeset exercises or list of exercises +longdesc within any document. Exercises, questions and sub-questions are +longdesc automatically numbered. It is possible to put answers in the +longdesc same document, and display them immediatly, later in the +longdesc document or not to print answers at all. The layout of +longdesc exercises is fully customisable. It is possible to typeset long +longdesc problems, short exercises, questionnaires, etc. Usage of the +longdesc babel package is detected, but not fully supported yet (only +longdesc English and French are implemented). +runfiles size=9 + RELOC/tex/latex/exercise/exercise.sty +docfiles size=80 + RELOC/doc/latex/exercise/README + RELOC/doc/latex/exercise/exercise.pdf +srcfiles size=17 + RELOC/source/latex/exercise/exercise.dtx + RELOC/source/latex/exercise/exercise.ins +catalogue-ctan /macros/latex/contrib/exercise +catalogue-date 2014-10-21 17:38:48 +0200 +catalogue-license gpl2 +catalogue-version 1.6 + +name expdlist +category Package +revision 15878 +shortdesc Expanded description environments. +relocated 1 +longdesc The package provides additional features for the LaTeX +longdesc description environment, including adjustable left margin. The +longdesc package also allows the user to 'break' a list (for example, to +longdesc interpose a comment) without affecting the structure of the +longdesc list (this works for itemize and eumerate lists and numbered +longdesc lists remain in sequence). +runfiles size=2 + RELOC/tex/latex/expdlist/expdlist.sty +docfiles size=46 + RELOC/doc/latex/expdlist/expdlisg.pdf + RELOC/doc/latex/expdlist/expdlist.pdf + RELOC/doc/latex/expdlist/readme.txt +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 +catalogue-ctan /macros/latex/contrib/expdlist +catalogue-date 2012-07-12 15:21:21 +0200 +catalogue-license lppl +catalogue-version 2.4 + +name expex +category Package +revision 33163 +shortdesc Format linguistic examples and glosses, with reference capabilities. +relocated 1 +longdesc The package provides macros for typesetting linguistic examples +longdesc and glosses, with a refined mechanism for referencing examples +longdesc and parts of examples. The package can be used with LaTex using +longdesc the .sty wrapper or with PlainTex. +runfiles size=22 + 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-license lppl +catalogue-version 5.0b + +name export +category Package +revision 27206 +shortdesc Import and export values of LaTeX registers. +relocated 1 +longdesc The package allows the user to export/import the values of +longdesc LaTeX registers (counters, rigid and rubber lengths only). It +longdesc is not for faint-hearted users. The package may be used, for +longdesc example, to communicate between documents for the purposes of +longdesc dvipaste. +runfiles size=6 + RELOC/tex/latex/export/dvipaste.sty + RELOC/tex/latex/export/export.sty +docfiles size=70 + RELOC/doc/latex/export/00readme + RELOC/doc/latex/export/export.pdf +srcfiles size=9 + RELOC/source/latex/export/export.dtx + RELOC/source/latex/export/export.ins + RELOC/source/latex/export/export.l +catalogue-ctan /macros/latex/contrib/export +catalogue-date 2013-10-03 14:20:59 +0200 +catalogue-license lppl +catalogue-version 1.8 + +name expressg +category Package +revision 29349 +shortdesc Diagrams consisting of boxes, lines, and annotations. +relocated 1 +longdesc A MetaPost package providing facilities to assist in drawing +longdesc diagrams that consist of boxes, lines, and annotations. +longdesc Particular support is provided for creating EXPRESS-G diagrams, +longdesc for example IDEF1X, OMT, Shlaer-Mellor, and NIAM diagrams. The +longdesc package may also be used to create UML and most other 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 +docfiles size=137 + RELOC/doc/metapost/expressg/README + RELOC/doc/metapost/expressg/aamfigs.pdf + 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/n2mps.sh + RELOC/doc/metapost/expressg/n2mpsprl.prl +srcfiles size=53 + RELOC/source/metapost/expressg/expressg.dtx + RELOC/source/metapost/expressg/expressg.ins +catalogue-ctan /graphics/metapost/contrib/macros/expressg +catalogue-date 2012-07-11 14:19:50 +0200 +catalogue-license lppl +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. +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 + 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-ctan /macros/latex/contrib/exsheets +catalogue-date 2015-07-04 14:51:19 +0200 +catalogue-license lppl1.3 +catalogue-topics exercise exam expl3 +catalogue-version 0.19 + +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 + RELOC/doc/latex/exsol/LICENSE + RELOC/doc/latex/exsol/exsol.pdf +srcfiles size=9 + RELOC/source/latex/exsol/exsol.dtx + RELOC/source/latex/exsol/exsol.ins +catalogue-ctan /macros/latex/contrib/exsol +catalogue-date 2014-10-16 20:18:43 +0200 +catalogue-license lppl1.3 +catalogue-version 0.91 + +name extarrows +category Package +revision 15878 +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 \xLongrightarrow, \xLongleftrightarrow, \xLeftrightarrow. +longdesc \xlongleftrightarrow, \xleftrightarrow, \xlongleftarrow and +longdesc \xlongrightarrow. +runfiles size=1 + RELOC/tex/latex/extarrows/extarrows.sty +docfiles size=10 + RELOC/doc/latex/extarrows/README + RELOC/doc/latex/extarrows/extarrows-test.pdf + RELOC/doc/latex/extarrows/extarrows-test.tex +catalogue-ctan /macros/latex/contrib/extarrows +catalogue-date 2012-05-07 22:43:29 +0200 +catalogue-license lgpl +catalogue-version 1.0b + +name exteps +category Package +revision 19859 +shortdesc Include EPS figures in MetaPost. +relocated 1 +longdesc Exteps is a module for including external EPS figures into +longdesc MetaPost figures. It is written entirely in MetaPost, and does +longdesc not therefore require any post processing of the MetaPost +longdesc output. +runfiles size=3 + RELOC/metapost/exteps/exteps.mp +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.tex +catalogue-ctan /graphics/metapost/contrib/macros/exteps +catalogue-date 2012-07-12 15:21:21 +0200 +catalogue-license gpl +catalogue-version 0.41 + +name extpfeil +category Package +revision 16243 +shortdesc Extensible arrows in mathematics. +relocated 1 +longdesc The package provides some more extensible arrows (usable in the +longdesc same way as \xleftarrow from amsmath), and a simple command to +longdesc create new ones. +runfiles size=1 + RELOC/tex/latex/extpfeil/extpfeil.sty +docfiles size=35 + RELOC/doc/latex/extpfeil/README + RELOC/doc/latex/extpfeil/extpfeil.pdf +srcfiles size=6 + RELOC/source/latex/extpfeil/extpfeil.dtx + RELOC/source/latex/extpfeil/extpfeil.ins +catalogue-ctan /macros/latex/contrib/extpfeil +catalogue-date 2012-05-07 22:43:29 +0200 +catalogue-license lppl1.3 +catalogue-version 0.4 + +name extract +category Package +revision 15878 +shortdesc Extract parts of a document and write to another document. +relocated 1 +longdesc The package provides the means to extract specific content from +longdesc a source document and write that to a target document. One +longdesc could, for instance, use this to extract all exercises from +longdesc lecture notes and generate an exercises book on the fly. The +longdesc package also provides an environment which writes its body +longdesc entirely to the target file. Another environment will write to +longdesc the target file, but will also execute the body. This allows to +longdesc share code (for instance, a preamble) between the source +longdesc document and the target file. Finally, the package provides an +longdesc interface to conditionally extract content. With a single +longdesc package option, one can specify exactly which commands (counted +longdesc from the start of the document) should be extracted and which +longdesc not. This might be useful for extracting specific slides from a +longdesc presentation and use them in a new file. +runfiles size=4 + RELOC/tex/latex/extract/extract.sty +docfiles size=51 + RELOC/doc/latex/extract/README + RELOC/doc/latex/extract/extract.pdf +srcfiles size=19 + RELOC/source/latex/extract/extract.dtx +catalogue-ctan /macros/latex/contrib/extract +catalogue-date 2011-09-30 20:51:09 +0200 +catalogue-license lppl +catalogue-version 1.8 + +name extsizes +category Package +revision 17263 +shortdesc Extend the standard classes' size options. +relocated 1 +longdesc Provides classes extarticle, extreport, extletter, extbook and +longdesc extproc which provide for documents with a base font size from +longdesc 8-20pt. +runfiles size=35 + RELOC/tex/latex/extsizes/autopagewidth.sty + RELOC/tex/latex/extsizes/extarticle.cls + RELOC/tex/latex/extsizes/extbook.cls + RELOC/tex/latex/extsizes/extletter.cls + RELOC/tex/latex/extsizes/extproc.cls + RELOC/tex/latex/extsizes/extreport.cls + RELOC/tex/latex/extsizes/extsizes.sty + RELOC/tex/latex/extsizes/size14.clo + RELOC/tex/latex/extsizes/size17.clo + RELOC/tex/latex/extsizes/size20.clo + RELOC/tex/latex/extsizes/size8.clo + RELOC/tex/latex/extsizes/size9.clo +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-license lppl +catalogue-version 1.4a + +name facsimile +category Package +revision 21328 +shortdesc Document class for preparing faxes. +relocated 1 +longdesc The facsimile class provides a simple interface for creating a +longdesc document for sending as a fax, with LaTeX. The class covers two +longdesc areas: First, a title page is created with a detailed fax +longdesc header; second, every page gets headers and footers so that the +longdesc recipient can be sure that every page has been received and all +longdesc pages are complete, and in the correct order. The class evolved +longdesc from the fax package, and provides much better language +longdesc support. +runfiles size=5 + RELOC/tex/latex/facsimile/fac-de.cfg + RELOC/tex/latex/facsimile/fac-en.cfg + RELOC/tex/latex/facsimile/facsimile.cls +docfiles size=12 + RELOC/doc/latex/facsimile/README + RELOC/doc/latex/facsimile/example.tex + RELOC/doc/latex/facsimile/facsimile.pdf +srcfiles size=11 + RELOC/source/latex/facsimile/facsimile.dtx + RELOC/source/latex/facsimile/facsimile.ins +catalogue-ctan /macros/latex/contrib/facsimile +catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name factura +category Package +revision 38223 +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 + RELOC/doc/latex/factura/factura-beispiel-rechnung.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-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.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/source/latex/factura/factura.dtx + RELOC/source/latex/factura/factura.ins +catalogue-ctan /macros/latex/contrib/factura +catalogue-date 2015-08-26 10:06:40 +0200 +catalogue-license lppl1.3 +catalogue-topics invoice spanish +catalogue-version 2.1 + +name facture +category Package +revision 36075 +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 +docfiles size=46 + RELOC/doc/xelatex/facture/README + 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/makefile +srcfiles size=7 + RELOC/source/xelatex/facture/facture.dtx + RELOC/source/xelatex/facture/facture.ins +catalogue-ctan /macros/xetex/latex/facture +catalogue-date 2015-01-23 22:54:15 +0100 +catalogue-license other-free +catalogue-version 1.2.1 + +name faktor +category Package +revision 15878 +shortdesc Typeset quotient structures with LaTeX. +relocated 1 +longdesc The package provides the means to typeset factor structures, as +longdesc are used in many areas of algebraic notation. The structure is +longdesc similar to the 'A/B' that is provided by the nicefrac package +longdesc (part of the units distribution), and by the xfrac package; the +longdesc most obvious difference is that the numerator and denominator's +longdesc sizes do not change in the \faktor command. +runfiles size=1 + RELOC/tex/latex/faktor/faktor.sty +docfiles size=26 + RELOC/doc/latex/faktor/README + RELOC/doc/latex/faktor/faktor.pdf +srcfiles size=3 + RELOC/source/latex/faktor/faktor.dtx + RELOC/source/latex/faktor/faktor.ins +catalogue-ctan /macros/latex/contrib/faktor +catalogue-date 2012-05-08 21:36:46 +0200 +catalogue-license lppl +catalogue-version 0.1b + +name fancybox +category Package +revision 18304 +shortdesc Variants of \fbox and other games with boxes. +relocated 1 +longdesc Provides variants of \fbox: \shadowbox, \doublebox, \ovalbox, +longdesc \Ovalbox, with helpful tools for using box macros and flexible +longdesc verbatim macros. You can box mathematics, floats, center, +longdesc flushleft, and flushright, lists, and pages. +runfiles size=7 + RELOC/tex/latex/fancybox/fancybox.sty +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/fancybox-doc.tex +catalogue-ctan /macros/latex/contrib/fancybox +catalogue-date 2011-10-26 08:45:54 +0200 +catalogue-license lppl1.2 +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 fancyhdr +category Package +revision 15878 +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 + 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-ctan /macros/latex/contrib/fancyhdr +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 3.1 + +name fancylabel +category Package +revision 34684 +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 +srcfiles size=17 + RELOC/source/latex/fancylabel/fancylabel.dtx + RELOC/source/latex/fancylabel/fancylabel.ins +catalogue-ctan /macros/latex/contrib/fancylabel +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.2 +catalogue-version 1.0 + +name fancynum +category Package +revision 15878 +shortdesc Typeset numbers. +relocated 1 +longdesc A LaTeX package for typesetting numbers, in particular floating +longdesc point numbers, such as you find in program output. +runfiles size=1 + RELOC/tex/latex/fancynum/fancynum.sty +docfiles size=27 + RELOC/doc/latex/fancynum/CHANGES + RELOC/doc/latex/fancynum/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 +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 +catalogue-ctan /macros/latex/contrib/fancynum +catalogue-date 2012-04-17 16:58:00 +0200 +catalogue-license other-free +catalogue-version 0.92 + +name fancypar +category Package +revision 18018 +shortdesc Decoration of individual paragraphs. +relocated 1 +longdesc Decorates individual paragraphs of a document, offering five +longdesc pre-defined styles. The command offers an optional 'key-value' +longdesc argument with the user may define parameters of the selected +longdesc style. Predefined styles offer a spiral-notebook, a zebra-like, +longdesc a dashed, a marked design, and an underlined style. Users may +longdesc also define their own styles. Decorated paragraphs may not +longdesc include displayed mathematics. +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 + RELOC/source/latex/fancypar/fancypar.dtx + RELOC/source/latex/fancypar/fancypar.ins +catalogue-ctan /macros/latex/contrib/fancypar +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name fancyref +category Package +revision 15878 +shortdesc A LaTeX package for fancy cross-referencing. +relocated 1 +longdesc Provides fancy cross-referencing support, based on the +longdesc package's reference commands (\fref and \Fref) that recognise +longdesc what sort of object is being referenced. So, for example, the +longdesc label for a \section would be expected to be of the form +longdesc 'sec:foo': the package would recognise the 'sec:' part. +runfiles size=4 + RELOC/tex/latex/fancyref/fancyref.sty +docfiles size=37 + RELOC/doc/latex/fancyref/COPYING + RELOC/doc/latex/fancyref/README + RELOC/doc/latex/fancyref/fancyref.pdf + RELOC/doc/latex/fancyref/freftest.tex +srcfiles size=21 + RELOC/source/latex/fancyref/fancyref.dtx + RELOC/source/latex/fancyref/fancyref.ins +catalogue-ctan /macros/latex/contrib/fancyref +catalogue-date 2012-07-11 17:40:28 +0200 +catalogue-license gpl +catalogue-version 0.9c + +name fancyslides +category Package +revision 36263 +shortdesc Custom presentation class built upon LaTeX Beamer. +relocated 1 +longdesc This class is prepared for short presentations with a modern +longdesc look & feel. It offers the following features: custom +longdesc background for each slide, predefined types of slides, +longdesc simplified commands (e.g. for starting and ending slide). The +longdesc class is built upon LaTeX beamer, so all beamer commands should +longdesc work. +runfiles size=1 + RELOC/tex/latex/fancyslides/fancyslides.cls +docfiles size=994 + RELOC/doc/latex/fancyslides/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.tex + RELOC/doc/latex/fancyslides/doc/frame.png + RELOC/doc/latex/fancyslides/doc/fs.pdf + RELOC/doc/latex/fancyslides/doc/green.png + RELOC/doc/latex/fancyslides/doc/item.png + RELOC/doc/latex/fancyslides/doc/orange.png + RELOC/doc/latex/fancyslides/doc/point.png +catalogue-ctan /macros/latex/contrib/fancyslides +catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name fancytabs +category Package +revision 27684 +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 + RELOC/doc/latex/fancytabs/README + RELOC/doc/latex/fancytabs/fancytabs.pdf +srcfiles size=4 + RELOC/source/latex/fancytabs/fancytabs.dtx + RELOC/source/latex/fancytabs/fancytabs.ins +catalogue-ctan /macros/latex/contrib/fancytabs +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.8 + +name fancytooltips +category Package +revision 27129 +shortdesc Include a wide range of material in PDF tooltips. +relocated 1 +longdesc The package was inspired by the cooltooltips package. In +longdesc contrast to cooltooltips, fancytooltips allows inclusion of +longdesc tooltips which contain arbitrary TeX material or a series of +longdesc TeX materials (animated graphics) from an external PDF file. To +longdesc see the tooltips, you have to open the files in Adobe Reader. +longdesc The links and JavaScripts are inserted using eforms package +longdesc from the AcroTeX bundle. +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 +docfiles size=513 + RELOC/doc/latex/fancytooltips/cite.png + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo.pdf + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo.sin.table + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo.tex + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo2.pdf + RELOC/doc/latex/fancytooltips/examples/fancy-preview-demo2.tex + RELOC/doc/latex/fancytooltips/examples/fancytooltips-example.pdf + RELOC/doc/latex/fancytooltips/examples/fancytooltips-example.tex + RELOC/doc/latex/fancytooltips/examples/pics/tecna2.pdf + RELOC/doc/latex/fancytooltips/examples/pics/tooltipy.pdf + RELOC/doc/latex/fancytooltips/examples/pics/tooltipy.tex + RELOC/doc/latex/fancytooltips/examples/pics/tooltipy.tips + RELOC/doc/latex/fancytooltips/examples/readme + RELOC/doc/latex/fancytooltips/fancy-preview + RELOC/doc/latex/fancytooltips/fancytipmark1.pdf + RELOC/doc/latex/fancytooltips/fancytipmark2.pdf + RELOC/doc/latex/fancytooltips/fancytipmark3.pdf + RELOC/doc/latex/fancytooltips/fancytipmark4.pdf + RELOC/doc/latex/fancytooltips/fancytooltips.pdf + RELOC/doc/latex/fancytooltips/readme + RELOC/doc/latex/fancytooltips/tip.pdf + RELOC/doc/latex/fancytooltips/tip.tex +srcfiles size=16 + RELOC/source/latex/fancytooltips/fancytooltips.dtx + RELOC/source/latex/fancytooltips/fancytooltips.ins +catalogue-ctan /macros/latex/contrib/fancytooltips +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.8 + +name fancyvrb +category Package +revision 18492 +shortdesc Sophisticated verbatim text. +relocated 1 +longdesc Flexible handling of verbatim text including: verbatim commands +longdesc in footnotes; a variety of verbatim environments with many +longdesc parameters; ability to define new customized verbatim +longdesc environments; save and restore verbatim text and environments; +longdesc write and read files in verbatim mode; build "example" +longdesc environments (showing both result and verbatim source). +runfiles size=18 + 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 + +name fandol +category Package +revision 37889 +shortdesc Four basic fonts for Chinese typesetting. +relocated 1 +longdesc Fandol fonts designed for Chinese typesetting. The current +longdesc version contains four styles: Song, Hei, Kai, Fang. All fonts +longdesc are in OpenType format. +runfiles size=8526 + RELOC/fonts/opentype/public/fandol/FandolBraille-Display.otf + RELOC/fonts/opentype/public/fandol/FandolBraille-Regular.otf + RELOC/fonts/opentype/public/fandol/FandolFang-Regular.otf + RELOC/fonts/opentype/public/fandol/FandolHei-Bold.otf + RELOC/fonts/opentype/public/fandol/FandolHei-Regular.otf + RELOC/fonts/opentype/public/fandol/FandolKai-Regular.otf + RELOC/fonts/opentype/public/fandol/FandolSong-Bold.otf + RELOC/fonts/opentype/public/fandol/FandolSong-Regular.otf +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-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 fast-diagram +category Package +revision 29264 +shortdesc Easy generation of FAST diagrams. +relocated 1 +longdesc The package provides simple means of producing FAST diagrams, +longdesc using TikZ/pgf tools. FAST diagrams are useful for functional +longdesc analysis techniques in design methods. +runfiles size=5 + RELOC/tex/latex/fast-diagram/fast-diagram.sty +docfiles size=405 + RELOC/doc/latex/fast-diagram/README + RELOC/doc/latex/fast-diagram/help.pdf + RELOC/doc/latex/fast-diagram/help.tex + RELOC/doc/latex/fast-diagram/sources_help/commandes.tex + RELOC/doc/latex/fast-diagram/sources_help/exemple.tex + RELOC/doc/latex/fast-diagram/sources_help/images/antenne.png + RELOC/doc/latex/fast-diagram/sources_help/images/batterie.png + RELOC/doc/latex/fast-diagram/sources_help/images/biellettes.png + RELOC/doc/latex/fast-diagram/sources_help/images/bouton.png + RELOC/doc/latex/fast-diagram/sources_help/images/moteur.png + RELOC/doc/latex/fast-diagram/sources_help/images/pedalier.png + RELOC/doc/latex/fast-diagram/sources_help/images/pignons.png + RELOC/doc/latex/fast-diagram/sources_help/images/recepteur.png + RELOC/doc/latex/fast-diagram/sources_help/images/roue.png + RELOC/doc/latex/fast-diagram/sources_help/images/servomoteur.png + RELOC/doc/latex/fast-diagram/sources_help/installation.tex + RELOC/doc/latex/fast-diagram/sources_help/intro.tex + RELOC/doc/latex/fast-diagram/sources_help/miseEnForme.tex + RELOC/doc/latex/fast-diagram/sources_help/reglages.tex + RELOC/doc/latex/fast-diagram/sources_help/tikz.tex +catalogue-ctan /graphics/pgf/contrib/fast-diagram +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name fbb +category Package +revision 38195 +shortdesc A free Bembo-like font +relocated 1 +longdesc The package provides a Bembo-like font package based on Cardo +longdesc but with many modifications, adding Bold Italic, small caps in +longdesc all styles, six figure choices in all styles, updated kerning +longdesc tables, added figure tables and corrected f-ligatures. Both +longdesc OpenType and Adobe Type 1 versions are provided; all necessary +longdesc support files are provided. The font works well with +longdesc newtxmath's libertine option. +execute addMap fbb.map +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 + 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_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_r5yodg.enc + RELOC/fonts/enc/dvips/fbb/fbb_tizue6.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_yr6epv.enc + RELOC/fonts/enc/dvips/fbb/fbb_zac64m.enc + RELOC/fonts/enc/dvips/fbb/fbb_zxsywv.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-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fbb/fbb-Regular-tosf-ts1.tfm + RELOC/fonts/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-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-lf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-osf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-sup-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-sup-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-lf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-osf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-sup-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-sup-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-lf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-osf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-sup-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-sup-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-t1.vf + RELOC/fonts/vf/public/fbb/fbb-Regular-tosf-ts1.vf + 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-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-LF.fd + RELOC/tex/latex/fbb/T1fbb-OsF.fd + RELOC/tex/latex/fbb/T1fbb-Sup.fd + RELOC/tex/latex/fbb/T1fbb-TLF.fd + RELOC/tex/latex/fbb/T1fbb-TOsF.fd + RELOC/tex/latex/fbb/TS1fbb-LF.fd + RELOC/tex/latex/fbb/TS1fbb-OsF.fd + RELOC/tex/latex/fbb/TS1fbb-TLF.fd + RELOC/tex/latex/fbb/TS1fbb-TOsF.fd + RELOC/tex/latex/fbb/fbb.fontspec + RELOC/tex/latex/fbb/fbb.sty +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 + +name fbithesis +category Package +revision 21340 +shortdesc Computer Science thesis class for University of Dortmund. +relocated 1 +longdesc At the department of computer science at the University of +longdesc Dortmund there are cardboard cover pages for research or +longdesc internal reports like master/phd-theses. The main function of +longdesc this LaTeX2e document-class is a replacement for the \maketitle +longdesc command to typeset a title page that is adjusted to these cover +longdesc pages. +runfiles size=7 + RELOC/tex/latex/fbithesis/fbithesis.cfg + RELOC/tex/latex/fbithesis/fbithesis.cls +docfiles size=201 + RELOC/doc/latex/fbithesis/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 +srcfiles size=53 + RELOC/source/latex/fbithesis/fbithesis.drv + RELOC/source/latex/fbithesis/fbithesis.dtx + RELOC/source/latex/fbithesis/fbithesis.ins +catalogue-ctan /macros/latex/contrib/fbithesis +catalogue-date 2012-02-09 20:33:55 +0100 +catalogue-license other-free +catalogue-version 1.2m + +name fbs +category Package +revision 15878 +shortdesc BibTeX style for Frontiers in Bioscience. +relocated 1 +longdesc A BibTeX style file made with custom-bib to fit Frontiers in +longdesc Bioscience requirements: all authors, no et al, full author +longdesc names, initials abbreviated; only abbreviated journal name +longdesc italicised, no abbreviation dots; only year, no month, at end +longdesc of reference; and DOI excluded, ISSN excluded. +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-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 + +name fc +category Package +revision 32796 +shortdesc Fonts for African languages. +relocated 1 +longdesc The fonts are provided as Metafont source, in the familiar +longdesc arrangement of lots of (autogenerated) preamble files and a +longdesc modest set of glyph specifications. (A similar arrangement +longdesc appears in the ec and lh font bundles.) +runfiles size=591 + RELOC/fonts/source/jknappen/fc/b-fcbx.mf + RELOC/fonts/source/jknappen/fc/b-fcbxi.mf + RELOC/fonts/source/jknappen/fc/b-fcbxsl.mf + RELOC/fonts/source/jknappen/fc/b-fcbxu.mf + RELOC/fonts/source/jknappen/fc/b-fccsc.mf + RELOC/fonts/source/jknappen/fc/b-fci.mf + RELOC/fonts/source/jknappen/fc/b-fcitt.mf + RELOC/fonts/source/jknappen/fc/b-fcr.mf + RELOC/fonts/source/jknappen/fc/b-fcsibx.mf + RELOC/fonts/source/jknappen/fc/b-fcsitt.mf + RELOC/fonts/source/jknappen/fc/b-fcsl.mf + RELOC/fonts/source/jknappen/fc/b-fcss.mf + RELOC/fonts/source/jknappen/fc/b-fcssbx.mf + RELOC/fonts/source/jknappen/fc/b-fcssi.mf + RELOC/fonts/source/jknappen/fc/b-fcsstt.mf + RELOC/fonts/source/jknappen/fc/b-fctt.mf + RELOC/fonts/source/jknappen/fc/b-fcu.mf + RELOC/fonts/source/jknappen/fc/c-fcsstt.mf + RELOC/fonts/source/jknappen/fc/fcaccent.mf + RELOC/fonts/source/jknappen/fc/fcbx10.mf + RELOC/fonts/source/jknappen/fc/fcbx11.mf + RELOC/fonts/source/jknappen/fc/fcbx12.mf + RELOC/fonts/source/jknappen/fc/fcbx14.mf + RELOC/fonts/source/jknappen/fc/fcbx17.mf + RELOC/fonts/source/jknappen/fc/fcbx20.mf + RELOC/fonts/source/jknappen/fc/fcbx25.mf + RELOC/fonts/source/jknappen/fc/fcbx5.mf + RELOC/fonts/source/jknappen/fc/fcbx6.mf + RELOC/fonts/source/jknappen/fc/fcbx7.mf + RELOC/fonts/source/jknappen/fc/fcbx8.mf + RELOC/fonts/source/jknappen/fc/fcbx9.mf + RELOC/fonts/source/jknappen/fc/fcbxi10.mf + RELOC/fonts/source/jknappen/fc/fcbxi11.mf + RELOC/fonts/source/jknappen/fc/fcbxi12.mf + RELOC/fonts/source/jknappen/fc/fcbxi14.mf + RELOC/fonts/source/jknappen/fc/fcbxi17.mf + RELOC/fonts/source/jknappen/fc/fcbxi20.mf + RELOC/fonts/source/jknappen/fc/fcbxi25.mf + RELOC/fonts/source/jknappen/fc/fcbxi5.mf + RELOC/fonts/source/jknappen/fc/fcbxi6.mf + RELOC/fonts/source/jknappen/fc/fcbxi7.mf + RELOC/fonts/source/jknappen/fc/fcbxi8.mf + RELOC/fonts/source/jknappen/fc/fcbxi9.mf + RELOC/fonts/source/jknappen/fc/fcbxsl10.mf + RELOC/fonts/source/jknappen/fc/fcbxsl11.mf + RELOC/fonts/source/jknappen/fc/fcbxsl12.mf + RELOC/fonts/source/jknappen/fc/fcbxsl14.mf + RELOC/fonts/source/jknappen/fc/fcbxsl17.mf + RELOC/fonts/source/jknappen/fc/fcbxsl20.mf + RELOC/fonts/source/jknappen/fc/fcbxsl25.mf + RELOC/fonts/source/jknappen/fc/fcbxsl5.mf + RELOC/fonts/source/jknappen/fc/fcbxsl6.mf + RELOC/fonts/source/jknappen/fc/fcbxsl7.mf + RELOC/fonts/source/jknappen/fc/fcbxsl8.mf + RELOC/fonts/source/jknappen/fc/fcbxsl9.mf + RELOC/fonts/source/jknappen/fc/fcbxu10.mf + RELOC/fonts/source/jknappen/fc/fcbxu11.mf + RELOC/fonts/source/jknappen/fc/fcbxu12.mf + RELOC/fonts/source/jknappen/fc/fcbxu14.mf + RELOC/fonts/source/jknappen/fc/fcbxu17.mf + RELOC/fonts/source/jknappen/fc/fcbxu20.mf + RELOC/fonts/source/jknappen/fc/fcbxu25.mf + RELOC/fonts/source/jknappen/fc/fcbxu5.mf + RELOC/fonts/source/jknappen/fc/fcbxu6.mf + RELOC/fonts/source/jknappen/fc/fcbxu7.mf + RELOC/fonts/source/jknappen/fc/fcbxu8.mf + RELOC/fonts/source/jknappen/fc/fcbxu9.mf + RELOC/fonts/source/jknappen/fc/fccoding.mf + RELOC/fonts/source/jknappen/fc/fccsc10.mf + RELOC/fonts/source/jknappen/fc/fccsc11.mf + RELOC/fonts/source/jknappen/fc/fccsc12.mf + RELOC/fonts/source/jknappen/fc/fccsc14.mf + RELOC/fonts/source/jknappen/fc/fccsc17.mf + RELOC/fonts/source/jknappen/fc/fccsc20.mf + RELOC/fonts/source/jknappen/fc/fccsc25.mf + RELOC/fonts/source/jknappen/fc/fccsc5.mf + RELOC/fonts/source/jknappen/fc/fccsc6.mf + RELOC/fonts/source/jknappen/fc/fccsc7.mf + RELOC/fonts/source/jknappen/fc/fccsc8.mf + RELOC/fonts/source/jknappen/fc/fccsc9.mf + RELOC/fonts/source/jknappen/fc/fccscspu.mf + RELOC/fonts/source/jknappen/fc/fci10.mf + RELOC/fonts/source/jknappen/fc/fci11.mf + RELOC/fonts/source/jknappen/fc/fci12.mf + RELOC/fonts/source/jknappen/fc/fci14.mf + RELOC/fonts/source/jknappen/fc/fci17.mf + RELOC/fonts/source/jknappen/fc/fci20.mf + RELOC/fonts/source/jknappen/fc/fci25.mf + RELOC/fonts/source/jknappen/fc/fci5.mf + RELOC/fonts/source/jknappen/fc/fci6.mf + RELOC/fonts/source/jknappen/fc/fci7.mf + RELOC/fonts/source/jknappen/fc/fci8.mf + RELOC/fonts/source/jknappen/fc/fci9.mf + RELOC/fonts/source/jknappen/fc/fcilig.mf + RELOC/fonts/source/jknappen/fc/fcitalic.mf + RELOC/fonts/source/jknappen/fc/fcitligt.mf + RELOC/fonts/source/jknappen/fc/fcitlpct.mf + RELOC/fonts/source/jknappen/fc/fcitt10.mf + RELOC/fonts/source/jknappen/fc/fcitt11.mf + RELOC/fonts/source/jknappen/fc/fcitt12.mf + RELOC/fonts/source/jknappen/fc/fcitt14.mf + RELOC/fonts/source/jknappen/fc/fcitt17.mf + RELOC/fonts/source/jknappen/fc/fcitt20.mf + RELOC/fonts/source/jknappen/fc/fcitt25.mf + RELOC/fonts/source/jknappen/fc/fcitt5.mf + RELOC/fonts/source/jknappen/fc/fcitt6.mf + RELOC/fonts/source/jknappen/fc/fcitt7.mf + RELOC/fonts/source/jknappen/fc/fcitt8.mf + RELOC/fonts/source/jknappen/fc/fcitt9.mf + RELOC/fonts/source/jknappen/fc/fcmacros.mf + RELOC/fonts/source/jknappen/fc/fcpunct.mf + RELOC/fonts/source/jknappen/fc/fcr10.mf + RELOC/fonts/source/jknappen/fc/fcr11.mf + RELOC/fonts/source/jknappen/fc/fcr12.mf + RELOC/fonts/source/jknappen/fc/fcr14.mf + RELOC/fonts/source/jknappen/fc/fcr17.mf + RELOC/fonts/source/jknappen/fc/fcr20.mf + RELOC/fonts/source/jknappen/fc/fcr25.mf + RELOC/fonts/source/jknappen/fc/fcr5.mf + RELOC/fonts/source/jknappen/fc/fcr6.mf + RELOC/fonts/source/jknappen/fc/fcr7.mf + RELOC/fonts/source/jknappen/fc/fcr8.mf + RELOC/fonts/source/jknappen/fc/fcr9.mf + RELOC/fonts/source/jknappen/fc/fcrlig.mf + RELOC/fonts/source/jknappen/fc/fcroligt.mf + RELOC/fonts/source/jknappen/fc/fcroman.mf + RELOC/fonts/source/jknappen/fc/fcrompct.mf + RELOC/fonts/source/jknappen/fc/fcscligt.mf + RELOC/fonts/source/jknappen/fc/fcsfligt.mf + RELOC/fonts/source/jknappen/fc/fcsibx10.mf + RELOC/fonts/source/jknappen/fc/fcsibx11.mf + RELOC/fonts/source/jknappen/fc/fcsibx12.mf + RELOC/fonts/source/jknappen/fc/fcsibx14.mf + RELOC/fonts/source/jknappen/fc/fcsibx17.mf + RELOC/fonts/source/jknappen/fc/fcsibx20.mf + RELOC/fonts/source/jknappen/fc/fcsibx25.mf + RELOC/fonts/source/jknappen/fc/fcsibx5.mf + RELOC/fonts/source/jknappen/fc/fcsibx6.mf + RELOC/fonts/source/jknappen/fc/fcsibx7.mf + RELOC/fonts/source/jknappen/fc/fcsibx8.mf + RELOC/fonts/source/jknappen/fc/fcsibx9.mf + RELOC/fonts/source/jknappen/fc/fcsitt10.mf + RELOC/fonts/source/jknappen/fc/fcsitt11.mf + RELOC/fonts/source/jknappen/fc/fcsitt12.mf + RELOC/fonts/source/jknappen/fc/fcsitt14.mf + RELOC/fonts/source/jknappen/fc/fcsitt17.mf + RELOC/fonts/source/jknappen/fc/fcsitt20.mf + RELOC/fonts/source/jknappen/fc/fcsitt25.mf + RELOC/fonts/source/jknappen/fc/fcsitt5.mf + RELOC/fonts/source/jknappen/fc/fcsitt6.mf + RELOC/fonts/source/jknappen/fc/fcsitt7.mf + RELOC/fonts/source/jknappen/fc/fcsitt8.mf + RELOC/fonts/source/jknappen/fc/fcsitt9.mf + RELOC/fonts/source/jknappen/fc/fcsl10.mf + RELOC/fonts/source/jknappen/fc/fcsl11.mf + RELOC/fonts/source/jknappen/fc/fcsl12.mf + RELOC/fonts/source/jknappen/fc/fcsl14.mf + RELOC/fonts/source/jknappen/fc/fcsl17.mf + RELOC/fonts/source/jknappen/fc/fcsl20.mf + RELOC/fonts/source/jknappen/fc/fcsl25.mf + RELOC/fonts/source/jknappen/fc/fcsl5.mf + RELOC/fonts/source/jknappen/fc/fcsl6.mf + RELOC/fonts/source/jknappen/fc/fcsl7.mf + RELOC/fonts/source/jknappen/fc/fcsl8.mf + RELOC/fonts/source/jknappen/fc/fcsl9.mf + RELOC/fonts/source/jknappen/fc/fcss10.mf + RELOC/fonts/source/jknappen/fc/fcss11.mf + RELOC/fonts/source/jknappen/fc/fcss12.mf + RELOC/fonts/source/jknappen/fc/fcss14.mf + RELOC/fonts/source/jknappen/fc/fcss17.mf + RELOC/fonts/source/jknappen/fc/fcss20.mf + RELOC/fonts/source/jknappen/fc/fcss25.mf + RELOC/fonts/source/jknappen/fc/fcss5.mf + RELOC/fonts/source/jknappen/fc/fcss6.mf + RELOC/fonts/source/jknappen/fc/fcss7.mf + RELOC/fonts/source/jknappen/fc/fcss8.mf + RELOC/fonts/source/jknappen/fc/fcss9.mf + RELOC/fonts/source/jknappen/fc/fcssbx10.mf + RELOC/fonts/source/jknappen/fc/fcssbx11.mf + RELOC/fonts/source/jknappen/fc/fcssbx12.mf + RELOC/fonts/source/jknappen/fc/fcssbx14.mf + RELOC/fonts/source/jknappen/fc/fcssbx17.mf + RELOC/fonts/source/jknappen/fc/fcssbx20.mf + RELOC/fonts/source/jknappen/fc/fcssbx25.mf + RELOC/fonts/source/jknappen/fc/fcssbx5.mf + RELOC/fonts/source/jknappen/fc/fcssbx6.mf + RELOC/fonts/source/jknappen/fc/fcssbx7.mf + RELOC/fonts/source/jknappen/fc/fcssbx8.mf + RELOC/fonts/source/jknappen/fc/fcssbx9.mf + RELOC/fonts/source/jknappen/fc/fcssi10.mf + RELOC/fonts/source/jknappen/fc/fcssi11.mf + RELOC/fonts/source/jknappen/fc/fcssi12.mf + RELOC/fonts/source/jknappen/fc/fcssi14.mf + RELOC/fonts/source/jknappen/fc/fcssi17.mf + RELOC/fonts/source/jknappen/fc/fcssi20.mf + RELOC/fonts/source/jknappen/fc/fcssi25.mf + RELOC/fonts/source/jknappen/fc/fcssi5.mf + RELOC/fonts/source/jknappen/fc/fcssi6.mf + RELOC/fonts/source/jknappen/fc/fcssi7.mf + RELOC/fonts/source/jknappen/fc/fcssi8.mf + RELOC/fonts/source/jknappen/fc/fcssi9.mf + RELOC/fonts/source/jknappen/fc/fcsstt10.mf + RELOC/fonts/source/jknappen/fc/fcsstt11.mf + RELOC/fonts/source/jknappen/fc/fcsstt12.mf + RELOC/fonts/source/jknappen/fc/fcsstt14.mf + RELOC/fonts/source/jknappen/fc/fcsstt17.mf + RELOC/fonts/source/jknappen/fc/fcsstt20.mf + RELOC/fonts/source/jknappen/fc/fcsstt25.mf + RELOC/fonts/source/jknappen/fc/fcsstt5.mf + RELOC/fonts/source/jknappen/fc/fcsstt6.mf + RELOC/fonts/source/jknappen/fc/fcsstt7.mf + RELOC/fonts/source/jknappen/fc/fcsstt8.mf + RELOC/fonts/source/jknappen/fc/fcsstt9.mf + RELOC/fonts/source/jknappen/fc/fctt10.mf + RELOC/fonts/source/jknappen/fc/fctt11.mf + RELOC/fonts/source/jknappen/fc/fctt12.mf + RELOC/fonts/source/jknappen/fc/fctt14.mf + RELOC/fonts/source/jknappen/fc/fctt17.mf + RELOC/fonts/source/jknappen/fc/fctt20.mf + RELOC/fonts/source/jknappen/fc/fctt25.mf + RELOC/fonts/source/jknappen/fc/fctt5.mf + RELOC/fonts/source/jknappen/fc/fctt6.mf + RELOC/fonts/source/jknappen/fc/fctt7.mf + RELOC/fonts/source/jknappen/fc/fctt8.mf + RELOC/fonts/source/jknappen/fc/fctt9.mf + RELOC/fonts/source/jknappen/fc/fcttligt.mf + RELOC/fonts/source/jknappen/fc/fcu10.mf + RELOC/fonts/source/jknappen/fc/fcu11.mf + RELOC/fonts/source/jknappen/fc/fcu12.mf + RELOC/fonts/source/jknappen/fc/fcu14.mf + RELOC/fonts/source/jknappen/fc/fcu17.mf + RELOC/fonts/source/jknappen/fc/fcu20.mf + RELOC/fonts/source/jknappen/fc/fcu25.mf + RELOC/fonts/source/jknappen/fc/fcu5.mf + RELOC/fonts/source/jknappen/fc/fcu6.mf + RELOC/fonts/source/jknappen/fc/fcu7.mf + RELOC/fonts/source/jknappen/fc/fcu8.mf + RELOC/fonts/source/jknappen/fc/fcu9.mf + RELOC/fonts/source/jknappen/fc/itala.mf + RELOC/fonts/source/jknappen/fc/italbcd.mf + RELOC/fonts/source/jknappen/fc/itale.mf + RELOC/fonts/source/jknappen/fc/italfgh.mf + RELOC/fonts/source/jknappen/fc/italij.mf + RELOC/fonts/source/jknappen/fc/italklm.mf + RELOC/fonts/source/jknappen/fc/italn.mf + RELOC/fonts/source/jknappen/fc/italo.mf + RELOC/fonts/source/jknappen/fc/italpqr.mf + RELOC/fonts/source/jknappen/fc/italst.mf + RELOC/fonts/source/jknappen/fc/italuvw.mf + RELOC/fonts/source/jknappen/fc/italxyz.mf + RELOC/fonts/source/jknappen/fc/lowera.mf + RELOC/fonts/source/jknappen/fc/lowerbcd.mf + RELOC/fonts/source/jknappen/fc/lowere.mf + RELOC/fonts/source/jknappen/fc/lowerfgh.mf + RELOC/fonts/source/jknappen/fc/lowerij.mf + RELOC/fonts/source/jknappen/fc/lowerklm.mf + RELOC/fonts/source/jknappen/fc/lowern.mf + RELOC/fonts/source/jknappen/fc/lowero.mf + RELOC/fonts/source/jknappen/fc/lowerpqr.mf + RELOC/fonts/source/jknappen/fc/lowerst.mf + RELOC/fonts/source/jknappen/fc/loweruvw.mf + RELOC/fonts/source/jknappen/fc/lowerxyz.mf + RELOC/fonts/source/jknappen/fc/uppera.mf + RELOC/fonts/source/jknappen/fc/upperbcd.mf + RELOC/fonts/source/jknappen/fc/uppere.mf + RELOC/fonts/source/jknappen/fc/upperfgh.mf + RELOC/fonts/source/jknappen/fc/upperij.mf + RELOC/fonts/source/jknappen/fc/upperklm.mf + RELOC/fonts/source/jknappen/fc/uppern.mf + RELOC/fonts/source/jknappen/fc/uppero.mf + RELOC/fonts/source/jknappen/fc/upperpqr.mf + RELOC/fonts/source/jknappen/fc/upperst.mf + RELOC/fonts/source/jknappen/fc/upperuvw.mf + RELOC/fonts/source/jknappen/fc/upperxyz.mf + RELOC/fonts/tfm/jknappen/fc/fcbx10.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx11.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx12.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx14.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx17.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx20.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx25.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx5.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx6.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx7.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx8.tfm + RELOC/fonts/tfm/jknappen/fc/fcbx9.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi10.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi11.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi12.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi14.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi17.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi20.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi25.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi5.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi6.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi7.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi8.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxi9.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl10.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl11.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl12.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl14.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl17.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl20.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl25.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl5.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl6.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl7.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl8.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxsl9.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu10.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu11.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu12.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu14.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu17.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu20.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu25.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu5.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu6.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu7.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu8.tfm + RELOC/fonts/tfm/jknappen/fc/fcbxu9.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc10.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc11.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc12.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc14.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc17.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc20.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc25.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc5.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc6.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc7.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc8.tfm + RELOC/fonts/tfm/jknappen/fc/fccsc9.tfm + RELOC/fonts/tfm/jknappen/fc/fci10.tfm + RELOC/fonts/tfm/jknappen/fc/fci11.tfm + RELOC/fonts/tfm/jknappen/fc/fci12.tfm + RELOC/fonts/tfm/jknappen/fc/fci14.tfm + RELOC/fonts/tfm/jknappen/fc/fci17.tfm + RELOC/fonts/tfm/jknappen/fc/fci20.tfm + RELOC/fonts/tfm/jknappen/fc/fci25.tfm + RELOC/fonts/tfm/jknappen/fc/fci5.tfm + RELOC/fonts/tfm/jknappen/fc/fci6.tfm + RELOC/fonts/tfm/jknappen/fc/fci7.tfm + RELOC/fonts/tfm/jknappen/fc/fci8.tfm + RELOC/fonts/tfm/jknappen/fc/fci9.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt10.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt11.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt12.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt14.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt17.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt20.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt25.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt5.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt6.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt7.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt8.tfm + RELOC/fonts/tfm/jknappen/fc/fcitt9.tfm + RELOC/fonts/tfm/jknappen/fc/fcr10.tfm + RELOC/fonts/tfm/jknappen/fc/fcr11.tfm + RELOC/fonts/tfm/jknappen/fc/fcr12.tfm + RELOC/fonts/tfm/jknappen/fc/fcr14.tfm + RELOC/fonts/tfm/jknappen/fc/fcr17.tfm + RELOC/fonts/tfm/jknappen/fc/fcr20.tfm + RELOC/fonts/tfm/jknappen/fc/fcr25.tfm + RELOC/fonts/tfm/jknappen/fc/fcr5.tfm + RELOC/fonts/tfm/jknappen/fc/fcr6.tfm + RELOC/fonts/tfm/jknappen/fc/fcr7.tfm + RELOC/fonts/tfm/jknappen/fc/fcr8.tfm + RELOC/fonts/tfm/jknappen/fc/fcr9.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx10.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx11.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx12.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx14.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx17.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx20.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx25.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx5.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx6.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx7.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx8.tfm + RELOC/fonts/tfm/jknappen/fc/fcsibx9.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt10.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt11.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt12.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt14.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt17.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt20.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt25.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt5.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt6.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt7.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt8.tfm + RELOC/fonts/tfm/jknappen/fc/fcsitt9.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl10.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl11.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl12.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl14.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl17.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl20.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl25.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl5.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl6.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl7.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl8.tfm + RELOC/fonts/tfm/jknappen/fc/fcsl9.tfm + RELOC/fonts/tfm/jknappen/fc/fcss10.tfm + RELOC/fonts/tfm/jknappen/fc/fcss11.tfm + RELOC/fonts/tfm/jknappen/fc/fcss12.tfm + RELOC/fonts/tfm/jknappen/fc/fcss14.tfm + RELOC/fonts/tfm/jknappen/fc/fcss17.tfm + RELOC/fonts/tfm/jknappen/fc/fcss20.tfm + RELOC/fonts/tfm/jknappen/fc/fcss25.tfm + RELOC/fonts/tfm/jknappen/fc/fcss5.tfm + RELOC/fonts/tfm/jknappen/fc/fcss6.tfm + RELOC/fonts/tfm/jknappen/fc/fcss7.tfm + RELOC/fonts/tfm/jknappen/fc/fcss8.tfm + RELOC/fonts/tfm/jknappen/fc/fcss9.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx10.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx11.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx12.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx14.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx17.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx20.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx25.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx5.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx6.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx7.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx8.tfm + RELOC/fonts/tfm/jknappen/fc/fcssbx9.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi10.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi11.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi12.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi14.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi17.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi20.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi25.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi5.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi6.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi7.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi8.tfm + RELOC/fonts/tfm/jknappen/fc/fcssi9.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt10.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt11.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt12.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt14.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt17.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt20.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt25.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt5.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt6.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt7.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt8.tfm + RELOC/fonts/tfm/jknappen/fc/fcsstt9.tfm + RELOC/fonts/tfm/jknappen/fc/fctt10.tfm + RELOC/fonts/tfm/jknappen/fc/fctt11.tfm + RELOC/fonts/tfm/jknappen/fc/fctt12.tfm + RELOC/fonts/tfm/jknappen/fc/fctt14.tfm + RELOC/fonts/tfm/jknappen/fc/fctt17.tfm + RELOC/fonts/tfm/jknappen/fc/fctt20.tfm + RELOC/fonts/tfm/jknappen/fc/fctt25.tfm + RELOC/fonts/tfm/jknappen/fc/fctt5.tfm + RELOC/fonts/tfm/jknappen/fc/fctt6.tfm + RELOC/fonts/tfm/jknappen/fc/fctt7.tfm + RELOC/fonts/tfm/jknappen/fc/fctt8.tfm + RELOC/fonts/tfm/jknappen/fc/fctt9.tfm + RELOC/fonts/tfm/jknappen/fc/fcu10.tfm + RELOC/fonts/tfm/jknappen/fc/fcu11.tfm + RELOC/fonts/tfm/jknappen/fc/fcu12.tfm + RELOC/fonts/tfm/jknappen/fc/fcu14.tfm + RELOC/fonts/tfm/jknappen/fc/fcu17.tfm + RELOC/fonts/tfm/jknappen/fc/fcu20.tfm + RELOC/fonts/tfm/jknappen/fc/fcu25.tfm + RELOC/fonts/tfm/jknappen/fc/fcu5.tfm + RELOC/fonts/tfm/jknappen/fc/fcu6.tfm + RELOC/fonts/tfm/jknappen/fc/fcu7.tfm + RELOC/fonts/tfm/jknappen/fc/fcu8.tfm + RELOC/fonts/tfm/jknappen/fc/fcu9.tfm + RELOC/tex/latex/fc/fclfont.sty + RELOC/tex/latex/fc/fcuse.sty + RELOC/tex/latex/fc/t4cmr.fd + RELOC/tex/latex/fc/t4cmss.fd + RELOC/tex/latex/fc/t4cmtt.fd + RELOC/tex/latex/fc/t4enc.def + RELOC/tex/latex/fc/t4fcr.fd + RELOC/tex/latex/fc/t4phonet.sty +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-license gpl2 +catalogue-version 1.4 + +name fdsymbol +category Package +revision 26722 +shortdesc A maths symbol font. +relocated 1 +longdesc FdSymbol is a maths symbol font, designed as a companion to the +longdesc Fedra family by Typotheque, but it might also fit other +longdesc contemporary typefaces. +execute addMap fdsymbol.map +runfiles size=471 + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-a.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-b.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-c.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-d.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-e.enc + RELOC/fonts/enc/dvips/fdsymbol/fdsymbol-f.enc + RELOC/fonts/map/dvips/fdsymbol/fdsymbol.map + RELOC/fonts/opentype/public/fdsymbol/FdSymbol-Bold.otf + RELOC/fonts/opentype/public/fdsymbol/FdSymbol-Book.otf + RELOC/fonts/opentype/public/fdsymbol/FdSymbol-Medium.otf + RELOC/fonts/opentype/public/fdsymbol/FdSymbol-Regular.otf + RELOC/fonts/source/public/fdsymbol/FdSymbolA-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolA-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolA-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolA-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolA.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolB.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolC.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolD.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolE.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF-Bold.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF-Book.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF-Medium.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF-Regular.mf + RELOC/fonts/source/public/fdsymbol/FdSymbolF.mf + RELOC/fonts/source/public/fdsymbol/fdaccents.mf + RELOC/fonts/source/public/fdsymbol/fdarrows.mf + RELOC/fonts/source/public/fdsymbol/fdbase.mf + RELOC/fonts/source/public/fdsymbol/fddelims.mf + RELOC/fonts/source/public/fdsymbol/fdgeometric.mf + RELOC/fonts/source/public/fdsymbol/fdoperators.mf + RELOC/fonts/source/public/fdsymbol/fdrelations.mf + RELOC/fonts/source/public/fdsymbol/fdturnstile.mf + RELOC/fonts/tfm/public/fdsymbol/FdSymbolA-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolA-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolA-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolA-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolB-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolB-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolB-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolB-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolC-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolC-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolC-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolC-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolD-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolD-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolD-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolD-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolE-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolE-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolE-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolE-Regular.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolF-Bold.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolF-Book.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolF-Medium.tfm + RELOC/fonts/tfm/public/fdsymbol/FdSymbolF-Regular.tfm + RELOC/fonts/type1/public/fdsymbol/FdSymbolA-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolA-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolA-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolA-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolB-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolB-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolB-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolB-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolC-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolC-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolC-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolC-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolD-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolD-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolD-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolD-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolE-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolE-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolE-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolE-Regular.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Bold.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Book.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Medium.pfb + RELOC/fonts/type1/public/fdsymbol/FdSymbolF-Regular.pfb + RELOC/tex/latex/fdsymbol/fdsymbol.sty +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-ctan /fonts/fdsymbol +catalogue-date 2014-04-26 20:03:33 +0200 +catalogue-license ofl +catalogue-version 0.8 + +name featpost +category Package +revision 35346 +shortdesc MetaPost macros for 3D. +relocated 1 +longdesc These macros allow the production of three-dimensional schemes +longdesc containing: angles, circles, cylinders, cones and spheres, +longdesc among other things. +runfiles size=36 + RELOC/metapost/featpost/featpost.mp + RELOC/metapost/featpost/featpost3Dplus2D.mp +docfiles size=5985 + RELOC/doc/metapost/featpost/MPexamples.html + RELOC/doc/metapost/featpost/README + RELOC/doc/metapost/featpost/bash/COMPILE.sh + RELOC/doc/metapost/featpost/bash/dvipngproof.sh + RELOC/doc/metapost/featpost/bash/laproof.sh + RELOC/doc/metapost/featpost/bash/makehtmlindex.sh + RELOC/doc/metapost/featpost/bash/pdflatexproof.sh + RELOC/doc/metapost/featpost/bash/pngmaker.sh + RELOC/doc/metapost/featpost/doc/Exemplifier.pdf + RELOC/doc/metapost/featpost/doc/alldefs.txt + RELOC/doc/metapost/featpost/doc/featpostbeamer.pdf + RELOC/doc/metapost/featpost/doc/featpostbeamer.tex + RELOC/doc/metapost/featpost/doc/featpostdocsource.tex + RELOC/doc/metapost/featpost/doc/featpostmanual.pdf + 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.tex + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/3.eps + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/3.jpeg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/3.pgm + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/CompanionsCollection.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/Diagram1.dia + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/Diagram1.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/KnuthCollection.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/dia.png + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/fekslatexmp.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/fekslatexmp.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/intersection2D.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/intersection2D.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/metapostpropaganda.png + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal-1.mps + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal-1.pdf + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.jpeg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/minimal.png + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpaf.jpeg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafphoto.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.0 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.10 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.11 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.12 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.13 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.14 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.15 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.2 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.3 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.4 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.5 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.6 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.7 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.8 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.9 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/pifpafpropaganda.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.2 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.3 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/recursives.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/sriyantrafinal-1.svg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/sriyantrafinal.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/todo.jpg + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.1 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.2 + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/workflow-from-mpman-charts.mp + RELOC/doc/metapost/featpost/doc/metapostpropagandafiles/xfig.png + RELOC/doc/metapost/featpost/doc/otherinfo/BezierApprox.pdf + RELOC/doc/metapost/featpost/doc/otherinfo/CHANGESv1.803.txt + RELOC/doc/metapost/featpost/doc/otherinfo/Zpravodaj2009-4.pdf + RELOC/doc/metapost/featpost/doc/otherinfo/jdbug.png + RELOC/doc/metapost/featpost/doc/otherinfo/tb88henderson.pdf + RELOC/doc/metapost/featpost/example/38.mp + RELOC/doc/metapost/featpost/example/A131.mp + RELOC/doc/metapost/featpost/example/CAT.mp + RELOC/doc/metapost/featpost/example/DebianSwirlsmallEdited.mp + RELOC/doc/metapost/featpost/example/EBcrossed.mp + RELOC/doc/metapost/featpost/example/LED.mp + RELOC/doc/metapost/featpost/example/SlowDownNowBitmapScanned.mp + RELOC/doc/metapost/featpost/example/acmaglev.mp + RELOC/doc/metapost/featpost/example/acoplanv.mp + RELOC/doc/metapost/featpost/example/ahoraesglobal.mp + RELOC/doc/metapost/featpost/example/aledlogo.mp + RELOC/doc/metapost/featpost/example/allgreatideas.mp + RELOC/doc/metapost/featpost/example/anglinerigorouscircle.mp + RELOC/doc/metapost/featpost/example/antimattermeteor.mp + RELOC/doc/metapost/featpost/example/avalzero.mp + RELOC/doc/metapost/featpost/example/badshreeyantra.mp + RELOC/doc/metapost/featpost/example/balllauncher.mp + RELOC/doc/metapost/featpost/example/bananadimmer.mp + RELOC/doc/metapost/featpost/example/beautiful00.mp + RELOC/doc/metapost/featpost/example/bichaepolicia.mp + RELOC/doc/metapost/featpost/example/brownellips.mp + RELOC/doc/metapost/featpost/example/bstr.mp + RELOC/doc/metapost/featpost/example/bughunt.mp + RELOC/doc/metapost/featpost/example/buildcyclebug.mp + RELOC/doc/metapost/featpost/example/canschemes.mp + RELOC/doc/metapost/featpost/example/cap29res.mp + RELOC/doc/metapost/featpost/example/caratk3edit.mp + RELOC/doc/metapost/featpost/example/cartaxes.mp + RELOC/doc/metapost/featpost/example/casadopessoal.mp + RELOC/doc/metapost/featpost/example/cellevolve.mp + RELOC/doc/metapost/featpost/example/cinemwork.mp + RELOC/doc/metapost/featpost/example/circlespeedprofile.mp + RELOC/doc/metapost/featpost/example/closingbox.mp + RELOC/doc/metapost/featpost/example/cmykropes.mp + RELOC/doc/metapost/featpost/example/cone.mp + RELOC/doc/metapost/featpost/example/conegetready.mp + RELOC/doc/metapost/featpost/example/conicurv.mp + RELOC/doc/metapost/featpost/example/conoscopy.mp + RELOC/doc/metapost/featpost/example/convergingspirals.mp + RELOC/doc/metapost/featpost/example/crossingline.mp + RELOC/doc/metapost/featpost/example/cruztuga.mp + RELOC/doc/metapost/featpost/example/cubicfacecentered.mp + RELOC/doc/metapost/featpost/example/cubicfigures.mp + RELOC/doc/metapost/featpost/example/cubicstructurefcc.mp + RELOC/doc/metapost/featpost/example/cubicstructures.mp + RELOC/doc/metapost/featpost/example/cylimple.mp + RELOC/doc/metapost/featpost/example/cylinderborders.mp + RELOC/doc/metapost/featpost/example/daliasensor.mp + RELOC/doc/metapost/featpost/example/decorstatement.mp + RELOC/doc/metapost/featpost/example/defaultcmr.mp + RELOC/doc/metapost/featpost/example/deperspective.mp + RELOC/doc/metapost/featpost/example/derivondatriang.mp + RELOC/doc/metapost/featpost/example/diameters.mp + RELOC/doc/metapost/featpost/example/directfonts.mp + RELOC/doc/metapost/featpost/example/doitnow.mp + RELOC/doc/metapost/featpost/example/downloadicon.mp + RELOC/doc/metapost/featpost/example/dreamhouse.mp + RELOC/doc/metapost/featpost/example/durgayantra.mp + RELOC/doc/metapost/featpost/example/eemcsblabla.mp + RELOC/doc/metapost/featpost/example/electricpotential.mp + RELOC/doc/metapost/featpost/example/electrospiral.mp + RELOC/doc/metapost/featpost/example/ellipticextrusionpress.mp + RELOC/doc/metapost/featpost/example/ellipticprism.mp + RELOC/doc/metapost/featpost/example/ellipticproperties.mp + RELOC/doc/metapost/featpost/example/elliptictable.mp + RELOC/doc/metapost/featpost/example/ellipticthing.mp + RELOC/doc/metapost/featpost/example/embroncordada.mp + RELOC/doc/metapost/featpost/example/emptylines.mp + RELOC/doc/metapost/featpost/example/equilatrianglelines.mp + RELOC/doc/metapost/featpost/example/equilibriodetorques.mp + RELOC/doc/metapost/featpost/example/esteveslogo.mp + RELOC/doc/metapost/featpost/example/experimental.mp + RELOC/doc/metapost/featpost/example/experimental2Dsetup.mp + RELOC/doc/metapost/featpost/example/f1aula03.mp + RELOC/doc/metapost/featpost/example/f1aula05.mp + RELOC/doc/metapost/featpost/example/fakehole.mp + RELOC/doc/metapost/featpost/example/fallinthewind.mp + RELOC/doc/metapost/featpost/example/featpostlogo.mp + RELOC/doc/metapost/featpost/example/ffcbob.mp + RELOC/doc/metapost/featpost/example/fieldlines.mp + RELOC/doc/metapost/featpost/example/fieldlinesnorma.mp + RELOC/doc/metapost/featpost/example/fieldlinesnormapaper.mp + RELOC/doc/metapost/featpost/example/fieldlinesnormapaperwork.mp + RELOC/doc/metapost/featpost/example/fis1prex.mp + RELOC/doc/metapost/featpost/example/fis3prex.mp + RELOC/doc/metapost/featpost/example/fis3prex7.mp + RELOC/doc/metapost/featpost/example/fis3prey.mp + RELOC/doc/metapost/featpost/example/frustum.mp + RELOC/doc/metapost/featpost/example/galvanometro-inducao.mp + RELOC/doc/metapost/featpost/example/gausslawframe.mp + RELOC/doc/metapost/featpost/example/geombasic.mp + RELOC/doc/metapost/featpost/example/geomcasq.mp + RELOC/doc/metapost/featpost/example/geometricaverage.mp + RELOC/doc/metapost/featpost/example/geomfiguei.mp + RELOC/doc/metapost/featpost/example/geomfreder.mp + RELOC/doc/metapost/featpost/example/geommine.mp + RELOC/doc/metapost/featpost/example/geomsrinath.mp + RELOC/doc/metapost/featpost/example/gnupost.mp + RELOC/doc/metapost/featpost/example/gnupost3Dlogo.mp + RELOC/doc/metapost/featpost/example/goldenellipse.mp + RELOC/doc/metapost/featpost/example/graphene.mp + RELOC/doc/metapost/featpost/example/graphexample.mp + RELOC/doc/metapost/featpost/example/graphs.mp + RELOC/doc/metapost/featpost/example/halfcirclesfear.mp + RELOC/doc/metapost/featpost/example/hap.mp + RELOC/doc/metapost/featpost/example/heatfromroom.mp + RELOC/doc/metapost/featpost/example/helix.mp + RELOC/doc/metapost/featpost/example/hermitespliknot.mp + RELOC/doc/metapost/featpost/example/hexacylon.mp + RELOC/doc/metapost/featpost/example/hexagonalgrid.mp + RELOC/doc/metapost/featpost/example/hexagonaltrimesh.mp + RELOC/doc/metapost/featpost/example/hiddenlinegraph.mp + RELOC/doc/metapost/featpost/example/hiddensurface.mp + RELOC/doc/metapost/featpost/example/hiddensurfaces.mp + RELOC/doc/metapost/featpost/example/iamsorrykarl.mp + RELOC/doc/metapost/featpost/example/inductionbob.mp + RELOC/doc/metapost/featpost/example/integerbars.mp + RELOC/doc/metapost/featpost/example/integratorfigures.mp + RELOC/doc/metapost/featpost/example/interdigitrodes.mp + RELOC/doc/metapost/featpost/example/intersectorus.mp + RELOC/doc/metapost/featpost/example/intersectprolatespheroid.mp + RELOC/doc/metapost/featpost/example/iplaca.mp + RELOC/doc/metapost/featpost/example/jd44.mp + RELOC/doc/metapost/featpost/example/jdbug.mp + RELOC/doc/metapost/featpost/example/joinedemptylines.mp + RELOC/doc/metapost/featpost/example/keplernewtonfeynman.mp + RELOC/doc/metapost/featpost/example/kindofcube.mp + RELOC/doc/metapost/featpost/example/kindofcuber.mp + RELOC/doc/metapost/featpost/example/kopptrammel.mp + RELOC/doc/metapost/featpost/example/labelconstruct.mp + RELOC/doc/metapost/featpost/example/labelinspace.mp + RELOC/doc/metapost/featpost/example/lamarquejaune.mp + RELOC/doc/metapost/featpost/example/lasermachine.mp + RELOC/doc/metapost/featpost/example/latexboxes.mp + RELOC/doc/metapost/featpost/example/lawofcosines.mp + RELOC/doc/metapost/featpost/example/lcurvature.mp + RELOC/doc/metapost/featpost/example/ledlogo.mp + RELOC/doc/metapost/featpost/example/lgc2refractionEdited.mp + RELOC/doc/metapost/featpost/example/loglogpaper.mp + RELOC/doc/metapost/featpost/example/logofontest.mp + RELOC/doc/metapost/featpost/example/lowcostgreenhouse.mp + RELOC/doc/metapost/featpost/example/magneticflux.mp + RELOC/doc/metapost/featpost/example/mainmemtest.mp + RELOC/doc/metapost/featpost/example/manjusha.mp + RELOC/doc/metapost/featpost/example/matricskoc.mp + RELOC/doc/metapost/featpost/example/mce-lng.mp + RELOC/doc/metapost/featpost/example/metalcharge.mp + RELOC/doc/metapost/featpost/example/micostufas.mp + RELOC/doc/metapost/featpost/example/micromu.mp + RELOC/doc/metapost/featpost/example/milimetricpaper.mp + RELOC/doc/metapost/featpost/example/mpfields.mp + RELOC/doc/metapost/featpost/example/mptoolcone.mp + RELOC/doc/metapost/featpost/example/muslimpattern.mp + RELOC/doc/metapost/featpost/example/mypatent.mp + RELOC/doc/metapost/featpost/example/mypatentpieces.mp + RELOC/doc/metapost/featpost/example/mysquaresectionbar.mp + RELOC/doc/metapost/featpost/example/naoestacionar.mp + RELOC/doc/metapost/featpost/example/naotocanacalote.mp + RELOC/doc/metapost/featpost/example/nembends.mp + RELOC/doc/metapost/featpost/example/nembiaxi.mp + RELOC/doc/metapost/featpost/example/nemdirector.mp + RELOC/doc/metapost/featpost/example/nemquira.mp + RELOC/doc/metapost/featpost/example/nemquirapitch.mp + RELOC/doc/metapost/featpost/example/nemsaddl.mp + RELOC/doc/metapost/featpost/example/nemuniax.mp + RELOC/doc/metapost/featpost/example/newcommunism.mp + RELOC/doc/metapost/featpost/example/newexperimental.mp + RELOC/doc/metapost/featpost/example/nosimples.mp + RELOC/doc/metapost/featpost/example/nosuspension.mp + RELOC/doc/metapost/featpost/example/nsmetica.mp + RELOC/doc/metapost/featpost/example/nulldefectanglexample.mp + RELOC/doc/metapost/featpost/example/nurbstobeziern.mp + RELOC/doc/metapost/featpost/example/onebigword.mp + RELOC/doc/metapost/featpost/example/optest.mp + RELOC/doc/metapost/featpost/example/optica.mp + RELOC/doc/metapost/featpost/example/par3Dplotexamples.mp + RELOC/doc/metapost/featpost/example/parabolaonthestage.mp + RELOC/doc/metapost/featpost/example/parafuso.mp + RELOC/doc/metapost/featpost/example/parafusoprojxy.mp + RELOC/doc/metapost/featpost/example/pathernon.mp + RELOC/doc/metapost/featpost/example/pathofstraightline.mp + RELOC/doc/metapost/featpost/example/perspec.mp + RELOC/doc/metapost/featpost/example/photorefer.mp + RELOC/doc/metapost/featpost/example/photoreverse.mp + RELOC/doc/metapost/featpost/example/pifpaf.mp + RELOC/doc/metapost/featpost/example/pixelgrid.mp + RELOC/doc/metapost/featpost/example/plaintangency.mp + RELOC/doc/metapost/featpost/example/planintersection.mp + RELOC/doc/metapost/featpost/example/planpht.mp + RELOC/doc/metapost/featpost/example/polyhedr.mp + RELOC/doc/metapost/featpost/example/positivecharge.mp + RELOC/doc/metapost/featpost/example/potenciadecicloeliptico.mp + RELOC/doc/metapost/featpost/example/probtodooterr.mp + RELOC/doc/metapost/featpost/example/profaux.mp + RELOC/doc/metapost/featpost/example/project.mp + RELOC/doc/metapost/featpost/example/qap.mp + RELOC/doc/metapost/featpost/example/quartertorus.mp + RELOC/doc/metapost/featpost/example/radiativeforcing.mp + RELOC/doc/metapost/featpost/example/raiodoscirculos.mp + RELOC/doc/metapost/featpost/example/redplanet.mp + RELOC/doc/metapost/featpost/example/reeditedgoodquestionmark.mp + RELOC/doc/metapost/featpost/example/resistcircuit.mp + RELOC/doc/metapost/featpost/example/reuleaux.mp + RELOC/doc/metapost/featpost/example/revolipsoid.mp + RELOC/doc/metapost/featpost/example/revolutionparaboloid.mp + RELOC/doc/metapost/featpost/example/revolvers.mp + RELOC/doc/metapost/featpost/example/rigorcubo.mp + RELOC/doc/metapost/featpost/example/rigorouscircle.mp + RELOC/doc/metapost/featpost/example/rigorouscone.mp + RELOC/doc/metapost/featpost/example/rigorousdiscSD.mp + RELOC/doc/metapost/featpost/example/rigorousdiscoptions.mp + RELOC/doc/metapost/featpost/example/rigorousfearpath.mp + RELOC/doc/metapost/featpost/example/rmnbob.mp + RELOC/doc/metapost/featpost/example/roadincline.mp + RELOC/doc/metapost/featpost/example/rodarolaremplaninc.mp + RELOC/doc/metapost/featpost/example/ropepatterns.mp + RELOC/doc/metapost/featpost/example/rosadosventos.mp + RELOC/doc/metapost/featpost/example/rotatnlc.mp + RELOC/doc/metapost/featpost/example/rothexagrid.mp + RELOC/doc/metapost/featpost/example/rungekuttasecond.mp + RELOC/doc/metapost/featpost/example/sal.mp + RELOC/doc/metapost/featpost/example/sap.mp + RELOC/doc/metapost/featpost/example/saturn.mp + RELOC/doc/metapost/featpost/example/sfearschem.mp + RELOC/doc/metapost/featpost/example/sharpraytrace.mp + RELOC/doc/metapost/featpost/example/signalvertexSD.mp + RELOC/doc/metapost/featpost/example/simplecar.mp + RELOC/doc/metapost/featpost/example/simplecarparam.mp + RELOC/doc/metapost/featpost/example/simplecenterofmass.mp + RELOC/doc/metapost/featpost/example/simplelens.mp + RELOC/doc/metapost/featpost/example/simplependulum.mp + RELOC/doc/metapost/featpost/example/simplexperiment.mp + RELOC/doc/metapost/featpost/example/sincityredesigned.mp + RELOC/doc/metapost/featpost/example/slingshot.mp + RELOC/doc/metapost/featpost/example/smC.mp + RELOC/doc/metapost/featpost/example/sniperlogo.mp + RELOC/doc/metapost/featpost/example/solarconcentrator.mp + RELOC/doc/metapost/featpost/example/solardish.mp + RELOC/doc/metapost/featpost/example/some2Dvecs.mp + RELOC/doc/metapost/featpost/example/spaceinvader.mp + RELOC/doc/metapost/featpost/example/spatialhalfsfear.mp + RELOC/doc/metapost/featpost/example/spherample.mp + RELOC/doc/metapost/featpost/example/splineperspective.mp + RELOC/doc/metapost/featpost/example/splineperspectives.mp + RELOC/doc/metapost/featpost/example/spltwiben.mp + RELOC/doc/metapost/featpost/example/squareanglines.mp + RELOC/doc/metapost/featpost/example/srinathpolineni.mp + RELOC/doc/metapost/featpost/example/stageforthree.mp + RELOC/doc/metapost/featpost/example/statement.mp + RELOC/doc/metapost/featpost/example/statethreelines.mp + RELOC/doc/metapost/featpost/example/steamcamera.mp + RELOC/doc/metapost/featpost/example/strength1defect.mp + RELOC/doc/metapost/featpost/example/symbol.mp + RELOC/doc/metapost/featpost/example/tangency2D.mp + RELOC/doc/metapost/featpost/example/tangencypoint.mp + RELOC/doc/metapost/featpost/example/tdarrow.mp + RELOC/doc/metapost/featpost/example/tdcircarrow.mp + RELOC/doc/metapost/featpost/example/telemira.mp + RELOC/doc/metapost/featpost/example/telheiro.mp + RELOC/doc/metapost/featpost/example/tete.mp + RELOC/doc/metapost/featpost/example/tetrapodes.mp + RELOC/doc/metapost/featpost/example/theHURD.mp + RELOC/doc/metapost/featpost/example/thearchicon.mp + RELOC/doc/metapost/featpost/example/thethreekindsofperspec.mp + RELOC/doc/metapost/featpost/example/thunderproblem.mp + RELOC/doc/metapost/featpost/example/tiposdetrans.mp + RELOC/doc/metapost/featpost/example/tiposdetransb.mp + RELOC/doc/metapost/featpost/example/tiposdetranst.mp + RELOC/doc/metapost/featpost/example/toro4transit.mp + RELOC/doc/metapost/featpost/example/torus.mp + RELOC/doc/metapost/featpost/example/torusexperiment.mp + RELOC/doc/metapost/featpost/example/trajectoryline.mp + RELOC/doc/metapost/featpost/example/trebuchet.mp + RELOC/doc/metapost/featpost/example/treecarbonedited.mp + RELOC/doc/metapost/featpost/example/trianglecenterofmass.mp + RELOC/doc/metapost/featpost/example/triangulartrimesh.mp + RELOC/doc/metapost/featpost/example/trig.mp + RELOC/doc/metapost/featpost/example/trigonometry.mp + RELOC/doc/metapost/featpost/example/troncoconedef.mp + RELOC/doc/metapost/featpost/example/tropicalglobe.mp + RELOC/doc/metapost/featpost/example/troysfear.mp + RELOC/doc/metapost/featpost/example/tshirtfig.mp + RELOC/doc/metapost/featpost/example/tuftescatter.mp + RELOC/doc/metapost/featpost/example/twistflat.mp + RELOC/doc/metapost/featpost/example/twistnlc.mp + RELOC/doc/metapost/featpost/example/twistroundbiax.mp + RELOC/doc/metapost/featpost/example/twoDcolision.mp + RELOC/doc/metapost/featpost/example/twocyclestogether.mp + RELOC/doc/metapost/featpost/example/twoholes.mp + RELOC/doc/metapost/featpost/example/twoplustwo.mp + RELOC/doc/metapost/featpost/example/twosolarpanels.mp + RELOC/doc/metapost/featpost/example/twoupcones.mp + RELOC/doc/metapost/featpost/example/ubhtransients.mp + RELOC/doc/metapost/featpost/example/ultraeye.mp + RELOC/doc/metapost/featpost/example/ultraimprovertex.mp + RELOC/doc/metapost/featpost/example/unperfection.mp + RELOC/doc/metapost/featpost/example/unperfectionremoved.mp + RELOC/doc/metapost/featpost/example/vanallenbelt.mp + RELOC/doc/metapost/featpost/example/verygoodcone.mp + RELOC/doc/metapost/featpost/example/wwfpmp.mp + RELOC/doc/metapost/featpost/example/xcmplaca2buraquads.mp + RELOC/doc/metapost/featpost/example/xraycamera.mp + RELOC/doc/metapost/featpost/png/38.1.png + RELOC/doc/metapost/featpost/png/A131.1.png + RELOC/doc/metapost/featpost/png/CAT.1.png + RELOC/doc/metapost/featpost/png/DebianSwirlsmallEdited.1.png + RELOC/doc/metapost/featpost/png/EBcrossed.1.png + RELOC/doc/metapost/featpost/png/LED.1.png + RELOC/doc/metapost/featpost/png/SlowDownNowBitmapScanned.1.png + RELOC/doc/metapost/featpost/png/acmaglev.1.png + RELOC/doc/metapost/featpost/png/acoplanv.1.png + RELOC/doc/metapost/featpost/png/ahoraesglobal.1.png + RELOC/doc/metapost/featpost/png/aledlogo.1.png + RELOC/doc/metapost/featpost/png/aledlogo.2.png + RELOC/doc/metapost/featpost/png/allgreatideas.1.png + RELOC/doc/metapost/featpost/png/anglinerigorouscircle.1.png + RELOC/doc/metapost/featpost/png/antimattermeteor.1.png + RELOC/doc/metapost/featpost/png/avalzero.1.png + RELOC/doc/metapost/featpost/png/avalzero.2.png + RELOC/doc/metapost/featpost/png/avalzero.3.png + RELOC/doc/metapost/featpost/png/avalzero.4.png + RELOC/doc/metapost/featpost/png/badshreeyantra.1.png + RELOC/doc/metapost/featpost/png/balllauncher.0.png + RELOC/doc/metapost/featpost/png/balllauncher.9.png + RELOC/doc/metapost/featpost/png/bananadimmer.1.png + RELOC/doc/metapost/featpost/png/beautiful00.1.png + RELOC/doc/metapost/featpost/png/bichaepolicia.0.png + RELOC/doc/metapost/featpost/png/brownellips.0.png + RELOC/doc/metapost/featpost/png/bstr.1.png + RELOC/doc/metapost/featpost/png/bughunt.1.png + RELOC/doc/metapost/featpost/png/bughunt.2.png + RELOC/doc/metapost/featpost/png/buildcyclebug.1.png + RELOC/doc/metapost/featpost/png/buildcyclebug.2.png + RELOC/doc/metapost/featpost/png/canschemes.1.png + RELOC/doc/metapost/featpost/png/canschemes.2.png + RELOC/doc/metapost/featpost/png/canschemes.3.png + RELOC/doc/metapost/featpost/png/cap29res.1.png + RELOC/doc/metapost/featpost/png/cap29res.2.png + RELOC/doc/metapost/featpost/png/cap29res.3.png + RELOC/doc/metapost/featpost/png/cap29res.4.png + RELOC/doc/metapost/featpost/png/cap29res.5.png + RELOC/doc/metapost/featpost/png/cap29res.6.png + RELOC/doc/metapost/featpost/png/cap29res.7.png + RELOC/doc/metapost/featpost/png/cap29res.8.png + RELOC/doc/metapost/featpost/png/cap29res.9.png + RELOC/doc/metapost/featpost/png/caratk3edit.1.png + RELOC/doc/metapost/featpost/png/cartaxes.1.png + RELOC/doc/metapost/featpost/png/cartaxes.2.png + RELOC/doc/metapost/featpost/png/casadopessoal.1.png + RELOC/doc/metapost/featpost/png/casadopessoal.2.png + RELOC/doc/metapost/featpost/png/casadopessoal.3.png + RELOC/doc/metapost/featpost/png/casadopessoal.4.png + RELOC/doc/metapost/featpost/png/cellevolve.0.png + RELOC/doc/metapost/featpost/png/cinemwork.1.png + RELOC/doc/metapost/featpost/png/cinemwork.2.png + RELOC/doc/metapost/featpost/png/circlespeedprofile.1.png + RELOC/doc/metapost/featpost/png/closingbox.1.png + RELOC/doc/metapost/featpost/png/cmykropes.1.png + RELOC/doc/metapost/featpost/png/cone.1.png + RELOC/doc/metapost/featpost/png/conegetready.1.png + RELOC/doc/metapost/featpost/png/conicurv.1.png + RELOC/doc/metapost/featpost/png/conoscopy.1.png + RELOC/doc/metapost/featpost/png/conoscopy.2.png + RELOC/doc/metapost/featpost/png/conoscopy.3.png + RELOC/doc/metapost/featpost/png/conoscopy.4.png + RELOC/doc/metapost/featpost/png/conoscopy.5.png + RELOC/doc/metapost/featpost/png/convergingspirals.1.png + RELOC/doc/metapost/featpost/png/convergingspirals.2.png + RELOC/doc/metapost/featpost/png/convergingspirals.3.png + RELOC/doc/metapost/featpost/png/convergingspirals.4.png + RELOC/doc/metapost/featpost/png/convergingspirals.5.png + RELOC/doc/metapost/featpost/png/crossingline.1.png + RELOC/doc/metapost/featpost/png/crossingline.2.png + RELOC/doc/metapost/featpost/png/crossingline.3.png + RELOC/doc/metapost/featpost/png/cruztuga.1.png + RELOC/doc/metapost/featpost/png/cubicfacecentered.1.png + RELOC/doc/metapost/featpost/png/cubicfigures.1.png + RELOC/doc/metapost/featpost/png/cubicfigures.2.png + RELOC/doc/metapost/featpost/png/cubicfigures.3.png + RELOC/doc/metapost/featpost/png/cubicstructurefcc.1.png + RELOC/doc/metapost/featpost/png/cubicstructures.1.png + RELOC/doc/metapost/featpost/png/cubicstructures.2.png + RELOC/doc/metapost/featpost/png/cubicstructures.3.png + RELOC/doc/metapost/featpost/png/cubicstructures.4.png + RELOC/doc/metapost/featpost/png/cubicstructures.5.png + RELOC/doc/metapost/featpost/png/cubicstructures.6.png + RELOC/doc/metapost/featpost/png/cylimple.1.png + RELOC/doc/metapost/featpost/png/cylinderborders.1.png + RELOC/doc/metapost/featpost/png/daliasensor.1.png + RELOC/doc/metapost/featpost/png/decorstatement.0.png + RELOC/doc/metapost/featpost/png/defaultcmr.0.png + RELOC/doc/metapost/featpost/png/deperspective.1.png + RELOC/doc/metapost/featpost/png/deperspective.2.png + RELOC/doc/metapost/featpost/png/deperspective.3.png + RELOC/doc/metapost/featpost/png/deperspective.4.png + RELOC/doc/metapost/featpost/png/derivondatriang.1.png + RELOC/doc/metapost/featpost/png/diameters.1.png + RELOC/doc/metapost/featpost/png/directfonts.0.png + RELOC/doc/metapost/featpost/png/doitnow.1.png + RELOC/doc/metapost/featpost/png/downloadicon.1.png + RELOC/doc/metapost/featpost/png/dreamhouse.1.png + RELOC/doc/metapost/featpost/png/dreamhouse.2.png + RELOC/doc/metapost/featpost/png/durgayantra.1.png + RELOC/doc/metapost/featpost/png/durgayantra.2.png + RELOC/doc/metapost/featpost/png/eemcsblabla.1.png + RELOC/doc/metapost/featpost/png/electricpotential.0.png + RELOC/doc/metapost/featpost/png/electricpotential.1.png + RELOC/doc/metapost/featpost/png/electricpotential.2.png + RELOC/doc/metapost/featpost/png/electricpotential.3.png + RELOC/doc/metapost/featpost/png/electrospiral.1.png + RELOC/doc/metapost/featpost/png/ellipticextrusionpress.1.png + RELOC/doc/metapost/featpost/png/ellipticprism.1.png + RELOC/doc/metapost/featpost/png/ellipticproperties.1.png + RELOC/doc/metapost/featpost/png/elliptictable.1.png + RELOC/doc/metapost/featpost/png/ellipticthing.1.png + RELOC/doc/metapost/featpost/png/embroncordada.1.png + RELOC/doc/metapost/featpost/png/emptylines.1.png + RELOC/doc/metapost/featpost/png/equilatrianglelines.1.png + RELOC/doc/metapost/featpost/png/equilibriodetorques.1.png + RELOC/doc/metapost/featpost/png/esteveslogo.1.png + RELOC/doc/metapost/featpost/png/experimental.1.png + RELOC/doc/metapost/featpost/png/experimental2Dsetup.1.png + RELOC/doc/metapost/featpost/png/f1aula03.1.png + RELOC/doc/metapost/featpost/png/f1aula03.2.png + RELOC/doc/metapost/featpost/png/f1aula03.3.png + RELOC/doc/metapost/featpost/png/f1aula03.4.png + RELOC/doc/metapost/featpost/png/f1aula05.1.png + RELOC/doc/metapost/featpost/png/f1aula05.2.png + RELOC/doc/metapost/featpost/png/fakehole.1.png + RELOC/doc/metapost/featpost/png/fakehole.2.png + RELOC/doc/metapost/featpost/png/fallinthewind.1.png + RELOC/doc/metapost/featpost/png/featpostlogo.1.png + RELOC/doc/metapost/featpost/png/ffcbob.1.png + RELOC/doc/metapost/featpost/png/fieldlines.1.png + RELOC/doc/metapost/featpost/png/fieldlinesnorma.1.png + RELOC/doc/metapost/featpost/png/fieldlinesnorma.2.png + RELOC/doc/metapost/featpost/png/fieldlinesnormapaper.1.png + RELOC/doc/metapost/featpost/png/fieldlinesnormapaper.2.png + RELOC/doc/metapost/featpost/png/fieldlinesnormapaperwork.1.png + RELOC/doc/metapost/featpost/png/fis1prex.1.png + RELOC/doc/metapost/featpost/png/fis1prex.2.png + RELOC/doc/metapost/featpost/png/fis1prex.3.png + RELOC/doc/metapost/featpost/png/fis3prex.1.png + RELOC/doc/metapost/featpost/png/fis3prex.2.png + RELOC/doc/metapost/featpost/png/fis3prex.3.png + RELOC/doc/metapost/featpost/png/fis3prex.4.png + RELOC/doc/metapost/featpost/png/fis3prex.5.png + RELOC/doc/metapost/featpost/png/fis3prex.6.png + RELOC/doc/metapost/featpost/png/fis3prex.7.png + RELOC/doc/metapost/featpost/png/fis3prex.8.png + RELOC/doc/metapost/featpost/png/fis3prex.9.png + RELOC/doc/metapost/featpost/png/fis3prex7.1.png + RELOC/doc/metapost/featpost/png/fis3prex7.2.png + RELOC/doc/metapost/featpost/png/fis3prex7.3.png + RELOC/doc/metapost/featpost/png/fis3prex7.4.png + RELOC/doc/metapost/featpost/png/fis3prex7.5.png + RELOC/doc/metapost/featpost/png/fis3prex7.6.png + RELOC/doc/metapost/featpost/png/fis3prex7.7.png + RELOC/doc/metapost/featpost/png/fis3prex7.8.png + RELOC/doc/metapost/featpost/png/fis3prey.1.png + RELOC/doc/metapost/featpost/png/fis3prey.2.png + RELOC/doc/metapost/featpost/png/fis3prey.3.png + RELOC/doc/metapost/featpost/png/frustum.1.png + RELOC/doc/metapost/featpost/png/galvanometro-inducao.1.png + RELOC/doc/metapost/featpost/png/gausslawframe.1.png + RELOC/doc/metapost/featpost/png/geombasic.1.png + RELOC/doc/metapost/featpost/png/geomcasq.1.png + RELOC/doc/metapost/featpost/png/geometricaverage.1.png + RELOC/doc/metapost/featpost/png/geomfiguei.1.png + RELOC/doc/metapost/featpost/png/geomfreder.1.png + RELOC/doc/metapost/featpost/png/geommine.1.png + RELOC/doc/metapost/featpost/png/geomsrinath.1.png + RELOC/doc/metapost/featpost/png/gnupost.1.png + RELOC/doc/metapost/featpost/png/gnupost3Dlogo.1.png + RELOC/doc/metapost/featpost/png/goldenellipse.1.png + RELOC/doc/metapost/featpost/png/graphene.1.png + RELOC/doc/metapost/featpost/png/graphexample.1.png + RELOC/doc/metapost/featpost/png/graphs.1.png + RELOC/doc/metapost/featpost/png/graphs.2.png + RELOC/doc/metapost/featpost/png/halfcirclesfear.1.png + RELOC/doc/metapost/featpost/png/hap.1.png + RELOC/doc/metapost/featpost/png/heatfromroom.1.png + RELOC/doc/metapost/featpost/png/helix.1.png + RELOC/doc/metapost/featpost/png/hermitespliknot.1.png + RELOC/doc/metapost/featpost/png/hexacylon.1.png + RELOC/doc/metapost/featpost/png/hexagonalgrid.1.png + RELOC/doc/metapost/featpost/png/hexagonalgrid.2.png + RELOC/doc/metapost/featpost/png/hexagonalgrid.3.png + RELOC/doc/metapost/featpost/png/hexagonaltrimesh.1.png + RELOC/doc/metapost/featpost/png/hiddenlinegraph.1.png + RELOC/doc/metapost/featpost/png/hiddensurface.1.png + RELOC/doc/metapost/featpost/png/hiddensurfaces.1.png + RELOC/doc/metapost/featpost/png/iamsorrykarl.1.png + RELOC/doc/metapost/featpost/png/inductionbob.1.png + RELOC/doc/metapost/featpost/png/integerbars.1.png + RELOC/doc/metapost/featpost/png/integratorfigures.1.png + RELOC/doc/metapost/featpost/png/integratorfigures.2.png + RELOC/doc/metapost/featpost/png/interdigitrodes.1.png + RELOC/doc/metapost/featpost/png/intersectorus.1.png + RELOC/doc/metapost/featpost/png/intersectprolatespheroid.1.png + RELOC/doc/metapost/featpost/png/iplaca.1.png + RELOC/doc/metapost/featpost/png/jd44.1.png + RELOC/doc/metapost/featpost/png/jd44.2.png + RELOC/doc/metapost/featpost/png/jd44.3.png + RELOC/doc/metapost/featpost/png/jd44.4.png + RELOC/doc/metapost/featpost/png/jdbug.1.png + RELOC/doc/metapost/featpost/png/jdbug.2.png + RELOC/doc/metapost/featpost/png/joinedemptylines.1.png + RELOC/doc/metapost/featpost/png/keplernewtonfeynman.1.png + RELOC/doc/metapost/featpost/png/kindofcube.1.png + RELOC/doc/metapost/featpost/png/kindofcube.2.png + RELOC/doc/metapost/featpost/png/kindofcuber.1.png + RELOC/doc/metapost/featpost/png/kopptrammel.1.png + RELOC/doc/metapost/featpost/png/labelconstruct.1.png + RELOC/doc/metapost/featpost/png/labelinspace.1.png + RELOC/doc/metapost/featpost/png/lamarquejaune.1.png + RELOC/doc/metapost/featpost/png/lasermachine.1.png + RELOC/doc/metapost/featpost/png/latexboxes.0.png + RELOC/doc/metapost/featpost/png/latexboxes.1.png + RELOC/doc/metapost/featpost/png/lawofcosines.1.png + RELOC/doc/metapost/featpost/png/lawofcosines.2.png + RELOC/doc/metapost/featpost/png/lcurvature.1.png + RELOC/doc/metapost/featpost/png/lcurvature.2.png + RELOC/doc/metapost/featpost/png/ledlogo.1.png + RELOC/doc/metapost/featpost/png/ledlogo.2.png + RELOC/doc/metapost/featpost/png/ledlogo.3.png + RELOC/doc/metapost/featpost/png/ledlogo.4.png + RELOC/doc/metapost/featpost/png/lgc2refractionEdited.1.png + RELOC/doc/metapost/featpost/png/lgc2refractionEdited.2.png + RELOC/doc/metapost/featpost/png/lgc2refractionEdited.3.png + RELOC/doc/metapost/featpost/png/lgc2refractionEdited.4.png + RELOC/doc/metapost/featpost/png/loglogpaper.1.png + RELOC/doc/metapost/featpost/png/logofontest.0.png + RELOC/doc/metapost/featpost/png/lowcostgreenhouse.1.png + RELOC/doc/metapost/featpost/png/magneticflux.1.png + RELOC/doc/metapost/featpost/png/magneticflux.2.png + RELOC/doc/metapost/featpost/png/mainmemtest.1.png + RELOC/doc/metapost/featpost/png/manjusha.1.png + RELOC/doc/metapost/featpost/png/manjusha.4.png + RELOC/doc/metapost/featpost/png/manjusha.6.png + RELOC/doc/metapost/featpost/png/matricskoc.1.png + RELOC/doc/metapost/featpost/png/mce-lng.1.png + RELOC/doc/metapost/featpost/png/metalcharge.1.png + RELOC/doc/metapost/featpost/png/micostufas.1.png + RELOC/doc/metapost/featpost/png/micromu.1.png + RELOC/doc/metapost/featpost/png/milimetricpaper.1.png + RELOC/doc/metapost/featpost/png/milimetricpaper.2.png + RELOC/doc/metapost/featpost/png/mpfields.0.png + RELOC/doc/metapost/featpost/png/mpfields.1.png + RELOC/doc/metapost/featpost/png/mpfields.2.png + RELOC/doc/metapost/featpost/png/mpfields.3.png + RELOC/doc/metapost/featpost/png/mpfields.4.png + RELOC/doc/metapost/featpost/png/mpfields.5.png + RELOC/doc/metapost/featpost/png/mpfields.6.png + RELOC/doc/metapost/featpost/png/mpfields.7.png + RELOC/doc/metapost/featpost/png/mptoolcone.0.png + RELOC/doc/metapost/featpost/png/muslimpattern.1.png + RELOC/doc/metapost/featpost/png/muslimpattern.2.png + RELOC/doc/metapost/featpost/png/mypatent.1.png + RELOC/doc/metapost/featpost/png/mypatent.2.png + RELOC/doc/metapost/featpost/png/mypatent.3.png + RELOC/doc/metapost/featpost/png/mypatent.4.png + RELOC/doc/metapost/featpost/png/mypatentpieces.1.png + RELOC/doc/metapost/featpost/png/mysquaresectionbar.1.png + RELOC/doc/metapost/featpost/png/naoestacionar.1.png + RELOC/doc/metapost/featpost/png/naotocanacalote.1.png + RELOC/doc/metapost/featpost/png/nembends.1.png + RELOC/doc/metapost/featpost/png/nembiaxi.1.png + RELOC/doc/metapost/featpost/png/nemdirector.1.png + RELOC/doc/metapost/featpost/png/nemquira.1.png + RELOC/doc/metapost/featpost/png/nemquirapitch.1.png + RELOC/doc/metapost/featpost/png/nemsaddl.1.png + RELOC/doc/metapost/featpost/png/nemuniax.1.png + RELOC/doc/metapost/featpost/png/newcommunism.1.png + RELOC/doc/metapost/featpost/png/newcommunism.2.png + RELOC/doc/metapost/featpost/png/newexperimental.1.png + RELOC/doc/metapost/featpost/png/nosimples.1.png + RELOC/doc/metapost/featpost/png/nosuspension.0.png + RELOC/doc/metapost/featpost/png/nsmetica.1.png + RELOC/doc/metapost/featpost/png/nulldefectanglexample.1.png + RELOC/doc/metapost/featpost/png/nulldefectanglexample.2.png + RELOC/doc/metapost/featpost/png/nulldefectanglexample.3.png + RELOC/doc/metapost/featpost/png/nulldefectanglexample.4.png + RELOC/doc/metapost/featpost/png/nurbstobeziern.0.png + RELOC/doc/metapost/featpost/png/onebigword.1.png + RELOC/doc/metapost/featpost/png/optest.1.png + RELOC/doc/metapost/featpost/png/optest.2.png + RELOC/doc/metapost/featpost/png/optica.1.png + RELOC/doc/metapost/featpost/png/par3Dplotexamples.1.png + RELOC/doc/metapost/featpost/png/par3Dplotexamples.2.png + RELOC/doc/metapost/featpost/png/parafuso.1.png + RELOC/doc/metapost/featpost/png/parafuso.2.png + RELOC/doc/metapost/featpost/png/parafuso.3.png + RELOC/doc/metapost/featpost/png/parafuso.4.png + RELOC/doc/metapost/featpost/png/parafusoprojxy.1.png + RELOC/doc/metapost/featpost/png/pathernon.0.png + RELOC/doc/metapost/featpost/png/pathofstraightline.1.png + RELOC/doc/metapost/featpost/png/perspec.1.png + RELOC/doc/metapost/featpost/png/photorefer.1.png + RELOC/doc/metapost/featpost/png/photorefer.2.png + RELOC/doc/metapost/featpost/png/photoreverse.1.png + RELOC/doc/metapost/featpost/png/pifpaf.1.png + RELOC/doc/metapost/featpost/png/pixelgrid.1.png + RELOC/doc/metapost/featpost/png/plaintangency.0.png + RELOC/doc/metapost/featpost/png/plaintangency.1.png + RELOC/doc/metapost/featpost/png/planintersection.1.png + RELOC/doc/metapost/featpost/png/planpht.1.png + RELOC/doc/metapost/featpost/png/planpht.2.png + RELOC/doc/metapost/featpost/png/planpht.3.png + RELOC/doc/metapost/featpost/png/planpht.4.png + RELOC/doc/metapost/featpost/png/planpht.5.png + RELOC/doc/metapost/featpost/png/planpht.6.png + RELOC/doc/metapost/featpost/png/planpht.7.png + RELOC/doc/metapost/featpost/png/polyhedr.1.png + RELOC/doc/metapost/featpost/png/polyhedr.2.png + RELOC/doc/metapost/featpost/png/polyhedr.3.png + RELOC/doc/metapost/featpost/png/positivecharge.1.png + RELOC/doc/metapost/featpost/png/potenciadecicloeliptico.1.png + RELOC/doc/metapost/featpost/png/probtodooterr.1.png + RELOC/doc/metapost/featpost/png/profaux.1.png + RELOC/doc/metapost/featpost/png/project.1.png + RELOC/doc/metapost/featpost/png/qap.1.png + RELOC/doc/metapost/featpost/png/quartertorus.1.png + RELOC/doc/metapost/featpost/png/quartertorus.2.png + RELOC/doc/metapost/featpost/png/radiativeforcing.0.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.1.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.2.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.3.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.4.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.5.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.6.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.7.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.8.png + RELOC/doc/metapost/featpost/png/raiodoscirculos.9.png + RELOC/doc/metapost/featpost/png/redplanet.1.png + RELOC/doc/metapost/featpost/png/reeditedgoodquestionmark.1.png + RELOC/doc/metapost/featpost/png/resistcircuit.1.png + RELOC/doc/metapost/featpost/png/reuleaux.1.png + RELOC/doc/metapost/featpost/png/reuleaux.2.png + RELOC/doc/metapost/featpost/png/revolipsoid.1.png + RELOC/doc/metapost/featpost/png/revolipsoid.2.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.1.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.2.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.3.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.4.png + RELOC/doc/metapost/featpost/png/revolutionparaboloid.5.png + RELOC/doc/metapost/featpost/png/revolvers.1.png + RELOC/doc/metapost/featpost/png/revolvers.2.png + RELOC/doc/metapost/featpost/png/revolvers.3.png + RELOC/doc/metapost/featpost/png/revolvers.4.png + RELOC/doc/metapost/featpost/png/revolvers.5.png + RELOC/doc/metapost/featpost/png/revolvers.6.png + RELOC/doc/metapost/featpost/png/revolvers.7.png + RELOC/doc/metapost/featpost/png/rigorcubo.0.png + RELOC/doc/metapost/featpost/png/rigorouscircle.1.png + RELOC/doc/metapost/featpost/png/rigorouscone.1.png + RELOC/doc/metapost/featpost/png/rigorousdiscSD.1.png + RELOC/doc/metapost/featpost/png/rigorousdiscoptions.1.png + RELOC/doc/metapost/featpost/png/rigorousfearpath.1.png + RELOC/doc/metapost/featpost/png/rmnbob.1.png + RELOC/doc/metapost/featpost/png/roadincline.1.png + RELOC/doc/metapost/featpost/png/rodarolaremplaninc.1.png + RELOC/doc/metapost/featpost/png/ropepatterns.1.png + RELOC/doc/metapost/featpost/png/rosadosventos.1.png + RELOC/doc/metapost/featpost/png/rotatnlc.1.png + RELOC/doc/metapost/featpost/png/rothexagrid.1.png + RELOC/doc/metapost/featpost/png/rungekuttasecond.1.png + RELOC/doc/metapost/featpost/png/rungekuttasecond.2.png + RELOC/doc/metapost/featpost/png/sal.1.png + RELOC/doc/metapost/featpost/png/sal.2.png + RELOC/doc/metapost/featpost/png/sap.1.png + RELOC/doc/metapost/featpost/png/saturn.1.png + RELOC/doc/metapost/featpost/png/sfearschem.1.png + RELOC/doc/metapost/featpost/png/sharpraytrace.1.png + RELOC/doc/metapost/featpost/png/sharpraytrace.2.png + RELOC/doc/metapost/featpost/png/sharpraytrace.3.png + RELOC/doc/metapost/featpost/png/sharpraytrace.4.png + RELOC/doc/metapost/featpost/png/signalvertexSD.1.png + RELOC/doc/metapost/featpost/png/simplecar.1.png + RELOC/doc/metapost/featpost/png/simplecarparam.1.png + RELOC/doc/metapost/featpost/png/simplecenterofmass.0.png + RELOC/doc/metapost/featpost/png/simplecenterofmass.1.png + RELOC/doc/metapost/featpost/png/simplelens.1.png + RELOC/doc/metapost/featpost/png/simplependulum.1.png + RELOC/doc/metapost/featpost/png/simplexperiment.1.png + RELOC/doc/metapost/featpost/png/sincityredesigned.1.png + RELOC/doc/metapost/featpost/png/sincityredesigned.2.png + RELOC/doc/metapost/featpost/png/slingshot.1.png + RELOC/doc/metapost/featpost/png/smC.1.png + RELOC/doc/metapost/featpost/png/sniperlogo.1.png + RELOC/doc/metapost/featpost/png/solarconcentrator.1.png + RELOC/doc/metapost/featpost/png/solardish.1.png + RELOC/doc/metapost/featpost/png/solardish.2.png + RELOC/doc/metapost/featpost/png/solardish.3.png + RELOC/doc/metapost/featpost/png/solardish.4.png + RELOC/doc/metapost/featpost/png/some2Dvecs.1.png + RELOC/doc/metapost/featpost/png/spaceinvader.1.png + RELOC/doc/metapost/featpost/png/spaceinvader.2.png + RELOC/doc/metapost/featpost/png/spatialhalfsfear.1.png + RELOC/doc/metapost/featpost/png/spherample.1.png + RELOC/doc/metapost/featpost/png/splineperspective.0.png + RELOC/doc/metapost/featpost/png/splineperspective.1.png + RELOC/doc/metapost/featpost/png/splineperspective.2.png + RELOC/doc/metapost/featpost/png/splineperspective.3.png + RELOC/doc/metapost/featpost/png/splineperspective.4.png + RELOC/doc/metapost/featpost/png/splineperspective.5.png + RELOC/doc/metapost/featpost/png/splineperspectives.1.png + RELOC/doc/metapost/featpost/png/splineperspectives.2.png + RELOC/doc/metapost/featpost/png/splineperspectives.3.png + RELOC/doc/metapost/featpost/png/spltwiben.1.png + RELOC/doc/metapost/featpost/png/squareanglines.1.png + RELOC/doc/metapost/featpost/png/srinathpolineni.1.png + RELOC/doc/metapost/featpost/png/srinathpolineni.2.png + RELOC/doc/metapost/featpost/png/srinathpolineni.3.png + RELOC/doc/metapost/featpost/png/srinathpolineni.5.png + RELOC/doc/metapost/featpost/png/srinathpolineni.6.png + RELOC/doc/metapost/featpost/png/srinathpolineni.7.png + RELOC/doc/metapost/featpost/png/srinathpolineni.8.png + RELOC/doc/metapost/featpost/png/srinathpolineni.9.png + RELOC/doc/metapost/featpost/png/stageforthree.1.png + RELOC/doc/metapost/featpost/png/stageforthree.2.png + RELOC/doc/metapost/featpost/png/stageforthree.3.png + RELOC/doc/metapost/featpost/png/statement.1.png + RELOC/doc/metapost/featpost/png/statement.2.png + RELOC/doc/metapost/featpost/png/statethreelines.0.png + RELOC/doc/metapost/featpost/png/steamcamera.0.png + RELOC/doc/metapost/featpost/png/strength1defect.1.png + RELOC/doc/metapost/featpost/png/symbol.1.png + RELOC/doc/metapost/featpost/png/tangency2D.1.png + RELOC/doc/metapost/featpost/png/tangencypoint.1.png + RELOC/doc/metapost/featpost/png/tdarrow.1.png + RELOC/doc/metapost/featpost/png/tdcircarrow.1.png + RELOC/doc/metapost/featpost/png/telemira.1.png + RELOC/doc/metapost/featpost/png/telheiro.1.png + RELOC/doc/metapost/featpost/png/telheiro.2.png + RELOC/doc/metapost/featpost/png/tete.1.png + RELOC/doc/metapost/featpost/png/tetrapodes.1.png + RELOC/doc/metapost/featpost/png/tetrapodes.2.png + RELOC/doc/metapost/featpost/png/tetrapodes.3.png + RELOC/doc/metapost/featpost/png/theHURD.1.png + RELOC/doc/metapost/featpost/png/thearchicon.1.png + RELOC/doc/metapost/featpost/png/thethreekindsofperspec.1.png + RELOC/doc/metapost/featpost/png/thethreekindsofperspec.2.png + RELOC/doc/metapost/featpost/png/thethreekindsofperspec.3.png + RELOC/doc/metapost/featpost/png/thunderproblem.1.png + RELOC/doc/metapost/featpost/png/tiposdetrans.1.png + RELOC/doc/metapost/featpost/png/tiposdetransb.1.png + RELOC/doc/metapost/featpost/png/tiposdetranst.1.png + RELOC/doc/metapost/featpost/png/toro4transit.1.png + RELOC/doc/metapost/featpost/png/torus.1.png + RELOC/doc/metapost/featpost/png/torus.2.png + RELOC/doc/metapost/featpost/png/torus.3.png + RELOC/doc/metapost/featpost/png/torus.4.png + RELOC/doc/metapost/featpost/png/torus.5.png + RELOC/doc/metapost/featpost/png/torus.6.png + RELOC/doc/metapost/featpost/png/torus.7.png + RELOC/doc/metapost/featpost/png/torusexperiment.1.png + RELOC/doc/metapost/featpost/png/torusexperiment.2.png + RELOC/doc/metapost/featpost/png/trajectoryline.1.png + RELOC/doc/metapost/featpost/png/trajectoryline.2.png + RELOC/doc/metapost/featpost/png/trebuchet.1.png + RELOC/doc/metapost/featpost/png/treecarbonedited.0.png + RELOC/doc/metapost/featpost/png/trianglecenterofmass.1.png + RELOC/doc/metapost/featpost/png/triangulartrimesh.1.png + RELOC/doc/metapost/featpost/png/trig.1.png + RELOC/doc/metapost/featpost/png/trigonometry.1.png + RELOC/doc/metapost/featpost/png/troncoconedef.0.png + RELOC/doc/metapost/featpost/png/tropicalglobe.1.png + RELOC/doc/metapost/featpost/png/tropicalglobe.2.png + RELOC/doc/metapost/featpost/png/tropicalglobe.3.png + RELOC/doc/metapost/featpost/png/troysfear.1.png + RELOC/doc/metapost/featpost/png/tshirtfig.1.png + RELOC/doc/metapost/featpost/png/tuftescatter.1.png + RELOC/doc/metapost/featpost/png/twistflat.1.png + RELOC/doc/metapost/featpost/png/twistnlc.1.png + RELOC/doc/metapost/featpost/png/twistroundbiax.1.png + RELOC/doc/metapost/featpost/png/twoDcolision.1.png + RELOC/doc/metapost/featpost/png/twocyclestogether.1.png + RELOC/doc/metapost/featpost/png/twoholes.1.png + RELOC/doc/metapost/featpost/png/twoplustwo.1.png + RELOC/doc/metapost/featpost/png/twosolarpanels.1.png + RELOC/doc/metapost/featpost/png/twoupcones.1.png + RELOC/doc/metapost/featpost/png/ubhtransients.0.png + RELOC/doc/metapost/featpost/png/ultraeye.1.png + RELOC/doc/metapost/featpost/png/ultraimprovertex.1.png + RELOC/doc/metapost/featpost/png/ultraimprovertex.2.png + RELOC/doc/metapost/featpost/png/ultraimprovertex.3.png + RELOC/doc/metapost/featpost/png/unperfection.1.png + RELOC/doc/metapost/featpost/png/unperfectionremoved.1.png + RELOC/doc/metapost/featpost/png/vanallenbelt.1.png + RELOC/doc/metapost/featpost/png/vanallenbelt.2.png + RELOC/doc/metapost/featpost/png/verygoodcone.1.png + RELOC/doc/metapost/featpost/png/wwfpmp.1.png + RELOC/doc/metapost/featpost/png/xcmplaca2buraquads.1.png + RELOC/doc/metapost/featpost/png/xraycamera.1.png +catalogue-ctan /graphics/metapost/contrib/macros/featpost +catalogue-date 2014-10-09 21:22:26 +0200 +catalogue-license gpl +catalogue-version 0.8.8 + +name fei +category Package +revision 38364 +shortdesc Class for academic works at FEI University Center -- Brazil +relocated 1 +longdesc fei is a class created by graduate students and LaTeX +longdesc enthusiasts that allows students from FEI University Center to +longdesc create their academic works, be it a monograph, masters +longdesc dissertation or phd thesis, under the typographic rules of the +longdesc institution. The class makes it possible to create a full +longdesc academic work, supporting functionalities such as cover, title +longdesc page, catalog entry, dedication, summary, lists of figures, +longdesc tables, algorithms, acronyms and symbols, multiple authors, +longdesc index, references, appendices and attachments. fei is loosely +longdesc based in the Brazilian National Standards Organization +longdesc (Associacao Brasileira de Normas Tecnicas, ABNT) standards for +longdesc the creation of academic works, such as ABNT NBR 10520:2002 +longdesc (Citations) and ABNT NBR 6023:2002 (Bibliographic References). +runfiles size=5 + RELOC/tex/latex/fei/fei.cls +docfiles size=80 + RELOC/doc/latex/fei/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/referencias.bib +srcfiles size=22 + RELOC/source/latex/fei/fei.dtx + RELOC/source/latex/fei/fei.ins +catalogue-ctan /macros/latex/contrib/fei +catalogue-date 2015-09-11 14:57:10 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 2.0 + +name fenixpar +category Package +revision 24730 +shortdesc One-shot changes to token registers such as \everypar. +relocated 1 +longdesc The bundle provides two packages, fenxitok and fenixpar. The +longdesc fenixtok package provides user macros to add material to a +longdesc token register; the material will be (automatically) removed +longdesc from the token register when the register is executed. Material +longdesc may be added either to the left or to the right, and care is +longdesc taken not to override any redefinition that may be included in +longdesc the token register itself. The fenixpar package uses the macros +longdesc of fenixtok to provide a user interface to manipulation of the +longdesc \everypar token register. The packages require the e-TeX +longdesc extensions; with them, they work either with Plain TeX or with +longdesc LaTeX. +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-license lppl +catalogue-version 0.92 + +name fetamont +category Package +revision 37411 +shortdesc Extended version of Knuth's logo typeface. +relocated 1 +longdesc The fetamont typeface was designed in METAFONT and extends the +longdesc Logo fonts to complete the T1 encoding. The designs of the +longdesc glyphs A, E, F, M, N, O, P, S and T are based on the METAFONT +longdesc constructions by D. E. Knuth. The glyphs Y and 1 imitate the +longdesc shapes of the corresponding glyphs in the METATYPE1 logo. +execute addMap fetamont.map +runfiles size=2069 + RELOC/fonts/afm/public/fetamont/ffmb10.afm + RELOC/fonts/afm/public/fetamont/ffmb8.afm + RELOC/fonts/afm/public/fetamont/ffmb9.afm + RELOC/fonts/afm/public/fetamont/ffmbc40.afm + RELOC/fonts/afm/public/fetamont/ffmbco40.afm + RELOC/fonts/afm/public/fetamont/ffmbo10.afm + RELOC/fonts/afm/public/fetamont/ffmbo8.afm + RELOC/fonts/afm/public/fetamont/ffmbo9.afm + RELOC/fonts/afm/public/fetamont/ffmbw10.afm + RELOC/fonts/afm/public/fetamont/ffmbwo10.afm + RELOC/fonts/afm/public/fetamont/ffmc10.afm + RELOC/fonts/afm/public/fetamont/ffmco10.afm + RELOC/fonts/afm/public/fetamont/ffmh10.afm + RELOC/fonts/afm/public/fetamont/ffmh8.afm + RELOC/fonts/afm/public/fetamont/ffmh9.afm + RELOC/fonts/afm/public/fetamont/ffmho10.afm + RELOC/fonts/afm/public/fetamont/ffmho8.afm + RELOC/fonts/afm/public/fetamont/ffmho9.afm + RELOC/fonts/afm/public/fetamont/ffmhw10.afm + RELOC/fonts/afm/public/fetamont/ffmhwo10.afm + RELOC/fonts/afm/public/fetamont/ffml10.afm + RELOC/fonts/afm/public/fetamont/ffmlc10.afm + RELOC/fonts/afm/public/fetamont/ffmlco10.afm + RELOC/fonts/afm/public/fetamont/ffmlo10.afm + RELOC/fonts/afm/public/fetamont/ffmlq10.afm + RELOC/fonts/afm/public/fetamont/ffmlqo10.afm + RELOC/fonts/afm/public/fetamont/ffmlw10.afm + RELOC/fonts/afm/public/fetamont/ffmlwo10.afm + RELOC/fonts/afm/public/fetamont/ffmo10.afm + RELOC/fonts/afm/public/fetamont/ffmo8.afm + RELOC/fonts/afm/public/fetamont/ffmo9.afm + RELOC/fonts/afm/public/fetamont/ffmr10.afm + RELOC/fonts/afm/public/fetamont/ffmr8.afm + RELOC/fonts/afm/public/fetamont/ffmr9.afm + RELOC/fonts/afm/public/fetamont/ffmw10.afm + RELOC/fonts/afm/public/fetamont/ffmwo10.afm + RELOC/fonts/map/dvips/fetamont/fetamont.map + RELOC/fonts/opentype/public/fetamont/ffmb10.otf + RELOC/fonts/opentype/public/fetamont/ffmb8.otf + RELOC/fonts/opentype/public/fetamont/ffmb9.otf + RELOC/fonts/opentype/public/fetamont/ffmbc40.otf + RELOC/fonts/opentype/public/fetamont/ffmbco40.otf + RELOC/fonts/opentype/public/fetamont/ffmbo10.otf + RELOC/fonts/opentype/public/fetamont/ffmbo8.otf + RELOC/fonts/opentype/public/fetamont/ffmbo9.otf + RELOC/fonts/opentype/public/fetamont/ffmbw10.otf + RELOC/fonts/opentype/public/fetamont/ffmbwo10.otf + RELOC/fonts/opentype/public/fetamont/ffmc10.otf + RELOC/fonts/opentype/public/fetamont/ffmco10.otf + RELOC/fonts/opentype/public/fetamont/ffmh10.otf + RELOC/fonts/opentype/public/fetamont/ffmh8.otf + RELOC/fonts/opentype/public/fetamont/ffmh9.otf + RELOC/fonts/opentype/public/fetamont/ffmho10.otf + RELOC/fonts/opentype/public/fetamont/ffmho8.otf + RELOC/fonts/opentype/public/fetamont/ffmho9.otf + RELOC/fonts/opentype/public/fetamont/ffmhw10.otf + RELOC/fonts/opentype/public/fetamont/ffmhwo10.otf + RELOC/fonts/opentype/public/fetamont/ffml10.otf + RELOC/fonts/opentype/public/fetamont/ffmlc10.otf + RELOC/fonts/opentype/public/fetamont/ffmlco10.otf + RELOC/fonts/opentype/public/fetamont/ffmlo10.otf + RELOC/fonts/opentype/public/fetamont/ffmlq10.otf + RELOC/fonts/opentype/public/fetamont/ffmlqo10.otf + RELOC/fonts/opentype/public/fetamont/ffmlw10.otf + RELOC/fonts/opentype/public/fetamont/ffmlwo10.otf + RELOC/fonts/opentype/public/fetamont/ffmo10.otf + RELOC/fonts/opentype/public/fetamont/ffmo8.otf + RELOC/fonts/opentype/public/fetamont/ffmo9.otf + RELOC/fonts/opentype/public/fetamont/ffmr10.otf + RELOC/fonts/opentype/public/fetamont/ffmr8.otf + RELOC/fonts/opentype/public/fetamont/ffmr9.otf + RELOC/fonts/opentype/public/fetamont/ffmw10.otf + RELOC/fonts/opentype/public/fetamont/ffmwo10.otf + RELOC/fonts/source/public/fetamont/ffmb10.mf + RELOC/fonts/source/public/fetamont/ffmb8.mf + RELOC/fonts/source/public/fetamont/ffmb9.mf + RELOC/fonts/source/public/fetamont/ffmbase.mf + RELOC/fonts/source/public/fetamont/ffmbc40.mf + RELOC/fonts/source/public/fetamont/ffmbco40.mf + RELOC/fonts/source/public/fetamont/ffmbo10.mf + RELOC/fonts/source/public/fetamont/ffmbo8.mf + RELOC/fonts/source/public/fetamont/ffmbo9.mf + RELOC/fonts/source/public/fetamont/ffmbw10.mf + RELOC/fonts/source/public/fetamont/ffmbwo10.mf + RELOC/fonts/source/public/fetamont/ffmc10.mf + RELOC/fonts/source/public/fetamont/ffmchars_nonscalable.mf + RELOC/fonts/source/public/fetamont/ffmchars_scalable.mf + RELOC/fonts/source/public/fetamont/ffmco10.mf + RELOC/fonts/source/public/fetamont/ffmh10.mf + RELOC/fonts/source/public/fetamont/ffmh8.mf + RELOC/fonts/source/public/fetamont/ffmh9.mf + RELOC/fonts/source/public/fetamont/ffmho10.mf + RELOC/fonts/source/public/fetamont/ffmho8.mf + RELOC/fonts/source/public/fetamont/ffmho9.mf + RELOC/fonts/source/public/fetamont/ffmhw10.mf + RELOC/fonts/source/public/fetamont/ffmhwo10.mf + RELOC/fonts/source/public/fetamont/ffml10.mf + RELOC/fonts/source/public/fetamont/ffmlc10.mf + RELOC/fonts/source/public/fetamont/ffmlco10.mf + RELOC/fonts/source/public/fetamont/ffmlo10.mf + RELOC/fonts/source/public/fetamont/ffmlq10.mf + RELOC/fonts/source/public/fetamont/ffmlqo10.mf + RELOC/fonts/source/public/fetamont/ffmlw10.mf + RELOC/fonts/source/public/fetamont/ffmlwo10.mf + RELOC/fonts/source/public/fetamont/ffmo10.mf + RELOC/fonts/source/public/fetamont/ffmo8.mf + RELOC/fonts/source/public/fetamont/ffmo9.mf + RELOC/fonts/source/public/fetamont/ffmr10.mf + RELOC/fonts/source/public/fetamont/ffmr8.mf + RELOC/fonts/source/public/fetamont/ffmr9.mf + RELOC/fonts/source/public/fetamont/ffmw10.mf + RELOC/fonts/source/public/fetamont/ffmwo10.mf + RELOC/fonts/tfm/public/fetamont/ffmb10.tfm + RELOC/fonts/tfm/public/fetamont/ffmb8.tfm + RELOC/fonts/tfm/public/fetamont/ffmb9.tfm + RELOC/fonts/tfm/public/fetamont/ffmbc40.tfm + RELOC/fonts/tfm/public/fetamont/ffmbco40.tfm + RELOC/fonts/tfm/public/fetamont/ffmbo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmbo8.tfm + RELOC/fonts/tfm/public/fetamont/ffmbo9.tfm + RELOC/fonts/tfm/public/fetamont/ffmbw10.tfm + RELOC/fonts/tfm/public/fetamont/ffmbwo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmc10.tfm + RELOC/fonts/tfm/public/fetamont/ffmco10.tfm + RELOC/fonts/tfm/public/fetamont/ffmh10.tfm + RELOC/fonts/tfm/public/fetamont/ffmh8.tfm + RELOC/fonts/tfm/public/fetamont/ffmh9.tfm + RELOC/fonts/tfm/public/fetamont/ffmho10.tfm + RELOC/fonts/tfm/public/fetamont/ffmho8.tfm + RELOC/fonts/tfm/public/fetamont/ffmho9.tfm + RELOC/fonts/tfm/public/fetamont/ffmhw10.tfm + RELOC/fonts/tfm/public/fetamont/ffmhwo10.tfm + RELOC/fonts/tfm/public/fetamont/ffml10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlc10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlco10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlq10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlqo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlw10.tfm + RELOC/fonts/tfm/public/fetamont/ffmlwo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmo10.tfm + RELOC/fonts/tfm/public/fetamont/ffmo8.tfm + RELOC/fonts/tfm/public/fetamont/ffmo9.tfm + RELOC/fonts/tfm/public/fetamont/ffmr10.tfm + RELOC/fonts/tfm/public/fetamont/ffmr8.tfm + RELOC/fonts/tfm/public/fetamont/ffmr9.tfm + RELOC/fonts/tfm/public/fetamont/ffmw10.tfm + RELOC/fonts/tfm/public/fetamont/ffmwo10.tfm + RELOC/fonts/type1/public/fetamont/ffmb10.pfb + RELOC/fonts/type1/public/fetamont/ffmb8.pfb + RELOC/fonts/type1/public/fetamont/ffmb9.pfb + RELOC/fonts/type1/public/fetamont/ffmbc40.pfb + RELOC/fonts/type1/public/fetamont/ffmbco40.pfb + RELOC/fonts/type1/public/fetamont/ffmbo10.pfb + RELOC/fonts/type1/public/fetamont/ffmbo8.pfb + RELOC/fonts/type1/public/fetamont/ffmbo9.pfb + RELOC/fonts/type1/public/fetamont/ffmbw10.pfb + RELOC/fonts/type1/public/fetamont/ffmbwo10.pfb + RELOC/fonts/type1/public/fetamont/ffmc10.pfb + RELOC/fonts/type1/public/fetamont/ffmco10.pfb + RELOC/fonts/type1/public/fetamont/ffmh10.pfb + RELOC/fonts/type1/public/fetamont/ffmh8.pfb + RELOC/fonts/type1/public/fetamont/ffmh9.pfb + RELOC/fonts/type1/public/fetamont/ffmho10.pfb + RELOC/fonts/type1/public/fetamont/ffmho8.pfb + RELOC/fonts/type1/public/fetamont/ffmho9.pfb + RELOC/fonts/type1/public/fetamont/ffmhw10.pfb + RELOC/fonts/type1/public/fetamont/ffmhwo10.pfb + RELOC/fonts/type1/public/fetamont/ffml10.pfb + RELOC/fonts/type1/public/fetamont/ffmlc10.pfb + RELOC/fonts/type1/public/fetamont/ffmlco10.pfb + RELOC/fonts/type1/public/fetamont/ffmlo10.pfb + RELOC/fonts/type1/public/fetamont/ffmlq10.pfb + RELOC/fonts/type1/public/fetamont/ffmlqo10.pfb + RELOC/fonts/type1/public/fetamont/ffmlw10.pfb + RELOC/fonts/type1/public/fetamont/ffmlwo10.pfb + RELOC/fonts/type1/public/fetamont/ffmo10.pfb + RELOC/fonts/type1/public/fetamont/ffmo8.pfb + RELOC/fonts/type1/public/fetamont/ffmo9.pfb + RELOC/fonts/type1/public/fetamont/ffmr10.pfb + RELOC/fonts/type1/public/fetamont/ffmr8.pfb + RELOC/fonts/type1/public/fetamont/ffmr9.pfb + RELOC/fonts/type1/public/fetamont/ffmw10.pfb + RELOC/fonts/type1/public/fetamont/ffmwo10.pfb + RELOC/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-ctan /fonts/fetamont +catalogue-date 2015-05-15 13:57:07 +0200 +catalogue-license lppl1.3 +catalogue-version 1.5 + +name feupphdteses +category Package +revision 30962 +shortdesc Typeset Engineering PhD theses at the University of Porto. +relocated 1 +longdesc A complete template for thesis/works of Faculdade de Engenharia +longdesc da Universidade do Porto (FEUP) Faculty of Engineering +longdesc University of Porto. +runfiles size=5 + RELOC/tex/latex/feupphdteses/feupphdteses.sty +docfiles size=116 + RELOC/doc/latex/feupphdteses/Abbs.tex + RELOC/doc/latex/feupphdteses/Abstract.tex + RELOC/doc/latex/feupphdteses/Acknow.tex + RELOC/doc/latex/feupphdteses/Appendix.tex + RELOC/doc/latex/feupphdteses/Chapter2.tex + RELOC/doc/latex/feupphdteses/Chapter3.tex + RELOC/doc/latex/feupphdteses/Conclusions.tex + RELOC/doc/latex/feupphdteses/Dedicatory.tex + RELOC/doc/latex/feupphdteses/Figures/uporto-feup.pdf + RELOC/doc/latex/feupphdteses/IEEEtranN.bst + RELOC/doc/latex/feupphdteses/IEEEtranSN.bst + RELOC/doc/latex/feupphdteses/Intro.tex + RELOC/doc/latex/feupphdteses/Publications.tex + RELOC/doc/latex/feupphdteses/Quote.tex + RELOC/doc/latex/feupphdteses/README + 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.tcp + RELOC/doc/latex/feupphdteses/Template_EN.tex + RELOC/doc/latex/feupphdteses/Template_EN.tps + RELOC/doc/latex/feupphdteses/mymacros.tex +catalogue-ctan /macros/latex/contrib/feupphdteses +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +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. +relocated 1 +longdesc Feyn may be used to produce relatively simple Feynman diagrams +longdesc within equations in a LaTeX document. While the feynmf package +longdesc is good at drawing large diagrams for figures, the present +longdesc package and its fonts allow diagrams within equations or text, +longdesc at a matching size. The fonts are distributed as Metafont +longdesc source, and macros for their use are also provided. +runfiles size=30 + RELOC/fonts/source/public/feyn/feyn.mf + RELOC/fonts/source/public/feyn/feyn10.mf + RELOC/fonts/source/public/feyn/feyn11.mf + RELOC/fonts/source/public/feyn/feyn12.mf + RELOC/fonts/source/public/feyn/feyn18.mf + RELOC/fonts/source/public/feyn/feyn24.mf + RELOC/fonts/source/public/feyn/feynmac.mf + RELOC/fonts/source/public/feyn/feyntext10.mf + RELOC/fonts/source/public/feyn/feyntext11.mf + RELOC/fonts/source/public/feyn/feyntext12.mf + RELOC/fonts/source/public/feyn/feyntext18.mf + RELOC/fonts/source/public/feyn/feyntext24.mf + RELOC/fonts/tfm/public/feyn/feyn10.tfm + RELOC/fonts/tfm/public/feyn/feyn11.tfm + RELOC/fonts/tfm/public/feyn/feyn12.tfm + RELOC/fonts/tfm/public/feyn/feyn18.tfm + RELOC/fonts/tfm/public/feyn/feyn24.tfm + RELOC/fonts/tfm/public/feyn/feyntext10.tfm + RELOC/fonts/tfm/public/feyn/feyntext11.tfm + RELOC/fonts/tfm/public/feyn/feyntext12.tfm + RELOC/fonts/tfm/public/feyn/feyntext18.tfm + RELOC/fonts/tfm/public/feyn/feyntext24.tfm + RELOC/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-ctan /fonts/feyn +catalogue-date 2012-05-31 18:53:16 +0200 +catalogue-license gpl +catalogue-version 0.3.3 + +name fge +category Package +revision 37628 +shortdesc A font for Frege's Grundgesetze der Arithmetik. +relocated 1 +longdesc The fonts are provided as Metafont source and Adobe Type 1 +longdesc (pfb) files. A small LaTeX package (fge) is included. +execute addMap fge.map +runfiles size=30 + RELOC/fonts/map/dvips/fge/fge.map + RELOC/fonts/source/public/fge/fgebase.mf + RELOC/fonts/source/public/fge/fgeit.mf + RELOC/fonts/source/public/fge/fgeit10.mf + RELOC/fonts/source/public/fge/fgerm.mf + RELOC/fonts/source/public/fge/fgerm10.mf + RELOC/fonts/tfm/public/fge/fgeit10.tfm + RELOC/fonts/tfm/public/fge/fgerm10.tfm + RELOC/fonts/type1/public/fge/fgeit10.pfb + RELOC/fonts/type1/public/fge/fgerm10.pfb + RELOC/tex/latex/fge/Ufgeit.fd + RELOC/tex/latex/fge/Ufgerm.fd + RELOC/tex/latex/fge/fge.cfg + RELOC/tex/latex/fge/fge.sty +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-ctan /fonts/fge +catalogue-date 2015-05-21 08:39:54 +0200 +catalogue-license lppl +catalogue-topics font font-mf font-type1 maths +catalogue-version 1.25 + +name fifinddo-info +category Package +revision 29349 +shortdesc German HTML beamer presentation on nicetext and morehype. +relocated 1 +longdesc The bundle: exhibits the process of making an "HTML beamer +longdesc presentation" with the blogdot package from the morehype +longdesc bundle, and HTML generation based on the fifinddo package. +docfiles size=417 + RELOC/doc/latex/fifinddo-info/LIESMICH.txt + RELOC/doc/latex/fifinddo-info/README + 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/mdoccorr.pdf + RELOC/doc/latex/fifinddo-info/variants/dantev45-1180-clean.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-1180-com.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-768-com.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-768-exact-frame.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-768-exact-show.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-768-filltype-show.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-992-com.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-992-exact-frame.html + RELOC/doc/latex/fifinddo-info/variants/dantev45-992-exact.html +srcfiles size=29 + RELOC/source/latex/fifinddo-info/SrcFILEs.txt + RELOC/source/latex/fifinddo-info/makeelse/expose.tex + RELOC/source/latex/fifinddo-info/makeelse/mdoccorr.tex + RELOC/source/latex/fifinddo-info/makeelse/srcfiles.tex + RELOC/source/latex/fifinddo-info/makeelse/updsfl.sh + RELOC/source/latex/fifinddo-info/makeone/dantev45.fdf + RELOC/source/latex/fifinddo-info/makeone/dantev45.tex + RELOC/source/latex/fifinddo-info/makeone/makedot.tex + RELOC/source/latex/fifinddo-info/makevars/bashvars.sh + RELOC/source/latex/fifinddo-info/makevars/dantev45.cfg + RELOC/source/latex/fifinddo-info/makevars/longdan.sh + RELOC/source/latex/fifinddo-info/makevars/makedots.tex + RELOC/source/latex/fifinddo-info/makevars/texvars.sh +catalogue-ctan /info/fifinddo-info +catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-license lppl1.3 +catalogue-version 1.1b + +name fifo-stack +category Package +revision 33288 +shortdesc FIFO and stack implementation for package writers +relocated 1 +longdesc A LaTeX implementation of a combined FIFO Stack modified from +longdesc the existing stack package by Benjamin Bayart. The package +longdesc renames the original's \Push and \Pop commands \FSPush and +longdesc \FSPop, and which work on the top/end of the FIFO/Stack), and +longdesc adds the ability to \FSUnshift and \FSShift from the the +longdesc bottom(front) of the FIFO/Stack. +runfiles size=2 + RELOC/tex/latex/fifo-stack/fifo-stack.sty +docfiles size=66 + RELOC/doc/latex/fifo-stack/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 +srcfiles size=9 + RELOC/source/latex/fifo-stack/fifo-stack.dtx + RELOC/source/latex/fifo-stack/fifo-stack.ins +catalogue-ctan /macros/latex/contrib/fifo-stack +catalogue-date 2014-04-08 11:20:21 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name fig4latex +category Package +revision 26313 +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 +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/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 +catalogue-ctan /graphics/fig4latex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl3 +catalogue-version 0.2 + +name fig4latex.i386-linux +category Package +revision 14752 +shortdesc i386-linux files of fig4latex +binfiles arch=i386-linux size=1 + bin/i386-linux/fig4latex + +name figbas +category Package +revision 28943 +shortdesc Mini-fonts for figured-bass notation in music. +relocated 1 +longdesc This package consists of three mini-fonts (and associated +longdesc metrics) of conventional ligatures for the figured-bass +longdesc notations 2+, 4+, 5+, 6+ and 9+ in music manuscripts. The fonts +longdesc are usable with Computer Modern Roman and Sans, and +longdesc Palatino/Palladio, respectively. +runfiles size=14 + RELOC/fonts/afm/public/figbas/cmrj.afm + RELOC/fonts/afm/public/figbas/cmssj.afm + RELOC/fonts/afm/public/figbas/plrj.afm + RELOC/fonts/map/dvips/figbas/figbas.map + RELOC/fonts/tfm/public/figbas/cmrj.tfm + RELOC/fonts/tfm/public/figbas/cmssj.tfm + RELOC/fonts/tfm/public/figbas/plrj.tfm + RELOC/fonts/type1/public/figbas/cmrj.pfb + RELOC/fonts/type1/public/figbas/cmssj.pfb + RELOC/fonts/type1/public/figbas/plrj.pfb +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-license lppl +catalogue-version 1.0.3 + +name figbib +category Package +revision 19388 +shortdesc Organize figure databases with BibTeX. +relocated 1 +longdesc FigBib lets you organize your figures in BibTeX databases. Some +longdesc FigBib features are: Store and manage figures in a BibTeX +longdesc database; Include figures in your LaTeX document with one short +longdesc command; Generate a List of Figures containing more/other +longdesc information than the figure captions; Control with one switch +longdesc where to output the figures, either as usual float objects or +longdesc in a separate part at the end of your document. +runfiles size=5 + RELOC/bibtex/bst/figbib/figbib.bst + RELOC/bibtex/bst/figbib/figbib1.bst + RELOC/tex/latex/figbib/figbib.sty +docfiles size=49 + RELOC/doc/latex/figbib/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 +catalogue-ctan /macros/latex/contrib/figbib +catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-license lppl + +name figflow +category Package +revision 21462 +shortdesc Flow text around a figure. +relocated 1 +longdesc Provides a Plain TeX macro \figflow that allows one to insert a +longdesc figure into an area inset into a paragraph. Command arguments +longdesc are width and height of the figure, and the figure (and its +longdesc caption) itself. Usage details are to be found in the TeX file +longdesc itself. The package does not work with LaTeX; packages such as +longdesc wrapfig, floatflt and picins support the needs of LaTeX users +longdesc in this area. +runfiles size=1 + RELOC/tex/plain/figflow/figflow.tex +docfiles size=1 + RELOC/doc/plain/figflow/README.figflow +catalogue-ctan /macros/plain/contrib/figflow +catalogue-date 2012-07-11 23:21:34 +0200 +catalogue-license other-free + +name figsize +category Package +revision 18784 +shortdesc Auto-size graphics. +relocated 1 +longdesc The FigSize package enables automatic sizing of graphics, +longdesc especially when including graphics with the graphicx package. +longdesc The user only has to specify the number of graphics that should +longdesc fit to a page or fraction there of and the package will +longdesc dynamically calculate the correct graphics sizes relative to +longdesc the page size. Thus, graphics can be auto-sized to fill a whole +longdesc page or fraction and manual changes of graphic sizes are never +longdesc needed when changing document layouts. Finally, the package's +longdesc dynamic lengths can be used to allow other document element +longdesc sizes to be dynamic. +runfiles size=1 + RELOC/tex/latex/figsize/figsize.sty +docfiles size=39 + RELOC/doc/latex/figsize/README + RELOC/doc/latex/figsize/epsfig.eps + RELOC/doc/latex/figsize/figsize.pdf + RELOC/doc/latex/figsize/figsize.tex +catalogue-ctan /macros/latex/contrib/figsize +catalogue-date 2012-07-11 23:21:34 +0200 +catalogue-license lppl +catalogue-version 0.1 + +name filecontents +category Package +revision 24250 +shortdesc Extended filecontents and filecontents* environments +relocated 1 +longdesc LaTeX2e's filecontents and filecontents* environments enable a +longdesc LaTeX source file to generate external files as it runs through +longdesc LaTeX. However, there are two limitations of these +longdesc environments: they refuse to overwrite existing files, and they +longdesc can only be used in the preamble of a document. The +longdesc filecontents package removes these limitations, letting you +longdesc overwrite existing files and letting you use +longdesc filecontents/filecontents* anywhere. +runfiles size=1 + RELOC/tex/latex/filecontents/filecontents.sty +docfiles size=63 + RELOC/doc/latex/filecontents/README + RELOC/doc/latex/filecontents/filecontents.pdf +srcfiles size=5 + RELOC/source/latex/filecontents/filecontents.dtx + RELOC/source/latex/filecontents/filecontents.ins +catalogue-ctan /macros/latex/contrib/filecontents +catalogue-date 2012-01-12 19:29:56 +0100 +catalogue-license lppl +catalogue-version 1.3 + +name filedate +category Package +revision 29529 +shortdesc Access and compare info and modification dates. +relocated 1 +longdesc The package provides basic access to the date of a LaTeX source +longdesc file according to its \Provides... entry (the "info date") as +longdesc well as to its modification date according to \pdffilemoddate +longdesc if the latter is available. +runfiles size=6 + RELOC/tex/latex/filedate/filedate.RLS + RELOC/tex/latex/filedate/filedate.sty +docfiles size=152 + RELOC/doc/latex/filedate/Announce.txt + RELOC/doc/latex/filedate/README + RELOC/doc/latex/filedate/SrcFILEs.txt + RELOC/doc/latex/filedate/filedate.pdf +srcfiles size=4 + RELOC/source/latex/filedate/fdatechk.tex + RELOC/source/latex/filedate/filedate.tex + RELOC/source/latex/filedate/srcfiles.tex +catalogue-ctan /macros/latex/contrib/filedate +catalogue-date 2013-03-28 18:13:03 +0100 +catalogue-license lppl + +name filehook +category Package +revision 24280 +shortdesc Hooks for input files. +relocated 1 +longdesc The package provides several file hooks (AtBegin, AtEnd, ...) +longdesc for files read by \input, \include and \InputIfFileExists. +longdesc General hooks for all such files (e.g. all \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. +runfiles size=9 + RELOC/tex/latex/filehook/filehook-fink.sty + RELOC/tex/latex/filehook/filehook-listings.sty + RELOC/tex/latex/filehook/filehook-memoir.sty + RELOC/tex/latex/filehook/filehook-scrlfile.sty + RELOC/tex/latex/filehook/filehook.sty + RELOC/tex/latex/filehook/pgf-filehook.sty +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-license lppl1.3 +catalogue-version 0.5d + +name fileinfo +category Package +revision 28421 +shortdesc Enhanced display of LaTeX File Information. +relocated 1 +longdesc The bundle provides two packages, readprov and myfilist. The +longdesc readprov package provides a means of reading file information +longdesc without loading the body of the file. The myfilist package uses +longdesc readprov and controls what \listfiles will report. +runfiles size=7 + RELOC/tex/latex/fileinfo/fileinfo.RLS + RELOC/tex/latex/fileinfo/myfilist.sty + RELOC/tex/latex/fileinfo/readprov.sty +docfiles size=264 + RELOC/doc/latex/fileinfo/README + RELOC/doc/latex/fileinfo/README.pdf + RELOC/doc/latex/fileinfo/RELEASEs.txt + RELOC/doc/latex/fileinfo/SrcFILEs.txt + RELOC/doc/latex/fileinfo/myfilist.pdf + RELOC/doc/latex/fileinfo/readprov.pdf +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 +catalogue-ctan /macros/latex/contrib/fileinfo +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.81a + +name filemod +category Package +revision 24042 +shortdesc Provide file modification times, and compare them. +relocated 1 +longdesc The package provides macros to read and compare the +longdesc modification dates of files. The files may be .tex files, +longdesc images or other files (as long as they can be found by LaTeX). +longdesc It uses the \pdffilemoddate primitive of pdfLaTeX to find the +longdesc file modification date as PDF date string, parses the string +longdesc and returns the value to the user. The package will also work +longdesc for DVI output with recent versions of the LaTeX compiler which +longdesc uses pdfLaTeX in DVI mode. The functionality is provided by +longdesc purely expandable macros or by faster but non-expandable ones. +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-ctan /macros/latex/contrib/filemod +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name finbib +category Package +revision 15878 +catalogue finplain +shortdesc A Finnish version of plain.bst. +relocated 1 +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-license other-free + +name findhyph +category Package +revision 30915 +shortdesc Find hyphenated words in a document. +longdesc Findhyph is a Perl script that will analyse the log file from +longdesc running your document with \tracingparagraphs=1 set. The output +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 + 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/findhyph.bat + texmf-dist/doc/support/findhyph/findhyph.txt +catalogue-ctan /support/findhyph +catalogue-date 2013-06-21 02:36:55 +0200 +catalogue-license gpl +catalogue-version 3.3 + +name findhyph.i386-linux +category Package +revision 14758 +shortdesc i386-linux files of findhyph +binfiles arch=i386-linux size=1 + bin/i386-linux/findhyph + +name fink +category Package +revision 24329 +shortdesc The LaTeX2e File Name Keeper. +relocated 1 +longdesc This package "looks over your shoulder" and keeps track of +longdesc files \input'ed (the LaTeX way) or \include'ed in your +longdesc document. You then have permanent access to the name of the +longdesc file currently being processed through the macro \finkfile. +longdesc FiNK also comes with support for AUC-TeX. As of version 2.2.1, +longdesc FiNK has been deprecated and is not maintained anymore. People +longdesc interested in FiNK's functionality are invited to use a package +longdesc named currfile instead. +runfiles size=2 + RELOC/tex/latex/fink/fink.sty +docfiles size=30 + RELOC/doc/latex/fink/NEWS + RELOC/doc/latex/fink/README + RELOC/doc/latex/fink/THANKS + RELOC/doc/latex/fink/fink.el + RELOC/doc/latex/fink/fink.pdf + RELOC/doc/latex/fink/header.inc +srcfiles size=5 + RELOC/source/latex/fink/fink.dtx + RELOC/source/latex/fink/fink.ins +catalogue-ctan /macros/latex/contrib/fink +catalogue-date 2012-05-21 00:09:46 +0200 +catalogue-license lppl +catalogue-version 2.2.1 + +name finstrut +category Package +revision 21719 +shortdesc Adjust behaviour of the ends of footnotes. +relocated 1 +longdesc The LaTeX internal command \@finalstrut is used automatically +longdesc used at the end of footnote texts to insert a strut to avoid +longdesc mis-spacing of multiple footnotes. Unfortunately the command +longdesc can cause a blank line at the end of a footnote. The package +longdesc provides a solution to this problem. +runfiles size=2 + RELOC/tex/latex/finstrut/finstrut.sty +docfiles size=54 + RELOC/doc/latex/finstrut/README + RELOC/doc/latex/finstrut/SRCFILEs.txt + RELOC/doc/latex/finstrut/finstrut.pdf + RELOC/doc/latex/finstrut/fstrutst.pdf +srcfiles size=3 + RELOC/source/latex/finstrut/finstrut.tex + RELOC/source/latex/finstrut/fstrutst.tex + RELOC/source/latex/finstrut/srcfiles.tex +catalogue-ctan /macros/latex/contrib/finstrut +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.5 + +name fira +category Package +revision 37565 +shortdesc Fira fonts with LaTeX support. +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Fira Sans family of fonts designed by Erik +longdesc Spiekermann and Ralph du Carrois of Carrois Type Design. Fira +longdesc Sans is available in eleven weights with corresponding italics: +longdesc light, regular, medium, bold, ... +execute addMap fira.map +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 + 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_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_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_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_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_zrx7he.enc + RELOC/fonts/map/dvips/fira/fira.map + RELOC/fonts/opentype/public/fira/FiraMono-Bold.otf + RELOC/fonts/opentype/public/fira/FiraMono-Medium.otf + RELOC/fonts/opentype/public/fira/FiraMono-Regular.otf + RELOC/fonts/opentype/public/fira/FiraSans-Bold.otf + RELOC/fonts/opentype/public/fira/FiraSans-BoldItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Book.otf + RELOC/fonts/opentype/public/fira/FiraSans-BookItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-ExtraBold.otf + RELOC/fonts/opentype/public/fira/FiraSans-ExtraBoldItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-ExtraLight.otf + RELOC/fonts/opentype/public/fira/FiraSans-ExtraLightItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-Heavy.otf + RELOC/fonts/opentype/public/fira/FiraSans-HeavyItalic.otf + RELOC/fonts/opentype/public/fira/FiraSans-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-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-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-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-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-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-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraMono-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Book-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-BookItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ExtraLightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Heavy-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-HeavyItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Light-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-LightItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Medium-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-MediumItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Regular-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBold-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-SemiBoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-Thin-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-ThinItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLight-tosf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-lf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-osf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-sup-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-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/fira/FiraSans-UltraLightItalic-tosf-ts1.tfm + RELOC/fonts/type1/public/fira/FiraMono-Bold.pfb + RELOC/fonts/type1/public/fira/FiraMono-Medium.pfb + RELOC/fonts/type1/public/fira/FiraMono-Regular.pfb + RELOC/fonts/type1/public/fira/FiraSans-Bold.pfb + RELOC/fonts/type1/public/fira/FiraSans-BoldItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Book.pfb + RELOC/fonts/type1/public/fira/FiraSans-BookItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-ExtraBold.pfb + RELOC/fonts/type1/public/fira/FiraSans-ExtraBoldItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-ExtraLight.pfb + RELOC/fonts/type1/public/fira/FiraSans-ExtraLightItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-Heavy.pfb + RELOC/fonts/type1/public/fira/FiraSans-HeavyItalic.pfb + RELOC/fonts/type1/public/fira/FiraSans-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-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Bold-sup-t1.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-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-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Medium-sup-t1.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-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-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-sup-t1.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-ly1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraMono-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Book-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-BookItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBold-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLight-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ExtraLightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Heavy-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-HeavyItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Light-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-LightItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Medium-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-MediumItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Regular-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBold-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-SemiBoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-Thin-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-ThinItalic-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLight-tosf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-lf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-osf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-sup-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tlf-ts1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-sc-ly1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-sc-ot1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-sc-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-t1.vf + RELOC/fonts/vf/public/fira/FiraSans-UltraLightItalic-tosf-ts1.vf + RELOC/tex/latex/fira/FiraMono.sty + RELOC/tex/latex/fira/FiraSans.sty + RELOC/tex/latex/fira/LY1FiraMono-Sup.fd + RELOC/tex/latex/fira/LY1FiraMono-TLF.fd + RELOC/tex/latex/fira/LY1FiraMono-TOsF.fd + RELOC/tex/latex/fira/LY1FiraSans-LF.fd + RELOC/tex/latex/fira/LY1FiraSans-OsF.fd + RELOC/tex/latex/fira/LY1FiraSans-Sup.fd + RELOC/tex/latex/fira/LY1FiraSans-TLF.fd + RELOC/tex/latex/fira/LY1FiraSans-TOsF.fd + RELOC/tex/latex/fira/OT1FiraMono-Sup.fd + RELOC/tex/latex/fira/OT1FiraMono-TLF.fd + RELOC/tex/latex/fira/OT1FiraMono-TOsF.fd + RELOC/tex/latex/fira/OT1FiraSans-LF.fd + RELOC/tex/latex/fira/OT1FiraSans-OsF.fd + RELOC/tex/latex/fira/OT1FiraSans-Sup.fd + RELOC/tex/latex/fira/OT1FiraSans-TLF.fd + RELOC/tex/latex/fira/OT1FiraSans-TOsF.fd + RELOC/tex/latex/fira/T1FiraMono-Sup.fd + RELOC/tex/latex/fira/T1FiraMono-TLF.fd + RELOC/tex/latex/fira/T1FiraMono-TOsF.fd + RELOC/tex/latex/fira/T1FiraSans-LF.fd + RELOC/tex/latex/fira/T1FiraSans-OsF.fd + RELOC/tex/latex/fira/T1FiraSans-Sup.fd + RELOC/tex/latex/fira/T1FiraSans-TLF.fd + RELOC/tex/latex/fira/T1FiraSans-TOsF.fd + RELOC/tex/latex/fira/TS1FiraMono-TLF.fd + RELOC/tex/latex/fira/TS1FiraMono-TOsF.fd + RELOC/tex/latex/fira/TS1FiraSans-LF.fd + RELOC/tex/latex/fira/TS1FiraSans-OsF.fd + RELOC/tex/latex/fira/TS1FiraSans-TLF.fd + RELOC/tex/latex/fira/TS1FiraSans-TOsF.fd +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-ctan /fonts/fira +catalogue-date 2015-06-16 05:44:56 +0200 +catalogue-license ofl +catalogue-topics font font-sans font-otf font-type1 +catalogue-version 4.1 + +name first-latex-doc +category Package +revision 15878 +shortdesc A document for absolute LaTeX beginners. +relocated 1 +longdesc The document leads a reader, who knows nothing about LaTeX, +longdesc through the production of a two page document. The user who has +longdesc completed that first document, and wants to carry on, will find +longdesc recommendations for tutorials. +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/first-latex-doc.tex + RELOC/doc/latex/first-latex-doc/latex-first.png + RELOC/doc/latex/first-latex-doc/latex-first.tex + RELOC/doc/latex/first-latex-doc/latex-second-a.png + RELOC/doc/latex/first-latex-doc/latex-second-a.tex + RELOC/doc/latex/first-latex-doc/latex-second-b.png + RELOC/doc/latex/first-latex-doc/latex-second-b.tex + RELOC/doc/latex/first-latex-doc/latex-second-c.png + RELOC/doc/latex/first-latex-doc/latex-second-c.tex + RELOC/doc/latex/first-latex-doc/latex-second-d.tex + RELOC/doc/latex/first-latex-doc/latex-second-e.tex +catalogue-ctan /info/first-latex-doc +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd + +name fitbox +category Package +revision 38139 +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 + RELOC/doc/latex/fitbox/fitbox.bib + RELOC/doc/latex/fitbox/fitbox.pdf + RELOC/doc/latex/fitbox/sample.pdf + RELOC/doc/latex/fitbox/sample.tex + RELOC/doc/latex/fitbox/vitruvian.jpg +srcfiles size=4 + RELOC/source/latex/fitbox/fitbox.dtx + RELOC/source/latex/fitbox/fitbox.ins +catalogue-ctan /macros/latex/contrib/fitbox +catalogue-date 2015-08-16 21:45:31 +0200 +catalogue-license lppl1.3 +catalogue-topics boxing +catalogue-version 1.00 + +name fithesis +category Package +revision 38318 +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 + RELOC/tex/latex/fithesis/fithesis.cls + RELOC/tex/latex/fithesis/fithesis2.cls + RELOC/tex/latex/fithesis/fithesis3.cls + RELOC/tex/latex/fithesis/locale/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/fithesis-english.def + RELOC/tex/latex/fithesis/locale/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/econ/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/econ/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/econ/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/fi/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/fi/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/fi/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/fsps/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/fsps/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/fsps/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/fss/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/fss/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/fss/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/law/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/law/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/law/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/med/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/med/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/med/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/ped/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/ped/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/ped/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/phil/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/phil/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/phil/fithesis-slovak.def + RELOC/tex/latex/fithesis/locale/mu/sci/fithesis-czech.def + RELOC/tex/latex/fithesis/locale/mu/sci/fithesis-english.def + RELOC/tex/latex/fithesis/locale/mu/sci/fithesis-slovak.def + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-base.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-base.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-econ.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fi.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fsps.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-fss.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-law.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-law.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-med.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-med.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-ped.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-phil.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-color.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci-color.pdf + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci.eps + RELOC/tex/latex/fithesis/logo/mu/fithesis-sci.pdf + RELOC/tex/latex/fithesis/style/fithesis-base.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-10.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-11.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-12.clo + RELOC/tex/latex/fithesis/style/mu/fithesis-base.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-econ.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-fi.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-fsps.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-fss.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-law.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-med.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-ped.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-phil.sty + RELOC/tex/latex/fithesis/style/mu/fithesis-sci.sty +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-ctan /macros/latex/contrib/fithesis +catalogue-date 2015-09-07 07:39:22 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 0.3.21 + +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 +srcfiles size=6 + RELOC/source/latex/fix2col/fix2col.dtx + RELOC/source/latex/fix2col/fix2col.ins +catalogue-ctan /macros/latex/contrib/fix2col +catalogue-date 2012-03-12 20:11:22 +0100 +catalogue-license lppl +catalogue-version 0.03 + +name fixfoot +category Package +revision 17131 +shortdesc Multiple use of the same footnote text. +relocated 1 +longdesc Provides a \DeclareFixedFootnote command to provide a single +longdesc command for a frequently-used footnote. The package ensures +longdesc that only one instance of the footnote text appears on each +longdesc page (LaTeX needs to be run several times to achieve this). +runfiles size=2 + RELOC/tex/latex/fixfoot/fixfoot.sty +docfiles size=17 + RELOC/doc/latex/fixfoot/README + RELOC/doc/latex/fixfoot/fixfoot.pdf + RELOC/doc/latex/fixfoot/fixfoot.tex + RELOC/doc/latex/fixfoot/testfix.tex +catalogue-ctan /macros/latex/contrib/fixfoot +catalogue-date 2011-11-05 20:23:42 +0100 +catalogue-license lppl +catalogue-version 0.3a + +name fixlatvian +category Package +revision 21631 +shortdesc Improve Latvian language support in XeLaTeX. +relocated 1 +longdesc The package offers improvement of the Latvian language support +longdesc in polyglossia, in particular in the area of the standard +longdesc classes. +runfiles size=3 + RELOC/makeindex/fixlatvian/lv.ist + RELOC/tex/xelatex/fixlatvian/fixlatvian.sty +docfiles size=43 + RELOC/doc/xelatex/fixlatvian/Makefile + RELOC/doc/xelatex/fixlatvian/README + RELOC/doc/xelatex/fixlatvian/fixlatvian.pdf +srcfiles size=8 + RELOC/source/xelatex/fixlatvian/fixlatvian.dtx + RELOC/source/xelatex/fixlatvian/fixlatvian.ins +catalogue-ctan /macros/xetex/latex/fixlatvian +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1a + +name fixltxhyph +category Package +revision 25832 +shortdesc Allow hyphenation of partially-emphasised substrings. +relocated 1 +longdesc The package fixes the problem of TeX failing to hyphenate +longdesc letter strings that seem (to TeX) to be words, but which are +longdesc followed by an apostrophe and then an emphasis command. The +longdesc cause of the problem is not the apostrophe, but the font change +longdesc in the middle of the string. The problem arises in Catalan, +longdesc French, Italian and Romansh. +runfiles size=1 + RELOC/tex/latex/fixltxhyph/fixltxhyph.sty +docfiles size=98 + RELOC/doc/latex/fixltxhyph/README + RELOC/doc/latex/fixltxhyph/fixltxhyph.pdf +srcfiles size=5 + RELOC/source/latex/fixltxhyph/fixltxhyph.dtx +catalogue-ctan /macros/latex/contrib/fixltxhyph +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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. +runfiles size=24 + RELOC/tex/latex/fixme/fixme.sty + RELOC/tex/latex/fixme/layouts/env/fxenvlayoutcolor.sty + RELOC/tex/latex/fixme/layouts/env/fxenvlayoutcolorsig.sty + RELOC/tex/latex/fixme/layouts/fxlayoutmarginnote.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfcmargin.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfcnote.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfcsigmargin.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfcsignote.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfmargin.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfnote.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfsigmargin.sty + RELOC/tex/latex/fixme/layouts/fxlayoutpdfsignote.sty + RELOC/tex/latex/fixme/layouts/target/fxtargetlayoutchangebar.sty + RELOC/tex/latex/fixme/layouts/target/fxtargetlayoutcolor.sty + RELOC/tex/latex/fixme/layouts/target/fxtargetlayoutcolorcb.sty + RELOC/tex/latex/fixme/themes/fxthemecolor.sty + RELOC/tex/latex/fixme/themes/fxthemecolorsig.sty + RELOC/tex/latex/fixme/themes/fxthemesignature.sty +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-ctan /macros/latex/contrib/fixme +catalogue-date 2013-01-28 16:52:26 +0100 +catalogue-license lppl +catalogue-version 4.2 + +name fixmetodonotes +category Package +revision 30168 +shortdesc Add notes on document development. +relocated 1 +longdesc The package provides tools to highlight FIXME and TODO +longdesc annotations. The command \listofnotes prints a list of +longdesc outstanding notes, with links to the pages on which they +longdesc appear. +runfiles size=1 + RELOC/tex/latex/fixmetodonotes/fixmetodonotes.sty +docfiles size=3 + RELOC/doc/latex/fixmetodonotes/LICENSE + RELOC/doc/latex/fixmetodonotes/README +srcfiles size=2 + RELOC/source/latex/fixmetodonotes/fixmetodonotes.dtx + RELOC/source/latex/fixmetodonotes/fixmetodonotes.ins +catalogue-ctan /macros/latex/contrib/fixmetodonotes +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd +catalogue-version 0.2.2 + +name fixpdfmag +category Package +revision 15878 +shortdesc Fix magnification in PDFTeX. +relocated 1 +longdesc A recent change to PDFTeX has caused magnification to apply to +longdesc page dimensions. This small package changes the values set in +longdesc the page dimension variables from pt to truept, thus evading +longdesc the effects of \mag. +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-license pd + +name fjodor +category Package +revision 20220 +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 +docfiles size=125 + RELOC/doc/latex/fjodor/README + RELOC/doc/latex/fjodor/dostojevski.pdf + RELOC/doc/latex/fjodor/dostojevski.tex + RELOC/doc/latex/fjodor/fjodor.pdf + RELOC/doc/latex/fjodor/fjodor.tex + RELOC/doc/latex/fjodor/srbook-mem.sty +catalogue-ctan /macros/latex/contrib/fjodor +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl + +name flabels +category Package +revision 17272 +shortdesc Labels for files and folders. +relocated 1 +longdesc Macros for typesetting pretty labels (optionally colored) for +longdesc the back of files or binders (currently only the special A4 +longdesc "Leitz-Ordner" ring binder is supported). +runfiles size=2 + RELOC/tex/latex/flabels/flabels.sty +docfiles size=93 + RELOC/doc/latex/flabels/README + RELOC/doc/latex/flabels/flabels.pdf + RELOC/doc/latex/flabels/makedoc + RELOC/doc/latex/flabels/makedoc-patched + RELOC/doc/latex/flabels/makedoc.bat +srcfiles size=11 + RELOC/source/latex/flabels/flabels.dtx + RELOC/source/latex/flabels/flabels.ins +catalogue-ctan /macros/latex/contrib/flabels +catalogue-date 2011-12-16 16:22:52 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name flacards +category Package +revision 19440 +shortdesc Generate flashcards for printing. +relocated 1 +longdesc The flacards class provides an easy interface to produce +longdesc flashcards. It will print several cards per page, on both sides +longdesc of the paper. +runfiles size=2 + RELOC/tex/latex/flacards/flacards.cls +docfiles size=17 + RELOC/doc/latex/flacards/COPYING + RELOC/doc/latex/flacards/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 +catalogue-ctan /macros/latex/contrib/flacards +catalogue-date 2014-09-26 18:40:17 +0200 +catalogue-license gpl +catalogue-version 0.1.1b + +name flagderiv +category Package +revision 15878 +shortdesc Flag style derivation package +relocated 1 +longdesc The flagderiv package is used to create mathematical +longdesc derivations using the flag/flagpole notation. The package +longdesc features an intuitive command syntax, opening and closing +longdesc multiple flagpoles, different comment styles, customizable +longdesc symbols and label namespaces. +runfiles size=2 + RELOC/tex/latex/flagderiv/flagderiv.sty +docfiles size=53 + RELOC/doc/latex/flagderiv/README + RELOC/doc/latex/flagderiv/flagderiv.pdf +srcfiles size=14 + RELOC/source/latex/flagderiv/flagderiv.dtx + RELOC/source/latex/flagderiv/flagderiv.ins +catalogue-ctan /macros/latex/contrib/flagderiv +catalogue-date 2013-11-21 21:20:37 +0100 +catalogue-license gpl +catalogue-version 0.10 + +name flashcards +category Package +revision 19667 +shortdesc A class for typesetting flashcards. +relocated 1 +longdesc The FlashCards class provides for the typesetting of flash +longdesc cards. By flash card, we mean a two sided card which has a +longdesc prompt or a question on one side and the response or the answer +longdesc on the flip (back) side. Flash cards come in many sizes +longdesc depending on the nature of the information they contain. +runfiles size=6 + RELOC/tex/latex/flashcards/avery5371.cfg + RELOC/tex/latex/flashcards/avery5388.cfg + RELOC/tex/latex/flashcards/flashcards.cls +docfiles size=43 + RELOC/doc/latex/flashcards/COPYING + RELOC/doc/latex/flashcards/README + RELOC/doc/latex/flashcards/flashcards.pdf + RELOC/doc/latex/flashcards/samplecards.tex +srcfiles size=8 + RELOC/source/latex/flashcards/flashcards.dtx + RELOC/source/latex/flashcards/flashcards.ins +catalogue-ctan /macros/latex/contrib/flashcards +catalogue-date 2012-07-11 23:21:34 +0200 +catalogue-license gpl +catalogue-version 1.0.1 + +name flashmovie +category Package +revision 25768 +shortdesc Directly embed flash movies into PDF files. +relocated 1 +longdesc The package allows direct embedding of flash movies into PDF +longdesc files. It is designed for use with pdflatex. The package takes +longdesc advantage of the embedded Adobe Flash player in Adobe Reader 9; +longdesc the reader is invoked with the 'rich media annotation' feature, +longdesc described in "Adobe Supplement to the ISO 32000 BaseVersion: +longdesc 1.7 ExtensionLevel: 3". This method of embedding movies is +longdesc attractive since it removes all platform dependencies; however, +longdesc the user is required to use Acrobat 9. +runfiles size=12 + RELOC/tex/latex/flashmovie/flashmovie.sty + RELOC/tex/latex/flashmovie/player_flv_maxi.swf +docfiles size=345 + RELOC/doc/latex/flashmovie/README + RELOC/doc/latex/flashmovie/flv-player-license/MPL-1.1 + RELOC/doc/latex/flashmovie/flv-player-license/license.txt + RELOC/doc/latex/flashmovie/test-beamer-0.pdf + RELOC/doc/latex/flashmovie/test-beamer-0.tex + RELOC/doc/latex/flashmovie/test-beamer-1.tex + RELOC/doc/latex/flashmovie/test-flv.pdf + RELOC/doc/latex/flashmovie/test-flv.tex + RELOC/doc/latex/flashmovie/test.tex +catalogue-ctan /macros/latex/contrib/flashmovie +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.4 + +name flipbook +category Package +revision 25584 +shortdesc Typeset flipbook animations, in the corners of documents. +relocated 1 +longdesc The package provides techniques for adding flip book animations +longdesc in the corner of your LaTeX documents (using images or ASCII +longdesc art). Animations are defined as a set of numbered files (e.g., +longdesc "im1.pdf", "im2.pdf", "im3.pdf", ...). The package relies on +longdesc fancyhdr to control the corners. +runfiles size=2 + RELOC/tex/latex/flipbook/flipbook.sty +docfiles size=365 + RELOC/doc/latex/flipbook/Images/Anims/an1b/im01.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im01.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im01.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im02.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im02.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im02.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im03.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im03.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im03.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im04.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im04.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im04.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im05.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im05.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im05.pdf + RELOC/doc/latex/flipbook/Images/Anims/an1b/im06.eps + RELOC/doc/latex/flipbook/Images/Anims/an1b/im06.fig + RELOC/doc/latex/flipbook/Images/Anims/an1b/im06.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/an2.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/an2.xcf + RELOC/doc/latex/flipbook/Images/Anims/an2/im0.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im0.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im00.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im01.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im01.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im02.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im02.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im03.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im03.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im04.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im04.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im05.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im05.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im06.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im06.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im07.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im07.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im08.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im08.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im09.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im09.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im1.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im1.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im10.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im10.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im10.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im10.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im11.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im11.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im11.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im11.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im12.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im12.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im12.gif + RELOC/doc/latex/flipbook/Images/Anims/an2/im12.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im13.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im13.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im13.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im14.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im14.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im14.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im15.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im15.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im15.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im16.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im16.fig + RELOC/doc/latex/flipbook/Images/Anims/an2/im16.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im2.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im2.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im3.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im3.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im4.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im4.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im5.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im5.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im6.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im6.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im7.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im7.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im8.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im8.pdf + RELOC/doc/latex/flipbook/Images/Anims/an2/im9.eps + RELOC/doc/latex/flipbook/Images/Anims/an2/im9.pdf + RELOC/doc/latex/flipbook/Images/Anims/an3/an3.png + RELOC/doc/latex/flipbook/Images/Anims/an3/an3.pnm + RELOC/doc/latex/flipbook/Images/Anims/an3/an3.xcf + RELOC/doc/latex/flipbook/Images/Anims/an3/im1.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im10.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im11.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im12.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im13.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im14.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im15.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im16.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im17.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im18.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im19.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im2.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im20.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im21.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im22.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im23.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im24.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im25.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im26.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im27.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im28.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im29.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im3.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im30.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im31.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im32.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im33.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im34.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im35.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im36.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im37.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im38.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im39.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im4.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im40.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im41.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im42.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im43.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im44.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im45.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im46.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im5.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im6.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im7.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im8.png + RELOC/doc/latex/flipbook/Images/Anims/an3/im9.png + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an0.tex + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an1.tex + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an2.tex + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an3.tex + RELOC/doc/latex/flipbook/Images/Anims/anASCII/an4.tex + RELOC/doc/latex/flipbook/Makefile + RELOC/doc/latex/flipbook/README + RELOC/doc/latex/flipbook/flipbook-doc.pdf + RELOC/doc/latex/flipbook/flipbook-doc.tex + RELOC/doc/latex/flipbook/flipbook-ex.pdf + RELOC/doc/latex/flipbook/flipbook-ex.tex +catalogue-ctan /macros/latex/contrib/flipbook +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.2 + +name flippdf +category Package +revision 15878 +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 +docfiles size=5 + RELOC/doc/latex/flippdf/README + RELOC/doc/latex/flippdf/flippdf.pdf +srcfiles size=3 + RELOC/source/latex/flippdf/flippdf.dtx + RELOC/source/latex/flippdf/flippdf.ins +catalogue-ctan /macros/latex/contrib/flippdf +catalogue-date 2012-07-12 15:21:21 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name floatflt +category Package +revision 25540 +shortdesc Wrap text around floats. +relocated 1 +longdesc The package can float text around figures and tables which do +longdesc not span the full width of a page; it improves upon floatfig, +longdesc and allows tables/figures to be set left/right or alternating +longdesc on even/odd pages. +runfiles size=3 + RELOC/tex/latex/floatflt/floatflt.sty +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 +srcfiles size=15 + RELOC/source/latex/floatflt/floatflt.dtx + RELOC/source/latex/floatflt/floatflt.ins +catalogue-ctan /macros/latex/contrib/floatflt +catalogue-date 2012-05-30 14:33:40 +0200 +catalogue-license lppl1.3 +catalogue-version 1.31 + +name floatrow +category Package +revision 15878 +shortdesc Modifying the layout of floats. +relocated 1 +longdesc The floatrow package provides many ways to customize layouts of +longdesc floating environments and has code to cooperate with the +longdesc caption 3.x package. The package offers mechanisms to put +longdesc floats side by side, and to put the caption beside its float. +longdesc The floatrow settings could be expanded to the floats created +longdesc by packages rotating, wrapfig, subfig (in the case of rows of +longdesc subfloats), and longtable. +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 +docfiles size=590 + RELOC/doc/latex/floatrow/README + RELOC/doc/latex/floatrow/floatrow-rus.pdf + RELOC/doc/latex/floatrow/floatrow-rus.tex + RELOC/doc/latex/floatrow/floatrow.pdf + RELOC/doc/latex/floatrow/fr-sample.tex + RELOC/doc/latex/floatrow/frsample01.tex + RELOC/doc/latex/floatrow/frsample02.tex + RELOC/doc/latex/floatrow/frsample03.tex + RELOC/doc/latex/floatrow/frsample04.tex + RELOC/doc/latex/floatrow/frsample05.tex + RELOC/doc/latex/floatrow/frsample06.tex + RELOC/doc/latex/floatrow/frsample07.tex + RELOC/doc/latex/floatrow/frsample10.tex + RELOC/doc/latex/floatrow/frsample11.tex + RELOC/doc/latex/floatrow/frsample12.tex + RELOC/doc/latex/floatrow/pictures.tex + RELOC/doc/latex/floatrow/sample-longtable-rus.tex + RELOC/doc/latex/floatrow/sample-longtable.tex +srcfiles size=117 + RELOC/source/latex/floatrow/floatrow.dtx + RELOC/source/latex/floatrow/floatrow.ins +catalogue-ctan /macros/latex/contrib/floatrow +catalogue-date 2012-07-12 13:41:30 +0200 +catalogue-license lppl +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. +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 +docfiles size=108 + RELOC/doc/latex/flowchart/README + RELOC/doc/latex/flowchart/flowchart.pdf +srcfiles size=13 + RELOC/source/latex/flowchart/flowchart.dtx + RELOC/source/latex/flowchart/flowchart.ins +catalogue-ctan /graphics/pgf/contrib/flowchart +catalogue-date 2015-03-20 05:10:16 +0100 +catalogue-license lppl1.3 +catalogue-version 3.3 + +name flowfram +category Package +revision 35291 +shortdesc Create text frames for posters, brochures or magazines. +relocated 1 +longdesc The flowfram package enables you to create frames in a document +longdesc such that the contents of the document environment flow from +longdesc one frame to the next in the order in which they were defined. +longdesc This is useful for creating posters or magazines, indeed any +longdesc form of document that does not conform to the standard one or +longdesc two column layout. +runfiles size=58 + RELOC/scripts/flowfram/flowfram.perl + RELOC/tex/latex/flowfram/flowfram.sty +docfiles size=551 + RELOC/doc/latex/flowfram/CHANGES + RELOC/doc/latex/flowfram/README + RELOC/doc/latex/flowfram/ffuserguide.pdf + RELOC/doc/latex/flowfram/ffuserguide.tex + RELOC/doc/latex/flowfram/ffuserguideidx.ist + RELOC/doc/latex/flowfram/flowfram.pdf + RELOC/doc/latex/flowfram/samples/egg.eps + RELOC/doc/latex/flowfram/samples/egg.png + RELOC/doc/latex/flowfram/samples/sample-article.pdf + RELOC/doc/latex/flowfram/samples/sample-article.tex + RELOC/doc/latex/flowfram/samples/sample-blanks.tex + RELOC/doc/latex/flowfram/samples/sample-brochure.pdf + RELOC/doc/latex/flowfram/samples/sample-brochure.tex + RELOC/doc/latex/flowfram/samples/sample-news.pdf + RELOC/doc/latex/flowfram/samples/sample-news.tex + RELOC/doc/latex/flowfram/samples/sample-news2.pdf + RELOC/doc/latex/flowfram/samples/sample-news2.tex + RELOC/doc/latex/flowfram/samples/sample-pages.pdf + RELOC/doc/latex/flowfram/samples/sample-pages.tex + RELOC/doc/latex/flowfram/samples/sample-poster.pdf + RELOC/doc/latex/flowfram/samples/sample-poster.tex + RELOC/doc/latex/flowfram/samples/sample-rot.pdf + RELOC/doc/latex/flowfram/samples/sample-rot.tex + RELOC/doc/latex/flowfram/samples/sample.pdf + RELOC/doc/latex/flowfram/samples/sample.tex + RELOC/doc/latex/flowfram/samples/sample1.pdf + RELOC/doc/latex/flowfram/samples/sample1.tex + RELOC/doc/latex/flowfram/samples/sample2.pdf + RELOC/doc/latex/flowfram/samples/sample2.tex + RELOC/doc/latex/flowfram/samples/sample3.pdf + RELOC/doc/latex/flowfram/samples/sample3.tex + RELOC/doc/latex/flowfram/samples/sampleRL.pdf + RELOC/doc/latex/flowfram/samples/sampleRL.tex + RELOC/doc/latex/flowfram/samples/sheep.eps + RELOC/doc/latex/flowfram/samples/sheep.png +srcfiles size=118 + RELOC/source/latex/flowfram/flowfram.dtx + RELOC/source/latex/flowfram/flowfram.ins +catalogue-ctan /macros/latex/contrib/flowfram +catalogue-date 2014-09-30 16:25:11 +0200 +catalogue-license lppl1.3 +catalogue-version 1.17 + +name fltpoint +category Package +revision 15878 +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 +docfiles size=52 + RELOC/doc/generic/fltpoint/README + RELOC/doc/generic/fltpoint/fltpoint.pdf +srcfiles size=16 + RELOC/source/generic/fltpoint/fltpoint.dtx + RELOC/source/generic/fltpoint/fltpoint.ins +catalogue-ctan /macros/latex/contrib/fltpoint +catalogue-date 2013-09-30 11:48:44 +0200 +catalogue-license other-free +catalogue-version 1.1b + +name fmp +category Package +revision 15878 +shortdesc Include Functional MetaPost in LaTeX. +relocated 1 +runfiles size=2 + RELOC/tex/latex/fmp/fmp.sty +docfiles size=38 + RELOC/doc/latex/fmp/README + RELOC/doc/latex/fmp/fmp.pdf +srcfiles size=8 + RELOC/source/latex/fmp/fmp-doc.hs + RELOC/source/latex/fmp/fmp.dtx + RELOC/source/latex/fmp/fmp.ins +catalogue-ctan /macros/latex/contrib/fmp +catalogue-date 2012-04-06 15:13:57 +0200 +catalogue-license lppl + +name fmtcount +category Package +revision 37298 +shortdesc Display the value of a LaTeX counter in a variety of formats. +relocated 1 +longdesc The package provides commands that display the value of a LaTeX +longdesc counter in a variety of formats (ordinal, text, hexadecimal, +longdesc decimal, octal, binary etc). The package offers some +longdesc multilingual support; configurations for use in English (both +longdesc British and American usage), French (including Belgian and +longdesc Swiss variants), German, Italian, Portuguese and Spanish +longdesc documents are provided. This package was originally provided as +longdesc part of the author's datetime package, but is now distributed +longdesc separately. +runfiles size=68 + 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-british.def + RELOC/tex/latex/fmtcount/fc-english.def + RELOC/tex/latex/fmtcount/fc-francais.def + RELOC/tex/latex/fmtcount/fc-french.def + RELOC/tex/latex/fmtcount/fc-frenchb.def + RELOC/tex/latex/fmtcount/fc-german.def + RELOC/tex/latex/fmtcount/fc-germanb.def + RELOC/tex/latex/fmtcount/fc-italian.def + RELOC/tex/latex/fmtcount/fc-ngerman.def + RELOC/tex/latex/fmtcount/fc-ngermanb.def + RELOC/tex/latex/fmtcount/fc-portuges.def + RELOC/tex/latex/fmtcount/fc-portuguese.def + RELOC/tex/latex/fmtcount/fc-spanish.def + RELOC/tex/latex/fmtcount/fcnumparser.sty + RELOC/tex/latex/fmtcount/fcprefix.sty + RELOC/tex/latex/fmtcount/fmtcount.sty +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-ctan /macros/latex/contrib/fmtcount +catalogue-date 2015-05-09 00:38:15 +0200 +catalogue-license lppl1.3 +catalogue-version 3.01 + +name fn2end +category Package +revision 15878 +shortdesc Convert footnotes to endnotes. +relocated 1 +longdesc Defines macros \makeendnotes, which converts \footnote to +longdesc produce endnotes; and \theendnotes which prints them out. +runfiles size=1 + RELOC/tex/latex/fn2end/fn2end.sty +docfiles size=8 + RELOC/doc/latex/fn2end/fn2end.pdf + RELOC/doc/latex/fn2end/fn2end.tex +catalogue-ctan /macros/latex/contrib/fn2end +catalogue-date 2012-06-14 17:25:45 +0200 +catalogue-license pd +catalogue-version 1.1 + +name fnbreak +category Package +revision 25003 +shortdesc Warn for split footnotes. +relocated 1 +longdesc This package detects footnotes that are split over several +longdesc pages, and writes a warning to the log file. +runfiles size=2 + RELOC/tex/latex/fnbreak/fnbreak.sty +docfiles size=61 + RELOC/doc/latex/fnbreak/ChangeLog + RELOC/doc/latex/fnbreak/Makefile + RELOC/doc/latex/fnbreak/README + RELOC/doc/latex/fnbreak/fnbreak-v.tex + RELOC/doc/latex/fnbreak/fnbreak.pdf + RELOC/doc/latex/fnbreak/fnbreak.xml + RELOC/doc/latex/fnbreak/fnbreaktest.tex +srcfiles size=5 + RELOC/source/latex/fnbreak/fnbreak.dtx + RELOC/source/latex/fnbreak/fnbreak.ins +catalogue-ctan /macros/latex/contrib/fnbreak +catalogue-date 2012-04-06 15:13:57 +0200 +catalogue-license lppl +catalogue-version 1.30 + +name fncychap +category Package +revision 20710 +shortdesc Seven predefined chapter heading styles. +relocated 1 +longdesc Each style can be modified using a set of simple commands. +longdesc Optionally one can modify the formatting routines in order to +longdesc create additional chapter headings. This package was previously +longdesc known as FancyChapter. +runfiles size=5 + RELOC/tex/latex/fncychap/fncychap.sty +docfiles size=291 + RELOC/doc/latex/fncychap/Bjarne.eps + RELOC/doc/latex/fncychap/Bjarnes.eps + RELOC/doc/latex/fncychap/Bjornstrup.eps + RELOC/doc/latex/fncychap/BjornstrupS.eps + RELOC/doc/latex/fncychap/Conny.eps + RELOC/doc/latex/fncychap/Connys.eps + RELOC/doc/latex/fncychap/Glenn.eps + RELOC/doc/latex/fncychap/Glenns.eps + RELOC/doc/latex/fncychap/Lenny.eps + RELOC/doc/latex/fncychap/Lennys.eps + RELOC/doc/latex/fncychap/README + 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.tex + RELOC/doc/latex/fncychap/manifest.txt +catalogue-ctan /macros/latex/contrib/fncychap +catalogue-date 2012-04-06 15:13:57 +0200 +catalogue-license lppl1.3 +catalogue-version v1.34 + +name fncylab +category Package +revision 17382 +shortdesc Alter the format of \label references. +relocated 1 +longdesc LaTeX provides a mechanism for altering the appearance of +longdesc references to labels, but it's somewhat flawed, and requires +longdesc that the user manipulate internal commands. The package solves +longdesc the problem, by providing a \labelformat command for changing +longdesc the format of references to labels. The package also provides a +longdesc \Ref command to make reference to such redefined labels at the +longdesc start of a sentence. +runfiles size=1 + RELOC/tex/latex/fncylab/fncylab.sty +docfiles size=54 + RELOC/doc/latex/fncylab/fncylab-example.tex + RELOC/doc/latex/fncylab/fncylab.pdf + RELOC/doc/latex/fncylab/fncylab.tex +catalogue-ctan /macros/latex/contrib/fncylab +catalogue-date 2012-04-06 15:13:57 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name fnpara +category Package +revision 25607 +shortdesc Footnotes in paragraphs. +relocated 1 +longdesc Typeset footnotes in run-on paragraphs, instead of one above +longdesc another; this is a re-seating, for the LaTeX environment, of an +longdesc example in the TeXbook. The same basic code, improved for use +longdesc in e-TeX-based LaTeX, appears in the comprehensive footnote +longdesc package footmisc, and superior versions are also available in +longdesc the manyfoot and bigfoot packages. +runfiles size=2 + RELOC/tex/latex/fnpara/fnpara.sty +docfiles size=45 + RELOC/doc/latex/fnpara/fnpara-doc.pdf + RELOC/doc/latex/fnpara/fnpara-doc.tex +catalogue-ctan /macros/latex/contrib/fnpara +catalogue-date 2012-03-11 01:08:16 +0100 +catalogue-license lppl1.3 + +name fnpct +category Package +revision 36346 +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. +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-ctan /macros/latex/contrib/fnpct +catalogue-date 2015-02-21 19:54:47 +0100 +catalogue-license lppl1.3 +catalogue-version 0.4c + +name fntproof +category Package +revision 20638 +shortdesc A programmable font test pattern generator. +relocated 1 +longdesc The package implements all the font testing commands of Knuth's +longdesc testfont.tex, but arranges that information necessary for each +longdesc command is supplied as arguments to that command, rather than +longdesc prompted for. This makes it possible to type all the tests in +longdesc one command line, and easy to input the package in a file and +longdesc to use the commands there. A few additional commands supporting +longdesc this last purpose are also made available. +runfiles size=4 + RELOC/tex/generic/fntproof/fntproof.tex +docfiles size=57 + RELOC/doc/generic/fntproof/README + RELOC/doc/generic/fntproof/fntproof-doc.pdf + RELOC/doc/generic/fntproof/fntproof-doc.tex +catalogue-ctan /macros/generic/fntproof +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd + +name fnumprint +category Package +revision 29173 +shortdesc Print a number in 'appropriate' format. +relocated 1 +longdesc The package defines two macros which decide to typeset a number +longdesc either as an Arabic number or as a word (or words) for the +longdesc number. If the number is between zero and twelve (including +longdesc zero and twelve) then words will be used; if the number is +longdesc outside that range, it will be typeset using the package +longdesc numprint Words for English representation of numbers are +longdesc generated within the package, while those for German are +longdesc generated using the package zahl2string. +runfiles size=1 + RELOC/tex/latex/fnumprint/fnumprint.sty +docfiles size=64 + RELOC/doc/latex/fnumprint/README + RELOC/doc/latex/fnumprint/fnumprint.pdf +srcfiles size=4 + RELOC/source/latex/fnumprint/fnumprint.dtx + RELOC/source/latex/fnumprint/fnumprint.ins +catalogue-ctan /macros/latex/contrib/fnumprint +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1a + +name foekfont +category Package +revision 15878 +shortdesc The title font of the Mads Fok magazine. +relocated 1 +longdesc The bundle provides an Adobe Type 1 font, and LaTeX support for +longdesc its use. The magazine web site shows the font in use in a few +longdesc places. +execute addMap foekfont.map +runfiles size=8 + RELOC/fonts/map/dvips/foekfont/foekfont.map + RELOC/fonts/tfm/public/foekfont/foekfont.tfm + RELOC/fonts/type1/public/foekfont/FoekFont.pfb + RELOC/tex/latex/foekfont/foekfont.sty + RELOC/tex/latex/foekfont/ot1foekfont.fd + RELOC/tex/latex/foekfont/t1foekfont.fd +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-license gpl + +name foilhtml +category Package +revision 21855 +shortdesc Interface between foiltex and LaTeX2HTML. +relocated 1 +longdesc Provides integration between FoilTeX and LaTeX2HTML, adding +longdesc sectioning commands and elements of logical formatting to +longdesc FoilTeX and providing support for FoilTeX commands in +longdesc LaTeX2HTML. +runfiles size=4 + RELOC/tex/latex/foilhtml/foilhtml.cfg + RELOC/tex/latex/foilhtml/foilhtml.sty +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 +srcfiles size=18 + RELOC/source/latex/foilhtml/foilhtml.drv + RELOC/source/latex/foilhtml/foilhtml.dtx + RELOC/source/latex/foilhtml/foilhtml.ins +catalogue-ctan /macros/latex/contrib/foilhtml +catalogue-date 2012-02-23 00:03:38 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name fonetika +category Package +revision 21326 +shortdesc Support for the Danish "Dania" phonetic system. +relocated 1 +longdesc Fonetika Dania is a font bundle with a serif font and a sans +longdesc serif font for the danish phonetic system Dania. Both fonts +longdesc exist in regular and bold weights. LaTeX support is provided. +longdesc The fonts are based on URW Palladio and Iwona Condensed, and +longdesc were created using FontForge. +execute addMap fonetika.map +runfiles size=37 + RELOC/fonts/afm/public/fonetika/FonetikaDaniaIwonaeBold.afm + RELOC/fonts/afm/public/fonetika/FonetikaDaniaIwonaeRegular.afm + RELOC/fonts/afm/public/fonetika/FonetikaDaniaPallaeBold.afm + RELOC/fonts/afm/public/fonetika/FonetikaDaniaPallaeRegular.afm + RELOC/fonts/map/dvips/fonetika/fonetika.map + RELOC/fonts/tfm/public/fonetika/fonetika.tfm + RELOC/fonts/tfm/public/fonetika/fonetikabold.tfm + RELOC/fonts/tfm/public/fonetika/fonetikasans.tfm + RELOC/fonts/tfm/public/fonetika/fonetikasansbold.tfm + RELOC/fonts/truetype/public/fonetika/FonetikaDaniaIwonaeBold.ttf + RELOC/fonts/truetype/public/fonetika/FonetikaDaniaIwonaeRegular.ttf + RELOC/fonts/truetype/public/fonetika/FonetikaDaniaPallaeBold.ttf + RELOC/fonts/truetype/public/fonetika/FonetikaDaniaPallaeRegular.ttf + RELOC/fonts/type1/public/fonetika/FonetikaDaniaIwonaeBold.pfb + RELOC/fonts/type1/public/fonetika/FonetikaDaniaIwonaeRegular.pfb + RELOC/fonts/type1/public/fonetika/FonetikaDaniaPallaeBold.pfb + RELOC/fonts/type1/public/fonetika/FonetikaDaniaPallaeRegular.pfb + RELOC/tex/latex/fonetika/fonetika.sty + RELOC/tex/latex/fonetika/t1fonetika.fd +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-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 + +name font-change +category Package +revision 38286 +shortdesc Macros to change text and mathematics fonts in plain TeX +relocated 1 +longdesc Macros to Change Text and Mathematics fonts in TeX: 45 +longdesc Beautiful Variants The macros are written for plain TeX and may +longdesc be used with other packages like AmSTeX, eplain, etc. They also +longdesc work with XeTeX. The macros allow users to change the fonts +longdesc (for both text and mathematics) in their TeX document with only +longdesc one statement. The fonts may be used readily at various +longdesc predefined sizes. All the fonts called by these macro files are +longdesc free and are included in current MiKTeX and TeX Live +longdesc distributions. +runfiles size=220 + RELOC/tex/plain/font-change/font-change.tex + RELOC/tex/plain/font-change/font-change_FRENCH.tex + RELOC/tex/plain/font-change/font_antp_euler.tex + RELOC/tex/plain/font-change/font_antt-condensed-light.tex + RELOC/tex/plain/font-change/font_antt-condensed-medium.tex + RELOC/tex/plain/font-change/font_antt-condensed.tex + RELOC/tex/plain/font-change/font_antt-light.tex + RELOC/tex/plain/font-change/font_antt-medium.tex + RELOC/tex/plain/font-change/font_antt.tex + RELOC/tex/plain/font-change/font_arev.tex + RELOC/tex/plain/font-change/font_artemisia_euler.tex + RELOC/tex/plain/font-change/font_bera_concrete.tex + RELOC/tex/plain/font-change/font_bera_euler.tex + RELOC/tex/plain/font-change/font_bera_fnc.tex + RELOC/tex/plain/font-change/font_bookman.tex + RELOC/tex/plain/font-change/font_century.tex + RELOC/tex/plain/font-change/font_charter.tex + RELOC/tex/plain/font-change/font_cm.tex + RELOC/tex/plain/font-change/font_cmbright.tex + RELOC/tex/plain/font-change/font_concrete.tex + RELOC/tex/plain/font-change/font_epigrafica_euler.tex + RELOC/tex/plain/font-change/font_epigrafica_palatino.tex + RELOC/tex/plain/font-change/font_iwona-bold.tex + RELOC/tex/plain/font-change/font_iwona-condensed-bold.tex + RELOC/tex/plain/font-change/font_iwona-condensed-light.tex + RELOC/tex/plain/font-change/font_iwona-condensed-medium.tex + RELOC/tex/plain/font-change/font_iwona-condensed.tex + RELOC/tex/plain/font-change/font_iwona-light.tex + RELOC/tex/plain/font-change/font_iwona-medium.tex + RELOC/tex/plain/font-change/font_iwona.tex + RELOC/tex/plain/font-change/font_kp-light.tex + RELOC/tex/plain/font-change/font_kp.tex + RELOC/tex/plain/font-change/font_kurier-bold.tex + RELOC/tex/plain/font-change/font_kurier-condensed-bold.tex + RELOC/tex/plain/font-change/font_kurier-condensed-light.tex + RELOC/tex/plain/font-change/font_kurier-condensed-medium.tex + RELOC/tex/plain/font-change/font_kurier-condensed.tex + RELOC/tex/plain/font-change/font_kurier-light.tex + RELOC/tex/plain/font-change/font_kurier-medium.tex + RELOC/tex/plain/font-change/font_kurier.tex + RELOC/tex/plain/font-change/font_libertine_kp.tex + RELOC/tex/plain/font-change/font_libertine_palatino.tex + RELOC/tex/plain/font-change/font_libertine_times.tex + RELOC/tex/plain/font-change/font_mdutopia.tex + RELOC/tex/plain/font-change/font_pagella.tex + RELOC/tex/plain/font-change/font_palatino.tex + RELOC/tex/plain/font-change/font_times.tex + RELOC/tex/plain/font-change/font_utopia.tex +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-license other-free +catalogue-topics font-supp plain-ext +catalogue-version 2015.2 + +name fontch +category Package +revision 17859 +shortdesc Changing fonts, sizes and encodings in Plain TeX. +relocated 1 +longdesc The fontch macros allow the user to change font size and family +longdesc anywhere in a plain TeX document. Sizes of 8, 10, 12, 14, 20 +longdesc and 24 points are available. A sans serif family (\sf) is +longdesc defined in addition to the families already defined in plain +longdesc TeX. Optional support for Latin Modern T1 and TS1 fonts is +longdesc given. There are macros for non-latin1 letters and for most TS1 +longdesc symbols. Math mode always uses CM fonts. A command for +longdesc producing doubled-spaced documents is also provided. The +longdesc present version of the package is designed to deal with the +longdesc latest release of the Latin Modern fonts version 1.106. +longdesc Unfortunately, it can no longer support earlier versions of the +longdesc fonts, so an obsolete version of the package is retained for +longdesc users who don't yet have access to the latest version of the +longdesc fonts. +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-ctan /macros/plain/contrib/fontch +catalogue-date 2012-07-06 22:53:14 +0200 +catalogue-license lppl +catalogue-version 2.2 + +name fontinst +category Package +revision 37078 +shortdesc Help with installing fonts for TeX and LaTeX. +longdesc TeX macros for converting Adobe Font Metric files to TeX metric +longdesc and virtual font format. Fontinst helps mainly with the number +longdesc crunching and shovelling parts of font installation. This means +longdesc in practice that it creates a number of files which give the +longdesc TeX metrics (and related information) for a font family that +longdesc (La)TeX needs to do any typesetting in these fonts. Fontinst +longdesc furthermore makes it easy to create fonts containing glyphs +longdesc from more than one base font, taking advantage of (e.g.) +longdesc "expert" font sets. Fontinst cannot examine files to see if +longdesc they contain any useful information, nor automatically search +longdesc for files or work with binary file formats; those tasks must +longdesc normally be done manually or with the help of some other tool, +longdesc such as the pltotf and vptovf programs. +depend fontinst.ARCH +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 + texmf-dist/doc/fonts/fontinst/encspecs/encspecs.tex + texmf-dist/doc/fonts/fontinst/encspecs/omxdraft.etx + texmf-dist/doc/fonts/fontinst/encspecs/ot1draft.etx + texmf-dist/doc/fonts/fontinst/encspecs/t1draft.etx + texmf-dist/doc/fonts/fontinst/examples/basic/basicex.tex + texmf-dist/doc/fonts/fontinst/examples/basic/basicex2.tex + texmf-dist/doc/fonts/fontinst/examples/eurofont/Makefile + texmf-dist/doc/fonts/fontinst/examples/eurofont/eurofont.map + texmf-dist/doc/fonts/fontinst/examples/eurofont/eurofont.tex + texmf-dist/doc/fonts/fontinst/examples/mathptm/Makefile + texmf-dist/doc/fonts/fontinst/examples/mathptm/fontptcm.tex + texmf-dist/doc/fonts/fontinst/examples/mathptm/mathtest.tex + texmf-dist/doc/fonts/fontinst/examples/mathptm/resetsy.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/unsetmu.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zrhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zrmhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zrmkern.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zrvhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptm/zryhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/Makefile + texmf-dist/doc/fonts/fontinst/examples/mathptmx/fontptcmx.tex + texmf-dist/doc/fonts/fontinst/examples/mathptmx/mathptmx.sty + texmf-dist/doc/fonts/fontinst/examples/mathptmx/mathtestx.tex + texmf-dist/doc/fonts/fontinst/examples/mathptmx/resetsy.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/unsetmu.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrmhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrmkernx.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrvhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zryhax.mtx + texmf-dist/doc/fonts/fontinst/examples/mathptmx/zrykernx.mtx + texmf-dist/doc/fonts/fontinst/manual/fontinst.pdf + texmf-dist/doc/fonts/fontinst/manual/fontinst.tex + texmf-dist/doc/fonts/fontinst/manual/intro98.pdf + texmf-dist/doc/fonts/fontinst/manual/intro98.tex + texmf-dist/doc/fonts/fontinst/manual/roadmap.eps + texmf-dist/doc/fonts/fontinst/talks/et99-font-tables.pdf + texmf-dist/doc/fonts/fontinst/talks/et99-font-tutorial.pdf + texmf-dist/doc/fonts/fontinst/test/cc-pl.enc + texmf-dist/doc/fonts/fontinst/test/comparemetrics.sty + texmf-dist/doc/fonts/fontinst/test/comparepls.tex + texmf-dist/doc/fonts/fontinst/test/fadrr.mtx + texmf-dist/doc/fonts/fontinst/test/multislot-test.tex + texmf-dist/doc/fonts/fontinst/test/multislot.etx + texmf-dist/doc/fonts/fontinst/test/omsdraft.etx + texmf-dist/doc/fonts/fontinst/test/testsc.tex + texmf-dist/doc/fonts/fontinst/test/v1901test.mtx + texmf-dist/doc/fonts/fontinst/test/v1901test.tex + texmf-dist/doc/fonts/fontinst/test/v1902test.tex + texmf-dist/doc/fonts/fontinst/test/v1905test.tex + texmf-dist/doc/fonts/fontinst/test/v1906test.etx + texmf-dist/doc/fonts/fontinst/test/v1906test.mtx + texmf-dist/doc/fonts/fontinst/test/v1906test.tex + texmf-dist/doc/fonts/fontinst/test/v1913test.tex + texmf-dist/doc/fonts/fontinst/test/v1914test.tex + texmf-dist/doc/fonts/fontinst/test/v1914testmap.tex + texmf-dist/doc/fonts/fontinst/test/v1914testshow.tex + texmf-dist/doc/fonts/fontinst/test/v1915test.tex + texmf-dist/doc/fonts/fontinst/test/v1915testmap.tex + texmf-dist/doc/fonts/fontinst/test/v1916test.mtx + texmf-dist/doc/fonts/fontinst/test/v1916test.tex + texmf-dist/doc/fonts/fontinst/test/v1916test2.tex + texmf-dist/doc/fonts/fontinst/test/v1923test.tex + texmf-dist/doc/fonts/fontinst/test/v1927test.tex + texmf-dist/doc/fonts/fontinst/test/v1928test.tex + texmf-dist/doc/fonts/fontinst/test/v1928test2.tex + texmf-dist/doc/fonts/fontinst/test/v1930test.tex + texmf-dist/doc/fonts/fontinst/test/v1931test0.tex + texmf-dist/doc/fonts/fontinst/test/v1931test1.tex + texmf-dist/doc/fonts/fontinst/test/v1931test2.tex + texmf-dist/doc/man/man1/fontinst.1 + texmf-dist/doc/man/man1/fontinst.man1.pdf +srcfiles size=469 + texmf-dist/source/fontinst/base/CHANGES + texmf-dist/source/fontinst/base/fibasics.dtx + texmf-dist/source/fontinst/base/ficommon.dtx + texmf-dist/source/fontinst/base/ficonv.dtx + texmf-dist/source/fontinst/base/filtfam.dtx + texmf-dist/source/fontinst/base/fimain.dtx + texmf-dist/source/fontinst/base/fimapgen.dtx + texmf-dist/source/fontinst/base/fisource.dvi + texmf-dist/source/fontinst/base/fisource.ist + texmf-dist/source/fontinst/base/fisource.sty + texmf-dist/source/fontinst/base/fisource.tex + texmf-dist/source/fontinst/base/fitrig.dtx + texmf-dist/source/fontinst/base/fontinst.ins +catalogue-ctan /fonts/utilities/fontinst +catalogue-date 2012-07-06 12:12:34 +0200 +catalogue-license lppl +catalogue-version 1.933 + +name fontinst.i386-linux +category Package +revision 29741 +shortdesc i386-linux files of fontinst +binfiles arch=i386-linux size=1 + bin/i386-linux/fontinst + +name fontmfizz +category Package +revision 35892 +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 + RELOC/doc/fonts/fontmfizz/LICENSE + RELOC/doc/fonts/fontmfizz/README + RELOC/doc/fonts/fontmfizz/fontmfizz.pdf + RELOC/doc/fonts/fontmfizz/fontmfizz.tex +catalogue-ctan /fonts/fontmfizz +catalogue-date 2015-01-14 14:16:00 +0100 +catalogue-license other-free + +name fontname +category Package +revision 38345 +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 +docfiles size=781 + RELOC/doc/fonts/fontname/8a.html + RELOC/doc/fonts/fontname/8r.html + RELOC/doc/fonts/fontname/Adobe-fonts.html + RELOC/doc/fonts/fontname/Apple-fonts.html + RELOC/doc/fonts/fontname/Bitstream-fonts.html + RELOC/doc/fonts/fontname/ChangeLog + RELOC/doc/fonts/fontname/DTC-fonts.html + RELOC/doc/fonts/fontname/Encodings.html + RELOC/doc/fonts/fontname/Filenames-for-fonts.html + RELOC/doc/fonts/fontname/Font-legalities.html + RELOC/doc/fonts/fontname/Font-name-lists.html + RELOC/doc/fonts/fontname/History.html + RELOC/doc/fonts/fontname/ITC-fonts.html + RELOC/doc/fonts/fontname/Introduction.html + RELOC/doc/fonts/fontname/Linotype-fonts.html + RELOC/doc/fonts/fontname/Long-names.html + RELOC/doc/fonts/fontname/Long-naming-scheme.html + RELOC/doc/fonts/fontname/Makefile + RELOC/doc/fonts/fontname/Monotype-fonts.html + RELOC/doc/fonts/fontname/Name-mapping-file.html + RELOC/doc/fonts/fontname/References.html + RELOC/doc/fonts/fontname/Standard-PostScript-fonts.html + RELOC/doc/fonts/fontname/Suppliers.html + RELOC/doc/fonts/fontname/Typefaces.html + RELOC/doc/fonts/fontname/URW-fonts.html + RELOC/doc/fonts/fontname/Variants.html + RELOC/doc/fonts/fontname/Weights.html + RELOC/doc/fonts/fontname/Widths.html + RELOC/doc/fonts/fontname/bitstrea.aka + RELOC/doc/fonts/fontname/cork.html + RELOC/doc/fonts/fontname/dvips.html + RELOC/doc/fonts/fontname/fontname.aux + RELOC/doc/fonts/fontname/fontname.cp + RELOC/doc/fonts/fontname/fontname.html + RELOC/doc/fonts/fontname/fontname.pdf + RELOC/doc/fonts/fontname/fontname.texi + RELOC/doc/fonts/fontname/fontname.toc + RELOC/doc/fonts/fontname/index.html + RELOC/doc/fonts/fontname/texmext.html + RELOC/doc/fonts/fontname/texmital.html + RELOC/doc/fonts/fontname/texmsym.html + RELOC/doc/fonts/fontname/texnansi.html + RELOC/doc/fonts/fontname/texnansx.html + RELOC/doc/fonts/fontname/xl2.html + RELOC/doc/fonts/fontname/xt2.html + RELOC/doc/info/fontname.info +catalogue-ctan /info/fontname +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license gpl +catalogue-topics font-doc + +name fontools +category Package +revision 37381 +shortdesc Tools to simplify using fonts (especially TT/OTF ones). +longdesc This package provides a few tools to ease using fonts +longdesc (especially Truetype/Opentype ones) with Latex and fontinst: +longdesc afm2afm - reencode .afm files; designed to replace fontinst's +longdesc \reencodefont for big .afm files; autoinst - simplify the use +longdesc 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 + texmf-dist/doc/man/man1/afm2afm.1 + texmf-dist/doc/man/man1/afm2afm.man1.pdf + texmf-dist/doc/man/man1/autoinst.1 + texmf-dist/doc/man/man1/autoinst.man1.pdf + texmf-dist/doc/man/man1/ot2kpx.1 + texmf-dist/doc/man/man1/ot2kpx.man1.pdf + texmf-dist/doc/support/fontools/GPLv2.txt + texmf-dist/doc/support/fontools/README +catalogue-ctan /fonts/utilities/fontools +catalogue-date 2015-05-13 20:24:12 +0200 +catalogue-license gpl2 + +name fontools.i386-linux +category Package +revision 25997 +shortdesc i386-linux files of fontools +binfiles arch=i386-linux size=3 + bin/i386-linux/afm2afm + bin/i386-linux/autoinst + bin/i386-linux/ot2kpx + +name fontspec +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 + +name fonts-tlwg +category Package +revision 34560 +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 +longdesc package. +execute addMap nectec.map +execute addMap nf.map +execute addMap sipa.map +execute addMap tlwg.map +runfiles size=1440 + RELOC/fonts/afm/public/fonts-tlwg/garuda.afm + RELOC/fonts/afm/public/fonts-tlwg/garuda_b.afm + RELOC/fonts/afm/public/fonts-tlwg/garuda_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/garuda_o.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_b.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_bi.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_i.afm + RELOC/fonts/afm/public/fonts-tlwg/kinnari_o.afm + RELOC/fonts/afm/public/fonts-tlwg/laksaman.afm + RELOC/fonts/afm/public/fonts-tlwg/laksaman_b.afm + RELOC/fonts/afm/public/fonts-tlwg/laksaman_bi.afm + RELOC/fonts/afm/public/fonts-tlwg/laksaman_i.afm + RELOC/fonts/afm/public/fonts-tlwg/loma.afm + RELOC/fonts/afm/public/fonts-tlwg/loma_b.afm + RELOC/fonts/afm/public/fonts-tlwg/loma_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/loma_o.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_b.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_bi.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_i.afm + RELOC/fonts/afm/public/fonts-tlwg/norasi_o.afm + RELOC/fonts/afm/public/fonts-tlwg/purisa.afm + RELOC/fonts/afm/public/fonts-tlwg/purisa_b.afm + RELOC/fonts/afm/public/fonts-tlwg/purisa_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/purisa_o.afm + RELOC/fonts/afm/public/fonts-tlwg/sawasdee.afm + RELOC/fonts/afm/public/fonts-tlwg/sawasdee_b.afm + RELOC/fonts/afm/public/fonts-tlwg/sawasdee_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/sawasdee_o.afm + RELOC/fonts/afm/public/fonts-tlwg/ttype.afm + RELOC/fonts/afm/public/fonts-tlwg/ttype_b.afm + RELOC/fonts/afm/public/fonts-tlwg/ttype_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/ttype_o.afm + RELOC/fonts/afm/public/fonts-tlwg/ttypist.afm + RELOC/fonts/afm/public/fonts-tlwg/ttypist_b.afm + RELOC/fonts/afm/public/fonts-tlwg/ttypist_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/ttypist_o.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_b.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_l.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_lo.afm + RELOC/fonts/afm/public/fonts-tlwg/umpush_o.afm + RELOC/fonts/afm/public/fonts-tlwg/waree.afm + RELOC/fonts/afm/public/fonts-tlwg/waree_b.afm + RELOC/fonts/afm/public/fonts-tlwg/waree_bo.afm + RELOC/fonts/afm/public/fonts-tlwg/waree_o.afm + RELOC/fonts/enc/dvips/fonts-tlwg/lthtlwg.enc + RELOC/fonts/map/dvips/fonts-tlwg/nectec.map + RELOC/fonts/map/dvips/fonts-tlwg/nf.map + RELOC/fonts/map/dvips/fonts-tlwg/sipa.map + RELOC/fonts/map/dvips/fonts-tlwg/tlwg.map + RELOC/fonts/tfm/public/fonts-tlwg/garuda.tfm + RELOC/fonts/tfm/public/fonts-tlwg/garuda_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/garuda_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/garuda_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/kinnari_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/laksaman.tfm + RELOC/fonts/tfm/public/fonts-tlwg/laksaman_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/laksaman_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/laksaman_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/loma.tfm + RELOC/fonts/tfm/public/fonts-tlwg/loma_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/loma_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/loma_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/norasi_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/purisa.tfm + RELOC/fonts/tfm/public/fonts-tlwg/purisa_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/purisa_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/purisa_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rgaruda.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rgaruda_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rgaruda_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rgaruda_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rkinnari_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rlaksaman.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rlaksaman_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rlaksaman_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rlaksaman_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rloma.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rloma_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rloma_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rloma_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bi.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_i.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rnorasi_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rpurisa.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rpurisa_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rpurisa_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rpurisa_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rsawasdee.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rsawasdee_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rsawasdee_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rsawasdee_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttype.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttype_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttype_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttype_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttypist.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttypist_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttypist_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rttypist_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_l.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_lo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rumpush_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rwaree.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rwaree_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rwaree_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/rwaree_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/sawasdee.tfm + RELOC/fonts/tfm/public/fonts-tlwg/sawasdee_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/sawasdee_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/sawasdee_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttype.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttype_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttype_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttype_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttypist.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttypist_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttypist_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/ttypist_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_l.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_lo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/umpush_o.tfm + RELOC/fonts/tfm/public/fonts-tlwg/waree.tfm + RELOC/fonts/tfm/public/fonts-tlwg/waree_b.tfm + RELOC/fonts/tfm/public/fonts-tlwg/waree_bo.tfm + RELOC/fonts/tfm/public/fonts-tlwg/waree_o.tfm + RELOC/fonts/type1/public/fonts-tlwg/garuda.pfb + RELOC/fonts/type1/public/fonts-tlwg/garuda_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/garuda_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/garuda_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_bi.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_i.pfb + RELOC/fonts/type1/public/fonts-tlwg/kinnari_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/laksaman.pfb + RELOC/fonts/type1/public/fonts-tlwg/laksaman_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/laksaman_bi.pfb + RELOC/fonts/type1/public/fonts-tlwg/laksaman_i.pfb + RELOC/fonts/type1/public/fonts-tlwg/loma.pfb + RELOC/fonts/type1/public/fonts-tlwg/loma_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/loma_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/loma_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_bi.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_i.pfb + RELOC/fonts/type1/public/fonts-tlwg/norasi_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/purisa.pfb + RELOC/fonts/type1/public/fonts-tlwg/purisa_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/purisa_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/purisa_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/sawasdee.pfb + RELOC/fonts/type1/public/fonts-tlwg/sawasdee_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/sawasdee_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/sawasdee_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttype.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttype_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttype_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttype_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttypist.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttypist_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttypist_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/ttypist_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_l.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_lo.pfb + RELOC/fonts/type1/public/fonts-tlwg/umpush_o.pfb + RELOC/fonts/type1/public/fonts-tlwg/waree.pfb + RELOC/fonts/type1/public/fonts-tlwg/waree_b.pfb + RELOC/fonts/type1/public/fonts-tlwg/waree_bo.pfb + RELOC/fonts/type1/public/fonts-tlwg/waree_o.pfb + RELOC/fonts/vf/public/fonts-tlwg/garuda.vf + RELOC/fonts/vf/public/fonts-tlwg/garuda_b.vf + RELOC/fonts/vf/public/fonts-tlwg/garuda_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/garuda_o.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_b.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_bi.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_i.vf + RELOC/fonts/vf/public/fonts-tlwg/kinnari_o.vf + RELOC/fonts/vf/public/fonts-tlwg/laksaman.vf + RELOC/fonts/vf/public/fonts-tlwg/laksaman_b.vf + RELOC/fonts/vf/public/fonts-tlwg/laksaman_bi.vf + RELOC/fonts/vf/public/fonts-tlwg/laksaman_i.vf + RELOC/fonts/vf/public/fonts-tlwg/loma.vf + RELOC/fonts/vf/public/fonts-tlwg/loma_b.vf + RELOC/fonts/vf/public/fonts-tlwg/loma_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/loma_o.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_b.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bi.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_i.vf + RELOC/fonts/vf/public/fonts-tlwg/norasi_o.vf + RELOC/fonts/vf/public/fonts-tlwg/purisa.vf + RELOC/fonts/vf/public/fonts-tlwg/purisa_b.vf + RELOC/fonts/vf/public/fonts-tlwg/purisa_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/purisa_o.vf + RELOC/fonts/vf/public/fonts-tlwg/sawasdee.vf + RELOC/fonts/vf/public/fonts-tlwg/sawasdee_b.vf + RELOC/fonts/vf/public/fonts-tlwg/sawasdee_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/sawasdee_o.vf + RELOC/fonts/vf/public/fonts-tlwg/ttype.vf + RELOC/fonts/vf/public/fonts-tlwg/ttype_b.vf + RELOC/fonts/vf/public/fonts-tlwg/ttype_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/ttype_o.vf + RELOC/fonts/vf/public/fonts-tlwg/ttypist.vf + RELOC/fonts/vf/public/fonts-tlwg/ttypist_b.vf + RELOC/fonts/vf/public/fonts-tlwg/ttypist_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/ttypist_o.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_b.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_l.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_lo.vf + RELOC/fonts/vf/public/fonts-tlwg/umpush_o.vf + RELOC/fonts/vf/public/fonts-tlwg/waree.vf + RELOC/fonts/vf/public/fonts-tlwg/waree_b.vf + RELOC/fonts/vf/public/fonts-tlwg/waree_bo.vf + RELOC/fonts/vf/public/fonts-tlwg/waree_o.vf + RELOC/tex/latex/fonts-tlwg/fonts-tlwg.sty + RELOC/tex/latex/fonts-tlwg/lthgaruda.fd + RELOC/tex/latex/fonts-tlwg/lthkinnari.fd + RELOC/tex/latex/fonts-tlwg/lthlaksaman.fd + RELOC/tex/latex/fonts-tlwg/lthloma.fd + RELOC/tex/latex/fonts-tlwg/lthnorasi.fd + RELOC/tex/latex/fonts-tlwg/lthpurisa.fd + RELOC/tex/latex/fonts-tlwg/lthsawasdee.fd + RELOC/tex/latex/fonts-tlwg/lthttype.fd + RELOC/tex/latex/fonts-tlwg/lthttypist.fd + RELOC/tex/latex/fonts-tlwg/lthumpush.fd + RELOC/tex/latex/fonts-tlwg/lthwaree.fd +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-ctan /fonts/thai/fonts-tlwg +catalogue-date 2014-07-07 18:44:04 +0200 +catalogue-license gpl +catalogue-version 0.6.1 + +name fonttable +category Package +revision 21399 +shortdesc Print font tables from a LaTeX document. +relocated 1 +longdesc This is a package version of nfssfont.tex (part of the LaTeX +longdesc distribution); it enables you to print a table of the +longdesc characters of a font and/or some text (for demonstration or +longdesc testing purposes), from within a document. (Packages such as +longdesc testfont and nfssfont.tex provide these facilities, but they +longdesc run as interactive programs: the user is expected to type +longdesc details of what is needed.) Note that the package mftinc also +longdesc has a \fonttable function; the documentation explains how avoid +longdesc a clash with that package. +runfiles size=4 + RELOC/tex/latex/fonttable/fonttable.sty +docfiles size=77 + RELOC/doc/latex/fonttable/README + RELOC/doc/latex/fonttable/fonttable.pdf +srcfiles size=13 + RELOC/source/latex/fonttable/fonttable.dtx + RELOC/source/latex/fonttable/fonttable.ins +catalogue-ctan /macros/latex/contrib/fonttable +catalogue-date 2012-07-06 23:09:35 +0200 +catalogue-license lppl1.3 +catalogue-version 1.6b + +name fontware +category TLCore +revision 37078 +depend fontware.ARCH +docfiles size=12 + texmf-dist/doc/man/man1/pltotf.1 + texmf-dist/doc/man/man1/pltotf.man1.pdf + texmf-dist/doc/man/man1/tftopl.1 + texmf-dist/doc/man/man1/tftopl.man1.pdf + texmf-dist/doc/man/man1/vftovp.1 + texmf-dist/doc/man/man1/vftovp.man1.pdf + texmf-dist/doc/man/man1/vptovf.1 + texmf-dist/doc/man/man1/vptovf.man1.pdf + +name fontware.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of fontware +binfiles arch=i386-linux size=116 + bin/i386-linux/pltotf + bin/i386-linux/tftopl + bin/i386-linux/vftovp + bin/i386-linux/vptovf + +name fontwrap +category Package +revision 15878 +shortdesc Bind fonts to specific unicode blocks. +relocated 1 +longdesc The package (which runs under XeLaTeX) lets you bind fonts to +longdesc specific unicode blocks, for automatic font tagging of +longdesc multilingual text. The package uses Perl (via perltex) to +longdesc construct its tables. +runfiles size=18 + RELOC/tex/xelatex/fontwrap/fontwrap.sty +docfiles size=77 + RELOC/doc/xelatex/fontwrap/README + RELOC/doc/xelatex/fontwrap/fontwrap.pdf + RELOC/doc/xelatex/fontwrap/fontwrap.tex + RELOC/doc/xelatex/fontwrap/fontwrap_example.pdf + RELOC/doc/xelatex/fontwrap/fontwrap_example.tex +catalogue-ctan /macros/xetex/latex/fontwrap +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl + +name footbib +category Package +revision 17115 +shortdesc Bibliographic references as footnotes. +relocated 1 +longdesc The package makes bibliographic references appear as footnotes. +longdesc It defines a command \footcite which is similar to the LaTeX +longdesc \cite command but the references cited in this way appear at +longdesc the bottom of the pages. This 'foot bibliography' does not +longdesc conflict with the standard one and both may exist +longdesc simultaneously in a document. The command \cite may still be +longdesc used to produce the standard bibliography. The foot +longdesc bibliography uses its own style and bibliographic database +longdesc which may be specified independently of the standard one. Any +longdesc standard bibliography style may be used. +runfiles size=7 + RELOC/tex/latex/footbib/footbib.sty +docfiles size=57 + RELOC/doc/latex/footbib/README + RELOC/doc/latex/footbib/footbib.pdf +srcfiles size=24 + RELOC/source/latex/footbib/footbib.dtx + RELOC/source/latex/footbib/footbib.ins +catalogue-ctan /macros/latex/contrib/footbib +catalogue-date 2012-06-18 18:51:38 +0200 +catalogue-license lppl +catalogue-version 2.0.7 + +name footmisc +category Package +revision 23330 +shortdesc A range of footnote options. +relocated 1 +longdesc A collection of ways to change the typesetting of footnotes. +longdesc The package provides means of changing the layout of the +longdesc footnotes themselves (including setting them in 'paragraphs' -- +longdesc the para option), a way to number footnotes per page (the +longdesc perpage option), to make footnotes disappear in a 'moving' +longdesc argument (stable option) and to deal with multiple references +longdesc to footnotes from the same place (multiple option). The package +longdesc also has a range of techniques for labelling footnotes with +longdesc symbols rather than numbers. Some of the functions of the +longdesc package are overlap with the functionality of other packages. +longdesc The para option is also provided by the manyfoot and bigfoot +longdesc packages, though those are both also portmanteau packages. +longdesc (Don't be seduced by fnpara, whose implementation is improved +longdesc by the present package.) The perpage option is also offered by +longdesc footnpag and by the rather more general-purpose perpage +runfiles size=7 + RELOC/tex/latex/footmisc/footmisc.sty +docfiles size=81 + RELOC/doc/latex/footmisc/README + RELOC/doc/latex/footmisc/footmisc.pdf +srcfiles size=20 + RELOC/source/latex/footmisc/footmisc.dtx + RELOC/source/latex/footmisc/footmisc.ins +catalogue-ctan /macros/latex/contrib/footmisc +catalogue-date 2014-02-27 13:35:44 +0100 +catalogue-license lppl1.3 +catalogue-version 5.5b + +name footnotebackref +category Package +revision 27034 +shortdesc Back-references from footnotes. +relocated 1 +longdesc The package provides the means of creating hyperlinks, from a +longdesc footnote at the bottom of the page, back to the occurence of +longdesc the footnote in the main text. +runfiles size=1 + RELOC/tex/latex/footnotebackref/footnotebackref.sty +docfiles size=32 + RELOC/doc/latex/footnotebackref/README + RELOC/doc/latex/footnotebackref/footnotebackref.pdf + RELOC/doc/latex/footnotebackref/footnotebackref.tex +catalogue-ctan /macros/latex/contrib/footnotebackref +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name footnoterange +category Package +revision 25430 +shortdesc References to ranges of footnotes. +relocated 1 +longdesc The package provides 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 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 + RELOC/doc/latex/footnoterange/footnoterange-example.pdf + RELOC/doc/latex/footnoterange/footnoterange-example.tex + RELOC/doc/latex/footnoterange/footnoterange.pdf +srcfiles size=12 + RELOC/source/latex/footnoterange/footnoterange.drv + RELOC/source/latex/footnoterange/footnoterange.dtx + RELOC/source/latex/footnoterange/footnoterange.ins +catalogue-ctan /macros/latex/contrib/footnoterange +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0a + +name footnpag +category Package +revision 15878 +shortdesc Per-page numbering of footnotes. +relocated 1 +longdesc Allows footnotes on individual pages to be numbered from 1, +longdesc rather than being numbered sequentially through the document. +runfiles size=5 + RELOC/tex/latex/footnpag/footnpag.sty +docfiles size=40 + RELOC/doc/latex/footnpag/CATALOG + RELOC/doc/latex/footnpag/History + RELOC/doc/latex/footnpag/INSTALL + RELOC/doc/latex/footnpag/Imakefile + RELOC/doc/latex/footnpag/License + RELOC/doc/latex/footnpag/MANIFEST + RELOC/doc/latex/footnpag/README + 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.tex + RELOC/doc/latex/footnpag/footnpag.doc + RELOC/doc/latex/footnpag/test/Imakefile + RELOC/doc/latex/footnpag/test/eqnarray-fnmark.tex + RELOC/doc/latex/footnpag/test/late.tex + RELOC/doc/latex/footnpag/test/many.tex + RELOC/doc/latex/footnpag/test/minipage.tex + RELOC/doc/latex/footnpag/test/report.tex + RELOC/doc/latex/footnpag/test/title-2col.tex +srcfiles size=1 + RELOC/source/latex/footnpag/Makefile +catalogue-ctan /macros/latex/contrib/footnpag +catalogue-date 2012-05-19 14:48:02 +0200 +catalogue-license gpl + +name forarray +category Package +revision 15878 +shortdesc Using array structures in LaTeX. +relocated 1 +longdesc The package provides functionality for processing lists and +longdesc array structures in LaTeX. Arrays can contain characters as +longdesc well as TeX and LaTeX commands, nesting of arrays is possible, +longdesc and arrays are processed within the same brace level as their +longdesc surrounding environment. Array levels can be delimited by +longdesc characters or control sequences defined by the user. Practical +longdesc uses of this package include data management, construction of +longdesc lists and tables, and calculations based on the contents of +longdesc lists and arrays. +runfiles size=5 + RELOC/tex/latex/forarray/forarray.sty +docfiles size=97 + RELOC/doc/latex/forarray/README.txt + 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 +srcfiles size=19 + RELOC/source/latex/forarray/forarray.dtx +catalogue-ctan /macros/latex/contrib/forarray +catalogue-date 2012-05-19 14:48:02 +0200 +catalogue-license lppl +catalogue-version 1.01 + +name foreign +category Package +revision 27819 +shortdesc Systematic treatment of 'foreign' words in documents. +relocated 1 +longdesc The package supports authors' use of consistent typesetting of +longdesc foreign words in documents. +runfiles size=2 + RELOC/tex/latex/foreign/foreign.sty +docfiles size=26 + RELOC/doc/latex/foreign/README + RELOC/doc/latex/foreign/foreign.pdf +srcfiles size=6 + RELOC/source/latex/foreign/foreign.dtx + RELOC/source/latex/foreign/foreign.ins +catalogue-ctan /macros/latex/contrib/foreign +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 2.7 + +name forest +category Package +revision 37933 +shortdesc Drawing (linguistic) trees. +relocated 1 +longdesc The package is 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 + RELOC/doc/latex/forest/forest.pdf +srcfiles size=100 + RELOC/source/latex/forest/forest.dtx + RELOC/source/latex/forest/forest.ins +catalogue-ctan /graphics/pgf/contrib/forest +catalogue-date 2015-07-23 06:55:24 +0200 +catalogue-license lppl1.3 +catalogue-topics tree pgf-tikz linguistic +catalogue-version 1.0.10 + +name forloop +category Package +revision 15878 +shortdesc Iteration in LaTeX. +relocated 1 +longdesc The package provides a command \forloop for doing iteration in +longdesc LaTeX macro programming. +runfiles size=1 + RELOC/tex/latex/forloop/forloop.sty +docfiles size=22 + RELOC/doc/latex/forloop/README + RELOC/doc/latex/forloop/forloop.pdf +srcfiles size=3 + RELOC/source/latex/forloop/forloop.dtx + RELOC/source/latex/forloop/forloop.ins +catalogue-ctan /macros/latex/contrib/forloop +catalogue-date 2012-05-19 14:48:02 +0200 +catalogue-license lgpl +catalogue-version 3.0 + +name formlett +category Package +revision 21480 +shortdesc Letters to multiple recipients. +relocated 1 +longdesc A package for multiple letters from the same basic source; the +longdesc package offers parametrisation of the letters actually sent. +runfiles size=17 + RELOC/tex/generic/formlett/formlett.sty +docfiles size=115 + RELOC/doc/generic/formlett/prog_manual.pdf + RELOC/doc/generic/formlett/prog_manual.tex + RELOC/doc/generic/formlett/user_manual.pdf + RELOC/doc/generic/formlett/user_manual.tex +catalogue-ctan /macros/generic/formlett +catalogue-date 2011-09-13 15:32:00 +0200 +catalogue-license gpl +catalogue-version 2.3 + +name formular +category Package +revision 15878 +shortdesc Create forms containing field for manual entry. +relocated 1 +longdesc When typesetting forms there often arises the need for defining +longdesc fields which consist of one or more lines where the customer +longdesc can write something down manually. This package offers some +longdesc commands for defining such fields in a distinctive way. +runfiles size=3 + RELOC/tex/latex/formular/formular.sty +docfiles size=39 + RELOC/doc/latex/formular/README + RELOC/doc/latex/formular/formular.pdf +srcfiles size=9 + RELOC/source/latex/formular/formular.dtx + RELOC/source/latex/formular/formular.ins +catalogue-ctan /macros/latex/contrib/formular +catalogue-date 2012-05-19 14:48:02 +0200 +catalogue-license lppl +catalogue-version 1.0a + +name fouridx +category Package +revision 32214 +shortdesc Left sub- and superscripts in maths mode. +relocated 1 +longdesc The package enables left subscripts and superscripts in maths +longdesc mode. The sub- and superscripts are raised for optimum fitting +longdesc to the symbol indexed, in such a way that left and right sub- +longdesc and superscripts are set on the same level, as appropriate. The +longdesc package provides an alternative to the use of the \sideset +longdesc command in the amsmath package. +runfiles size=1 + RELOC/tex/latex/fouridx/fouridx.sty +docfiles size=53 + RELOC/doc/latex/fouridx/README + RELOC/doc/latex/fouridx/fouridx.pdf +srcfiles size=4 + RELOC/source/latex/fouridx/fouridx.dtx + RELOC/source/latex/fouridx/fouridx.ins +catalogue-ctan /macros/latex/contrib/fouridx +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +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. +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 +execute addMap fourier.map +execute addMap fourier-utopia-expert.map +runfiles size=379 + RELOC/fonts/afm/public/fourier/fourier-alt-black.afm + RELOC/fonts/afm/public/fourier/fourier-alt-bold.afm + RELOC/fonts/afm/public/fourier/fourier-alt-boldita.afm + RELOC/fonts/afm/public/fourier/fourier-alt-ita.afm + RELOC/fonts/afm/public/fourier/fourier-alt-semi.afm + RELOC/fonts/afm/public/fourier/fourier-alt-semiita.afm + RELOC/fonts/afm/public/fourier/fourier-alt.afm + RELOC/fonts/afm/public/fourier/fourier-bb.afm + RELOC/fonts/afm/public/fourier/fourier-mcl.afm + RELOC/fonts/afm/public/fourier/fourier-mex.afm + RELOC/fonts/afm/public/fourier/fourier-ml.afm + RELOC/fonts/afm/public/fourier/fourier-mlb.afm + RELOC/fonts/afm/public/fourier/fourier-mlit.afm + RELOC/fonts/afm/public/fourier/fourier-mlitb.afm + RELOC/fonts/afm/public/fourier/fourier-ms.afm + RELOC/fonts/afm/public/fourier/fourier-orns.afm + RELOC/fonts/map/dvips/fourier/fourier-utopia-expert.map + RELOC/fonts/map/dvips/fourier/fourier.map + RELOC/fonts/tfm/public/fourier/fourier-alt-black.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-bold-sl.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-bold.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-boldita.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-ita.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-semi-sl.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-semi.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-semiita.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt-sl.tfm + RELOC/fonts/tfm/public/fourier/fourier-alt.tfm + RELOC/fonts/tfm/public/fourier/fourier-bb.tfm + RELOC/fonts/tfm/public/fourier/fourier-mcl.tfm + RELOC/fonts/tfm/public/fourier/fourier-mex.tfm + RELOC/fonts/tfm/public/fourier/fourier-ml.tfm + RELOC/fonts/tfm/public/fourier/fourier-mlb.tfm + RELOC/fonts/tfm/public/fourier/fourier-mlit.tfm + RELOC/fonts/tfm/public/fourier/fourier-mlitb.tfm + RELOC/fonts/tfm/public/fourier/fourier-ms.tfm + RELOC/fonts/tfm/public/fourier/fourier-orns.tfm + RELOC/fonts/tfm/public/fourier/futb8c.tfm + RELOC/fonts/tfm/public/fourier/futb8r.tfm + RELOC/fonts/tfm/public/fourier/futb8t.tfm + RELOC/fonts/tfm/public/fourier/futb8x.tfm + RELOC/fonts/tfm/public/fourier/futb9c.tfm + RELOC/fonts/tfm/public/fourier/futb9d.tfm + RELOC/fonts/tfm/public/fourier/futb9e.tfm + RELOC/fonts/tfm/public/fourier/futbc8t.tfm + RELOC/fonts/tfm/public/fourier/futbi8c.tfm + RELOC/fonts/tfm/public/fourier/futbi8r.tfm + RELOC/fonts/tfm/public/fourier/futbi8t.tfm + RELOC/fonts/tfm/public/fourier/futbi8x.tfm + RELOC/fonts/tfm/public/fourier/futbi9c.tfm + RELOC/fonts/tfm/public/fourier/futbi9d.tfm + RELOC/fonts/tfm/public/fourier/futbi9e.tfm + RELOC/fonts/tfm/public/fourier/futbo8c.tfm + RELOC/fonts/tfm/public/fourier/futbo8r.tfm + RELOC/fonts/tfm/public/fourier/futbo8t.tfm + RELOC/fonts/tfm/public/fourier/futbo8x.tfm + RELOC/fonts/tfm/public/fourier/futbo9c.tfm + RELOC/fonts/tfm/public/fourier/futbo9d.tfm + RELOC/fonts/tfm/public/fourier/futbo9e.tfm + RELOC/fonts/tfm/public/fourier/futboorn.tfm + RELOC/fonts/tfm/public/fourier/futborn.tfm + RELOC/fonts/tfm/public/fourier/futc8r.tfm + RELOC/fonts/tfm/public/fourier/futc8x.tfm + RELOC/fonts/tfm/public/fourier/futc9c.tfm + RELOC/fonts/tfm/public/fourier/futc9d.tfm + RELOC/fonts/tfm/public/fourier/futc9e.tfm + RELOC/fonts/tfm/public/fourier/futcorn.tfm + RELOC/fonts/tfm/public/fourier/futmi.tfm + RELOC/fonts/tfm/public/fourier/futmib.tfm + RELOC/fonts/tfm/public/fourier/futmii.tfm + RELOC/fonts/tfm/public/fourier/futmiib.tfm + RELOC/fonts/tfm/public/fourier/futr8c.tfm + RELOC/fonts/tfm/public/fourier/futr8r.tfm + RELOC/fonts/tfm/public/fourier/futr8t.tfm + RELOC/fonts/tfm/public/fourier/futr8x.tfm + RELOC/fonts/tfm/public/fourier/futr9c.tfm + RELOC/fonts/tfm/public/fourier/futr9d.tfm + RELOC/fonts/tfm/public/fourier/futr9e.tfm + RELOC/fonts/tfm/public/fourier/futrc8r.tfm + RELOC/fonts/tfm/public/fourier/futrc8t.tfm + RELOC/fonts/tfm/public/fourier/futrc9d.tfm + RELOC/fonts/tfm/public/fourier/futrc9e.tfm + RELOC/fonts/tfm/public/fourier/futrd8r.tfm + RELOC/fonts/tfm/public/fourier/futrd8t.tfm + RELOC/fonts/tfm/public/fourier/futri8c.tfm + RELOC/fonts/tfm/public/fourier/futri8r.tfm + RELOC/fonts/tfm/public/fourier/futri8t.tfm + RELOC/fonts/tfm/public/fourier/futri8x.tfm + RELOC/fonts/tfm/public/fourier/futri9c.tfm + RELOC/fonts/tfm/public/fourier/futri9d.tfm + RELOC/fonts/tfm/public/fourier/futri9e.tfm + RELOC/fonts/tfm/public/fourier/futro8c.tfm + RELOC/fonts/tfm/public/fourier/futro8r.tfm + RELOC/fonts/tfm/public/fourier/futro8t.tfm + RELOC/fonts/tfm/public/fourier/futro8x.tfm + RELOC/fonts/tfm/public/fourier/futro9c.tfm + RELOC/fonts/tfm/public/fourier/futro9d.tfm + RELOC/fonts/tfm/public/fourier/futro9e.tfm + RELOC/fonts/tfm/public/fourier/futroorn.tfm + RELOC/fonts/tfm/public/fourier/futrorn.tfm + RELOC/fonts/tfm/public/fourier/futs8r.tfm + RELOC/fonts/tfm/public/fourier/futs8x.tfm + RELOC/fonts/tfm/public/fourier/futs9c.tfm + RELOC/fonts/tfm/public/fourier/futs9d.tfm + RELOC/fonts/tfm/public/fourier/futs9e.tfm + RELOC/fonts/tfm/public/fourier/futsc8r.tfm + RELOC/fonts/tfm/public/fourier/futsc9d.tfm + RELOC/fonts/tfm/public/fourier/futsc9e.tfm + RELOC/fonts/tfm/public/fourier/futsi8r.tfm + RELOC/fonts/tfm/public/fourier/futsi8x.tfm + RELOC/fonts/tfm/public/fourier/futsi9c.tfm + RELOC/fonts/tfm/public/fourier/futsi9d.tfm + RELOC/fonts/tfm/public/fourier/futsi9e.tfm + RELOC/fonts/tfm/public/fourier/futso8r.tfm + RELOC/fonts/tfm/public/fourier/futso8x.tfm + RELOC/fonts/tfm/public/fourier/futso9c.tfm + RELOC/fonts/tfm/public/fourier/futso9d.tfm + RELOC/fonts/tfm/public/fourier/futso9e.tfm + RELOC/fonts/tfm/public/fourier/futsoorn.tfm + RELOC/fonts/tfm/public/fourier/futsorn.tfm + RELOC/fonts/tfm/public/fourier/futsy.tfm + RELOC/fonts/type1/public/fourier/fourier-alt-black.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-bold.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-boldita.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-ita.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-semi.pfb + RELOC/fonts/type1/public/fourier/fourier-alt-semiita.pfb + RELOC/fonts/type1/public/fourier/fourier-alt.pfb + RELOC/fonts/type1/public/fourier/fourier-bb.pfb + RELOC/fonts/type1/public/fourier/fourier-mcl.pfb + RELOC/fonts/type1/public/fourier/fourier-mex.pfb + RELOC/fonts/type1/public/fourier/fourier-ml.pfb + RELOC/fonts/type1/public/fourier/fourier-mlb.pfb + RELOC/fonts/type1/public/fourier/fourier-mlit.pfb + RELOC/fonts/type1/public/fourier/fourier-mlitb.pfb + RELOC/fonts/type1/public/fourier/fourier-ms.pfb + RELOC/fonts/type1/public/fourier/fourier-orns.pfb + RELOC/fonts/vf/public/fourier/futb8c.vf + RELOC/fonts/vf/public/fourier/futb8t.vf + RELOC/fonts/vf/public/fourier/futb9c.vf + RELOC/fonts/vf/public/fourier/futb9d.vf + RELOC/fonts/vf/public/fourier/futb9e.vf + RELOC/fonts/vf/public/fourier/futbc8t.vf + RELOC/fonts/vf/public/fourier/futbi8c.vf + RELOC/fonts/vf/public/fourier/futbi8t.vf + RELOC/fonts/vf/public/fourier/futbi9c.vf + RELOC/fonts/vf/public/fourier/futbi9d.vf + RELOC/fonts/vf/public/fourier/futbi9e.vf + RELOC/fonts/vf/public/fourier/futbo8c.vf + RELOC/fonts/vf/public/fourier/futbo8t.vf + RELOC/fonts/vf/public/fourier/futbo9c.vf + RELOC/fonts/vf/public/fourier/futbo9d.vf + RELOC/fonts/vf/public/fourier/futbo9e.vf + RELOC/fonts/vf/public/fourier/futboorn.vf + RELOC/fonts/vf/public/fourier/futborn.vf + RELOC/fonts/vf/public/fourier/futc9c.vf + RELOC/fonts/vf/public/fourier/futc9d.vf + RELOC/fonts/vf/public/fourier/futc9e.vf + RELOC/fonts/vf/public/fourier/futcorn.vf + RELOC/fonts/vf/public/fourier/futmi.vf + RELOC/fonts/vf/public/fourier/futmib.vf + RELOC/fonts/vf/public/fourier/futmii.vf + RELOC/fonts/vf/public/fourier/futmiib.vf + RELOC/fonts/vf/public/fourier/futr8c.vf + RELOC/fonts/vf/public/fourier/futr8t.vf + RELOC/fonts/vf/public/fourier/futr9c.vf + RELOC/fonts/vf/public/fourier/futr9d.vf + RELOC/fonts/vf/public/fourier/futr9e.vf + RELOC/fonts/vf/public/fourier/futrc8t.vf + RELOC/fonts/vf/public/fourier/futrc9d.vf + RELOC/fonts/vf/public/fourier/futrc9e.vf + RELOC/fonts/vf/public/fourier/futrd8t.vf + RELOC/fonts/vf/public/fourier/futri8c.vf + RELOC/fonts/vf/public/fourier/futri8t.vf + RELOC/fonts/vf/public/fourier/futri9c.vf + RELOC/fonts/vf/public/fourier/futri9d.vf + RELOC/fonts/vf/public/fourier/futri9e.vf + RELOC/fonts/vf/public/fourier/futro8c.vf + RELOC/fonts/vf/public/fourier/futro8t.vf + RELOC/fonts/vf/public/fourier/futro9c.vf + RELOC/fonts/vf/public/fourier/futro9d.vf + RELOC/fonts/vf/public/fourier/futro9e.vf + RELOC/fonts/vf/public/fourier/futroorn.vf + RELOC/fonts/vf/public/fourier/futrorn.vf + RELOC/fonts/vf/public/fourier/futs9c.vf + RELOC/fonts/vf/public/fourier/futs9d.vf + RELOC/fonts/vf/public/fourier/futs9e.vf + RELOC/fonts/vf/public/fourier/futsc9d.vf + RELOC/fonts/vf/public/fourier/futsc9e.vf + RELOC/fonts/vf/public/fourier/futsi9c.vf + RELOC/fonts/vf/public/fourier/futsi9d.vf + RELOC/fonts/vf/public/fourier/futsi9e.vf + RELOC/fonts/vf/public/fourier/futso9c.vf + RELOC/fonts/vf/public/fourier/futso9d.vf + RELOC/fonts/vf/public/fourier/futso9e.vf + RELOC/fonts/vf/public/fourier/futsoorn.vf + RELOC/fonts/vf/public/fourier/futsorn.vf + RELOC/fonts/vf/public/fourier/futsy.vf + RELOC/tex/latex/fourier/fmlfutm.fd + RELOC/tex/latex/fourier/fmlfutmi.fd + RELOC/tex/latex/fourier/fmsfutm.fd + RELOC/tex/latex/fourier/fmxfutm.fd + RELOC/tex/latex/fourier/fourier-orns.sty + RELOC/tex/latex/fourier/fourier.sty + RELOC/tex/latex/fourier/t1futj.fd + RELOC/tex/latex/fourier/t1futs.fd + RELOC/tex/latex/fourier/t1futx.fd + RELOC/tex/latex/fourier/ts1futj.fd + RELOC/tex/latex/fourier/ts1futs.fd + RELOC/tex/latex/fourier/ts1futx.fd + RELOC/tex/latex/fourier/ufuts.fd +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-ctan /fonts/fourier-GUT +catalogue-date 2014-05-01 23:14:09 +0200 +catalogue-license lppl +catalogue-version 1.3 + +name fpl +category Package +revision 15878 +shortdesc SC and OsF fonts for URW Palladio L +relocated 1 +longdesc The FPL Fonts provide a set of SC/OsF fonts for URW Palladio L +longdesc which are compatible with respect to metrics with the Palatino +longdesc SC/OsF fonts from Adobe. Note that it is not my aim to exactly +longdesc reproduce the outlines of the original Adobe fonts. The SC and +longdesc OsF in the FPL Fonts were designed with the glyphs from URW +longdesc Palladio L as starting point. For some glyphs (e.g. 'o') I got +longdesc the best result by scaling and boldening. For others (e.g. 'h') +longdesc shifting selected portions of the character gave more +longdesc satisfying results. All this was done using the free font +longdesc editor FontForge. The kerning data in these fonts comes from +longdesc Walter Schmidt's improved Palatino metrics. LaTeX use is +longdesc enabled by the mathpazo package, which is part of the psnfss +longdesc distribution. +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 +docfiles size=6 + RELOC/doc/fonts/fpl/COPYING + RELOC/doc/fonts/fpl/README +srcfiles size=63 + RELOC/source/fonts/fpl/AddException + RELOC/source/fonts/fpl/AddGPL + RELOC/source/fonts/fpl/Makefile + RELOC/source/fonts/fpl/Palladio-BoldItalicOsF.sfd + RELOC/source/fonts/fpl/Palladio-BoldOsF.sfd + RELOC/source/fonts/fpl/Palladio-ItalicOsF.sfd + RELOC/source/fonts/fpl/Palladio-SC.sfd + RELOC/source/fonts/fpl/README + RELOC/source/fonts/fpl/TeXPalladioL-BoldItalicOsF.pe + RELOC/source/fonts/fpl/TeXPalladioL-BoldOsF.pe + RELOC/source/fonts/fpl/TeXPalladioL-ItalicOsF.pe + RELOC/source/fonts/fpl/TeXPalladioL-SC.pe + RELOC/source/fonts/fpl/URW-OtherSubrs.ps +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 + +name fragmaster +category Package +revision 26313 +shortdesc Using psfrag with PDFLaTeX. +longdesc Fragmaster enables you to use psfrag with PDFLaTeX. It takes +longdesc EPS files and psfrag substitution definition files, and +longdesc produces PDF and EPS files with the substitutions included. +depend fragmaster.ARCH +runfiles size=5 + texmf-dist/scripts/fragmaster/fragmaster.pl +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/example/document.pdf + texmf-dist/doc/support/fragmaster/example/document.ps + texmf-dist/doc/support/fragmaster/example/document.tex + texmf-dist/doc/support/fragmaster/example/parabel.eps + texmf-dist/doc/support/fragmaster/example/parabel.pdf + texmf-dist/doc/support/fragmaster/example/parabel_fm + texmf-dist/doc/support/fragmaster/example/parabel_fm.eps + texmf-dist/doc/support/fragmaster/example/parabel_fm.gp + texmf-dist/doc/support/fragmaster/example/parabel_fm.pdf + texmf-dist/doc/support/fragmaster/fragmaster.pdf +catalogue-ctan /support/fragmaster +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 1.6 + +name fragmaster.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of fragmaster +binfiles arch=i386-linux size=1 + bin/i386-linux/fragmaster + +name fragments +category Package +revision 15878 +shortdesc Fragments of LaTeX code. +relocated 1 +longdesc A collection of fragments of LaTeX code, suitable for inclusion +longdesc in packages, or (possibly) in users' documents. Included are: +longdesc checklab, for modifying the label checking code at +longdesc \end{document}; overrightarrow, defining a doubled over-arrow +longdesc macro; removefr, for removing 'reset' relations between +longdesc counters; and subscript, defining a \textsubscript command. +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-ctan /macros/latex/contrib/fragments +catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-license collection + +name framed +category Package +revision 26789 +shortdesc Framed or shaded regions that can break across pages. +relocated 1 +longdesc The package creates three environments: framed, which puts an +longdesc ordinary frame box around the region, shaded, which shades the +longdesc region, and leftbar, which places a line at the left side. The +longdesc environments allow a break at their start (the \FrameCommand +longdesc enables creation of a title that is "attached" to the +longdesc environment); breaks are also allowed in the course of the +longdesc framed/shaded matter. There is also a command \MakeFramed to +longdesc make your own framed-style environments. +runfiles size=6 + RELOC/tex/latex/framed/framed.sty +docfiles size=60 + RELOC/doc/latex/framed/framed.pdf + RELOC/doc/latex/framed/framed.tex +catalogue-ctan /macros/latex/contrib/framed +catalogue-date 2014-10-17 01:12:51 +0200 +catalogue-license other-free +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. +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 + 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 +catalogue-ctan /biblio/bibtex/contrib/francais-bst +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name frankenstein +category Package +revision 15878 +shortdesc A collection of LaTeX packages. +relocated 1 +longdesc Frankenstein is a bundle of LaTeX packages serving various +longdesc purposes and a BibTeX bibliography style. Descriptions are +longdesc given under the individual packages: abbrevs, achicago package, +longdesc achicago bibstyle, attrib, blkcntrl, compsci, dialogue, lips, +longdesc moredefs, newclude, slemph, titles. +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 +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/abbrevs.pdf + RELOC/doc/latex/frankenstein/abbrevs.tex + RELOC/doc/latex/frankenstein/achicago-bst.pdf + RELOC/doc/latex/frankenstein/achicago-bst.tex + RELOC/doc/latex/frankenstein/achicago-bst.ver + RELOC/doc/latex/frankenstein/achicago.bsq + RELOC/doc/latex/frankenstein/achicago.pdf + RELOC/doc/latex/frankenstein/achicago.tex + RELOC/doc/latex/frankenstein/attrib.pdf + RELOC/doc/latex/frankenstein/attrib.tex + RELOC/doc/latex/frankenstein/blkcntrl.pdf + RELOC/doc/latex/frankenstein/blkcntrl.tex + RELOC/doc/latex/frankenstein/compsci.pdf + RELOC/doc/latex/frankenstein/compsci.tex + RELOC/doc/latex/frankenstein/dialogue.pdf + RELOC/doc/latex/frankenstein/dialogue.tex + RELOC/doc/latex/frankenstein/lips.pdf + RELOC/doc/latex/frankenstein/lips.tex + RELOC/doc/latex/frankenstein/moredefs.pdf + RELOC/doc/latex/frankenstein/moredefs.tex + RELOC/doc/latex/frankenstein/newclude.pdf + RELOC/doc/latex/frankenstein/newclude.tex + RELOC/doc/latex/frankenstein/slemph.pdf + RELOC/doc/latex/frankenstein/slemph.tex + RELOC/doc/latex/frankenstein/titles.pdf + RELOC/doc/latex/frankenstein/titles.tex + RELOC/doc/latex/frankenstein/unsupported/README-unsupported + RELOC/doc/latex/frankenstein/unsupported/bits.cfg + RELOC/doc/latex/frankenstein/unsupported/bits.ins + RELOC/doc/latex/frankenstein/unsupported/bits.pdf + RELOC/doc/latex/frankenstein/unsupported/bits.sty + RELOC/doc/latex/frankenstein/unsupported/bits.tex + RELOC/doc/latex/frankenstein/unsupported/drama.ins + RELOC/doc/latex/frankenstein/unsupported/drama.pdf + RELOC/doc/latex/frankenstein/unsupported/drama.sty + RELOC/doc/latex/frankenstein/unsupported/drama.tex + RELOC/doc/latex/frankenstein/unsupported/includex-test.tex + RELOC/doc/latex/frankenstein/unsupported/includex.ins + RELOC/doc/latex/frankenstein/unsupported/includex.pdf + RELOC/doc/latex/frankenstein/unsupported/includex.sty + RELOC/doc/latex/frankenstein/unsupported/includex.tex +srcfiles size=15 + RELOC/source/latex/frankenstein/Makefile + RELOC/source/latex/frankenstein/abbrevs.ins + RELOC/source/latex/frankenstein/achicago-bst.ins + RELOC/source/latex/frankenstein/achicago.ins + RELOC/source/latex/frankenstein/attrib.ins + RELOC/source/latex/frankenstein/blkcntrl.ins + RELOC/source/latex/frankenstein/compsci.ins + RELOC/source/latex/frankenstein/dialogue.ins + RELOC/source/latex/frankenstein/lips.ins + RELOC/source/latex/frankenstein/moredefs.ins + RELOC/source/latex/frankenstein/newclude.ins + RELOC/source/latex/frankenstein/slemph.ins + RELOC/source/latex/frankenstein/titles.ins +catalogue-ctan /macros/latex/contrib/frankenstein +catalogue-date 2012-05-19 19:46:22 +0200 +catalogue-license collection + +name frcursive +category Package +revision 24559 +shortdesc French cursive hand fonts. +relocated 1 +longdesc A hand-writing font in the style of the French academic running- +longdesc hand. The font was written in Metafont and 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 +runfiles size=548 + RELOC/fonts/map/dvips/frcursive/frcursive.map + RELOC/fonts/source/public/frcursive/frcbx10.mf + RELOC/fonts/source/public/frcursive/frcbx14.mf + RELOC/fonts/source/public/frcursive/frcbx6.mf + RELOC/fonts/source/public/frcursive/frcc10.mf + RELOC/fonts/source/public/frcursive/frcc14.mf + RELOC/fonts/source/public/frcursive/frcc6.mf + RELOC/fonts/source/public/frcursive/frcf10.mf + RELOC/fonts/source/public/frcursive/frcf14.mf + RELOC/fonts/source/public/frcursive/frcf6.mf + RELOC/fonts/source/public/frcursive/frcr10.mf + RELOC/fonts/source/public/frcursive/frcr14.mf + RELOC/fonts/source/public/frcursive/frcr6.mf + RELOC/fonts/source/public/frcursive/frcsl10.mf + RELOC/fonts/source/public/frcursive/frcsl14.mf + RELOC/fonts/source/public/frcursive/frcsl6.mf + RELOC/fonts/source/public/frcursive/frcslbx10.mf + RELOC/fonts/source/public/frcursive/frcslbx14.mf + RELOC/fonts/source/public/frcursive/frcslbx6.mf + RELOC/fonts/source/public/frcursive/frcslc10.mf + RELOC/fonts/source/public/frcursive/frcslc14.mf + RELOC/fonts/source/public/frcursive/frcslc6.mf + RELOC/fonts/source/public/frcursive/frcursive.mf + RELOC/fonts/tfm/public/frcursive/frca10.tfm + RELOC/fonts/tfm/public/frcursive/frcbx10.tfm + RELOC/fonts/tfm/public/frcursive/frcbx14.tfm + RELOC/fonts/tfm/public/frcursive/frcbx6.tfm + RELOC/fonts/tfm/public/frcursive/frcc10.tfm + RELOC/fonts/tfm/public/frcursive/frcc14.tfm + RELOC/fonts/tfm/public/frcursive/frcc6.tfm + RELOC/fonts/tfm/public/frcursive/frcf10.tfm + RELOC/fonts/tfm/public/frcursive/frcf14.tfm + RELOC/fonts/tfm/public/frcursive/frcf6.tfm + RELOC/fonts/tfm/public/frcursive/frcr10.tfm + RELOC/fonts/tfm/public/frcursive/frcr14.tfm + RELOC/fonts/tfm/public/frcursive/frcr6.tfm + RELOC/fonts/tfm/public/frcursive/frcsl10.tfm + RELOC/fonts/tfm/public/frcursive/frcsl14.tfm + RELOC/fonts/tfm/public/frcursive/frcsl6.tfm + RELOC/fonts/tfm/public/frcursive/frcslbx10.tfm + RELOC/fonts/tfm/public/frcursive/frcslbx14.tfm + RELOC/fonts/tfm/public/frcursive/frcslbx6.tfm + RELOC/fonts/tfm/public/frcursive/frcslc10.tfm + RELOC/fonts/tfm/public/frcursive/frcslc14.tfm + RELOC/fonts/tfm/public/frcursive/frcslc6.tfm + RELOC/fonts/tfm/public/frcursive/frcw10.tfm + RELOC/fonts/type1/public/frcursive/frca10.pfb + RELOC/fonts/type1/public/frcursive/frcbx10.pfb + RELOC/fonts/type1/public/frcursive/frcbx14.pfb + RELOC/fonts/type1/public/frcursive/frcbx6.pfb + RELOC/fonts/type1/public/frcursive/frcc10.pfb + RELOC/fonts/type1/public/frcursive/frcc14.pfb + RELOC/fonts/type1/public/frcursive/frcc6.pfb + RELOC/fonts/type1/public/frcursive/frcf10.pfb + RELOC/fonts/type1/public/frcursive/frcf14.pfb + RELOC/fonts/type1/public/frcursive/frcf6.pfb + RELOC/fonts/type1/public/frcursive/frcr10.pfb + RELOC/fonts/type1/public/frcursive/frcr14.pfb + RELOC/fonts/type1/public/frcursive/frcr6.pfb + RELOC/fonts/type1/public/frcursive/frcsl10.pfb + RELOC/fonts/type1/public/frcursive/frcsl14.pfb + RELOC/fonts/type1/public/frcursive/frcsl6.pfb + RELOC/fonts/type1/public/frcursive/frcslbx10.pfb + RELOC/fonts/type1/public/frcursive/frcslbx14.pfb + RELOC/fonts/type1/public/frcursive/frcslbx6.pfb + RELOC/fonts/type1/public/frcursive/frcslc10.pfb + RELOC/fonts/type1/public/frcursive/frcslc14.pfb + RELOC/fonts/type1/public/frcursive/frcslc6.pfb + RELOC/fonts/type1/public/frcursive/frcw10.pfb + RELOC/tex/latex/frcursive/frcursive.sty + RELOC/tex/latex/frcursive/ot1frc.fd + RELOC/tex/latex/frcursive/t1frc.fd +docfiles size=83 + RELOC/doc/fonts/frcursive/COPYING + RELOC/doc/fonts/frcursive/README + RELOC/doc/fonts/frcursive/frcursive.pdf +catalogue-ctan /fonts/frcursive +catalogue-date 2014-05-01 23:14:09 +0200 +catalogue-license lppl1.2 + +name frege +category Package +revision 27417 +shortdesc Typeset fregean Begriffsschrift. +relocated 1 +longdesc The package defines a number of new commands for typesetting +longdesc fregean Begriffsschrift in LaTeX. It is loosely based on the +longdesc package begriff, and offers a number of improvements including +longdesc better relative lengths of the content stroke with respect to +longdesc other strokes, content strokes that point at the middle of +longdesc lines rather than the bottom, a greater width for the assertion +longdesc stroke as compared to the content stroke, a more intuitive +longdesc structure for the conditional, greater care taken to allow for +longdesc the linewidth in the spacing of formulas. +runfiles size=17 + RELOC/tex/latex/frege/frege.sty +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/frege.tex +catalogue-ctan /macros/latex/contrib/frege +catalogue-date 2014-03-25 19:16:16 +0100 +catalogue-license gpl +catalogue-version 1.3 + +name frletter +category Package +revision 15878 +shortdesc Typeset letters in the French style. +relocated 1 +longdesc A small class for typesetting letters in France. No assumption +longdesc is made about the language in use. The class represents a small +longdesc modification of the beletter class, which is itself a +longdesc modification of the standard LaTeX letter class. +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-license pd + +name frontespizio +category Package +revision 24054 +shortdesc Create a frontispiece for Italian theses. +relocated 1 +longdesc Typesetting a frontispiece independently of the layout of the +longdesc main document is difficult. This package provides a solution by +longdesc producing an auxiliary TeX file to be typeset on its own and +longdesc the result is automatically included at the next run. The +longdesc markup necessary for the frontispiece is written in the main +longdesc document in a frontespizio environment. Documentation is mainly +longdesc in Italian, as the style is probably apt only to theses in +longdesc Italy. +runfiles size=5 + RELOC/tex/latex/frontespizio/frontespizio.sty +docfiles size=253 + RELOC/doc/latex/frontespizio/README + RELOC/doc/latex/frontespizio/examplea.pdf + RELOC/doc/latex/frontespizio/examplea.tex + RELOC/doc/latex/frontespizio/exampleasuf.pdf + RELOC/doc/latex/frontespizio/exampleasuf.tex + RELOC/doc/latex/frontespizio/exampleb.pdf + RELOC/doc/latex/frontespizio/exampleb.tex + RELOC/doc/latex/frontespizio/examplec.pdf + RELOC/doc/latex/frontespizio/examplec.tex + RELOC/doc/latex/frontespizio/exampled.pdf + RELOC/doc/latex/frontespizio/exampled.tex + RELOC/doc/latex/frontespizio/examplee.pdf + RELOC/doc/latex/frontespizio/examplee.tex + RELOC/doc/latex/frontespizio/fakelogo.mp + RELOC/doc/latex/frontespizio/fakelogo.pdf + RELOC/doc/latex/frontespizio/frontespizio.pdf +srcfiles size=21 + RELOC/source/latex/frontespizio/frontespizio.dtx + RELOC/source/latex/frontespizio/frontespizio.ins +catalogue-ctan /macros/latex/contrib/frontespizio +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.4a + +name ftcap +category Package +revision 17275 +shortdesc Allows \caption at the beginning of a table-environment. +relocated 1 +longdesc For several reasons a \caption may be desirable at the top of a +longdesc table environment. This package changes the table environment +longdesc such that \abovecaptionskip and \belowcaptionskip are swapped. +longdesc The package should also work with a non-standard table +longdesc environment. +runfiles size=1 + RELOC/tex/latex/ftcap/ftcap.sty +docfiles size=55 + RELOC/doc/latex/ftcap/ftcap.pdf + RELOC/doc/latex/ftcap/ftcap.tex +catalogue-ctan /macros/latex/contrib/ftcap +catalogue-date 2012-05-19 23:15:24 +0200 +catalogue-license gpl +catalogue-version 1.4 + +name ftnxtra +category Package +revision 29652 +shortdesc Extend the applicability of the \footnote command. +relocated 1 +longdesc The package treats footnotes in \caption, the tabular +longdesc environment, and \chapter and other \section-like commands. +runfiles size=2 + RELOC/tex/latex/ftnxtra/ftnxtra.sty +docfiles size=8 + RELOC/doc/latex/ftnxtra/README + RELOC/doc/latex/ftnxtra/ftnxtra.pdf + RELOC/doc/latex/ftnxtra/ftnxtra.tex +srcfiles size=3 + RELOC/source/latex/ftnxtra/ftnxtra.dtx + RELOC/source/latex/ftnxtra/ftnxtra.ins +catalogue-ctan /macros/latex/contrib/ftnxtra +catalogue-date 2014-09-06 11:20:13 +0200 +catalogue-license lppl +catalogue-version 0.1 + +name fullblck +category Package +revision 25434 +shortdesc Left-blocking for letter class. +relocated 1 +longdesc Used with the letter documentclass to set the letter in a +longdesc fullblock style (everything at the left margin). +runfiles size=1 + RELOC/tex/latex/fullblck/fullblck.sty +docfiles size=14 + RELOC/doc/latex/fullblck/README + RELOC/doc/latex/fullblck/fullblck.pdf +srcfiles size=4 + RELOC/source/latex/fullblck/fullblck.dtx + RELOC/source/latex/fullblck/fullblck.dtx.asc + RELOC/source/latex/fullblck/fullblck.ins +catalogue-ctan /macros/latex/contrib/fullblck +catalogue-date 2012-05-19 23:15:24 +0200 +catalogue-license lppl +catalogue-version 1.03 + +name fullminipage +category Package +revision 34545 +shortdesc Minipage spanning a complete page +relocated 1 +longdesc This package provides the environment fullminipage, which +longdesc generates a minipage spanning a new, complete page with page +longdesc style empty. The environment provides options to set margins +longdesc around the minipage and configure the background. +runfiles size=1 + RELOC/tex/latex/fullminipage/fullminipage.sty +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/fullminipage_test.pdf + RELOC/doc/latex/fullminipage/fullminipage_test.tex +srcfiles size=4 + RELOC/source/latex/fullminipage/fullminipage.dtx + RELOC/source/latex/fullminipage/fullminipage.ins +catalogue-ctan /macros/latex/contrib/fullminipage +catalogue-date 2014-07-07 23:16:27 +0200 +catalogue-license gpl3 +catalogue-version 0.1.1 + +name fullwidth +category Package +revision 24684 +shortdesc Adjust margins of text block. +relocated 1 +longdesc The package provides the environment fullwidth, which sets the +longdesc left and right margins in a simple way. There is no constraint +longdesc about page breaks; if you are using the twoside mode, you can +longdesc set the inner and outer margins to avoid the effects of the +longdesc different margins. +runfiles size=4 + RELOC/tex/latex/fullwidth/fullwidth.sty +docfiles size=74 + RELOC/doc/latex/fullwidth/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.tex +catalogue-ctan /macros/latex/contrib/fullwidth +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name functan +category Package +revision 15878 +shortdesc Macros for functional analysis and PDE theory +relocated 1 +longdesc This package provides a convenient and coherent way to deal +longdesc with name of functional spaces (mainly Sobolev spaces) in +longdesc functional analysis and PDE theory. It also provides a set of +longdesc macros for dealing with norms, scalar products and convergence +longdesc with some object oriented flavor (it gives the possibility to +longdesc override the standard behavior of norms, ...). +runfiles size=3 + RELOC/tex/latex/functan/functan.sty +docfiles size=44 + RELOC/doc/latex/functan/README + RELOC/doc/latex/functan/functan.pdf +srcfiles size=12 + RELOC/source/latex/functan/functan.drv + RELOC/source/latex/functan/functan.dtx + RELOC/source/latex/functan/functan.ins +catalogue-ctan /macros/latex/contrib/functan +catalogue-date 2012-06-04 11:02:08 +0200 +catalogue-license lppl + +name fundus-calligra +category Package +revision 26018 +shortdesc Support for the calligra font in LaTeX documents. +relocated 1 +longdesc The package offers support for the calligra handwriting font, +longdesc in LaTeX documents. The package is part of the fundus bundle. +runfiles size=1 + RELOC/tex/latex/fundus-calligra/calligra.sty +docfiles size=49 + RELOC/doc/latex/fundus-calligra/calligra.pdf +srcfiles size=3 + RELOC/source/latex/fundus-calligra/calligra.dtx + RELOC/source/latex/fundus-calligra/calligra.ins +catalogue-ctan /macros/latex/contrib/fundus/calligra +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 1.2 + +name fundus-cyr +category Package +revision 26019 +shortdesc Support for Washington University Cyrillic fonts. +relocated 1 +longdesc The package supports the use of the Washington Cyrillic fonts +longdesc with LaTeX (Note that standard LateX has support, too, as +longdesc encoding OT2). The package is distributed as part of the fundus +longdesc bundle. +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-license lppl1.3 + +name fundus-sueterlin +category Package +revision 26030 +shortdesc Sutterlin +relocated 1 +longdesc The package supports use, in LaTeX, of the MetaFont emulation +longdesc of the Sueterlin handwriting fonts The package is distributed +longdesc as part of the fundus bundle.. +runfiles size=1 + RELOC/tex/latex/fundus-sueterlin/suetterl.sty +docfiles size=49 + RELOC/doc/latex/fundus-sueterlin/suetterl.pdf +srcfiles size=3 + RELOC/source/latex/fundus-sueterlin/suetterl.dtx + RELOC/source/latex/fundus-sueterlin/suetterl.ins +catalogue-ctan /macros/latex/contrib/fundus/suetterl +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name fwlw +category Package +revision 29803 +shortdesc Get first and last words of a page. +relocated 1 +longdesc The package extracts the first and last words of a page, +longdesc together with the first word of the next page, just before the +longdesc page is formed into the object to print. The package defines a +longdesc couple of page styles that use the words that have been +longdesc extracted. +runfiles size=2 + RELOC/tex/latex/fwlw/fwlw.sty +docfiles size=12 + RELOC/doc/latex/fwlw/README + RELOC/doc/latex/fwlw/fwlw.pdf + RELOC/doc/latex/fwlw/fwlw.tex +catalogue-ctan /macros/latex/contrib/fwlw +catalogue-date 2012-06-04 11:02:08 +0200 +catalogue-license other-free + +name gaceta +category Package +revision 15878 +shortdesc A class to typeset La Gaceta de la RSME. +relocated 1 +longdesc The class will typeset papers for <<La Gaceta de la Real +longdesc Sociedad Matematica Espanola>>. +runfiles size=16 + RELOC/tex/latex/gaceta/gaceta.cls +docfiles size=60 + RELOC/doc/latex/gaceta/README + RELOC/doc/latex/gaceta/plantilla-articulo-de-seccion.pdf + RELOC/doc/latex/gaceta/plantilla-articulo-de-seccion.tex + RELOC/doc/latex/gaceta/plantilla-articulo-suelto.pdf + RELOC/doc/latex/gaceta/plantilla-articulo-suelto.tex +catalogue-ctan /macros/latex/contrib/gaceta +catalogue-date 2014-09-29 13:57:53 +0200 +catalogue-license lppl +catalogue-version 1.06 + +name galois +category Package +revision 15878 +shortdesc Typeset Galois connections. +relocated 1 +longdesc The package deals with connections in two-dimensional style, +longdesc optionally in colour. +runfiles size=2 + RELOC/tex/latex/galois/galois.sty +docfiles size=28 + RELOC/doc/latex/galois/README + RELOC/doc/latex/galois/galois.pdf +srcfiles size=8 + RELOC/source/latex/galois/Makefile + RELOC/source/latex/galois/galois.dtx + RELOC/source/latex/galois/galois.ins +catalogue-ctan /macros/latex/contrib/galois +catalogue-date 2012-06-04 11:02:08 +0200 +catalogue-license lppl +catalogue-version 1.5 + +name gamebook +category Package +revision 24714 +shortdesc Typeset gamebooks and other interactive novels. +relocated 1 +longdesc This package provides the means in order to lay-out gamebooks +longdesc with LaTeX. A simple gamebook example is included with the +longdesc package, and acts as a tutorial. +runfiles size=1 + RELOC/tex/latex/gamebook/gamebook.sty +docfiles size=72 + RELOC/doc/latex/gamebook/README + RELOC/doc/latex/gamebook/gamebook-example.pdf + RELOC/doc/latex/gamebook/gamebook-example.tex + RELOC/doc/latex/gamebook/gamebook.pdf + RELOC/doc/latex/gamebook/lppl.txt +srcfiles size=4 + RELOC/source/latex/gamebook/gamebook.dtx + RELOC/source/latex/gamebook/gamebook.ins +catalogue-ctan /macros/latex/contrib/gamebook +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name garrigues +category Package +revision 15878 +shortdesc MetaPost macros for the reproduction of Garrigues' Easter nomogram. +relocated 1 +longdesc Metapost macros for the reproduction of Garrigues' Easter +longdesc nomogram. These macros are described in Denis Roegel: An +longdesc introduction to nomography: Garrigues' nomogram for the +longdesc computation of Easter, TUGboat (volume 30, number 1, 2009, +longdesc pages 88-104) +runfiles size=9 + RELOC/metapost/garrigues/garrigues.mp +docfiles size=2 + RELOC/doc/metapost/garrigues/README + RELOC/doc/metapost/garrigues/article.txt +catalogue-ctan /graphics/metapost/contrib/macros/garrigues +catalogue-date 2012-06-04 13:21:54 +0200 +catalogue-license lppl + +name garuda-c90 +category Package +revision 37677 +shortdesc TeX support (from CJK) for the garuda font +relocated 1 +depend fonts-tlwg +execute addMap garuda-c90.map +runfiles size=6 + RELOC/dvips/garuda-c90/config.garuda-c90 + RELOC/fonts/map/dvips/garuda-c90/garuda-c90.map + RELOC/fonts/tfm/public/garuda-c90/fgdb8z.tfm + RELOC/fonts/tfm/public/garuda-c90/fgdbo8z.tfm + RELOC/fonts/tfm/public/garuda-c90/fgdo8z.tfm + RELOC/fonts/tfm/public/garuda-c90/fgdr8z.tfm +srcfiles size=1 + RELOC/source/fonts/garuda-c90/garuda-c90.fontinst + +name gastex +category Package +revision 15878 +shortdesc Graphs and Automata Simplified in TeX. +relocated 1 +longdesc GasTeX is a set of LaTeX macros which enable the user to draw +longdesc graphs, automata, nets, diagrams, etc., very easily, in the +longdesc LaTeX picture environment. 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 +docfiles size=6 + RELOC/doc/latex/gastex/README + RELOC/doc/latex/gastex/ex-beamer-gastex.tex + RELOC/doc/latex/gastex/ex-gastex.tex +catalogue-ctan /graphics/gastex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 2.8 + +name gatech-thesis +category Package +revision 19886 +shortdesc Georgia Institute of Technology thesis class +relocated 1 +longdesc The output generated by using this class has been approved by +longdesc the Georgia Tech Office of Graduate Studies. It satisfies their +longdesc undocumented moving-target requirements in additional to the +longdesc actual documented requirements of the June 2002 Georgia Tech +longdesc Thesis Style Manual, as amended up to 2010. +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 +docfiles size=62 + RELOC/doc/latex/gatech-thesis/CHANGES + RELOC/doc/latex/gatech-thesis/COMPLIANCE + RELOC/doc/latex/gatech-thesis/COPYING + RELOC/doc/latex/gatech-thesis/ChangeLog + RELOC/doc/latex/gatech-thesis/INSTALL + RELOC/doc/latex/gatech-thesis/MANIFEST + RELOC/doc/latex/gatech-thesis/NEWS + RELOC/doc/latex/gatech-thesis/NOTES + RELOC/doc/latex/gatech-thesis/README + 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 +catalogue-ctan /macros/latex/contrib/gatech-thesis +catalogue-date 2014-09-29 13:57:53 +0200 +catalogue-license gpl +catalogue-version 1.8 + +name gates +category Package +revision 29803 +shortdesc Support for writing modular and customisable code. +relocated 1 +longdesc The package provides the means of writing code in a modular +longdesc fashion: big macros or functions are divided into small chunks +longdesc (called gates) with names, which can be externally controlled +longdesc (e.g. they can be disabled, subjected to conditionals, +longdesc loops...) and/or augmented with new chunks. Thus complex code +longdesc may easily be customised without having to rewrite it, or even +longdesc understand its implementation: the behavior of existing gates +longdesc can be modified, and new ones can be added, without endangering +longdesc the whole design. This allows code to be hacked in ways the +longdesc original authors might have never envisioned. The gates package +longdesc is implemented independently for both TeX and Lua. The TeX +longdesc implementation, running in any current environment, requires +longdesc the texapi package, whereas the Lua version can be run with any +longdesc Lua interpreter, not just LuaTeX. +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-license lppl +catalogue-version 0.2 + +name gauss +category Package +revision 32934 +shortdesc A package for Gaussian operations. +relocated 1 +longdesc The gauss package provides configurable tools for producing row +longdesc and column operations on matrices (a.k.a. Gaussian operations). +runfiles size=16 + RELOC/tex/latex/gauss/gauss.sty +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/gauss-ex.tex +catalogue-ctan /macros/latex/contrib/gauss +catalogue-date 2012-04-10 17:44:48 +0200 +catalogue-license lppl + +name gb4e +category Package +revision 19216 +shortdesc Linguistic tools. +relocated 1 +longdesc Provides an environment for linguistic examples, tools for +longdesc glosses, and various other goodies. The code was developed from +longdesc the midnight and covington packages. +runfiles size=6 + RELOC/tex/latex/gb4e/cgloss4e.sty + RELOC/tex/latex/gb4e/gb4e.sty +docfiles size=47 + RELOC/doc/latex/gb4e/README + RELOC/doc/latex/gb4e/gb4e-doc.pdf + RELOC/doc/latex/gb4e/gb4e-doc.tex +catalogue-ctan /macros/latex/contrib/gb4e +catalogue-date 2012-02-10 18:22:03 +0100 +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 + +name gcard +category Package +revision 15878 +shortdesc Arrange text on a sheet to fold into a greeting card. +relocated 1 +longdesc The package provides a simple means of producing greeting +longdesc cards. It arranges four panels onto a single sheet so that when +longdesc the sheet is folded twice the four panels are arranged as front +longdesc cover, inside left and right pages, and back cover. It uses the +longdesc textpos package for placement on the sheet and the graphicx +longdesc package for the necessary rotation. The four panels are set in +longdesc minipages for formatting by the user. +runfiles size=1 + RELOC/tex/latex/gcard/gcard.sty +docfiles size=38 + RELOC/doc/latex/gcard/README + RELOC/doc/latex/gcard/gcard.pdf + RELOC/doc/latex/gcard/gcardex.tex + RELOC/doc/latex/gcard/gcardminexample.tex +catalogue-ctan /macros/latex/contrib/gcard +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name gchords +category Package +revision 29803 +shortdesc Typeset guitar chords. +relocated 1 +longdesc A LaTeX package for typesetting of guitar chord diagrams, +longdesc including options for chord names, finger numbers and +longdesc typesetting above lyrics. The bundle also includes a TCL script +longdesc (chordbox.tcl) that provides a graphical application which +longdesc creates LaTeX files that use gchords.sty. +runfiles size=3 + RELOC/tex/latex/gchords/gchords.sty +docfiles size=22 + RELOC/doc/latex/gchords/README + RELOC/doc/latex/gchords/chordbox.tcl + RELOC/doc/latex/gchords/gchords_doc.pdf + RELOC/doc/latex/gchords/gchords_doc.tex + RELOC/doc/latex/gchords/get2knowu.tex +catalogue-ctan /graphics/gchords +catalogue-date 2015-03-04 20:45:17 +0100 +catalogue-license gpl +catalogue-version 1.20 + +name gcite +category Package +revision 15878 +shortdesc Citations in a reader-friendly style. +relocated 1 +longdesc The package allows citations in the German style, which is +longdesc considered by many to be particularly reader-friendly. The +longdesc citation provides a small amount of bibliographic information +longdesc in a footnote on the page where each citation is made. It +longdesc combines a desire to eliminate unnecessary page-turning with +longdesc the look-up efficiency afforded by numeric citations. The +longdesc package makes use of BibLaTeX, and is considered experimental; +longdesc comment is invited. +runfiles size=1 + RELOC/tex/latex/gcite/gcite.sty +docfiles size=53 + RELOC/doc/latex/gcite/CHANGES + RELOC/doc/latex/gcite/README + RELOC/doc/latex/gcite/gcite.bib + RELOC/doc/latex/gcite/gcite.pdf +srcfiles size=6 + RELOC/source/latex/gcite/gcite.dtx + RELOC/source/latex/gcite/gcite.ins +catalogue-ctan /macros/latex/exptl/gcite +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0.1 + +name gender +category Package +revision 36464 +shortdesc Gender neutrality for languages with grammatical gender. +relocated 1 +longdesc Many languages -- like German or French -- use masculine and +longdesc feminine grammatical genders. There are many ideas how to +longdesc promote gender neutrality in those languages. The gender +longdesc package uses alternately masculine and feminine forms. It is +longdesc also possible to use just one form out of a template. +runfiles size=2 + RELOC/tex/latex/gender/gender.sty +docfiles size=77 + RELOC/doc/latex/gender/README + RELOC/doc/latex/gender/gender.pdf +srcfiles size=4 + RELOC/source/latex/gender/gender.dtx + RELOC/source/latex/gender/gender.ins +catalogue-ctan /macros/latex/contrib/gender +catalogue-date 2015-03-11 05:49:32 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name genealogy +category Package +revision 25112 +shortdesc A compilation genealogy font. +relocated 1 +longdesc A simple compilation of the genealogical symbols found in the +longdesc wasy and gen fonts, adding the male and female symbols to +longdesc Knuth's 'gen' font, and so avoiding loading two fonts when you +longdesc need only genealogical symbols. The font is distributed as +longdesc Metafont source. +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-license lppl + +name genealogytree +category Package +revision 37648 +shortdesc Pedigree and genealogical tree diagrams +relocated 1 +longdesc Pedigree and genealogical tree diagrams are proven tools to +longdesc visualize genetic and relational connections between +longdesc individuals. The naming ("tree") derives from historical family +longdesc diagrams. However, even the smallest family entity consisting +longdesc of two parents and several children is hardly a 'mathematical' +longdesc tree -- it is a more general graph. The package provides a set +longdesc of tools to typeset genealogical trees (i.e., to typeset a set +longdesc of special graphs for the description of family-like +longdesc structures). The package uses an autolayout algorithm which can +longdesc be customized, e.g., to prioritize certain paths. +runfiles size=47 + RELOC/tex/latex/genealogytree/genealogytree.sty + RELOC/tex/latex/genealogytree/gtrcore.contour.code.tex + RELOC/tex/latex/genealogytree/gtrcore.drawing.code.tex + RELOC/tex/latex/genealogytree/gtrcore.node.code.tex + RELOC/tex/latex/genealogytree/gtrcore.options.code.tex + RELOC/tex/latex/genealogytree/gtrcore.parser.code.tex + RELOC/tex/latex/genealogytree/gtrcore.processing.code.tex + RELOC/tex/latex/genealogytree/gtrcore.symbols.code.tex + RELOC/tex/latex/genealogytree/gtrlang.english.code.tex + RELOC/tex/latex/genealogytree/gtrlang.german.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-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 + +name genmisc +category Package +revision 27208 +relocated 1 +runfiles size=72 + RELOC/tex/generic/genmisc/anti.tex + RELOC/tex/generic/genmisc/apldef.tex + RELOC/tex/generic/genmisc/arabic.tex + RELOC/tex/generic/genmisc/backgrnd.tex + RELOC/tex/generic/genmisc/balancedquotes.sty + RELOC/tex/generic/genmisc/chessmin.tex + RELOC/tex/generic/genmisc/compare.tex + RELOC/tex/generic/genmisc/cropmark.sty + RELOC/tex/generic/genmisc/cropmark.tex + RELOC/tex/generic/genmisc/croptest.tex + RELOC/tex/generic/genmisc/dayofweek.tex + RELOC/tex/generic/genmisc/daytime.sty + RELOC/tex/generic/genmisc/default.sty + RELOC/tex/generic/genmisc/dow.tex + RELOC/tex/generic/genmisc/emtrees.tex + RELOC/tex/generic/genmisc/endnote.tex + RELOC/tex/generic/genmisc/fakebold.tex + RELOC/tex/generic/genmisc/hep.tex + RELOC/tex/generic/genmisc/inscrutable.tex + RELOC/tex/generic/genmisc/laps.tex + RELOC/tex/generic/genmisc/letterspacing.tex + RELOC/tex/generic/genmisc/longdiv.tex + RELOC/tex/generic/genmisc/mandel.tex + RELOC/tex/generic/genmisc/mathlig.tex + RELOC/tex/generic/genmisc/nth.sty + RELOC/tex/generic/genmisc/outerhbox.sty + RELOC/tex/generic/genmisc/pagereference.tex + RELOC/tex/generic/genmisc/quotation.tex + RELOC/tex/generic/genmisc/ragged.sty + RELOC/tex/generic/genmisc/random.tex + RELOC/tex/generic/genmisc/ruler.tex + RELOC/tex/generic/genmisc/selectpage.tex + RELOC/tex/generic/genmisc/shadebox.tex + RELOC/tex/generic/genmisc/swrule.sty + RELOC/tex/generic/genmisc/underlin.tex + RELOC/tex/generic/genmisc/undertilde.tex + RELOC/tex/generic/genmisc/verbatim.tex + RELOC/tex/generic/genmisc/weekday.sty + RELOC/tex/generic/genmisc/wiggly.tex + RELOC/tex/generic/genmisc/zip.tex + +name genmpage +category Package +revision 15878 +shortdesc Generalization of LaTeX's minipages. +relocated 1 +longdesc The GenMPage package generalizes LaTeX's minipages. Keyval +longdesc options and styles can be used to determine their appearance in +longdesc an easy and consistent way. Includes options for paragraph +longdesc indentation and vertical alignment with respect to the visual +longdesc top and bottom margins. +runfiles size=2 + RELOC/tex/latex/genmpage/genmpage.sty +docfiles size=23 + RELOC/doc/latex/genmpage/README + RELOC/doc/latex/genmpage/genmpage.pdf +srcfiles size=4 + RELOC/source/latex/genmpage/genmpage.dtx + RELOC/source/latex/genmpage/genmpage.ins +catalogue-ctan /macros/latex/contrib/genmpage +catalogue-date 2012-06-19 20:29:15 +0200 +catalogue-license lppl +catalogue-version 0.3.1 + +name gentium-tug +category Package +revision 37378 +shortdesc Gentium fonts (in two formats) and support files. +relocated 1 +longdesc Gentium is a typeface family designed to enable the diverse +longdesc ethnic groups around the world who use the Latin, Cyrillic and +longdesc Greek scripts to produce readable, high-quality publications. +longdesc It supports a wide range of Latin- and Cyrillic-based +longdesc alphabets. The package consists of: The original (unaltered) +longdesc GentiumPlus, GentiumBook, and other Gentium-family fonts in +longdesc TrueType format, as developed by SIL and released under the OFL +longdesc (see OFL.txt and OFL-FAQ.txt); Converted fonts in PostScript +longdesc Type 1 format, released under the same terms. These incorporate +longdesc the name "Gentium" by permission of SIL given to the TeX Users +longdesc Group; ConTeXt, LaTeX and other supporting files; TeX-related +longdesc documentation, and the SIL documentation and other files. +execute addMap gentium-type1.map +runfiles size=3440 + RELOC/fonts/afm/public/gentium-tug/GenBasB.afm + RELOC/fonts/afm/public/gentium-tug/GenBasBI.afm + RELOC/fonts/afm/public/gentium-tug/GentiumPlus-I.afm + RELOC/fonts/afm/public/gentium-tug/GentiumPlus-R.afm + RELOC/fonts/enc/dvips/gentium-tug/gentium-agr.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ec-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ec-ttf-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ec-ttf.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ec.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-l7x-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-l7x.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-lgr.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ot1-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ot1.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-qx-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-qx.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2a-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2a.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2b-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2b.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2c-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t2c.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t5-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t5-ttf.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-t5.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-texnansi-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-texnansi.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-ts1.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-x2-sc.enc + RELOC/fonts/enc/dvips/gentium-tug/gentium-x2.enc + RELOC/fonts/map/dvips/gentium-tug/gentium-type1.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-agr.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-ec.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-l7x.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-lgr.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-ot1.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-qx.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-t2a.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-t2b.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-t2c.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-t5.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-texnansi.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-truetype.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-ts1.map + RELOC/fonts/map/pdftex/gentium-tug/gentium-x2.map + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/agr-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ec-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/l7x-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/lgr-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/ot1-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/qx-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2a-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2b-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t2c-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/t5-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/texnansi-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumbasic-bold.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumbasic-bolditalic.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/ts1-gentiumplus-regular.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-italic-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-italic.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-regular-sc.tfm + RELOC/fonts/tfm/public/gentium-tug/x2-gentiumplus-regular.tfm + RELOC/fonts/truetype/public/gentium-tug/GenBasB.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBasBI.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBasI.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBasR.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBkBasB.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBkBasBI.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBkBasI.ttf + RELOC/fonts/truetype/public/gentium-tug/GenBkBasR.ttf + RELOC/fonts/truetype/public/gentium-tug/Gentium-I.ttf + RELOC/fonts/truetype/public/gentium-tug/Gentium-R.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumAlt-I.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumAlt-R.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlus-I.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlus-R.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlusCompact-I.ttf + RELOC/fonts/truetype/public/gentium-tug/GentiumPlusCompact-R.ttf + RELOC/fonts/type1/public/gentium-tug/GenBasB.pfb + RELOC/fonts/type1/public/gentium-tug/GenBasBI.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumPlus-I.pfb + RELOC/fonts/type1/public/gentium-tug/GentiumPlus-R.pfb + RELOC/tex/context/third/gentium-tug/type-gentium.mkii + RELOC/tex/context/third/gentium-tug/type-gentium.mkiv + RELOC/tex/latex/gentium-tug/gentium.sty + RELOC/tex/latex/gentium-tug/l7xgentium.fd + RELOC/tex/latex/gentium-tug/lgrgentium.fd + RELOC/tex/latex/gentium-tug/ly1gentium.fd + RELOC/tex/latex/gentium-tug/ot1gentium.fd + RELOC/tex/latex/gentium-tug/qxgentium.fd + RELOC/tex/latex/gentium-tug/t1gentium.fd + RELOC/tex/latex/gentium-tug/t2agentium.fd + RELOC/tex/latex/gentium-tug/t2bgentium.fd + RELOC/tex/latex/gentium-tug/t2cgentium.fd + RELOC/tex/latex/gentium-tug/t5gentium.fd + RELOC/tex/latex/gentium-tug/ts1gentium.fd + RELOC/tex/latex/gentium-tug/x2gentium.fd +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-ctan /fonts/gentium-tug +catalogue-date 2015-05-13 12:47:43 +0200 +catalogue-license other-free +catalogue-version 1.1 + +name gentle +category Package +revision 15878 +shortdesc A Gentle Introduction to TeX. +relocated 1 +longdesc The "Gentle Introduction" is the longest-established +longdesc comprehensive free tutorial on the use of plain TeX. +docfiles size=145 + RELOC/doc/plain/gentle/gentle.pdf + RELOC/doc/plain/gentle/gentle.tex +catalogue-ctan /info/gentle +catalogue-date 2012-05-30 17:51:05 +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 + +name geometry +category Package +revision 19716 +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 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 + 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 +srcfiles size=39 + RELOC/source/latex/geometry/geometry.drv + RELOC/source/latex/geometry/geometry.dtx + RELOC/source/latex/geometry/geometry.ins +catalogue-ctan /macros/latex/contrib/geometry +catalogue-date 2011-10-04 11:41:19 +0200 +catalogue-license lppl +catalogue-version 5.6 + +name german +category Package +revision 30567 +shortdesc Support for German typography. +relocated 1 +longdesc Supports the new German orthography (neue deutsche +longdesc Rechtschreibung). +runfiles size=14 + RELOC/tex/generic/german/german.sty + RELOC/tex/generic/german/ngerman.sty +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/gerdoc.tex + RELOC/doc/generic/german/german.MISSING + RELOC/doc/generic/german/hyphxmpl.cfg +srcfiles size=25 + RELOC/source/generic/german/german.dtx + RELOC/source/generic/german/german.ins +catalogue-ctan /language/german +catalogue-date 2012-06-19 20:29:15 +0200 +catalogue-license lppl +catalogue-version 2.5e + +name germbib +category Package +revision 15878 +shortdesc German variants of standard BibTeX styles. +relocated 1 +longdesc A development of the (old) german.sty, this bundle provides +longdesc German packages, BibTeX styles and documentary examples, for +longdesc writing documents with bibliographies. The author has since +longdesc developed the babelbib bundle, which (he asserts) supersedes +longdesc germbib. +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 +docfiles size=42 + RELOC/doc/bibtex/germbib/README.bibgerm + RELOC/doc/bibtex/germbib/apalike.doc + RELOC/doc/bibtex/germbib/apalike.germbib_sty + RELOC/doc/bibtex/germbib/apalike.tex + RELOC/doc/bibtex/germbib/btxdoc.tex + RELOC/doc/bibtex/germbib/btxhak.tex + RELOC/doc/bibtex/germbib/gerbibtx.bib + RELOC/doc/bibtex/germbib/gerbibtx.tex + RELOC/doc/bibtex/germbib/gerxampl.bib + RELOC/doc/bibtex/germbib/schaum.bib + RELOC/doc/bibtex/germbib/testbibgerm.tex + RELOC/doc/bibtex/germbib/testgerb.tex + RELOC/doc/bibtex/germbib/xampl.bib +catalogue-ctan /biblio/bibtex/contrib/germbib +catalogue-date 2012-06-19 20:29:15 +0200 +catalogue-license other-free + +name germkorr +category Package +revision 15878 +shortdesc Change kerning for german quotation marks. +relocated 1 +longdesc The package germcorr has to be loaded after the package german. +longdesc It brings some letters like T nearer to german single and +longdesc double quotes even when that letter wears a standard accent +longdesc like "`\.T"'. +runfiles size=2 + RELOC/tex/latex/germkorr/germkorr.sty +docfiles size=50 + RELOC/doc/latex/germkorr/COPYING + RELOC/doc/latex/germkorr/README + RELOC/doc/latex/germkorr/germkorr.pdf + RELOC/doc/latex/germkorr/germkorr.tex +catalogue-ctan /macros/latex/contrib/germkorr +catalogue-date 2012-06-19 20:29:15 +0200 +catalogue-license gpl +catalogue-version 1.0 + +name geschichtsfrkl +category Package +revision 25886 +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 + RELOC/source/latex/geschichtsfrkl/geschichtsfrkl.dtx + RELOC/source/latex/geschichtsfrkl/geschichtsfrkl.ins +catalogue-ctan /macros/latex/contrib/biblatex-contrib/geschichtsfrkl +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name getfiledate +category Package +revision 16189 +shortdesc Find the date of last modification of a file. +relocated 1 +longdesc The package fetches from the system the date of last +longdesc modification or opening of an existing file, using the function +longdesc \pdffilemoddate (present in recent versions of PDFTeX); the +longdesc user may specify how the date is to be presented. +runfiles size=2 + RELOC/tex/latex/getfiledate/getfiledate.sty +docfiles size=34 + RELOC/doc/latex/getfiledate/README + RELOC/doc/latex/getfiledate/getfiledate-guide.pdf + RELOC/doc/latex/getfiledate/getfiledate-guide.tex +catalogue-ctan /macros/latex/contrib/getfiledate +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name getmap +category Package +revision 35355 +shortdesc Download OpenStreetMap maps for use in documents. +longdesc The package provides a simple interface to OpenStreetMap, and +longdesc to Google Maps "map images". In the simplest case, it is +longdesc sufficient to specify the address you need (if you don't, the +longdesc package will use its own default). The package loads the map +longdesc image using an external lua script (invoked via \write 18: +longdesc LaTeX must be running with \write 18 enabled). The ("external") +longdesc lua script may be used from the command line; a bash version is +longdesc provided. +depend getmap.ARCH +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 + 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/makefile + texmf-dist/doc/latex/getmap/manifest.txt +catalogue-ctan /macros/latex/contrib/getmap +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl +catalogue-version 1.8 + +name getmap.i386-linux +category Package +revision 34971 +shortdesc i386-linux files of getmap +binfiles arch=i386-linux size=1 + bin/i386-linux/getmapdl + +name getoptk +category Package +revision 23567 +shortdesc Define macros with sophisticated options. +relocated 1 +longdesc The package provides a means of defining macros whose options +longdesc are taken from a dictionary, which includes options which +longdesc themselves have arguments. The package was designed for use +longdesc with Plain TeX; its syntax derives from that of the \hbox, +longdesc \hrule, etc., TeX primitives. +runfiles size=4 + RELOC/tex/plain/getoptk/getoptk.tex + RELOC/tex/plain/getoptk/guide.tex +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 +catalogue-ctan /macros/plain/contrib/getoptk +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 1.0 + +name gfnotation +category Package +revision 37156 +shortdesc Typeset Gottlob Frege's notation in plain TeX +relocated 1 +longdesc The package implements macros for plain TeX to typeset the +longdesc notation invented by Gottlob Frege in 1879 for his books +longdesc "Begriffsschrift" and "Grundgesetze der Arithmetik" (two +longdesc volumes). The output styles of both books are supported. +runfiles size=22 + RELOC/tex/plain/gfnotation/GFnotation.tex +docfiles size=63 + RELOC/doc/plain/gfnotation/COPYING + RELOC/doc/plain/gfnotation/GFnotation-doc.pdf + RELOC/doc/plain/gfnotation/GFnotation-doc.tex + RELOC/doc/plain/gfnotation/README +catalogue-ctan /macros/plain/contrib/gfnotation +catalogue-date 2015-05-02 22:34:45 +0200 +catalogue-license gpl3 +catalogue-version 2.9 + +name gfsartemisia +category Package +revision 19469 +shortdesc A modern Greek font design. +relocated 1 +longdesc GFS Artemisia is a relatively modern font, designed as a +longdesc 'general purpose' font in the same sense as Times is nowadays +longdesc treated. The present version has been provided by the Greek +longdesc Font Society. The font supports the Greek and Latin alphabets. +longdesc LaTeX support is provided, using the OT1, T1 and LGR encodings. +execute addMap gfsartemisia.map +runfiles size=459 + RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-Bold.afm + RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-BoldItalic.afm + RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-Italic.afm + RELOC/fonts/afm/public/gfsartemisia/GFSArtemisia-Regular.afm + RELOC/fonts/enc/dvips/gfsartemisia/artemisia.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiadenomnums.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiaec.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiaecsc.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiael.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiaelsc.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiamath.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisianumnums.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiasc.enc + RELOC/fonts/enc/dvips/gfsartemisia/artemisiatabnums.enc + RELOC/fonts/map/dvips/gfsartemisia/gfsartemisia.map + RELOC/fonts/opentype/public/gfsartemisia/GFSArtemisia.otf + RELOC/fonts/opentype/public/gfsartemisia/GFSArtemisiaBold.otf + RELOC/fonts/opentype/public/gfsartemisia/GFSArtemisiaBoldIt.otf + RELOC/fonts/opentype/public/gfsartemisia/GFSArtemisiaIt.otf + RELOC/fonts/tfm/public/gfsartemisia/artemisiab8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiab8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiab9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiab9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabi8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabi8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabi9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabi9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabo8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabo8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabo9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiabo9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiadenomnums8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiadenomnums8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiai8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiai8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiai9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiai9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiamath8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiamath8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisianumnums8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisianumnums8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiao8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiao8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiao9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiao9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiarg8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiarg8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiarg9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiarg9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasc8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasc8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasc9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasc9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasco8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasco8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasco9a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiasco9r.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiatabnums8a.tfm + RELOC/fonts/tfm/public/gfsartemisia/artemisiatabnums8r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiab6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiab6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiabi6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiabi6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiabo6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiabo6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiai6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiai6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiao6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiao6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiarg6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiarg6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiasc6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiasc6r.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiasco6a.tfm + RELOC/fonts/tfm/public/gfsartemisia/gartemisiasco6r.tfm + RELOC/fonts/type1/public/gfsartemisia/GFSArtemisia-Bold.pfb + RELOC/fonts/type1/public/gfsartemisia/GFSArtemisia-BoldItalic.pfb + RELOC/fonts/type1/public/gfsartemisia/GFSArtemisia-Italic.pfb + RELOC/fonts/type1/public/gfsartemisia/GFSArtemisia-Regular.pfb + RELOC/fonts/vf/public/gfsartemisia/artemisiab8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiab9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiabi8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiabi9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiabo8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiabo9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiadenomnums8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiai8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiai9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiamath8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisianumnums8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiao8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiao9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiarg8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiarg9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiasc8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiasc9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiasco8a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiasco9a.vf + RELOC/fonts/vf/public/gfsartemisia/artemisiatabnums8a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiab6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiabi6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiabo6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiai6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiao6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiarg6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiasc6a.vf + RELOC/fonts/vf/public/gfsartemisia/gartemisiasco6a.vf + RELOC/tex/latex/gfsartemisia/gfsartemisia-euler.sty + RELOC/tex/latex/gfsartemisia/gfsartemisia.sty + RELOC/tex/latex/gfsartemisia/lgrartemisia.fd + RELOC/tex/latex/gfsartemisia/lgrartemisiaeuler.fd + RELOC/tex/latex/gfsartemisia/ot1artemisia.fd + RELOC/tex/latex/gfsartemisia/ot1artemisiaeuler.fd + RELOC/tex/latex/gfsartemisia/t1artemisia.fd + RELOC/tex/latex/gfsartemisia/t1artemisiaeuler.fd + RELOC/tex/latex/gfsartemisia/uartemisiaeulernums.fd + RELOC/tex/latex/gfsartemisia/uartemisianums.fd +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-ctan /fonts/greek/gfs/gfsartemisia +catalogue-date 2014-05-01 23:46:06 +0200 +catalogue-license other-free +catalogue-version 1.0 + +name gfsbaskerville +category Package +revision 19440 +shortdesc A Greek font, from one such by Baskerville. +relocated 1 +longdesc The font is a digital implementation of Baskerville's classic +longdesc Greek font, provided by the Greek Font Society. The font covers +longdesc Greek only, and LaTeX support provides for the use of LGR +longdesc encoding. +execute addMap gfsbaskerville.map +runfiles size=53 + RELOC/fonts/afm/public/gfsbaskerville/GFSBaskerville-Regular.afm + RELOC/fonts/enc/dvips/gfsbaskerville/gpgfsbaskerville.enc + RELOC/fonts/map/dvips/gfsbaskerville/gfsbaskerville.map + RELOC/fonts/opentype/public/gfsbaskerville/GFSBaskerville.otf + RELOC/fonts/tfm/public/gfsbaskerville/ggfsbaskervillerg6a.tfm + RELOC/fonts/tfm/public/gfsbaskerville/ggfsbaskervillerg6r.tfm + RELOC/fonts/type1/public/gfsbaskerville/GFSBaskerville-Regular.pfb + RELOC/fonts/vf/public/gfsbaskerville/ggfsbaskervillerg6a.vf + RELOC/tex/latex/gfsbaskerville/gfsbaskerville.sty + RELOC/tex/latex/gfsbaskerville/lgrgfsbaskerville.fd +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-ctan /fonts/greek/gfs/gfsbaskerville +catalogue-date 2014-05-01 23:46:06 +0200 +catalogue-license other-free +catalogue-version 1.0 + +name gfsbodoni +category Package +revision 28484 +shortdesc A Greek and Latin font based on Bodoni. +relocated 1 +longdesc Bodoni's Greek fonts in the 18th century broke, for the first +longdesc time, with the Byzantine cursive tradition of Greek fonts. GFS +longdesc Bodoni resurrects his work for general use. The font family +longdesc supports both Greek and Latin letters. LaTeX support of the +longdesc fonts is provided, offering OT1, T1 and LGR encodings. The +longdesc fonts themselves are provided in Adobe Type 1 and OpenType +longdesc formats. +execute addMap gfsbodoni.map +runfiles size=443 + RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-Bold.afm + RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-BoldItalic.afm + RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-Italic.afm + RELOC/fonts/afm/public/gfsbodoni/GFSBodoni-Regular.afm + RELOC/fonts/enc/dvips/gfsbodoni/bodoni.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodonidenomnums.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodoniec.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodoniecsc.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodoniel.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodonielsc.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodoninumnums.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodonisc.enc + RELOC/fonts/enc/dvips/gfsbodoni/bodonitabnums.enc + RELOC/fonts/map/dvips/gfsbodoni/gfsbodoni.map + RELOC/fonts/opentype/public/gfsbodoni/GFSBodoni.otf + RELOC/fonts/opentype/public/gfsbodoni/GFSBodoniBold.otf + RELOC/fonts/opentype/public/gfsbodoni/GFSBodoniBoldIt.otf + RELOC/fonts/opentype/public/gfsbodoni/GFSBodoniIt.otf + RELOC/fonts/tfm/public/gfsbodoni/bodonib8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonib8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonib9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonib9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibi8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibi8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibi9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibi9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibo8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibo8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibo9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonibo9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonidenomnums8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonidenomnums8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonii8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonii8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonii9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonii9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodoninumnums8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodoninumnums8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonio8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonio8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonio9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonio9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonirg8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonirg8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonirg9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonirg9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisc8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisc8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisc9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisc9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisco8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisco8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisco9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonisco9r.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonitabnums8a.tfm + RELOC/fonts/tfm/public/gfsbodoni/bodonitabnums8r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonib6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonib6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonibi6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonibi6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonibo6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonibo6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonii6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonii6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonio6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonio6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonio9a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonirg6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonirg6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonisc6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonisc6r.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonisco6a.tfm + RELOC/fonts/tfm/public/gfsbodoni/gbodonisco6r.tfm + RELOC/fonts/type1/public/gfsbodoni/GFSBodoni-Bold.pfb + RELOC/fonts/type1/public/gfsbodoni/GFSBodoni-BoldItalic.pfb + RELOC/fonts/type1/public/gfsbodoni/GFSBodoni-Italic.pfb + RELOC/fonts/type1/public/gfsbodoni/GFSBodoni-Regular.pfb + RELOC/fonts/vf/public/gfsbodoni/bodonib8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonib9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonibi8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonibi9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonibo8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonibo9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonidenomnums8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonii8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonii9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodoninumnums8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonio8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonio9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonirg8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonirg9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonisc8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonisc9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonisco8a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonisco9a.vf + RELOC/fonts/vf/public/gfsbodoni/bodonitabnums8a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonib6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonibi6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonibo6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonii6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonio6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonio9a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonirg6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonisc6a.vf + RELOC/fonts/vf/public/gfsbodoni/gbodonisco6a.vf + RELOC/tex/latex/gfsbodoni/gfsbodoni.sty + RELOC/tex/latex/gfsbodoni/lgrbodoni.fd + RELOC/tex/latex/gfsbodoni/ot1bodoni.fd + RELOC/tex/latex/gfsbodoni/t1bodoni.fd + RELOC/tex/latex/gfsbodoni/ubodoninums.fd +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-ctan /fonts/greek/gfs/gfsbodoni +catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-license ofl +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. +execute addMap gfscomplutum.map +runfiles size=58 + RELOC/fonts/afm/public/gfscomplutum/GFSComplutum-Regular.afm + RELOC/fonts/enc/dvips/gfscomplutum/gpcomplutum.enc + RELOC/fonts/map/dvips/gfscomplutum/gfscomplutum.map + RELOC/fonts/opentype/public/gfscomplutum/GFSPolyglot.otf + RELOC/fonts/tfm/public/gfscomplutum/gcomplutum8a.tfm + RELOC/fonts/tfm/public/gfscomplutum/gcomplutum8r.tfm + RELOC/fonts/tfm/public/gfscomplutum/gcomplutumo8a.tfm + RELOC/fonts/tfm/public/gfscomplutum/gcomplutumo8r.tfm + RELOC/fonts/type1/public/gfscomplutum/GFSComplutum-Regular.pfb + RELOC/fonts/vf/public/gfscomplutum/gcomplutum8a.vf + RELOC/fonts/vf/public/gfscomplutum/gcomplutumo8a.vf + RELOC/tex/latex/gfscomplutum/gfscomplutum.sty + RELOC/tex/latex/gfscomplutum/lgrcomplutum.fd +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-ctan /fonts/greek/gfs/gfscomplutum +catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-license ofl +catalogue-version 1.0 + +name gfsdidot +category Package +revision 31978 +shortdesc A Greek font based on Didot's work. +relocated 1 +longdesc The design of Didot's 1805 Greek typeface was influenced by the +longdesc neoclassical ideals of the late 18th century. The font was +longdesc brought to Greece at the time of the 1821 Greek Revolution, by +longdesc Didot's son, and was very widely used. The present version is +longdesc provided by the Greek Font Society. The font supports the Greek +longdesc alphabet, and is accompanied by a matching Latin alphabet based +longdesc on Zapf's Palatino. LaTeX support is provided, using the OT1, +longdesc T1 and LGR encodings. +execute addMap gfsdidot.map +runfiles size=585 + 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/didotdenomnums.enc + RELOC/fonts/enc/dvips/gfsdidot/didotec.enc + RELOC/fonts/enc/dvips/gfsdidot/didotnumnums.enc + RELOC/fonts/enc/dvips/gfsdidot/didottabnums.enc + RELOC/fonts/enc/dvips/gfsdidot/didotuecsc.enc + RELOC/fonts/enc/dvips/gfsdidot/didotusc.enc + RELOC/fonts/enc/dvips/gfsdidot/gfsudidotmath.enc + RELOC/fonts/enc/dvips/gfsdidot/gpdidot.enc + RELOC/fonts/enc/dvips/gfsdidot/gpdidoti.enc + RELOC/fonts/enc/dvips/gfsdidot/gpdidotusc.enc + RELOC/fonts/enc/dvips/gfsdidot/gpolga.enc + RELOC/fonts/map/dvips/gfsdidot/gfsdidot.map + RELOC/fonts/opentype/public/gfsdidot/GFSDidot.otf + RELOC/fonts/opentype/public/gfsdidot/GFSDidotBold.otf + RELOC/fonts/opentype/public/gfsdidot/GFSDidotBoldItalic.otf + RELOC/fonts/opentype/public/gfsdidot/GFSDidotItalic.otf + RELOC/fonts/opentype/public/gfsdidot/GFSOlga.otf + RELOC/fonts/tfm/public/gfsdidot/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/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/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/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/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/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/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/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/didotui8a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui8r.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui9a.tfm + RELOC/fonts/tfm/public/gfsdidot/didotui9r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotb6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotb6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotbi6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotbi6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidoti6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidoti6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotrg6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotrg6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotsc6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotsc6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotsco6a.tfm + RELOC/fonts/tfm/public/gfsdidot/gdidotsco6r.tfm + RELOC/fonts/tfm/public/gfsdidot/gfsudidotmath8a.tfm + RELOC/fonts/tfm/public/gfsdidot/gfsudidotmath8r.tfm + RELOC/fonts/tfm/public/gfsdidot/golgai6a.tfm + RELOC/fonts/tfm/public/gfsdidot/golgai6r.tfm + RELOC/fonts/tfm/public/gfsdidot/golgaui6a.tfm + RELOC/fonts/tfm/public/gfsdidot/golgaui6r.tfm + RELOC/fonts/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/didotb8a.vf + RELOC/fonts/vf/public/gfsdidot/didotb9a.vf + RELOC/fonts/vf/public/gfsdidot/didotbi8a.vf + RELOC/fonts/vf/public/gfsdidot/didotbi9a.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/didoti8a.vf + RELOC/fonts/vf/public/gfsdidot/didoti9a.vf + RELOC/fonts/vf/public/gfsdidot/didotnumnums8a.vf + RELOC/fonts/vf/public/gfsdidot/didoto8a.vf + RELOC/fonts/vf/public/gfsdidot/didoto9a.vf + RELOC/fonts/vf/public/gfsdidot/didotrg8a.vf + RELOC/fonts/vf/public/gfsdidot/didotrg9a.vf + RELOC/fonts/vf/public/gfsdidot/didotsc8a.vf + RELOC/fonts/vf/public/gfsdidot/didotsc9a.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/didotui8a.vf + RELOC/fonts/vf/public/gfsdidot/didotui9a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotb6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotbi6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidoti6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotrg6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotsc6a.vf + RELOC/fonts/vf/public/gfsdidot/gdidotsco6a.vf + RELOC/fonts/vf/public/gfsdidot/gfsudidotmath8a.vf + RELOC/fonts/vf/public/gfsdidot/golgai6a.vf + RELOC/fonts/vf/public/gfsdidot/golgaui6a.vf + RELOC/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/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-ctan /fonts/greek/gfs/gfsdidot +catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-license other-free + +name gfsneohellenic +category Package +revision 31979 +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 +longdesc from Monotype in 1927. The present version was provided by the +longdesc Greek Font Society. The font supports both Greek and Latin +longdesc characters, and has been adjusted to work well with the +longdesc cmbright fonts for mathematics support. LaTeX support of the +longdesc fonts is provided, offering OT1, T1 and LGR encodings. +execute addMap gfsneohellenic.map +runfiles size=445 + RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Bold.afm + RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-BoldItalic.afm + RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Italic.afm + RELOC/fonts/afm/public/gfsneohellenic/GFSNeohellenic-Regular.afm + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenic.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicdenomnums.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicec.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicecsc.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicel.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicelsc.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicmath.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicnumnums.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenicsc.enc + RELOC/fonts/enc/dvips/gfsneohellenic/neohellenictabnums.enc + RELOC/fonts/map/dvips/gfsneohellenic/gfsneohellenic.map + RELOC/fonts/opentype/public/gfsneohellenic/GFSNeohellenic.otf + RELOC/fonts/opentype/public/gfsneohellenic/GFSNeohellenicBold.otf + RELOC/fonts/opentype/public/gfsneohellenic/GFSNeohellenicBoldIt.otf + RELOC/fonts/opentype/public/gfsneohellenic/GFSNeohellenicIt.otf + RELOC/fonts/tfm/public/gfsneohellenic/gfsneohellenicmath8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gfsneohellenicmath8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicb6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicb6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicbi6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicbi6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicbo6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicbo6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenici6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenici6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenico6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenico6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicrg6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicrg6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicsc6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicsc6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicsco6a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/gneohellenicsco6r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicb8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicb8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicb9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicb9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbi8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbi8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbi9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbi9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbo8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbo8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbo9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicbo9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicdenomnums8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicdenomnums8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenici8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenici8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenici9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenici9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicnumnums8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicnumnums8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenico8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenico8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenico9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenico9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicrg8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicrg8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicrg9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicrg9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsc8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsc8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsc9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsc9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsco8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsco8r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsco9a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenicsco9r.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenictabnums8a.tfm + RELOC/fonts/tfm/public/gfsneohellenic/neohellenictabnums8r.tfm + RELOC/fonts/type1/public/gfsneohellenic/GFSNeohellenic-Bold.pfb + RELOC/fonts/type1/public/gfsneohellenic/GFSNeohellenic-BoldItalic.pfb + RELOC/fonts/type1/public/gfsneohellenic/GFSNeohellenic-Italic.pfb + RELOC/fonts/type1/public/gfsneohellenic/GFSNeohellenic-Regular.pfb + RELOC/fonts/vf/public/gfsneohellenic/gfsneohellenicmath8a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicb6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicbi6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicbo6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenici6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenico6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicrg6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicsc6a.vf + RELOC/fonts/vf/public/gfsneohellenic/gneohellenicsco6a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicb8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicb9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicbi8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicbi9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicbo8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicbo9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicdenomnums8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenici8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenici9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicnumnums8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenico8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenico9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicrg8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicrg9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicsc8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicsc9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicsco8a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenicsco9a.vf + RELOC/fonts/vf/public/gfsneohellenic/neohellenictabnums8a.vf + RELOC/tex/latex/gfsneohellenic/gfsneohellenic.sty + RELOC/tex/latex/gfsneohellenic/lgrneohellenic.fd + RELOC/tex/latex/gfsneohellenic/omlneohellenic.fd + RELOC/tex/latex/gfsneohellenic/ot1neohellenic.fd + RELOC/tex/latex/gfsneohellenic/t1neohellenic.fd + RELOC/tex/latex/gfsneohellenic/uneohellenicnums.fd +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-ctan /fonts/greek/gfs/gfsneohellenic +catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-license other-free + +name gfsporson +category Package +revision 18651 +shortdesc A Greek font, originally from Porson. +relocated 1 +longdesc Porson is an elegant Greek font, originally cut at the turn of +longdesc the 19th Century in England. The present version has been +longdesc provided by the Greek Font Society. The font supports the Greek +longdesc alphabet only. LaTeX support is provided, using the LGR +longdesc encoding. +execute addMap gfsporson.map +runfiles size=47 + RELOC/fonts/afm/public/gfsporson/GFSPorson-Regular.afm + RELOC/fonts/enc/dvips/gfsporson/porsonel.enc + RELOC/fonts/map/dvips/gfsporson/gfsporson.map + RELOC/fonts/opentype/public/gfsporson/GFSPorson.otf + RELOC/fonts/tfm/public/gfsporson/gporsonrg6a.tfm + RELOC/fonts/tfm/public/gfsporson/gporsonrg6r.tfm + RELOC/fonts/type1/public/gfsporson/GFSPorson-Regular.pfb + RELOC/fonts/vf/public/gfsporson/gporsonrg6a.vf + RELOC/tex/latex/gfsporson/gfsporson.sty + RELOC/tex/latex/gfsporson/lgrporson.fd +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-ctan /fonts/greek/gfs/gfsporson +catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-license other-free +catalogue-version 1.01 + +name gfssolomos +category Package +revision 18651 +shortdesc A Greek-alphabet font. +relocated 1 +longdesc Solomos is a font which traces its descent from a +longdesc calligraphically-inspired font of the mid-19th century. LaTeX +longdesc support, for use with the LGR encoding only, is provided. +execute addMap gfssolomos.map +runfiles size=44 + RELOC/fonts/afm/public/gfssolomos/GFSSolomos-Regular.afm + RELOC/fonts/enc/dvips/gfssolomos/gpsolomos.enc + RELOC/fonts/map/dvips/gfssolomos/gfssolomos.map + RELOC/fonts/opentype/public/gfssolomos/GFSSolomos.otf + RELOC/fonts/tfm/public/gfssolomos/gsolomos8a.tfm + RELOC/fonts/tfm/public/gfssolomos/gsolomos8r.tfm + RELOC/fonts/type1/public/gfssolomos/GFSSolomos-Regular.pfb + RELOC/fonts/vf/public/gfssolomos/gsolomos8a.vf + RELOC/tex/latex/gfssolomos/gfssolomos.sty + RELOC/tex/latex/gfssolomos/lgrsolomos.fd +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-ctan /fonts/greek/gfs/gfssolomos +catalogue-date 2014-05-02 15:05:35 +0200 +catalogue-license ofl +catalogue-version 1.0 + +name ghab +category Package +revision 29803 +shortdesc Typeset ghab boxes in LaTeX. +relocated 1 +longdesc The package defines a command \darghab that will typeset its +longdesc argument in a box with a decorated frame. The width of the box +longdesc may be set using an optional argument. +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-ctan /macros/latex/contrib/ghab +catalogue-date 2014-09-06 11:24:06 +0200 +catalogue-license lppl +catalogue-version 0.5 + +name ghsystem +category Package +revision 34925 +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 + RELOC/tex/latex/ghsystem/ghsystem.sty + RELOC/tex/latex/ghsystem/language/ghsystem_english.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-ctan /macros/latex/contrib/ghsystem +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.3 +catalogue-version 4.6 + +name gillcm +category Package +revision 19878 +shortdesc Alternative unslanted italic Computer Modern fonts. +relocated 1 +longdesc This is a demonstration of the use of virtual fonts for unusual +longdesc effects: the package implements an old idea of Eric Gill. The +longdesc package was written for the author's talk at TUG 2010. +runfiles size=39 + RELOC/fonts/map/dvips/gillcm/cmg.map + RELOC/fonts/tfm/public/gillcm/cmgb8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgbi7t.tfm + RELOC/fonts/tfm/public/gillcm/cmgbi8c.tfm + RELOC/fonts/tfm/public/gillcm/cmgbi8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgbi8t.tfm + RELOC/fonts/tfm/public/gillcm/cmgbiu7t.tfm + RELOC/fonts/tfm/public/gillcm/cmgbiu8c.tfm + RELOC/fonts/tfm/public/gillcm/cmgbiu8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgbiu8t.tfm + RELOC/fonts/tfm/public/gillcm/cmgm8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgmi7t.tfm + RELOC/fonts/tfm/public/gillcm/cmgmi8c.tfm + RELOC/fonts/tfm/public/gillcm/cmgmi8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgmi8t.tfm + RELOC/fonts/tfm/public/gillcm/cmgmiu7t.tfm + RELOC/fonts/tfm/public/gillcm/cmgmiu8c.tfm + RELOC/fonts/tfm/public/gillcm/cmgmiu8r.tfm + RELOC/fonts/tfm/public/gillcm/cmgmiu8t.tfm + RELOC/fonts/vf/public/gillcm/cmgbi7t.vf + RELOC/fonts/vf/public/gillcm/cmgbi8c.vf + RELOC/fonts/vf/public/gillcm/cmgbi8t.vf + RELOC/fonts/vf/public/gillcm/cmgbiu7t.vf + RELOC/fonts/vf/public/gillcm/cmgbiu8c.vf + RELOC/fonts/vf/public/gillcm/cmgbiu8t.vf + RELOC/fonts/vf/public/gillcm/cmgmi7t.vf + RELOC/fonts/vf/public/gillcm/cmgmi8c.vf + RELOC/fonts/vf/public/gillcm/cmgmi8t.vf + RELOC/fonts/vf/public/gillcm/cmgmiu7t.vf + RELOC/fonts/vf/public/gillcm/cmgmiu8c.vf + RELOC/fonts/vf/public/gillcm/cmgmiu8t.vf + RELOC/tex/latex/gillcm/gillcm.sty + RELOC/tex/latex/gillcm/ot1cmg.fd + RELOC/tex/latex/gillcm/t1cmg.fd + RELOC/tex/latex/gillcm/ts1cmg.fd +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-license bsd +catalogue-version 1.1 + +name gillius +category Package +revision 32068 +shortdesc Gillius fonts with LaTeX support. +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the Gillius and Gillius No. 2 families of sans +longdesc serif fonts and condensed versions of them, designed by Hirwen +longdesc Harendal. According to the designer, the fonts were inspired by +longdesc Gill Sans. +execute addMap gillius.map +runfiles size=628 + RELOC/fonts/enc/dvips/gillius/gls_4bsedw.enc + RELOC/fonts/enc/dvips/gillius/gls_a6mi7n.enc + RELOC/fonts/enc/dvips/gillius/gls_az7pev.enc + RELOC/fonts/enc/dvips/gillius/gls_bg5e7z.enc + RELOC/fonts/enc/dvips/gillius/gls_efuo7w.enc + RELOC/fonts/enc/dvips/gillius/gls_lf6eoq.enc + RELOC/fonts/enc/dvips/gillius/gls_pqq4vh.enc + RELOC/fonts/enc/dvips/gillius/gls_shb4ap.enc + RELOC/fonts/map/dvips/gillius/gillius.map + RELOC/fonts/opentype/arkandis/gillius/GilliusADF-Bold.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADF-BoldItalic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADF-Italic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADF-Regular.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFCond-Bold.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFCond-BoldItalic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFCond-Italic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFCond-Regular.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2-Bold.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2-BoldItalic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2-Italic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2-Regular.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Bold.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-BoldItalic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Italic.otf + RELOC/fonts/opentype/arkandis/gillius/GilliusADFNo2Cond-Regular.otf + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADF-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFCond-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1.tfm + RELOC/fonts/type1/arkandis/gillius/GilliusADF-Bold.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-BoldItalic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-Italic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-Regular.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADF-RegularLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-Bold.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-BoldItalic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-Italic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-Regular.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFCond-RegularLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-Bold.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldItalic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-Italic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-Regular.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2-RegularLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Bold.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldItalic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Italic.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-Regular.pfb + RELOC/fonts/type1/arkandis/gillius/GilliusADFNo2Cond-RegularLCDFJ.pfb + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADF-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFCond-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2-Regular-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/gillius/GilliusADFNo2Cond-Regular-lf-ts1.vf + RELOC/tex/latex/gillius/LY1GilliusADF-LF.fd + RELOC/tex/latex/gillius/LY1GilliusADFCond-LF.fd + RELOC/tex/latex/gillius/LY1GilliusADFNoTwo-LF.fd + RELOC/tex/latex/gillius/LY1GilliusADFNoTwoCond-LF.fd + RELOC/tex/latex/gillius/OT1GilliusADF-LF.fd + RELOC/tex/latex/gillius/OT1GilliusADFCond-LF.fd + RELOC/tex/latex/gillius/OT1GilliusADFNoTwo-LF.fd + RELOC/tex/latex/gillius/OT1GilliusADFNoTwoCond-LF.fd + RELOC/tex/latex/gillius/T1GilliusADF-LF.fd + RELOC/tex/latex/gillius/T1GilliusADFCond-LF.fd + RELOC/tex/latex/gillius/T1GilliusADFNoTwo-LF.fd + RELOC/tex/latex/gillius/T1GilliusADFNoTwoCond-LF.fd + RELOC/tex/latex/gillius/TS1GilliusADF-LF.fd + RELOC/tex/latex/gillius/TS1GilliusADFCond-LF.fd + RELOC/tex/latex/gillius/TS1GilliusADFNoTwo-LF.fd + RELOC/tex/latex/gillius/TS1GilliusADFNoTwoCond-LF.fd + RELOC/tex/latex/gillius/gillius.sty + RELOC/tex/latex/gillius/gillius2.sty +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-ctan /fonts/gillius +catalogue-date 2015-01-19 21:18:08 +0100 +catalogue-license gpl2 + +name gincltex +category Package +revision 23835 +shortdesc Include TeX files as graphics (.tex support for \includegraphics). +relocated 1 +longdesc The package builds on the standard LaTeX packages graphics +longdesc and/or graphicx and allows external LaTeX source files to be +longdesc included, in the same way as graphic files, by +longdesc \includegraphics. In effect, then package adds support for the +longdesc .tex extension. Some of the lower level operations like +longdesc clipping and trimming are implemented using the adjustbox +longdesc package which includes native pdflatex support and uses the pgf +longdesc pacakge for other output formats. +runfiles size=1 + RELOC/tex/latex/gincltex/gincltex.sty +docfiles size=43 + RELOC/doc/latex/gincltex/README + RELOC/doc/latex/gincltex/gincltex.pdf +srcfiles size=5 + RELOC/source/latex/gincltex/gincltex.dtx + RELOC/source/latex/gincltex/gincltex.ins +catalogue-ctan /macros/latex/contrib/gincltex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.3 + +name ginpenc +category Package +revision 24980 +shortdesc Modification of inputenc for German. +relocated 1 +longdesc If the inputenc is used and German umlauts are input directly, +longdesc they are converted to the LICR representation \"a (etc.). This +longdesc breaks the sort algorithm of makeindex, for instance. Ginpenc +longdesc converts umlauts and the sharp-s to the short forms defined by +longdesc babel, e.g., "a instead, if the text is typeset in German. +runfiles size=18 + RELOC/tex/latex/ginpenc/ansinew.gie + RELOC/tex/latex/ginpenc/applemac.gie + RELOC/tex/latex/ginpenc/ascii.gie + RELOC/tex/latex/ginpenc/cp1250.gie + RELOC/tex/latex/ginpenc/cp1252.gie + RELOC/tex/latex/ginpenc/cp437.gie + RELOC/tex/latex/ginpenc/cp437de.gie + RELOC/tex/latex/ginpenc/cp850.gie + RELOC/tex/latex/ginpenc/cp852.gie + RELOC/tex/latex/ginpenc/cp865.gie + RELOC/tex/latex/ginpenc/decmulti.gie + RELOC/tex/latex/ginpenc/ginpenc.sty + RELOC/tex/latex/ginpenc/latin1.gie + RELOC/tex/latex/ginpenc/latin2.gie + RELOC/tex/latex/ginpenc/latin3.gie + RELOC/tex/latex/ginpenc/latin5.gie + RELOC/tex/latex/ginpenc/latin9.gie + RELOC/tex/latex/ginpenc/next.gie +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-license lppl +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 +catalogue-license lppl1.3 +catalogue-version 2.0.4 + +name gitinfo +category Package +revision 34049 +shortdesc Access metadata from the git distributed version control system. +relocated 1 +longdesc The package makes it possible to incorporate git version +longdesc control metadata into documents. For memoir users, the package +longdesc provides the means to tailor page headers and footers to use +longdesc the metadata. Note this version is now deprecated, but is kept +longdesc on the archive, pro tem, for continuity for existing users. All +longdesc new repositories should use gitinfo2. +runfiles size=2 + RELOC/tex/latex/gitinfo/gitinfo.sty + RELOC/tex/latex/gitinfo/gitsetinfo.sty +docfiles size=27 + RELOC/doc/latex/gitinfo/README + RELOC/doc/latex/gitinfo/gitHeadInfo.gin + RELOC/doc/latex/gitinfo/gitinfo.pdf + RELOC/doc/latex/gitinfo/gitinfo.tex + RELOC/doc/latex/gitinfo/post-xxx-sample.txt +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-license lppl1.3 +catalogue-version 1.0 + +name glossaries-german +category Package +revision 35665 +shortdesc German language module for glossaries package +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 +catalogue-license lppl1.3 +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. +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 +catalogue-license lppl1.3 +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. +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 +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. +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 + +name glossaries-spanish +category Package +revision 35665 +shortdesc Spanish language module for glossaries package. +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 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name glossaries +category Package +revision 38342 +shortdesc Create glossaries and lists of acronyms +longdesc The glossaries package supports acronyms and multiple +longdesc glossaries, and has provision for operation in several +longdesc languages (using the facilities of either babel or +longdesc polyglossia). New entries are defined to have a name and +longdesc description (and optionally an associated symbol). Support for +longdesc multiple languages is offered, and plural forms of terms may be +longdesc specified. An additional package, glossaries-accsupp, can make +longdesc use of the accsupp package mechanisms for accessibility support +longdesc for PDF files containing glossaries. The user may define new +longdesc glossary styles, and preambles and postambles can be specified. +longdesc There is provision for loading a database of terms, but only +longdesc terms used in the text will be added to the relevant glossary. +longdesc The package uses an indexing program to provide the actual +longdesc glossary; either makeindex or xindy may serve this purpose, and +longdesc a Perl script is provided to serve as interface. 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. +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 + 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/glossaries-user.tex + texmf-dist/doc/latex/glossaries/glossariesbegin.html + texmf-dist/doc/latex/glossaries/glossariesbegin.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.tex + texmf-dist/doc/latex/glossaries/samples/README-samples + texmf-dist/doc/latex/glossaries/samples/database1.tex + texmf-dist/doc/latex/glossaries/samples/database2.tex + texmf-dist/doc/latex/glossaries/samples/glossary-lipsum-examples.pdf + texmf-dist/doc/latex/glossaries/samples/glossary-lipsum-examples.tex + texmf-dist/doc/latex/glossaries/samples/minimalgls.pdf + texmf-dist/doc/latex/glossaries/samples/minimalgls.tex + texmf-dist/doc/latex/glossaries/samples/mwe-acr-desc.pdf + texmf-dist/doc/latex/glossaries/samples/mwe-acr-desc.tex + texmf-dist/doc/latex/glossaries/samples/mwe-acr.pdf + texmf-dist/doc/latex/glossaries/samples/mwe-acr.tex + texmf-dist/doc/latex/glossaries/samples/mwe-gls.pdf + texmf-dist/doc/latex/glossaries/samples/mwe-gls.tex + texmf-dist/doc/latex/glossaries/samples/sample-FnDesc.pdf + texmf-dist/doc/latex/glossaries/samples/sample-FnDesc.tex + texmf-dist/doc/latex/glossaries/samples/sample-chap-hyperfirst.pdf + texmf-dist/doc/latex/glossaries/samples/sample-chap-hyperfirst.tex + texmf-dist/doc/latex/glossaries/samples/sample-crossref.pdf + texmf-dist/doc/latex/glossaries/samples/sample-crossref.tex + texmf-dist/doc/latex/glossaries/samples/sample-custom-acronym.pdf + texmf-dist/doc/latex/glossaries/samples/sample-custom-acronym.tex + texmf-dist/doc/latex/glossaries/samples/sample-dot-abbr.pdf + texmf-dist/doc/latex/glossaries/samples/sample-dot-abbr.tex + texmf-dist/doc/latex/glossaries/samples/sample-dual.pdf + texmf-dist/doc/latex/glossaries/samples/sample-dual.tex + texmf-dist/doc/latex/glossaries/samples/sample-entrycount.pdf + texmf-dist/doc/latex/glossaries/samples/sample-entrycount.tex + texmf-dist/doc/latex/glossaries/samples/sample-entryfmt.pdf + texmf-dist/doc/latex/glossaries/samples/sample-entryfmt.tex + texmf-dist/doc/latex/glossaries/samples/sample-font-abbr.pdf + texmf-dist/doc/latex/glossaries/samples/sample-font-abbr.tex + texmf-dist/doc/latex/glossaries/samples/sample-ignored.pdf + texmf-dist/doc/latex/glossaries/samples/sample-ignored.tex + texmf-dist/doc/latex/glossaries/samples/sample-index.pdf + texmf-dist/doc/latex/glossaries/samples/sample-index.tex + texmf-dist/doc/latex/glossaries/samples/sample-inline.pdf + texmf-dist/doc/latex/glossaries/samples/sample-inline.tex + texmf-dist/doc/latex/glossaries/samples/sample-langdict.pdf + texmf-dist/doc/latex/glossaries/samples/sample-langdict.tex + texmf-dist/doc/latex/glossaries/samples/sample-newkeys.pdf + texmf-dist/doc/latex/glossaries/samples/sample-newkeys.tex + texmf-dist/doc/latex/glossaries/samples/sample-noidxapp-utf8.pdf + texmf-dist/doc/latex/glossaries/samples/sample-noidxapp-utf8.tex + texmf-dist/doc/latex/glossaries/samples/sample-noidxapp.pdf + texmf-dist/doc/latex/glossaries/samples/sample-noidxapp.tex + texmf-dist/doc/latex/glossaries/samples/sample-nomathhyper.pdf + texmf-dist/doc/latex/glossaries/samples/sample-nomathhyper.tex + texmf-dist/doc/latex/glossaries/samples/sample-numberlist.pdf + texmf-dist/doc/latex/glossaries/samples/sample-numberlist.tex + texmf-dist/doc/latex/glossaries/samples/sample-prefix.pdf + texmf-dist/doc/latex/glossaries/samples/sample-prefix.tex + texmf-dist/doc/latex/glossaries/samples/sample-si.pdf + texmf-dist/doc/latex/glossaries/samples/sample-si.tex + texmf-dist/doc/latex/glossaries/samples/sample-storage-abbr-desc.pdf + texmf-dist/doc/latex/glossaries/samples/sample-storage-abbr-desc.tex + texmf-dist/doc/latex/glossaries/samples/sample-storage-abbr.pdf + texmf-dist/doc/latex/glossaries/samples/sample-storage-abbr.tex + texmf-dist/doc/latex/glossaries/samples/sample.pdf + texmf-dist/doc/latex/glossaries/samples/sample.tex + texmf-dist/doc/latex/glossaries/samples/sample4col.pdf + texmf-dist/doc/latex/glossaries/samples/sample4col.tex + texmf-dist/doc/latex/glossaries/samples/sampleAcr.pdf + texmf-dist/doc/latex/glossaries/samples/sampleAcr.tex + texmf-dist/doc/latex/glossaries/samples/sampleAcrDesc.pdf + texmf-dist/doc/latex/glossaries/samples/sampleAcrDesc.tex + texmf-dist/doc/latex/glossaries/samples/sampleCustomAcr.pdf + texmf-dist/doc/latex/glossaries/samples/sampleCustomAcr.tex + texmf-dist/doc/latex/glossaries/samples/sampleDB.pdf + texmf-dist/doc/latex/glossaries/samples/sampleDB.tex + texmf-dist/doc/latex/glossaries/samples/sampleDesc.pdf + texmf-dist/doc/latex/glossaries/samples/sampleDesc.tex + texmf-dist/doc/latex/glossaries/samples/sampleEq.pdf + texmf-dist/doc/latex/glossaries/samples/sampleEq.tex + texmf-dist/doc/latex/glossaries/samples/sampleEqPg.pdf + texmf-dist/doc/latex/glossaries/samples/sampleEqPg.tex + texmf-dist/doc/latex/glossaries/samples/sampleFnAcrDesc.pdf + texmf-dist/doc/latex/glossaries/samples/sampleFnAcrDesc.tex + texmf-dist/doc/latex/glossaries/samples/sampleNtn.pdf + texmf-dist/doc/latex/glossaries/samples/sampleNtn.tex + texmf-dist/doc/latex/glossaries/samples/samplePeople.pdf + texmf-dist/doc/latex/glossaries/samples/samplePeople.tex + texmf-dist/doc/latex/glossaries/samples/sampleSec.pdf + texmf-dist/doc/latex/glossaries/samples/sampleSec.tex + texmf-dist/doc/latex/glossaries/samples/sampleSort.pdf + texmf-dist/doc/latex/glossaries/samples/sampleSort.tex + texmf-dist/doc/latex/glossaries/samples/sampleaccsupp.pdf + texmf-dist/doc/latex/glossaries/samples/sampleaccsupp.tex + texmf-dist/doc/latex/glossaries/samples/sampleacronyms.pdf + texmf-dist/doc/latex/glossaries/samples/sampleacronyms.tex + texmf-dist/doc/latex/glossaries/samples/sampletree.pdf + texmf-dist/doc/latex/glossaries/samples/sampletree.tex + texmf-dist/doc/latex/glossaries/samples/sampleutf8.pdf + texmf-dist/doc/latex/glossaries/samples/sampleutf8.tex + texmf-dist/doc/latex/glossaries/samples/samplexdy-mc.xdy + texmf-dist/doc/latex/glossaries/samples/samplexdy-mc207.xdy + texmf-dist/doc/latex/glossaries/samples/samplexdy.pdf + texmf-dist/doc/latex/glossaries/samples/samplexdy.tex + texmf-dist/doc/latex/glossaries/samples/samplexdy2.pdf + texmf-dist/doc/latex/glossaries/samples/samplexdy2.tex +srcfiles size=273 + texmf-dist/source/latex/glossaries/glossaries.dtx + texmf-dist/source/latex/glossaries/glossaries.ins +catalogue-ctan /macros/latex/contrib/glossaries +catalogue-date 2015-09-09 19:08:14 +0200 +catalogue-license lppl1.3 +catalogue-topics glossary +catalogue-version 4.18 + +name glossaries.i386-linux +category Package +revision 37813 +shortdesc i386-linux files of glossaries +binfiles arch=i386-linux size=2 + bin/i386-linux/makeglossaries + bin/i386-linux/makeglossaries-lite + +name gloss +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 + +name glyphlist +category Package +revision 28576 +relocated 1 +runfiles size=25 + 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. +relocated 1 +longdesc A LaTeX package and an example class for documenting (La)TeX +longdesc packages, document classes, .dtx etc., providing hyperlinks. +longdesc The package is believed to be compatible with doc and permits +longdesc minimal markup of code (the macrocode environment is no longer +longdesc necessary). The package provides automatic detection of +longdesc definitions (detecting such things as \def, \newcommand, +longdesc \DeclareOption etc.). The package needs hyperref and the +longdesc author's three 'basic' packages: gmutils, gmverb and gmiflink. +longdesc As a bonus (and as an example of doc compatibility) driver +longdesc files are provided that may be used to typeset the LaTeX Base. +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-ctan /macros/latex/contrib/gmdoc +catalogue-date 2014-09-29 13:57:53 +0200 +catalogue-license lppl +catalogue-version 0.993 + +name gmiflink +category Package +revision 15878 +shortdesc Simplify usage of \hypertarget and \hyperlink. +relocated 1 +longdesc Three hyperref-based macros that simplify usage of \hypertarget +longdesc and \hyperlink: one argument instead of the same one twice. +longdesc Also \gmiflink and \gmifref which typeset plain text instead of +longdesc generating an error or printing '??' if there is no respective +longdesc hypertarget or label. +runfiles size=2 + RELOC/tex/latex/gmiflink/gmiflink.sty +docfiles size=16 + RELOC/doc/latex/gmiflink/README + RELOC/doc/latex/gmiflink/gmiflink.pdf +catalogue-ctan /macros/latex/contrib/gmiflink +catalogue-date 2012-05-17 22:49:03 +0200 +catalogue-license lppl +catalogue-version v0.97 + +name gmp +category Package +revision 21691 +shortdesc Enable integration between MetaPost pictures and LaTeX. +relocated 1 +longdesc The package allows integration between MetaPost pictures and +longdesc LaTeX. The main feature is that passing parameters to the +longdesc MetaPost pictures is possible and the picture code can be put +longdesc inside arguments to commands, including \newcommand. +runfiles size=3 + RELOC/tex/latex/gmp/gmp.sty +docfiles size=197 + RELOC/doc/latex/gmp/README + RELOC/doc/latex/gmp/gmp.pdf +srcfiles size=23 + RELOC/source/latex/gmp/gmp.dtx + RELOC/source/latex/gmp/gmp.ins +catalogue-ctan /macros/latex/contrib/gmp +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name gmutils +category Package +revision 24287 +shortdesc Support macros for other packages. +relocated 1 +longdesc Miscellaneous macros used by others of the author's packages. +longdesc Contents of the package: \newgif and other globals; \@ifnextcat +longdesc and \@ifXeTeX; \(Re)storeMacro(s) to override redefinitions; +longdesc \afterfi and friends; commands from relsize, etc.; "almost an +longdesc environment" or redefinition of \begin (\begin* doesn't check +longdesc if the argument environment is defined). +runfiles size=70 + RELOC/tex/latex/gmutils/gmRCS.sty + RELOC/tex/latex/gmutils/gmampulex.sty + RELOC/tex/latex/gmutils/gmbase.sty + RELOC/tex/latex/gmutils/gmcommand.sty + RELOC/tex/latex/gmutils/gmenvir.sty + RELOC/tex/latex/gmutils/gmlogos.sty + RELOC/tex/latex/gmutils/gmmeta.sty + RELOC/tex/latex/gmutils/gmmw.sty + RELOC/tex/latex/gmutils/gmnotonlypream.sty + RELOC/tex/latex/gmutils/gmparts.sty + RELOC/tex/latex/gmutils/gmrelsize.sty + RELOC/tex/latex/gmutils/gmtypos.sty + RELOC/tex/latex/gmutils/gmurl.sty + RELOC/tex/latex/gmutils/gmutils.sty +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-license lppl +catalogue-version v0.996 + +name gmverb +category Package +revision 24288 +shortdesc A variant of LaTeX \verb, verbatim and shortvrb. +relocated 1 +longdesc A redefinition of \verb and verbatim so that long lines are +longdesc breakable before \ and after { with % as 'hyphen'. Allows you +longdesc to define your own verbatim-like environments (subject to a +longdesc size limit) and allows you to declare any single character as a +longdesc shorthand as in the \MakeShortVerb command of the shortvrb +longdesc package of the LaTeX distribution. The package depends on the +longdesc gmutils package. +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-license lppl +catalogue-version v0.98 + +name gmverse +category Package +revision 29803 +shortdesc A package for typesetting (short) poems. +relocated 1 +longdesc A redefinition of the verse environment to make the \\ command +longdesc optional for line ends and to give it a possibility of optical +longdesc centering and `right-hanging' alignment of lines broken because +longdesc of length. +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-license lppl +catalogue-version v0.73 + +name gnu-freefont +category Package +revision 29349 +shortdesc A Unicode font, with rather wide coverage. +relocated 1 +longdesc The package provides a set of outline (i.e. OpenType) fonts +longdesc covering as much as possible of the Unicode character set. The +longdesc set consists of three typefaces: one monospaced and two +longdesc proportional (one with uniform and one with modulated stroke). +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 +docfiles size=231 + RELOC/doc/fonts/gnu-freefont/AUTHORS + RELOC/doc/fonts/gnu-freefont/BUILDING + RELOC/doc/fonts/gnu-freefont/COPYING + RELOC/doc/fonts/gnu-freefont/CREDITS + RELOC/doc/fonts/gnu-freefont/ChangeLog + RELOC/doc/fonts/gnu-freefont/INSTALL + RELOC/doc/fonts/gnu-freefont/Makefile + RELOC/doc/fonts/gnu-freefont/README + RELOC/doc/fonts/gnu-freefont/TROUBLESHOOTING + RELOC/doc/fonts/gnu-freefont/USAGE + RELOC/doc/fonts/gnu-freefont/notes/README-downloads.txt + RELOC/doc/fonts/gnu-freefont/notes/building.txt + RELOC/doc/fonts/gnu-freefont/notes/features.txt + RELOC/doc/fonts/gnu-freefont/notes/maintenance.txt + RELOC/doc/fonts/gnu-freefont/notes/troubleshooting.txt + RELOC/doc/fonts/gnu-freefont/notes/usage.txt + RELOC/doc/fonts/gnu-freefont/notes/webfont_guidelines.txt + RELOC/doc/fonts/gnu-freefont/tools/generate/MacTT + RELOC/doc/fonts/gnu-freefont/tools/generate/OpenType + RELOC/doc/fonts/gnu-freefont/tools/generate/TrueType + RELOC/doc/fonts/gnu-freefont/tools/generate/WOFF + RELOC/doc/fonts/gnu-freefont/tools/generate/buildutils.py + RELOC/doc/fonts/gnu-freefont/tools/generate/buildutils.pyc + RELOC/doc/fonts/gnu-freefont/tools/report/OS2UnicodeRange + RELOC/doc/fonts/gnu-freefont/tools/report/OpenType/UnicodeRanges.py + RELOC/doc/fonts/gnu-freefont/tools/report/OpenType/__init__.py + RELOC/doc/fonts/gnu-freefont/tools/report/kernclasses.py + RELOC/doc/fonts/gnu-freefont/tools/report/ligatureLookups.py + RELOC/doc/fonts/gnu-freefont/tools/report/private_use.py + RELOC/doc/fonts/gnu-freefont/tools/report/range_report.py + RELOC/doc/fonts/gnu-freefont/tools/script-menu/nameBySlot.py + RELOC/doc/fonts/gnu-freefont/tools/script-menu/unnameBySlot.py + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/CheckConformance.pl + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-1.lst + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-1.txt + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-2.lst + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-2.txt + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-3B.lst + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/MES-3B.txt + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/WGL4.lst + RELOC/doc/fonts/gnu-freefont/tools/test/MES-Conformance/mes-list-expand.pl + RELOC/doc/fonts/gnu-freefont/tools/test/checkGlyphNumbers.py + RELOC/doc/fonts/gnu-freefont/tools/test/findBackLayers.py + RELOC/doc/fonts/gnu-freefont/tools/test/isMonoMono.py + RELOC/doc/fonts/gnu-freefont/tools/test/ranges/Arabic/arabic_test.py + RELOC/doc/fonts/gnu-freefont/tools/test/ranges/Arabic/generate_arabic_shaping.py + RELOC/doc/fonts/gnu-freefont/tools/test/ranges/Arabic/unicode_joining.py + RELOC/doc/fonts/gnu-freefont/tools/test/validate.py + RELOC/doc/fonts/gnu-freefont/tools/utility/KerningNumerals.pl + RELOC/doc/fonts/gnu-freefont/tools/utility/fontforge-interp.sh + RELOC/doc/fonts/gnu-freefont/tools/utility/freefont-ttf.spec + RELOC/doc/fonts/gnu-freefont/tools/utility/hex_range.py + RELOC/doc/fonts/gnu-freefont/tools/utility/metafont/bulk_eps_import.py + RELOC/doc/fonts/gnu-freefont/tools/utility/special-purpose/makeBraille.py +srcfiles size=6180 + RELOC/source/fonts/gnu-freefont/FreeMono.sfd + RELOC/source/fonts/gnu-freefont/FreeMonoBold.sfd + RELOC/source/fonts/gnu-freefont/FreeMonoBoldOblique.sfd + RELOC/source/fonts/gnu-freefont/FreeMonoOblique.sfd + RELOC/source/fonts/gnu-freefont/FreeSans.sfd + RELOC/source/fonts/gnu-freefont/FreeSansBold.sfd + RELOC/source/fonts/gnu-freefont/FreeSansBoldOblique.sfd + RELOC/source/fonts/gnu-freefont/FreeSansOblique.sfd + RELOC/source/fonts/gnu-freefont/FreeSerif.sfd + RELOC/source/fonts/gnu-freefont/FreeSerifBold.sfd + RELOC/source/fonts/gnu-freefont/FreeSerifBoldItalic.sfd + RELOC/source/fonts/gnu-freefont/FreeSerifItalic.sfd + RELOC/source/fonts/gnu-freefont/Makefile +catalogue-ctan /fonts/gnu-freefont +catalogue-date 2014-07-11 15:18:12 +0200 +catalogue-license gpl3 + +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 + 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/gpl.txt +srcfiles size=9 + RELOC/source/latex/gnuplottex/gnuplottex.dtx + RELOC/source/latex/gnuplottex/gnuplottex.ins +catalogue-ctan /macros/latex/contrib/gnuplottex +catalogue-date 2013-11-29 10:11:23 +0100 +catalogue-license gpl2 +catalogue-version 0.8 + +name gost +category Package +revision 27642 +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 + RELOC/bibtex/bst/gost/gost2003.bst + RELOC/bibtex/bst/gost/gost2003s.bst + RELOC/bibtex/bst/gost/gost2008.bst + RELOC/bibtex/bst/gost/gost2008l.bst + RELOC/bibtex/bst/gost/gost2008ls.bst + RELOC/bibtex/bst/gost/gost2008n.bst + RELOC/bibtex/bst/gost/gost2008ns.bst + RELOC/bibtex/bst/gost/gost2008s.bst + RELOC/bibtex/bst/gost/gost780.bst + RELOC/bibtex/bst/gost/gost780s.bst + RELOC/bibtex/bst/gost/ugost2003.bst + RELOC/bibtex/bst/gost/ugost2003s.bst + RELOC/bibtex/bst/gost/ugost2008.bst + RELOC/bibtex/bst/gost/ugost2008l.bst + RELOC/bibtex/bst/gost/ugost2008ls.bst + RELOC/bibtex/bst/gost/ugost2008n.bst + RELOC/bibtex/bst/gost/ugost2008ns.bst + RELOC/bibtex/bst/gost/ugost2008s.bst + RELOC/bibtex/csf/gost/cp1251.csf + RELOC/bibtex/csf/gost/koi8u.csf + RELOC/bibtex/csf/gost/ruscii.csf + RELOC/bibtex/csf/gost/utf8cyrillic.csf +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-ctan /biblio/bibtex/contrib/gost +catalogue-date 2012-09-10 13:53:05 +0200 +catalogue-license lppl +catalogue-version 1.2a + +name gothic +category Package +revision 38263 +shortdesc A collection of old German-style fonts +relocated 1 +longdesc A collection of fonts that reproduce those used in "old German" +longdesc printing and handwriting. The set comprises Gothic, Schwabacher +longdesc and Fraktur fonts, a pair of handwriting fonts, Sutterlin and +longdesc Schwell, and a font containing decorative initials. In +longdesc addition, there are two re-encoding packages for Haralambous's +longdesc fonts, providing T1, using virtual fonts, and OT1 and T1, using +longdesc Metafont. +runfiles size=246 + RELOC/fonts/source/public/gothic/cmfrabase.mf + RELOC/fonts/source/public/gothic/cmfrak.mf + RELOC/fonts/source/public/gothic/cmfraklow.mf + RELOC/fonts/source/public/gothic/cmfrakmis.mf + RELOC/fonts/source/public/gothic/cmfraknum.mf + RELOC/fonts/source/public/gothic/cmfrakoth.mf + RELOC/fonts/source/public/gothic/cmfrakupp.mf + RELOC/fonts/source/public/gothic/dcfrak.mf + RELOC/fonts/source/public/gothic/schwell.mf + RELOC/fonts/source/public/gothic/su-lig.mf + RELOC/fonts/source/public/gothic/su-low.mf + RELOC/fonts/source/public/gothic/su-spec.mf + RELOC/fonts/source/public/gothic/su-upp.mf + RELOC/fonts/source/public/gothic/suet14.mf + RELOC/fonts/source/public/gothic/xxfrak.mf + RELOC/fonts/source/public/gothic/yfrabase.mf + RELOC/fonts/source/public/gothic/yfrak.mf + RELOC/fonts/source/public/gothic/yfraklow.mf + RELOC/fonts/source/public/gothic/yfrakmis.mf + RELOC/fonts/source/public/gothic/yfraknum.mf + RELOC/fonts/source/public/gothic/yfrakoth.mf + RELOC/fonts/source/public/gothic/yfrakupp.mf + RELOC/fonts/source/public/gothic/ygotbase.mf + RELOC/fonts/source/public/gothic/ygoth.mf + RELOC/fonts/source/public/gothic/ygothgen.mf + RELOC/fonts/source/public/gothic/ygothlig.mf + RELOC/fonts/source/public/gothic/ygothlow.mf + RELOC/fonts/source/public/gothic/ygothmis.mf + RELOC/fonts/source/public/gothic/ygothnum.mf + RELOC/fonts/source/public/gothic/ygothupp.mf + RELOC/fonts/source/public/gothic/yinit.mf + RELOC/fonts/source/public/gothic/yinitA.mf + RELOC/fonts/source/public/gothic/yinitB.mf + RELOC/fonts/source/public/gothic/yinitC.mf + RELOC/fonts/source/public/gothic/yinitD.mf + RELOC/fonts/source/public/gothic/yinitE.mf + RELOC/fonts/source/public/gothic/yinitF.mf + RELOC/fonts/source/public/gothic/yinitG.mf + RELOC/fonts/source/public/gothic/yinitH.mf + RELOC/fonts/source/public/gothic/yinitJ.mf + RELOC/fonts/source/public/gothic/yinitK.mf + RELOC/fonts/source/public/gothic/yinitL.mf + RELOC/fonts/source/public/gothic/yinitM.mf + RELOC/fonts/source/public/gothic/yinitN.mf + RELOC/fonts/source/public/gothic/yinitO.mf + RELOC/fonts/source/public/gothic/yinitP.mf + RELOC/fonts/source/public/gothic/yinitQ.mf + RELOC/fonts/source/public/gothic/yinitR.mf + RELOC/fonts/source/public/gothic/yinitS.mf + RELOC/fonts/source/public/gothic/yinitT.mf + RELOC/fonts/source/public/gothic/yinitU.mf + RELOC/fonts/source/public/gothic/yinitV.mf + RELOC/fonts/source/public/gothic/yinitW.mf + RELOC/fonts/source/public/gothic/yinitX.mf + RELOC/fonts/source/public/gothic/yinitY.mf + RELOC/fonts/source/public/gothic/yinitZ.mf + RELOC/fonts/source/public/gothic/yintbase.mf + RELOC/fonts/source/public/gothic/ysmfrak.mf + RELOC/fonts/source/public/gothic/yswab.mf + RELOC/fonts/source/public/gothic/yswabase.mf + RELOC/fonts/source/public/gothic/yswablow.mf + RELOC/fonts/source/public/gothic/yswabmis.mf + RELOC/fonts/source/public/gothic/yswabnum.mf + RELOC/fonts/source/public/gothic/yswabupp.mf + RELOC/fonts/tfm/public/gothic/cmfrak.tfm + RELOC/fonts/tfm/public/gothic/schwell.tfm + RELOC/fonts/tfm/public/gothic/suet14.tfm + RELOC/fonts/tfm/public/gothic/yfrak.tfm + RELOC/fonts/tfm/public/gothic/ygoth.tfm + RELOC/fonts/tfm/public/gothic/yinit.tfm + RELOC/fonts/tfm/public/gothic/ysmfrak.tfm + RELOC/fonts/tfm/public/gothic/yswab.tfm +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-license collection +catalogue-topics font font-collection font-gothic + +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. +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 + +name gradientframe +category Package +revision 21387 +shortdesc Simple gradient frames around objects. +relocated 1 +longdesc The package provides a means of drawing graded frames around +longdesc objects. The gradients of the frames are drawn using the color +longdesc package. +runfiles size=1 + RELOC/tex/latex/gradientframe/gradientframe.sty +docfiles size=65 + RELOC/doc/latex/gradientframe/README + RELOC/doc/latex/gradientframe/gradientframe.pdf +srcfiles size=4 + RELOC/source/latex/gradientframe/gradientframe.dtx +catalogue-ctan /macros/latex/contrib/gradientframe +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name gradstudentresume +category Package +revision 38147 +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. +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 + +name grafcet +category Package +revision 22509 +shortdesc Draw Grafcet/SFC with TikZ. +relocated 1 +longdesc The package provides a library (GRAFCET) that can draw Grafcet +longdesc Sequential Function Chart (SFC) diagrams, in accordance with EN +longdesc 60848, using Pgf/TikZ. L'objectif de la librairie GRAFCET est +longdesc de permettre le trace de grafcet selon la norme EN 60848 a +longdesc partir de Pgf/TikZ. +runfiles size=5 + RELOC/tex/latex/grafcet/grafcet.sty +docfiles size=119 + RELOC/doc/latex/grafcet/README + RELOC/doc/latex/grafcet/grafcet.pdf + RELOC/doc/latex/grafcet/grafcet.tex +catalogue-ctan /graphics/pgf/contrib/grafcet +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1 +catalogue-version 1.3.5 + +name graphbox +category Package +revision 35075 +shortdesc Extend graphicx to improve placement of graphics. +relocated 1 +longdesc Graphbox is an extension of the standard graphicx LaTeX2e +longdesc package to allow the placement of graphics relative to the +longdesc "current position" using additional optional arguments of +longdesc \includegraphics. For example, changing the vertical alignment +longdesc is convenient for using graphics as elements of (mathematical) +longdesc formulae. Options for shifting, smashing and hiding the +longdesc graphics may be useful in support, for example, of the beamer +longdesc framework. +runfiles size=2 + RELOC/tex/latex/graphbox/graphbox.sty +docfiles size=76 + RELOC/doc/latex/graphbox/README + RELOC/doc/latex/graphbox/gboxsamp.mps + RELOC/doc/latex/graphbox/gboxsamp.tex + RELOC/doc/latex/graphbox/graphbox.pdf +srcfiles size=9 + RELOC/source/latex/graphbox/graphbox.dtx + RELOC/source/latex/graphbox/graphbox.ins +catalogue-ctan /macros/latex/contrib/graphbox +catalogue-date 2014-09-09 12:12:26 +0200 +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 + +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 + 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.tex + RELOC/doc/latex/graphics/keyval.pdf + RELOC/doc/latex/graphics/lscape.pdf + RELOC/doc/latex/graphics/trig.pdf +srcfiles size=55 + RELOC/source/latex/graphics/color.dtx + RELOC/source/latex/graphics/drivers.dtx + RELOC/source/latex/graphics/epsfig.dtx + RELOC/source/latex/graphics/graphics-drivers.ins + RELOC/source/latex/graphics/graphics.dtx + RELOC/source/latex/graphics/graphics.ins + RELOC/source/latex/graphics/graphicx.dtx + RELOC/source/latex/graphics/keyval.dtx + RELOC/source/latex/graphics/lscape.dtx + RELOC/source/latex/graphics/trig.dtx +catalogue-ctan /macros/latex/required/graphics +catalogue-date 2015-04-13 06:00:27 +0200 +catalogue-license lppl1.3 + +name graphicxbox +category Package +revision 32630 +shortdesc Insert a graphical image as a background. +relocated 1 +longdesc The package defines two new commands \graphicxbox and +longdesc \fgraphicxbox, which are companions to \colorbox and \fcolorbox +longdesc of the Standard LaTeX color package. The \graphicxbox command +longdesc inserts a graphical image as a background rather than a +longdesc background color, while \fgraphicxbox does the same thing, but +longdesc also draws a colored frame around the box. +runfiles size=1 + RELOC/tex/latex/graphicxbox/graphicxbox.sty +docfiles size=313 + RELOC/doc/latex/graphicxbox/README + RELOC/doc/latex/graphicxbox/doc/graphicxbox.pdf + RELOC/doc/latex/graphicxbox/examples/graphics/IndianBlanket.eps + RELOC/doc/latex/graphicxbox/examples/graphics/IndianBlanket.pdf + RELOC/doc/latex/graphicxbox/examples/graphics/Wood-Brown.eps + RELOC/doc/latex/graphicxbox/examples/graphics/Wood-Brown.pdf + RELOC/doc/latex/graphicxbox/examples/graphics/bg_cle_tile.eps + RELOC/doc/latex/graphicxbox/examples/graphics/grandcanyon.eps + RELOC/doc/latex/graphicxbox/examples/graphics/grandcanyon.pdf + RELOC/doc/latex/graphicxbox/examples/graphics/news_bgr.eps + RELOC/doc/latex/graphicxbox/examples/graphics/news_bgr.pdf + RELOC/doc/latex/graphicxbox/examples/grfxbox_tst.pdf + 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 +srcfiles size=3 + RELOC/source/latex/graphicxbox/graphicxbox.dtx + RELOC/source/latex/graphicxbox/graphicxbox.ins +catalogue-ctan /macros/latex/contrib/graphicxbox +catalogue-date 2015-03-25 06:16:22 +0100 +catalogue-license lppl +catalogue-version 1.0 + +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 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 +catalogue-version 1.1 + +name graphviz +category Package +revision 31517 +shortdesc Write graphviz (dot+neato) inline in LaTeX documents. +relocated 1 +longdesc The package allows inline use of graphviz code, in a LaTeX +longdesc document. +runfiles size=1 + RELOC/tex/latex/graphviz/graphviz.sty +docfiles size=40 + RELOC/doc/latex/graphviz/LICENSE + RELOC/doc/latex/graphviz/Makefile + RELOC/doc/latex/graphviz/README + RELOC/doc/latex/graphviz/README.md + RELOC/doc/latex/graphviz/graphviz.pdf + RELOC/doc/latex/graphviz/test/Makefile + RELOC/doc/latex/graphviz/test/body.tex + RELOC/doc/latex/graphviz/test/pdf-singlefile-tmpdir.tex + RELOC/doc/latex/graphviz/test/pdf-singlefile.tex + RELOC/doc/latex/graphviz/test/pdf-tmpdir.tex + RELOC/doc/latex/graphviz/test/pdf.tex + RELOC/doc/latex/graphviz/test/ps.tex +srcfiles size=6 + RELOC/source/latex/graphviz/graphviz.dtx + RELOC/source/latex/graphviz/graphviz.ins +catalogue-ctan /macros/latex/contrib/graphviz +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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 greek-fontenc +category Package +revision 38297 +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 + 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 + RELOC/doc/latex/greek-fontenc/alphabeta-lgr.def.html + RELOC/doc/latex/greek-fontenc/alphabeta.sty.html + RELOC/doc/latex/greek-fontenc/diacritics.pdf + RELOC/doc/latex/greek-fontenc/diacritics.tex + RELOC/doc/latex/greek-fontenc/greek-euenc-doc.pdf + RELOC/doc/latex/greek-fontenc/greek-euenc-doc.tex + RELOC/doc/latex/greek-fontenc/greek-euenc.def.html + RELOC/doc/latex/greek-fontenc/greek-fontenc.def.html + RELOC/doc/latex/greek-fontenc/greekhyperref.pdf + RELOC/doc/latex/greek-fontenc/greekhyperref.tex + RELOC/doc/latex/greek-fontenc/lgr2licr.lua + RELOC/doc/latex/greek-fontenc/lgr2licr.lua.html + RELOC/doc/latex/greek-fontenc/lgrenc-test.pdf + RELOC/doc/latex/greek-fontenc/lgrenc-test.tex + 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 +catalogue-also lgrx +catalogue-ctan /language/greek/greek-fontenc +catalogue-date 2015-09-04 15:15:28 +0200 +catalogue-license lppl1.3 +catalogue-topics greek inputenc +catalogue-version 0.13 + +name greek-inputenc +category Package +revision 38080 +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 +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/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 +catalogue-ctan /language/greek/greek-inputenc +catalogue-date 2015-08-08 10:58:05 +0200 +catalogue-license lppl1.3 +catalogue-topics inputenc greek +catalogue-version 1.6 + +name greektex +category Package +revision 28327 +shortdesc Fonts for typesetting Greek/English documents. +relocated 1 +longdesc The fonts are based on Silvio Levy's classical Greek fonts; +longdesc macros and Greek hyphenation patterns for the fonts' encoding +longdesc are also provided. +runfiles size=7 + RELOC/tex/latex/greektex/greektex.sty +docfiles size=182 + RELOC/doc/fonts/greektex/README + RELOC/doc/fonts/greektex/gehyphw.gr + RELOC/doc/fonts/greektex/greektexdoc.pdf + RELOC/doc/fonts/greektex/greektexdoc.tex + RELOC/doc/fonts/greektex/ywcl.zip +catalogue-ctan /fonts/greek/greektex +catalogue-date 2014-05-03 14:44:16 +0200 +catalogue-license pd + +name greenpoint +category Package +revision 15878 +shortdesc The Green Point logo. +relocated 1 +longdesc A Metafont-implementation of the logo commonly known as 'Der +longdesc Grune Punkt' ('The Green Point'). In Austria, it can be found +longdesc on nearly every bottle. It should not be confused with the +longdesc 'Recycle'-logo, implemented by Ian Green. +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-license gpl + +name grfpaste +category Package +revision 17354 +shortdesc Include fragments of a dvi file. +relocated 1 +longdesc Provides a mechanism to include fragments of dvi files with the +longdesc graphicx package, so that you can use \includegraphics to +longdesc include dvi files. The package requires the dvipaste program. +runfiles size=2 + RELOC/tex/latex/grfpaste/grfpaste.sty +docfiles size=106 + RELOC/doc/latex/grfpaste/doc/grfpaste.pdf + RELOC/doc/latex/grfpaste/doc/grfpaste.tex + RELOC/doc/latex/grfpaste/dvipaste.txt + RELOC/doc/latex/grfpaste/grfp1.tex + RELOC/doc/latex/grfpaste/grfp2.tex + RELOC/doc/latex/grfpaste/grfp3.tex +catalogue-ctan /macros/latex/contrib/grfpaste +catalogue-date 2013-01-29 16:15:15 +0100 +catalogue-license lppl +catalogue-version 0.2 + +name gridset +category Package +revision 15878 +shortdesc Grid, a.k.a. in-register, setting. +relocated 1 +longdesc Grid setting -- also known as strict in-register setting -- is +longdesc something, that should be done for a lot of documents but is +longdesc not easy using LaTeX. The package helps to get the information +longdesc needed for grid setting. It does not implement auto grid +longdesc setting, but there is a command \vskipnextgrid, that moves to +longdesc the next grid position. This may be enough under some +longdesc circumstances, but in other circumstances it may fail. Thus +longdesc gridset is only one more step for grid setting, not a complete +longdesc solution. +runfiles size=5 + RELOC/tex/latex/gridset/gridset.sty +docfiles size=30 + RELOC/doc/latex/gridset/gridset.pdf +srcfiles size=7 + RELOC/source/latex/gridset/README + RELOC/source/latex/gridset/gridset.dtx + RELOC/source/latex/gridset/gridset.ins +catalogue-ctan /macros/latex/contrib/gridset +catalogue-date 2012-07-13 12:20:40 +0200 +catalogue-license lppl +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... +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 + +name grotesq +category Package +revision 35859 +catalogue urw-grotesq +shortdesc URW Grotesq font pack for LaTeX. +relocated 1 +longdesc The directory contains a copy of the Type 1 font "URW Grotesq +longdesc 2031 Bold' released under the GPL by URW, with supporting files +longdesc for use with (La)TeX. +execute addMap ugq.map +runfiles size=44 + RELOC/fonts/afm/urw/grotesq/ugqb8a.afm + RELOC/fonts/afm/urw/grotesq/ugqb8a.afm.org + RELOC/fonts/map/dvips/grotesq/ugq.map + RELOC/fonts/tfm/urw/grotesq/ugqb7t.tfm + RELOC/fonts/tfm/urw/grotesq/ugqb8a.tfm + RELOC/fonts/tfm/urw/grotesq/ugqb8c.tfm + RELOC/fonts/tfm/urw/grotesq/ugqb8r.tfm + RELOC/fonts/tfm/urw/grotesq/ugqb8t.tfm + RELOC/fonts/tfm/urw/grotesq/ugqbo7t.tfm + RELOC/fonts/tfm/urw/grotesq/ugqbo8c.tfm + RELOC/fonts/tfm/urw/grotesq/ugqbo8r.tfm + RELOC/fonts/tfm/urw/grotesq/ugqbo8t.tfm + RELOC/fonts/type1/urw/grotesq/ugqb8a.pfb + RELOC/fonts/type1/urw/grotesq/ugqb8a.pfm + RELOC/fonts/vf/urw/grotesq/ugqb7t.vf + RELOC/fonts/vf/urw/grotesq/ugqb8c.vf + RELOC/fonts/vf/urw/grotesq/ugqb8t.vf + RELOC/fonts/vf/urw/grotesq/ugqbo7t.vf + RELOC/fonts/vf/urw/grotesq/ugqbo8c.vf + RELOC/fonts/vf/urw/grotesq/ugqbo8t.vf + RELOC/tex/latex/grotesq/ot1ugq.fd + RELOC/tex/latex/grotesq/t1ugq.fd + RELOC/tex/latex/grotesq/ts1ugq.fd +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-license gpl + +name grundgesetze +category Package +revision 34439 +shortdesc Typeset Frege's Grundgesetze der Arithmetik +relocated 1 +longdesc The package defines maths mode commands for typesetting Gottlob +longdesc Frege's concept-script in the style of his "Grundgesetze der +longdesc Arithmetik" (Basic Laws of Arithmetic). +runfiles size=3 + RELOC/tex/latex/grundgesetze/grundgesetze.sty +docfiles size=56 + RELOC/doc/latex/grundgesetze/README + RELOC/doc/latex/grundgesetze/grundgesetze.pdf +srcfiles size=10 + RELOC/source/latex/grundgesetze/grundgesetze.dtx + RELOC/source/latex/grundgesetze/grundgesetze.ins +catalogue-ctan /macros/latex/contrib/grundgesetze +catalogue-date 2014-06-17 18:40:44 +0200 +catalogue-license gpl2 +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. +relocated 1 +longdesc The class provides a PhD thesis template for the Geneva School +longdesc of Economics and Management (GSEM), University of Geneva, +longdesc Switzerland. The class provides utilities to easily set up the +longdesc cover page, the front matter pages, the page headers, etc., +longdesc conformant to the official guidelines of the GSEM Faculty for +longdesc writing PhD dissertations. +runfiles size=3 + RELOC/tex/latex/gsemthesis/gsemthesis.cls +docfiles size=74 + RELOC/doc/latex/gsemthesis/README + RELOC/doc/latex/gsemthesis/gsemthesis.pdf +srcfiles size=10 + RELOC/source/latex/gsemthesis/gsemthesis.dtx + RELOC/source/latex/gsemthesis/gsemthesis.ins +catalogue-ctan /macros/latex/contrib/gsemthesis +catalogue-date 2015-02-09 13:16:25 +0100 +catalogue-license lppl1.3 +catalogue-version 0.9.4 + +name gsftopk +category TLCore +revision 37078 +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 + texmf-dist/doc/man/man1/gsftopk.1 + texmf-dist/doc/man/man1/gsftopk.man1.pdf +catalogue-ctan /fonts/utilities/gsftopk +catalogue-date 2012-07-13 12:47:32 +0200 +catalogue-license gpl +catalogue-version 1.19.2 + +name gsftopk.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of gsftopk +binfiles arch=i386-linux size=31 + bin/i386-linux/gsftopk + +name gtl +category Package +revision 31306 +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 + +name gtrcrd +category Package +revision 32484 +shortdesc Add chords to lyrics. +relocated 1 +longdesc The package provides the means to specify guitar chords to be +longdesc played with each part of the lyrics of a song. The syntax of +longdesc the macros reduces the chance of failing to provide a chord +longdesc where one is needed, and the structure of the macros ensures +longdesc that the chord specification appears immediately above the +longdesc start of the lyric. +runfiles size=5 + RELOC/tex/latex/gtrcrd/gtrcrd.sty +docfiles size=42 + RELOC/doc/latex/gtrcrd/README + RELOC/doc/latex/gtrcrd/gtrcrd-doc.pdf + RELOC/doc/latex/gtrcrd/gtrcrd-doc.tex +catalogue-ctan /macros/latex/contrib/gtrcrd +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name guide-to-latex +category Package +revision 15878 +relocated 1 +docfiles size=200 + RELOC/doc/latex/guide-to-latex/README.txt + RELOC/doc/latex/guide-to-latex/demo.eps + RELOC/doc/latex/guide-to-latex/demo.pdf + RELOC/doc/latex/guide-to-latex/demodoc.pdf + RELOC/doc/latex/guide-to-latex/demodoc.ps + RELOC/doc/latex/guide-to-latex/demodoc.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-10.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-7.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-8.tex + RELOC/doc/latex/guide-to-latex/exercises/chap10/exer10-9.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer11-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap11/exer3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap15/exer15-7.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-3a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-3b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap2/exer2-3c.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-10.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-11.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-12.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-12.toc + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-1a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-1b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-4a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-4b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-5a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-5b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-7a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-7b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-8a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-8b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap3/exer3-9.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-10.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-7.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-8.tex + RELOC/doc/latex/guide-to-latex/exercises/chap4/exer4-9.tex + RELOC/doc/latex/guide-to-latex/exercises/chap5/exer5-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap5/exer5-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap5/exer5-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap5/exer5-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap6/exer6-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-10.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-11.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-12.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-13.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-14.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-15.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-16.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-17.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-18.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-19.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-20.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-21a.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-21b.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-3.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-4.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-5.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-6.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-7.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-8.tex + RELOC/doc/latex/guide-to-latex/exercises/chap7/exer7-9.tex + RELOC/doc/latex/guide-to-latex/exercises/chap8/exer8-1.tex + RELOC/doc/latex/guide-to-latex/exercises/chap8/exer8-2.tex + RELOC/doc/latex/guide-to-latex/exercises/chap8/exer8-3.tex + RELOC/doc/latex/guide-to-latex/mpletter.cls + RELOC/doc/latex/guide-to-latex/palette.pdf + RELOC/doc/latex/guide-to-latex/palette.ps + RELOC/doc/latex/guide-to-latex/palette.tex + RELOC/doc/latex/guide-to-latex/seminar.con + RELOC/doc/latex/guide-to-latex/sempdftx.sty + +name 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. +relocated 1 +longdesc (La)TeX macros for typesetting guitar chords over song texts. +longdesc The toolbox package is required. Note that this package only +longdesc places arbitrary TeX code over the lyrics. To typeset the +longdesc chords graphically (and not only by name), the author +longdesc recommends use of an additional package such as gchords by K. +longdesc Peeters. +runfiles size=2 + RELOC/tex/latex/guitar/guitar.sty +docfiles size=31 + RELOC/doc/latex/guitar/README + RELOC/doc/latex/guitar/guitar.pdf + RELOC/doc/latex/guitar/guitar.tex + RELOC/doc/latex/guitar/guitar.txt +srcfiles size=14 + RELOC/source/latex/guitar/guitar.dtx + RELOC/source/latex/guitar/guitar.ins +catalogue-ctan /macros/latex/contrib/guitar +catalogue-date 2013-11-27 01:09:36 +0100 +catalogue-license lppl1.3 +catalogue-version 1.6 + +name guitlogo +category Package +revision 27458 +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 +longdesc User Group), using the default document color or any other +longdesc color the user may ever choose, in conformity with logo's +longdesc scheme as seen on the Group web site +longdesc (http://www.guit.sssup.it). Likewise, commands are provided +longdesc that simplify the writing of GuIT acronym's complete expansion, +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 +docfiles size=128 + RELOC/doc/latex/guitlogo/README + RELOC/doc/latex/guitlogo/guit.pdf + RELOC/doc/latex/guitlogo/guittest.pdf + RELOC/doc/latex/guitlogo/guittest.tex +srcfiles size=17 + RELOC/source/latex/guitlogo/guit.dtx + RELOC/source/latex/guitlogo/guit.ins +catalogue-ctan /macros/latex/contrib/GuIT/GuITlogo +catalogue-date 2012-08-19 10:36:46 +0200 +catalogue-license lppl +catalogue-version 0.9.2 + +name gustlib +category Package +revision 15878 +relocated 1 +runfiles size=73 + RELOC/bibtex/bib/gustlib/plbib.bib + RELOC/bibtex/bst/gustlib/plabbrv.bst + RELOC/bibtex/bst/gustlib/plalpha.bst + RELOC/bibtex/bst/gustlib/plplain.bst + RELOC/bibtex/bst/gustlib/plunsrt.bst + RELOC/tex/plain/gustlib/biblotex/biblotex.tex + RELOC/tex/plain/gustlib/infr-ex.tex + RELOC/tex/plain/gustlib/infram.tex + RELOC/tex/plain/gustlib/licz/licz-tst.mex + RELOC/tex/plain/gustlib/licz/licz.mex + RELOC/tex/plain/gustlib/map/map.tex + RELOC/tex/plain/gustlib/map/split.tex + RELOC/tex/plain/gustlib/map/tsp-tst.mex + RELOC/tex/plain/gustlib/map/tsp.tex + RELOC/tex/plain/gustlib/map/tun-test.mex + RELOC/tex/plain/gustlib/map/tun.tex + RELOC/tex/plain/gustlib/mcol-ex.tex + RELOC/tex/plain/gustlib/meashor.tex + RELOC/tex/plain/gustlib/mimulcol.tex + RELOC/tex/plain/gustlib/plbtx993/plbtxbst.doc + RELOC/tex/plain/gustlib/plbtx993/test.mex + RELOC/tex/plain/gustlib/plmac218/plidxmac.tex + RELOC/tex/plain/gustlib/plmac218/plind.bat + RELOC/tex/plain/gustlib/plmac218/przyklad.tex + RELOC/tex/plain/gustlib/rbox-ex.tex + RELOC/tex/plain/gustlib/roundbox.tex + RELOC/tex/plain/gustlib/tp-crf.tex + RELOC/tex/plain/gustlib/verbatim-dek.tex +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 +relocated 1 +docfiles size=82 + RELOC/doc/support/gustprog/README + RELOC/doc/support/gustprog/l2h-examples.zip + RELOC/doc/support/gustprog/normtext.awk + RELOC/doc/support/gustprog/plmindex.zip + RELOC/doc/support/gustprog/porzadki.pl + RELOC/doc/support/gustprog/slim.zip + +name 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 + 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 +catalogue-ctan /macros/latex/contrib/gzt +catalogue-date 2015-05-09 14:19:56 +0200 +catalogue-license lppl1.3 +catalogue-version 0.9 + +name hacm +category Package +revision 27671 +shortdesc Font support for the Arka language. +relocated 1 +longdesc The package supports typesetting hacm, the alphabet of the +longdesc constructed language Arka. The bundle provides nine official +longdesc fonts, in Adobe Type 1 format. +execute addMap hacm.map +runfiles size=106 + RELOC/fonts/map/dvips/hacm/hacm.map + RELOC/fonts/tfm/public/hacm/alblant.tfm + RELOC/fonts/tfm/public/hacm/defans.tfm + RELOC/fonts/tfm/public/hacm/fenlil.tfm + RELOC/fonts/tfm/public/hacm/fialis.tfm + RELOC/fonts/tfm/public/hacm/inje.tfm + RELOC/fonts/tfm/public/hacm/kardinal.tfm + RELOC/fonts/tfm/public/hacm/lantia.tfm + RELOC/fonts/tfm/public/hacm/nalnia.tfm + RELOC/fonts/tfm/public/hacm/olivia.tfm + RELOC/fonts/tfm/public/hacm/ralblant.tfm + RELOC/fonts/tfm/public/hacm/rdefans.tfm + RELOC/fonts/tfm/public/hacm/rfenlil.tfm + RELOC/fonts/tfm/public/hacm/rfialis.tfm + RELOC/fonts/tfm/public/hacm/rinje.tfm + RELOC/fonts/tfm/public/hacm/rkardinal.tfm + RELOC/fonts/tfm/public/hacm/rlantia.tfm + RELOC/fonts/tfm/public/hacm/rnalnia.tfm + RELOC/fonts/tfm/public/hacm/rolivia.tfm + RELOC/fonts/type1/public/hacm/alblant.pfb + RELOC/fonts/type1/public/hacm/defans.pfb + RELOC/fonts/type1/public/hacm/fenlil.pfb + RELOC/fonts/type1/public/hacm/fialis.pfb + RELOC/fonts/type1/public/hacm/inje.pfb + RELOC/fonts/type1/public/hacm/kardinal.pfb + RELOC/fonts/type1/public/hacm/lantia.pfb + RELOC/fonts/type1/public/hacm/nalnia.pfb + RELOC/fonts/type1/public/hacm/olivia.pfb + RELOC/fonts/vf/public/hacm/alblant.vf + RELOC/fonts/vf/public/hacm/defans.vf + RELOC/fonts/vf/public/hacm/fenlil.vf + RELOC/fonts/vf/public/hacm/fialis.vf + RELOC/fonts/vf/public/hacm/inje.vf + RELOC/fonts/vf/public/hacm/kardinal.vf + RELOC/fonts/vf/public/hacm/lantia.vf + RELOC/fonts/vf/public/hacm/nalnia.vf + RELOC/fonts/vf/public/hacm/olivia.vf + RELOC/tex/latex/hacm/hacm.sty + RELOC/tex/latex/hacm/ot1halb.fd + RELOC/tex/latex/hacm/ot1hdef.fd + RELOC/tex/latex/hacm/ot1hfen.fd + RELOC/tex/latex/hacm/ot1hfia.fd + RELOC/tex/latex/hacm/ot1hinj.fd + RELOC/tex/latex/hacm/ot1hkar.fd + RELOC/tex/latex/hacm/ot1hlan.fd +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-license lppl1.3 +catalogue-version 0.1 + +name handout +category Package +revision 36877 +shortdesc Create handout for auditors of a talk +relocated 1 +longdesc In some fields of scholarship, a beamer does not offer good +longdesc support when giving a talk in a proceeding. For example, in +longdesc classical philology, the main sources are text, and it will be +longdesc better to distribute a handout to the audience with extracts of +longdesc the texts about which we will talk. The package supports +longdesc preparation of such handouts when writing the talk. +runfiles size=1 + RELOC/tex/latex/handout/handout.sty +docfiles size=73 + RELOC/doc/latex/handout/README + RELOC/doc/latex/handout/examples/example.bib + RELOC/doc/latex/handout/examples/example1-minimal.pdf + RELOC/doc/latex/handout/examples/example1-minimal.tex + RELOC/doc/latex/handout/examples/example2-cancel-quotation.pdf + RELOC/doc/latex/handout/examples/example2-cancel-quotation.tex + RELOC/doc/latex/handout/examples/example3-defined-path.pdf + RELOC/doc/latex/handout/examples/example3-defined-path.tex + RELOC/doc/latex/handout/examples/example4-sectioning.pdf + RELOC/doc/latex/handout/examples/example4-sectioning.tex + RELOC/doc/latex/handout/examples/example5-numbering.pdf + RELOC/doc/latex/handout/examples/example5-numbering.tex + RELOC/doc/latex/handout/examples/example6-not-and-only.pdf + RELOC/doc/latex/handout/examples/example6-not-and-only.tex + RELOC/doc/latex/handout/examples/example7-biblatex.pdf + RELOC/doc/latex/handout/examples/example7-biblatex.tex + RELOC/doc/latex/handout/examples/latexmkrc + RELOC/doc/latex/handout/examples/makefile + RELOC/doc/latex/handout/examples/txt/Preau1583-not-and-only.tex + RELOC/doc/latex/handout/examples/txt/Preau1583.tex + RELOC/doc/latex/handout/examples/txt/Preau1583b.tex + RELOC/doc/latex/handout/examples/txt/Richard_Simon_NT.tex + RELOC/doc/latex/handout/handout.pdf + RELOC/doc/latex/handout/handout.tex + RELOC/doc/latex/handout/latexmkrc + RELOC/doc/latex/handout/makefile +catalogue-ctan /macros/latex/contrib/handout +catalogue-date 2015-04-16 20:13:13 +0200 +catalogue-license lppl1.3 +catalogue-version 1.2.1a + +name hands +category Package +revision 13293 +shortdesc Pointing hand font. +relocated 1 +longdesc Provides right- and left-pointing hands in both black-on-white +longdesc and white-on-black realisation. The font is distributed as +longdesc Metafont source. +runfiles size=6 + RELOC/fonts/source/public/hands/hands.mf + RELOC/fonts/source/public/hands/handsdef.mf + RELOC/fonts/source/public/hands/mirror.mf + RELOC/fonts/source/public/hands/reverse.mf + RELOC/fonts/source/public/hands/rvmirror.mf + RELOC/fonts/tfm/public/hands/hands.tfm +catalogue-ctan /fonts/hands +catalogue-date 2014-05-06 20:53:54 +0200 +catalogue-license pd + +name hanging +category Package +revision 15878 +shortdesc Hanging paragraphs. +relocated 1 +longdesc The hanging package facilitates the typesetting of hanging +longdesc paragraphs. The package also enables typesetting with hanging +longdesc punctuation, by making punctuation characters active. This +longdesc facility is best suppressed (it can interfere with other +longdesc packages) -- there are package options for suppressing each +longdesc individual punctuation character. 'Real' attempts at hanging +longdesc punction should nowadays use the microtype package, which takes +longdesc advantage of the support offered in recent versions of pdfTeX. +runfiles size=2 + RELOC/tex/latex/hanging/hanging.sty +docfiles size=42 + RELOC/doc/latex/hanging/README + RELOC/doc/latex/hanging/hanging.pdf +srcfiles size=7 + RELOC/source/latex/hanging/hanging.dtx + RELOC/source/latex/hanging/hanging.ins +catalogue-ctan /macros/latex/contrib/hanging +catalogue-date 2013-09-30 14:43:32 +0200 +catalogue-license lppl1.3 +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. +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). +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-license pd +catalogue-version 20120101 + +name happy4th +category Package +revision 25020 +shortdesc A firework display in obfuscated TeX. +relocated 1 +longdesc The output PDF file gives an amusing display, as the reader +longdesc pages through it. +docfiles size=23 + RELOC/doc/plain/happy4th/happy4th.pdf + RELOC/doc/plain/happy4th/happy4th.tex +catalogue-ctan /macros/plain/contrib/happy4th +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd +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. +relocated 1 +longdesc This small package allows a LaTeX document containing the +longdesc citation commands provided by the Harvard package to be +longdesc compiled using the natbib package. Migration from harvard to +longdesc natbib thus can be achieved simply by replacing +longdesc \usepackage{harvard} with \usepackage{natbib} +longdesc \usepackage{har2nat} It is important that har2nat be loaded +longdesc after natbib, since it modifies natbib commands. +runfiles size=1 + RELOC/tex/latex/har2nat/har2nat.sty +docfiles size=57 + RELOC/doc/latex/har2nat/README + RELOC/doc/latex/har2nat/har2nat.pdf + RELOC/doc/latex/har2nat/har2nat.tex +catalogue-ctan /macros/latex/contrib/har2nat +catalogue-date 2012-04-15 22:35:03 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name hardwrap +category Package +revision 21396 +shortdesc Hard wrap text to a certain character length. +relocated 1 +longdesc The package facilitates wrapping text to a specific character +longdesc width, breaking lines by words rather than, as done by TeX, by +longdesc characters. The primary use for these facilities is to aid the +longdesc generation of messages sent to the log file or console output +longdesc to display messages to the user. Package authors may also find +longdesc this useful when writing out arbitary text to an external file. +runfiles size=3 + RELOC/tex/latex/hardwrap/hardwrap.sty +docfiles size=31 + RELOC/doc/latex/hardwrap/README + RELOC/doc/latex/hardwrap/hardwrap.pdf +srcfiles size=11 + RELOC/source/latex/hardwrap/hardwrap.dtx + RELOC/source/latex/hardwrap/hardwrap.ins +catalogue-ctan /macros/latex/contrib/hardwrap +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name harmony +category Package +revision 15878 +shortdesc Typeset harmony symbols, etc., for musicology. +relocated 1 +longdesc The package harmony.sty uses the packages ifthen and amssymb +longdesc from the amsfonts bundle, together with the LaTeX font +longdesc lcirclew10 and the font musix13 from musixtex. +runfiles size=3 + RELOC/tex/latex/harmony/harmony.sty +docfiles size=40 + RELOC/doc/latex/harmony/README + RELOC/doc/latex/harmony/harmony.pdf + RELOC/doc/latex/harmony/harmony.tex +catalogue-ctan /macros/latex/contrib/harmony +catalogue-date 2011-10-24 22:33:28 +0200 +catalogue-license lppl + +name harnon-cv +category Package +revision 26543 +shortdesc A CV document class with a vertical timeline for experience. +relocated 1 +longdesc The class offers another modern, neat, design, and provides a +longdesc simple means of adding an 'experience timeline'. +runfiles size=2 + RELOC/tex/latex/harnon-cv/harnon-cv.cls +docfiles size=16 + RELOC/doc/latex/harnon-cv/README + RELOC/doc/latex/harnon-cv/sample.pdf + RELOC/doc/latex/harnon-cv/sample.tex +catalogue-ctan /macros/latex/contrib/harnon-cv +catalogue-date 2014-10-02 11:45:28 +0200 +catalogue-license pd +catalogue-version 1.0 + +name harpoon +category Package +revision 21327 +shortdesc Extra harpoons, using the graphics package. +relocated 1 +longdesc Provides over- and under-harpoon symbol commands; the harpoons +longdesc may point in either direction, with the hook pointing up or +longdesc down. The covered object is provided as an argument to the +longdesc commands, so that they have the look of accent commands. +runfiles size=1 + RELOC/tex/latex/harpoon/harpoon.sty +docfiles size=8 + RELOC/doc/latex/harpoon/harpoon.pdf + RELOC/doc/latex/harpoon/harpoon.tex +catalogue-ctan /macros/latex/contrib/harpoon +catalogue-date 2012-04-15 22:35:03 +0200 +catalogue-license pd +catalogue-version 1.0 + +name harvard +category Package +revision 15878 +shortdesc Harvard citation package for use with LaTeX 2e. +relocated 1 +longdesc This is a re-implementation, for LaTeX 2e, of the original +longdesc Harvard package. The bundle contains the LaTeX package, several +longdesc BibTeX styles, and a 'Perl package' for use with LaTeX2HTML. +longdesc Harvard is an author-year citation style (all but the first +longdesc author are suppressed in second and subsequent citations of the +longdesc same entry); the package defines several variant styles: +longdesc apsr.bst for the American Political Science Review; agsm.bst +longdesc for Australian Government publications; dcu.bst from the Design +longdesc Computing Unit of the University of Sydney; kluwer.bstwhich +longdesc aims at the format preferred in Kluwer publications; +longdesc nederlands.bst which deals with sorting Dutch names with +longdesc prefixes (such as van) according to Dutch rules, together with +longdesc several styles whose authors offer no description of their +longdesc behaviour. +runfiles size=55 + RELOC/bibtex/bib/harvard/harvard.bib + RELOC/bibtex/bst/harvard/agsm.bst + RELOC/bibtex/bst/harvard/apsr.bst + RELOC/bibtex/bst/harvard/dcu.bst + RELOC/bibtex/bst/harvard/jmr.bst + RELOC/bibtex/bst/harvard/jphysicsB.bst + RELOC/bibtex/bst/harvard/kluwer.bst + RELOC/bibtex/bst/harvard/nederlands.bst + RELOC/tex/latex/harvard/harvard.sty +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-ctan /macros/latex/contrib/harvard +catalogue-date 2014-09-29 23:45:27 +0200 +catalogue-license lppl +catalogue-version 2.0.5 + +name harveyballs +category Package +revision 32003 +shortdesc Create Harvey Balls using TikZ. +relocated 1 +longdesc The package provides 5 commands (giving symbols that indicate +longdesc values from "none" to "full"). +runfiles size=1 + RELOC/tex/latex/harveyballs/harveyballs.sty +docfiles size=39 + RELOC/doc/latex/harveyballs/README + RELOC/doc/latex/harveyballs/harveyballs-Manual.pdf + RELOC/doc/latex/harveyballs/harveyballs-Manual.tex +catalogue-ctan /graphics/pgf/contrib/harveyballs +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl3 +catalogue-version 1.1 + +name harvmac +category Package +revision 15878 +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 +docfiles size=5 + RELOC/doc/plain/harvmac/README + RELOC/doc/plain/harvmac/harvsamp.tex +catalogue-ctan /macros/plain/contrib/harvmac +catalogue-date 2012-11-14 11:10:16 +0100 +catalogue-license other-free + +name hatching +category Package +revision 23818 +shortdesc MetaPost macros for hatching interior of closed paths. +relocated 1 +longdesc The file hatching.mp contains a set of MetaPost macros for +longdesc hatching interior of closed paths. Examples of usage are +longdesc included. +runfiles size=1 + RELOC/metapost/hatching/hatching.mp +docfiles size=3 + RELOC/doc/metapost/hatching/README + RELOC/doc/metapost/hatching/htchuse.mp + RELOC/doc/metapost/hatching/htchuse_.tex +catalogue-ctan /graphics/metapost/contrib/macros/hatching +catalogue-date 2012-04-15 22:35:03 +0200 +catalogue-license pd +catalogue-version 0.11 + +name hausarbeit-jura +category Package +revision 34009 +shortdesc Class for writing "juristiche 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 + 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/source/latex/hausarbeit-jura/hausarbeit-jura.dtx + RELOC/source/latex/hausarbeit-jura/hausarbeit-jura.ins +catalogue-ctan /macros/latex/contrib/hausarbeit-jura +catalogue-date 2014-09-29 23:44:54 +0200 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name havannah +category Package +revision 36348 +shortdesc Diagrams of board positions in the games of Havannah and Hex. +relocated 1 +longdesc This package defines macros for typesetting diagrams of board +longdesc positions in the games of Havannah and Hex. +runfiles size=3 + RELOC/tex/latex/havannah/havannah.sty +docfiles size=57 + RELOC/doc/latex/havannah/README + RELOC/doc/latex/havannah/havannah.pdf +srcfiles size=9 + RELOC/source/latex/havannah/havannah.dtx + RELOC/source/latex/havannah/havannah.ins +catalogue-ctan /macros/latex/contrib/havannah +catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-license lppl1.2 + +name hc +category Package +revision 15878 +shortdesc Replacement for the LaTeX classes. +relocated 1 +longdesc A set of replacements for the default LaTeX classes, based upon +longdesc the Koma-Script bundle and the seminar class. Includes hcart, +longdesc hcreport, hcletter, and hcslides. +runfiles size=35 + RELOC/bibtex/bst/hc/hc-de.bst + RELOC/bibtex/bst/hc/hc-en.bst + RELOC/tex/latex/hc/german.hld + RELOC/tex/latex/hc/hcart.cls + RELOC/tex/latex/hc/hcletter.cls + RELOC/tex/latex/hc/hcreport.cls + RELOC/tex/latex/hc/hcslides.cls +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-license other-free + +name helvetic +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX. +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap uhv.map +runfiles size=594 + RELOC/dvips/helvetic/config.uhv + RELOC/fonts/afm/adobe/helvetic/phvb8a.afm + RELOC/fonts/afm/adobe/helvetic/phvb8an.afm + RELOC/fonts/afm/adobe/helvetic/phvbo8a.afm + RELOC/fonts/afm/adobe/helvetic/phvbo8an.afm + RELOC/fonts/afm/adobe/helvetic/phvr8a.afm + RELOC/fonts/afm/adobe/helvetic/phvr8an.afm + RELOC/fonts/afm/adobe/helvetic/phvro8a.afm + RELOC/fonts/afm/adobe/helvetic/phvro8an.afm + RELOC/fonts/afm/urw/helvetic/uhvb8a.afm + RELOC/fonts/afm/urw/helvetic/uhvb8ac.afm + RELOC/fonts/afm/urw/helvetic/uhvbo8a.afm + RELOC/fonts/afm/urw/helvetic/uhvbo8ac.afm + RELOC/fonts/afm/urw/helvetic/uhvr8a.afm + RELOC/fonts/afm/urw/helvetic/uhvr8ac.afm + RELOC/fonts/afm/urw/helvetic/uhvro8a.afm + RELOC/fonts/afm/urw/helvetic/uhvro8ac.afm + RELOC/fonts/map/dvips/helvetic/uhv.map + RELOC/fonts/tfm/adobe/helvetic/phvb.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8c.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8cn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8r.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8rn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvb8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbc8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8c.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8cn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8r.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8rn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbo8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbon.tfm + RELOC/fonts/tfm/adobe/helvetic/phvbrn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8c.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8cn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8r.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8rn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvr8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrc8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro7t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro7tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8c.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8cn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8r.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8rn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8t.tfm + RELOC/fonts/tfm/adobe/helvetic/phvro8tn.tfm + RELOC/fonts/tfm/adobe/helvetic/phvron.tfm + RELOC/fonts/tfm/adobe/helvetic/phvrrn.tfm + RELOC/fonts/tfm/monotype/helvetic/arb10u.tfm + RELOC/fonts/tfm/monotype/helvetic/arb2n.tfm + RELOC/fonts/tfm/monotype/helvetic/arb7j.tfm + RELOC/fonts/tfm/monotype/helvetic/arb8u.tfm + RELOC/fonts/tfm/monotype/helvetic/arb9t.tfm + RELOC/fonts/tfm/monotype/helvetic/ari10u.tfm + RELOC/fonts/tfm/monotype/helvetic/ari2n.tfm + RELOC/fonts/tfm/monotype/helvetic/ari7j.tfm + RELOC/fonts/tfm/monotype/helvetic/ari8u.tfm + RELOC/fonts/tfm/monotype/helvetic/ari9t.tfm + RELOC/fonts/tfm/monotype/helvetic/arj10u.tfm + RELOC/fonts/tfm/monotype/helvetic/arj2n.tfm + RELOC/fonts/tfm/monotype/helvetic/arj7j.tfm + RELOC/fonts/tfm/monotype/helvetic/arj8u.tfm + RELOC/fonts/tfm/monotype/helvetic/arj9t.tfm + RELOC/fonts/tfm/monotype/helvetic/arr10u.tfm + RELOC/fonts/tfm/monotype/helvetic/arr2n.tfm + RELOC/fonts/tfm/monotype/helvetic/arr7j.tfm + RELOC/fonts/tfm/monotype/helvetic/arr8u.tfm + RELOC/fonts/tfm/monotype/helvetic/arr9t.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvb.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvb8t.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvbi.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvbi8t.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvr.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvr8t.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvri.tfm + RELOC/fonts/tfm/monotype/helvetic/mhvri8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvb8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbc7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbc7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbc8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbc8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbi7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbi8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbi8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbi8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvbo8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvr8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvrc7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvrc7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvrc8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvrc8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvri8tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro7t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro7tn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8c.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8cn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8r.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8rn.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8t.tfm + RELOC/fonts/tfm/urw35vf/helvetic/uhvro8tn.tfm + RELOC/fonts/type1/urw/helvetic/uhvb8a.pfb + RELOC/fonts/type1/urw/helvetic/uhvb8a.pfm + RELOC/fonts/type1/urw/helvetic/uhvb8ac.pfb + RELOC/fonts/type1/urw/helvetic/uhvb8ac.pfm + RELOC/fonts/type1/urw/helvetic/uhvbo8a.pfb + RELOC/fonts/type1/urw/helvetic/uhvbo8a.pfm + RELOC/fonts/type1/urw/helvetic/uhvbo8ac.pfb + RELOC/fonts/type1/urw/helvetic/uhvbo8ac.pfm + RELOC/fonts/type1/urw/helvetic/uhvr8a-105.pfb + RELOC/fonts/type1/urw/helvetic/uhvr8a.pfb + RELOC/fonts/type1/urw/helvetic/uhvr8a.pfm + RELOC/fonts/type1/urw/helvetic/uhvr8ac.pfb + RELOC/fonts/type1/urw/helvetic/uhvr8ac.pfm + RELOC/fonts/type1/urw/helvetic/uhvro8a-105.pfb + RELOC/fonts/type1/urw/helvetic/uhvro8a.pfb + RELOC/fonts/type1/urw/helvetic/uhvro8a.pfm + RELOC/fonts/type1/urw/helvetic/uhvro8ac.pfb + RELOC/fonts/type1/urw/helvetic/uhvro8ac.pfm + RELOC/fonts/vf/adobe/helvetic/phvb.vf + RELOC/fonts/vf/adobe/helvetic/phvb7t.vf + RELOC/fonts/vf/adobe/helvetic/phvb7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvb8c.vf + RELOC/fonts/vf/adobe/helvetic/phvb8cn.vf + RELOC/fonts/vf/adobe/helvetic/phvb8t.vf + RELOC/fonts/vf/adobe/helvetic/phvb8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbc.vf + RELOC/fonts/vf/adobe/helvetic/phvbc7t.vf + RELOC/fonts/vf/adobe/helvetic/phvbc7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbc8t.vf + RELOC/fonts/vf/adobe/helvetic/phvbc8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbo.vf + RELOC/fonts/vf/adobe/helvetic/phvbo7t.vf + RELOC/fonts/vf/adobe/helvetic/phvbo7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbo8c.vf + RELOC/fonts/vf/adobe/helvetic/phvbo8cn.vf + RELOC/fonts/vf/adobe/helvetic/phvbo8t.vf + RELOC/fonts/vf/adobe/helvetic/phvbo8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvbon.vf + RELOC/fonts/vf/adobe/helvetic/phvbrn.vf + RELOC/fonts/vf/adobe/helvetic/phvr.vf + RELOC/fonts/vf/adobe/helvetic/phvr7t.vf + RELOC/fonts/vf/adobe/helvetic/phvr7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvr8c.vf + RELOC/fonts/vf/adobe/helvetic/phvr8cn.vf + RELOC/fonts/vf/adobe/helvetic/phvr8t.vf + RELOC/fonts/vf/adobe/helvetic/phvr8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvrc.vf + RELOC/fonts/vf/adobe/helvetic/phvrc7t.vf + RELOC/fonts/vf/adobe/helvetic/phvrc7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvrc8t.vf + RELOC/fonts/vf/adobe/helvetic/phvrc8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvro.vf + RELOC/fonts/vf/adobe/helvetic/phvro7t.vf + RELOC/fonts/vf/adobe/helvetic/phvro7tn.vf + RELOC/fonts/vf/adobe/helvetic/phvro8c.vf + RELOC/fonts/vf/adobe/helvetic/phvro8cn.vf + RELOC/fonts/vf/adobe/helvetic/phvro8t.vf + RELOC/fonts/vf/adobe/helvetic/phvro8tn.vf + RELOC/fonts/vf/adobe/helvetic/phvron.vf + RELOC/fonts/vf/adobe/helvetic/phvrrn.vf + RELOC/fonts/vf/monotype/helvetic/mhvb.vf + RELOC/fonts/vf/monotype/helvetic/mhvb8t.vf + RELOC/fonts/vf/monotype/helvetic/mhvbi.vf + RELOC/fonts/vf/monotype/helvetic/mhvbi8t.vf + RELOC/fonts/vf/monotype/helvetic/mhvr.vf + RELOC/fonts/vf/monotype/helvetic/mhvr8t.vf + RELOC/fonts/vf/monotype/helvetic/mhvri.vf + RELOC/fonts/vf/monotype/helvetic/mhvri8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvb8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbc7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbc7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbc8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbc8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbi7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbi8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbi8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvbo8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvr8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvrc7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvrc7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvrc8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvrc8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvri8tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro7t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro7tn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro8c.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro8cn.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro8t.vf + RELOC/fonts/vf/urw35vf/helvetic/uhvro8tn.vf + RELOC/tex/latex/helvetic/8ruhv.fd + RELOC/tex/latex/helvetic/omluhv.fd + RELOC/tex/latex/helvetic/omsuhv.fd + RELOC/tex/latex/helvetic/ot1uhv.fd + RELOC/tex/latex/helvetic/t1uhv.fd + RELOC/tex/latex/helvetic/ts1uhv.fd +catalogue-ctan /fonts/urw/base35 +catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-license gpl + +name hepnames +category Package +revision 35722 +shortdesc Pre-defined high energy particle names. +relocated 1 +longdesc Hepnames provides a pair of LaTeX packages, heppennames and +longdesc hepnicenames, providing a large set of pre-defined high energy +longdesc physics particle names built with the hepparticles package. The +longdesc packages are based on pennames.sty by Michel Goosens and Eric +longdesc van Herwijnen. Heppennames re-implements the particle names in +longdesc pennames.sty, with some additions and alterations and greater +longdesc flexibility and robustness due to the hepparticles structures, +longdesc which were written for this purpose. Hepnicenames provides the +longdesc main non-resonant particle names from heppennames with more +longdesc "friendly" names. +runfiles size=13 + RELOC/tex/latex/hepnames/hepnames.sty + RELOC/tex/latex/hepnames/hepnicenames.sty + RELOC/tex/latex/hepnames/heppennames.sty +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/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.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.tex + RELOC/doc/latex/hepnames/mkmacrotables +catalogue-ctan /macros/latex/contrib/hepnames +catalogue-date 2014-12-02 13:57:10 +0100 +catalogue-license lppl +catalogue-version 2.0 + +name hepparticles +category Package +revision 35723 +shortdesc Macros for typesetting high energy physics particle names. +relocated 1 +longdesc HEPparticles is a set of macros for typesetting high energy +longdesc particle names, to meet the following criteria: 1. The main +longdesc particle name is a Roman or Greek symbol, to be typeset in +longdesc upright font in normal contexts. 2. Additionally a superscript +longdesc and/or subscript may follow the main symbol. 3. Particle +longdesc resonances may also have a resonance specifier which is typeset +longdesc in parentheses following the main symbol. In general the +longdesc parentheses may also be followed by sub- and superscripts. 4. +longdesc The particle names are expected to be used both in and out of +longdesc mathematical contexts. 5. If the surrounding text is bold or +longdesc italic then the particle name should adapt to that context as +longdesc best as possible (this may not be possible for Greek symbols). +longdesc A consequence of point 5 is that the well-known problems with +longdesc boldness of particle names in section titles, headers and +longdesc tables of contents automatically disappear if these macros are +longdesc used. +runfiles size=5 + RELOC/tex/latex/hepparticles/hepparticles.sty +docfiles size=27 + RELOC/doc/latex/hepparticles/ChangeLog + RELOC/doc/latex/hepparticles/README + RELOC/doc/latex/hepparticles/hepparticles.pdf + RELOC/doc/latex/hepparticles/hepparticles.tex + RELOC/doc/latex/hepparticles/testhepparticles.pdf + RELOC/doc/latex/hepparticles/testhepparticles.tex +catalogue-ctan /macros/latex/contrib/hepparticles +catalogue-date 2014-12-02 14:03:39 +0100 +catalogue-license lppl +catalogue-version 2.0 + +name hepthesis +category Package +revision 35720 +shortdesc A class for academic reports, especially PhD theses. +relocated 1 +longdesc Hepthesis is a LaTeX class for typesetting large academic +longdesc reports, in particular PhD theses. It was originally developed +longdesc for typesetting the author's high-energy physics PhD thesis and +longdesc includes some features specifically tailored to such an +longdesc application. In particular, hepthesis offers: Attractive +longdesc semantic environments for various rubric sections; Extensive +longdesc options for draft production, screen viewing and binding-ready +longdesc output; Helpful extensions of existing environments, including +longdesc equation and tabular; and Support for quotations at the start +longdesc of the thesis and each chapter. The class is based on scrbook, +longdesc from the KOMA-Script bundle. +runfiles size=7 + RELOC/tex/latex/hepthesis/hepthesis.cls +docfiles size=250 + RELOC/doc/latex/hepthesis/ChangeLog + RELOC/doc/latex/hepthesis/Makefile + RELOC/doc/latex/hepthesis/README + RELOC/doc/latex/hepthesis/TODO + RELOC/doc/latex/hepthesis/example/Makefile + RELOC/doc/latex/hepthesis/example/appendices.tex + RELOC/doc/latex/hepthesis/example/backmatter.tex + RELOC/doc/latex/hepthesis/example/chap1.tex + RELOC/doc/latex/hepthesis/example/chap2.tex + RELOC/doc/latex/hepthesis/example/chap3.tex + RELOC/doc/latex/hepthesis/example/ckmfitter-alpha-combined.pdf + RELOC/doc/latex/hepthesis/example/example.pdf + RELOC/doc/latex/hepthesis/example/example.tex + RELOC/doc/latex/hepthesis/example/extrastyles.zip + RELOC/doc/latex/hepthesis/example/frontmatter.tex + RELOC/doc/latex/hepthesis/example/getNewBibtex + RELOC/doc/latex/hepthesis/example/h-physrev.bst + RELOC/doc/latex/hepthesis/example/lhcb-detector-cross-section.pdf + RELOC/doc/latex/hepthesis/example/mwe.tex + RELOC/doc/latex/hepthesis/example/mythesis.bib + RELOC/doc/latex/hepthesis/example/mythesismath.sty + RELOC/doc/latex/hepthesis/example/preamble.tex + RELOC/doc/latex/hepthesis/hepthesis.pdf + RELOC/doc/latex/hepthesis/hepthesis.tex +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-license lppl +catalogue-version 1.0 + +name hepunits +category Package +revision 15878 +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 +docfiles size=27 + RELOC/doc/latex/hepunits/ChangeLog + RELOC/doc/latex/hepunits/README + RELOC/doc/latex/hepunits/hepunits.pdf + RELOC/doc/latex/hepunits/hepunits.tex +catalogue-ctan /macros/latex/contrib/hepunits +catalogue-date 2011-11-16 20:25:41 +0100 +catalogue-license lppl +catalogue-version 1.1.1 + +name here +category Package +revision 16135 +shortdesc Emulation of obsolete package for "here" floats. +relocated 1 +longdesc Provides the H option for floats in LaTeX to signify that the +longdesc environment is not really a float (and should therefore be +longdesc placed "here" and not float at all). The package emulates an +longdesc older package of the same name, which has long been suppressed +longdesc by its author. The job is done by nothing more than loading the +longdesc float package, which has long provided the option in an +longdesc acceptable framework. +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-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 + +name heuristica +category Package +revision 35964 +shortdesc Fonts extending Utopia, with LaTeX support files. +relocated 1 +longdesc The fonts extend the utopia set with Cyrillic glyphs, +longdesc additional figure styles, ligatures and Small Caps in Regular +longdesc style only. Macro support, and maths fonts that match the +longdesc Utopia family, are provided by the Fourier and the Mathdesign +longdesc font packages. +execute addMap Heuristica.map +runfiles size=652 + RELOC/fonts/enc/dvips/heuristica/zut_5b7xz5.enc + RELOC/fonts/enc/dvips/heuristica/zut_bavnqe.enc + RELOC/fonts/enc/dvips/heuristica/zut_ckaykl.enc + RELOC/fonts/enc/dvips/heuristica/zut_cq6rqq.enc + RELOC/fonts/enc/dvips/heuristica/zut_cvig5d.enc + RELOC/fonts/enc/dvips/heuristica/zut_d3dvo4.enc + RELOC/fonts/enc/dvips/heuristica/zut_dcwkkw.enc + RELOC/fonts/enc/dvips/heuristica/zut_dhvb6d.enc + RELOC/fonts/enc/dvips/heuristica/zut_dvh2xl.enc + RELOC/fonts/enc/dvips/heuristica/zut_e7tlds.enc + RELOC/fonts/enc/dvips/heuristica/zut_edf5gu.enc + RELOC/fonts/enc/dvips/heuristica/zut_etrbro.enc + RELOC/fonts/enc/dvips/heuristica/zut_evgarn.enc + RELOC/fonts/enc/dvips/heuristica/zut_f5n2rf.enc + RELOC/fonts/enc/dvips/heuristica/zut_fc3mov.enc + RELOC/fonts/enc/dvips/heuristica/zut_flhghs.enc + RELOC/fonts/enc/dvips/heuristica/zut_g4w54e.enc + RELOC/fonts/enc/dvips/heuristica/zut_geqeyh.enc + RELOC/fonts/enc/dvips/heuristica/zut_hbxdik.enc + RELOC/fonts/enc/dvips/heuristica/zut_hln2hy.enc + RELOC/fonts/enc/dvips/heuristica/zut_hvy566.enc + RELOC/fonts/enc/dvips/heuristica/zut_ijw3px.enc + RELOC/fonts/enc/dvips/heuristica/zut_it5nv3.enc + RELOC/fonts/enc/dvips/heuristica/zut_j3hjx2.enc + RELOC/fonts/enc/dvips/heuristica/zut_k42udk.enc + RELOC/fonts/enc/dvips/heuristica/zut_n2gc2n.enc + RELOC/fonts/enc/dvips/heuristica/zut_nvi5ys.enc + RELOC/fonts/enc/dvips/heuristica/zut_qy67bk.enc + RELOC/fonts/enc/dvips/heuristica/zut_rhmrtx.enc + RELOC/fonts/enc/dvips/heuristica/zut_rutxxy.enc + RELOC/fonts/enc/dvips/heuristica/zut_tfeu3y.enc + RELOC/fonts/enc/dvips/heuristica/zut_thxlbm.enc + RELOC/fonts/enc/dvips/heuristica/zut_tsvs4d.enc + RELOC/fonts/enc/dvips/heuristica/zut_u7pc6m.enc + RELOC/fonts/enc/dvips/heuristica/zut_ul3ofd.enc + RELOC/fonts/enc/dvips/heuristica/zut_v7it2w.enc + RELOC/fonts/enc/dvips/heuristica/zut_vaioc2.enc + RELOC/fonts/enc/dvips/heuristica/zut_vtjod4.enc + RELOC/fonts/enc/dvips/heuristica/zut_ysltpx.enc + RELOC/fonts/enc/dvips/heuristica/zut_zk7stm.enc + RELOC/fonts/enc/dvips/heuristica/zut_zl5g24.enc + RELOC/fonts/map/dvips/heuristica/Heuristica.map + RELOC/fonts/opentype/public/heuristica/Heuristica-Bold.otf + RELOC/fonts/opentype/public/heuristica/Heuristica-BoldItalic.otf + RELOC/fonts/opentype/public/heuristica/Heuristica-Italic.otf + RELOC/fonts/opentype/public/heuristica/Heuristica-Regular.otf + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-inf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-sup-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Bold-tosf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-inf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-sup-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-BoldItalic-tosf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-inf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-sup-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Italic-tosf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-inf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-sup-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-sc-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tlf-ts1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-sc-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t1.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2a.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2b.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-t2c.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/heuristica/Heuristica-Regular-tosf-ts1.tfm + RELOC/fonts/type1/public/heuristica/Heuristica-Bold.pfb + RELOC/fonts/type1/public/heuristica/Heuristica-BoldItalic.pfb + RELOC/fonts/type1/public/heuristica/Heuristica-Italic.pfb + RELOC/fonts/type1/public/heuristica/Heuristica-Regular.pfb + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-inf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-sup-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-tlf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-tlf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-tosf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-inf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-tosf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-inf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-sup-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-tlf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-tlf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-tosf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-inf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-sup-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tlf-sc-ly1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tlf-sc-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tlf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tlf-ts1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tosf-sc-ly1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tosf-sc-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tosf-t1.vf + RELOC/fonts/vf/public/heuristica/Heuristica-Regular-tosf-ts1.vf + RELOC/tex/latex/heuristica/LY1Heuristica-Inf.fd + RELOC/tex/latex/heuristica/LY1Heuristica-Sup.fd + RELOC/tex/latex/heuristica/LY1Heuristica-TLF.fd + RELOC/tex/latex/heuristica/LY1Heuristica-TOsF.fd + RELOC/tex/latex/heuristica/T1Heuristica-Inf.fd + RELOC/tex/latex/heuristica/T1Heuristica-Sup.fd + RELOC/tex/latex/heuristica/T1Heuristica-TLF.fd + RELOC/tex/latex/heuristica/T1Heuristica-TOsF.fd + RELOC/tex/latex/heuristica/T2AHeuristica-Inf.fd + RELOC/tex/latex/heuristica/T2AHeuristica-Sup.fd + RELOC/tex/latex/heuristica/T2AHeuristica-TLF.fd + RELOC/tex/latex/heuristica/T2AHeuristica-TOsF.fd + RELOC/tex/latex/heuristica/T2BHeuristica-Inf.fd + RELOC/tex/latex/heuristica/T2BHeuristica-Sup.fd + RELOC/tex/latex/heuristica/T2BHeuristica-TLF.fd + RELOC/tex/latex/heuristica/T2BHeuristica-TOsF.fd + RELOC/tex/latex/heuristica/T2CHeuristica-Inf.fd + RELOC/tex/latex/heuristica/T2CHeuristica-Sup.fd + RELOC/tex/latex/heuristica/T2CHeuristica-TLF.fd + RELOC/tex/latex/heuristica/T2CHeuristica-TOsF.fd + RELOC/tex/latex/heuristica/TS1Heuristica-TLF.fd + RELOC/tex/latex/heuristica/TS1Heuristica-TOsF.fd + RELOC/tex/latex/heuristica/heuristica.fontspec + RELOC/tex/latex/heuristica/heuristica.sty +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-license ofl +catalogue-version 1.08 + +name hexgame +category Package +revision 15878 +shortdesc Provide an environment to draw a hexgame-board. +relocated 1 +longdesc Hex is a mathematical game invented by the Danish mathematician +longdesc Piet Hein and independently by the mathematician John Nash. +longdesc This package defines an environment that enables the user to +longdesc draw such a game in a trivial way. +runfiles size=2 + RELOC/tex/latex/hexgame/hexgame.sty +docfiles size=11 + RELOC/doc/latex/hexgame/README + RELOC/doc/latex/hexgame/hexgame.pdf + RELOC/doc/latex/hexgame/hexgame.tex +catalogue-ctan /macros/latex/contrib/hexgame +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name hfbright +category Package +revision 29349 +shortdesc The hfbright fonts. +relocated 1 +longdesc These are Adobe Type 1 versions of the OT1-encoded and maths +longdesc parts of the Computer Modern Bright fonts. +execute addMixedMap hfbright.map +runfiles size=313 + RELOC/fonts/afm/public/hfbright/hfbr10.afm + RELOC/fonts/afm/public/hfbright/hfbr17.afm + RELOC/fonts/afm/public/hfbright/hfbr8.afm + RELOC/fonts/afm/public/hfbright/hfbr9.afm + RELOC/fonts/afm/public/hfbright/hfbras10.afm + RELOC/fonts/afm/public/hfbright/hfbras8.afm + RELOC/fonts/afm/public/hfbright/hfbras9.afm + RELOC/fonts/afm/public/hfbright/hfbrbs10.afm + RELOC/fonts/afm/public/hfbright/hfbrbs8.afm + RELOC/fonts/afm/public/hfbright/hfbrbs9.afm + RELOC/fonts/afm/public/hfbright/hfbrbx10.afm + RELOC/fonts/afm/public/hfbright/hfbrmb10.afm + RELOC/fonts/afm/public/hfbright/hfbrmi10.afm + RELOC/fonts/afm/public/hfbright/hfbrmi8.afm + RELOC/fonts/afm/public/hfbright/hfbrmi9.afm + RELOC/fonts/afm/public/hfbright/hfbrsl10.afm + RELOC/fonts/afm/public/hfbright/hfbrsl17.afm + RELOC/fonts/afm/public/hfbright/hfbrsl8.afm + RELOC/fonts/afm/public/hfbright/hfbrsl9.afm + RELOC/fonts/afm/public/hfbright/hfbrsy10.afm + RELOC/fonts/afm/public/hfbright/hfbrsy8.afm + RELOC/fonts/afm/public/hfbright/hfbrsy9.afm + RELOC/fonts/afm/public/hfbright/hfsltl10.afm + RELOC/fonts/afm/public/hfbright/hftl10.afm + RELOC/fonts/enc/dvips/hfbright/hfmital.enc + RELOC/fonts/enc/dvips/hfbright/hfmsa.enc + RELOC/fonts/enc/dvips/hfbright/hfmsb.enc + RELOC/fonts/enc/dvips/hfbright/hfmsym.enc + RELOC/fonts/enc/dvips/hfbright/hfot1.enc + RELOC/fonts/map/dvips/hfbright/hfbright.map + RELOC/fonts/type1/public/hfbright/hfbr10.pfb + RELOC/fonts/type1/public/hfbright/hfbr17.pfb + RELOC/fonts/type1/public/hfbright/hfbr8.pfb + RELOC/fonts/type1/public/hfbright/hfbr9.pfb + RELOC/fonts/type1/public/hfbright/hfbras10.pfb + RELOC/fonts/type1/public/hfbright/hfbras8.pfb + RELOC/fonts/type1/public/hfbright/hfbras9.pfb + RELOC/fonts/type1/public/hfbright/hfbrbs10.pfb + RELOC/fonts/type1/public/hfbright/hfbrbs8.pfb + RELOC/fonts/type1/public/hfbright/hfbrbs9.pfb + RELOC/fonts/type1/public/hfbright/hfbrbx10.pfb + RELOC/fonts/type1/public/hfbright/hfbrmb10.pfb + RELOC/fonts/type1/public/hfbright/hfbrmi10.pfb + RELOC/fonts/type1/public/hfbright/hfbrmi8.pfb + RELOC/fonts/type1/public/hfbright/hfbrmi9.pfb + RELOC/fonts/type1/public/hfbright/hfbrsl10.pfb + RELOC/fonts/type1/public/hfbright/hfbrsl17.pfb + RELOC/fonts/type1/public/hfbright/hfbrsl8.pfb + RELOC/fonts/type1/public/hfbright/hfbrsl9.pfb + RELOC/fonts/type1/public/hfbright/hfbrsy10.pfb + RELOC/fonts/type1/public/hfbright/hfbrsy8.pfb + RELOC/fonts/type1/public/hfbright/hfbrsy9.pfb + RELOC/fonts/type1/public/hfbright/hfsltl10.pfb + RELOC/fonts/type1/public/hfbright/hftl10.pfb +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-license lppl + +name hfoldsty +category Package +revision 29349 +shortdesc Old style numerals with EC fonts. +relocated 1 +longdesc The hfoldsty package provides virtual fonts for using oldstyle +longdesc (0123456789) figures with the European Computer Modern fonts. +longdesc It does a similar job as the eco package by Sebastian Kirsch +longdesc but includes a couple of improvements, i.e., better kerning +longdesc with guillemets, and support for character protruding using the +longdesc pdfcprot package. +runfiles size=1217 + RELOC/fonts/tfm/public/hfoldsty/hfobi0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobi3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobl3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfobx3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfocc3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfodh3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoit3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfooc3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hforb3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hform0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hform1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hform2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hform2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hform2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hform3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosc3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosi3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosl3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoso3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoss3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfost3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfosx3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfotc3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoti3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfott3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoui3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovi3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfovt3583.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0500.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0600.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0700.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0800.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc0900.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1000.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1095.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1200.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1440.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc1728.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc2074.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc2488.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc2986.tfm + RELOC/fonts/tfm/public/hfoldsty/hfoxc3583.tfm + RELOC/fonts/vf/public/hfoldsty/hfobi0500.vf + RELOC/fonts/vf/public/hfoldsty/hfobi0600.vf + RELOC/fonts/vf/public/hfoldsty/hfobi0700.vf + RELOC/fonts/vf/public/hfoldsty/hfobi0800.vf + RELOC/fonts/vf/public/hfoldsty/hfobi0900.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1000.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1095.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1200.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1440.vf + RELOC/fonts/vf/public/hfoldsty/hfobi1728.vf + RELOC/fonts/vf/public/hfoldsty/hfobi2074.vf + RELOC/fonts/vf/public/hfoldsty/hfobi2488.vf + RELOC/fonts/vf/public/hfoldsty/hfobi2986.vf + RELOC/fonts/vf/public/hfoldsty/hfobi3583.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0500.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0600.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0700.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0800.vf + RELOC/fonts/vf/public/hfoldsty/hfobl0900.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1000.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1095.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1200.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1440.vf + RELOC/fonts/vf/public/hfoldsty/hfobl1728.vf + RELOC/fonts/vf/public/hfoldsty/hfobl2074.vf + RELOC/fonts/vf/public/hfoldsty/hfobl2488.vf + RELOC/fonts/vf/public/hfoldsty/hfobl2986.vf + RELOC/fonts/vf/public/hfoldsty/hfobl3583.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0500.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0600.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0700.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0800.vf + RELOC/fonts/vf/public/hfoldsty/hfobx0900.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1000.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1095.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1200.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1440.vf + RELOC/fonts/vf/public/hfoldsty/hfobx1728.vf + RELOC/fonts/vf/public/hfoldsty/hfobx2074.vf + RELOC/fonts/vf/public/hfoldsty/hfobx2488.vf + RELOC/fonts/vf/public/hfoldsty/hfobx2986.vf + RELOC/fonts/vf/public/hfoldsty/hfobx3583.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0500.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfocc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfocc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfocc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfocc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfocc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfocc3583.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0500.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0600.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0700.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0800.vf + RELOC/fonts/vf/public/hfoldsty/hfodh0900.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1000.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1095.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1200.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1440.vf + RELOC/fonts/vf/public/hfoldsty/hfodh1728.vf + RELOC/fonts/vf/public/hfoldsty/hfodh2074.vf + RELOC/fonts/vf/public/hfoldsty/hfodh2488.vf + RELOC/fonts/vf/public/hfoldsty/hfodh2986.vf + RELOC/fonts/vf/public/hfoldsty/hfodh3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoit0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoit0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoit0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoit0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoit1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoit2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoit2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoit2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoit3583.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0500.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfooc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfooc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfooc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfooc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfooc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfooc3583.vf + RELOC/fonts/vf/public/hfoldsty/hforb0500.vf + RELOC/fonts/vf/public/hfoldsty/hforb0600.vf + RELOC/fonts/vf/public/hfoldsty/hforb0700.vf + RELOC/fonts/vf/public/hfoldsty/hforb0800.vf + RELOC/fonts/vf/public/hfoldsty/hforb0900.vf + RELOC/fonts/vf/public/hfoldsty/hforb1000.vf + RELOC/fonts/vf/public/hfoldsty/hforb1095.vf + RELOC/fonts/vf/public/hfoldsty/hforb1200.vf + RELOC/fonts/vf/public/hfoldsty/hforb1440.vf + RELOC/fonts/vf/public/hfoldsty/hforb1728.vf + RELOC/fonts/vf/public/hfoldsty/hforb2074.vf + RELOC/fonts/vf/public/hfoldsty/hforb2488.vf + RELOC/fonts/vf/public/hfoldsty/hforb2986.vf + RELOC/fonts/vf/public/hfoldsty/hforb3583.vf + RELOC/fonts/vf/public/hfoldsty/hform0500.vf + RELOC/fonts/vf/public/hfoldsty/hform0600.vf + RELOC/fonts/vf/public/hfoldsty/hform0700.vf + RELOC/fonts/vf/public/hfoldsty/hform0800.vf + RELOC/fonts/vf/public/hfoldsty/hform0900.vf + RELOC/fonts/vf/public/hfoldsty/hform1000.vf + RELOC/fonts/vf/public/hfoldsty/hform1095.vf + RELOC/fonts/vf/public/hfoldsty/hform1200.vf + RELOC/fonts/vf/public/hfoldsty/hform1440.vf + RELOC/fonts/vf/public/hfoldsty/hform1728.vf + RELOC/fonts/vf/public/hfoldsty/hform2074.vf + RELOC/fonts/vf/public/hfoldsty/hform2488.vf + RELOC/fonts/vf/public/hfoldsty/hform2986.vf + RELOC/fonts/vf/public/hfoldsty/hform3583.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0500.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfosc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfosc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfosc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfosc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfosc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfosc3583.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0500.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0600.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0700.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0800.vf + RELOC/fonts/vf/public/hfoldsty/hfosi0900.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1000.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1095.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1200.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1440.vf + RELOC/fonts/vf/public/hfoldsty/hfosi1728.vf + RELOC/fonts/vf/public/hfoldsty/hfosi2074.vf + RELOC/fonts/vf/public/hfoldsty/hfosi2488.vf + RELOC/fonts/vf/public/hfoldsty/hfosi2986.vf + RELOC/fonts/vf/public/hfoldsty/hfosi3583.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0500.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0600.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0700.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0800.vf + RELOC/fonts/vf/public/hfoldsty/hfosl0900.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1000.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1095.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1200.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1440.vf + RELOC/fonts/vf/public/hfoldsty/hfosl1728.vf + RELOC/fonts/vf/public/hfoldsty/hfosl2074.vf + RELOC/fonts/vf/public/hfoldsty/hfosl2488.vf + RELOC/fonts/vf/public/hfoldsty/hfosl2986.vf + RELOC/fonts/vf/public/hfoldsty/hfosl3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoso0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoso1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoso2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoso2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoso2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoso3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoss0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoss1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoss2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoss2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoss2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoss3583.vf + RELOC/fonts/vf/public/hfoldsty/hfost0600.vf + RELOC/fonts/vf/public/hfoldsty/hfost0700.vf + RELOC/fonts/vf/public/hfoldsty/hfost0800.vf + RELOC/fonts/vf/public/hfoldsty/hfost0900.vf + RELOC/fonts/vf/public/hfoldsty/hfost1000.vf + RELOC/fonts/vf/public/hfoldsty/hfost1095.vf + RELOC/fonts/vf/public/hfoldsty/hfost1200.vf + RELOC/fonts/vf/public/hfoldsty/hfost1440.vf + RELOC/fonts/vf/public/hfoldsty/hfost1728.vf + RELOC/fonts/vf/public/hfoldsty/hfost2074.vf + RELOC/fonts/vf/public/hfoldsty/hfost2488.vf + RELOC/fonts/vf/public/hfoldsty/hfost2986.vf + RELOC/fonts/vf/public/hfoldsty/hfost3583.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0500.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0600.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0700.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0800.vf + RELOC/fonts/vf/public/hfoldsty/hfosx0900.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1000.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1095.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1200.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1440.vf + RELOC/fonts/vf/public/hfoldsty/hfosx1728.vf + RELOC/fonts/vf/public/hfoldsty/hfosx2074.vf + RELOC/fonts/vf/public/hfoldsty/hfosx2488.vf + RELOC/fonts/vf/public/hfoldsty/hfosx2986.vf + RELOC/fonts/vf/public/hfoldsty/hfosx3583.vf + RELOC/fonts/vf/public/hfoldsty/hfotc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfotc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfotc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfotc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfotc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfotc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfotc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfotc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfotc3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoti0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoti1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoti2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoti2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoti2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoti3583.vf + RELOC/fonts/vf/public/hfoldsty/hfott0600.vf + RELOC/fonts/vf/public/hfoldsty/hfott0700.vf + RELOC/fonts/vf/public/hfoldsty/hfott0800.vf + RELOC/fonts/vf/public/hfoldsty/hfott0900.vf + RELOC/fonts/vf/public/hfoldsty/hfott1000.vf + RELOC/fonts/vf/public/hfoldsty/hfott1095.vf + RELOC/fonts/vf/public/hfoldsty/hfott1200.vf + RELOC/fonts/vf/public/hfoldsty/hfott1440.vf + RELOC/fonts/vf/public/hfoldsty/hfott1728.vf + RELOC/fonts/vf/public/hfoldsty/hfott2074.vf + RELOC/fonts/vf/public/hfoldsty/hfott2488.vf + RELOC/fonts/vf/public/hfoldsty/hfott2986.vf + RELOC/fonts/vf/public/hfoldsty/hfott3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoui0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoui1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoui2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoui2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoui2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoui3583.vf + RELOC/fonts/vf/public/hfoldsty/hfovi0600.vf + RELOC/fonts/vf/public/hfoldsty/hfovi0700.vf + RELOC/fonts/vf/public/hfoldsty/hfovi0800.vf + RELOC/fonts/vf/public/hfoldsty/hfovi0900.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1000.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1095.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1200.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1440.vf + RELOC/fonts/vf/public/hfoldsty/hfovi1728.vf + RELOC/fonts/vf/public/hfoldsty/hfovi2074.vf + RELOC/fonts/vf/public/hfoldsty/hfovi2488.vf + RELOC/fonts/vf/public/hfoldsty/hfovi2986.vf + RELOC/fonts/vf/public/hfoldsty/hfovi3583.vf + RELOC/fonts/vf/public/hfoldsty/hfovt0600.vf + RELOC/fonts/vf/public/hfoldsty/hfovt0700.vf + RELOC/fonts/vf/public/hfoldsty/hfovt0800.vf + RELOC/fonts/vf/public/hfoldsty/hfovt0900.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1000.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1095.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1200.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1440.vf + RELOC/fonts/vf/public/hfoldsty/hfovt1728.vf + RELOC/fonts/vf/public/hfoldsty/hfovt2074.vf + RELOC/fonts/vf/public/hfoldsty/hfovt2488.vf + RELOC/fonts/vf/public/hfoldsty/hfovt2986.vf + RELOC/fonts/vf/public/hfoldsty/hfovt3583.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0500.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0600.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0700.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0800.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc0900.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1000.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1095.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1200.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1440.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc1728.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc2074.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc2488.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc2986.vf + RELOC/fonts/vf/public/hfoldsty/hfoxc3583.vf + RELOC/tex/latex/hfoldsty/hfoldsty.sty + RELOC/tex/latex/hfoldsty/hforbxitT1.cpa + RELOC/tex/latex/hfoldsty/hforbxitTS1.cpa + RELOC/tex/latex/hfoldsty/hforbxnT1.cpa + RELOC/tex/latex/hfoldsty/hforbxnTS1.cpa + RELOC/tex/latex/hfoldsty/hforbxslT1.cpa + RELOC/tex/latex/hfoldsty/hforbxslTS1.cpa + RELOC/tex/latex/hfoldsty/hformitT1.cpa + RELOC/tex/latex/hfoldsty/hformitTS1.cpa + RELOC/tex/latex/hfoldsty/hformnT1.cpa + RELOC/tex/latex/hfoldsty/hformnTS1.cpa + RELOC/tex/latex/hfoldsty/hformslT1.cpa + RELOC/tex/latex/hfoldsty/hformslTS1.cpa + RELOC/tex/latex/hfoldsty/hfossbxitT1.cpa + RELOC/tex/latex/hfoldsty/hfossbxitTS1.cpa + RELOC/tex/latex/hfoldsty/hfossbxnT1.cpa + RELOC/tex/latex/hfoldsty/hfossbxnTS1.cpa + RELOC/tex/latex/hfoldsty/hfossbxslT1.cpa + RELOC/tex/latex/hfoldsty/hfossbxslTS1.cpa + RELOC/tex/latex/hfoldsty/hfossmitT1.cpa + RELOC/tex/latex/hfoldsty/hfossmitTS1.cpa + RELOC/tex/latex/hfoldsty/hfossmnT1.cpa + RELOC/tex/latex/hfoldsty/hfossmnTS1.cpa + RELOC/tex/latex/hfoldsty/hfossmslT1.cpa + RELOC/tex/latex/hfoldsty/hfossmslTS1.cpa + RELOC/tex/latex/hfoldsty/omlhfor.fd + RELOC/tex/latex/hfoldsty/omshfor.fd + RELOC/tex/latex/hfoldsty/t1hfodh.fd + RELOC/tex/latex/hfoldsty/t1hfor.fd + RELOC/tex/latex/hfoldsty/t1hfoss.fd + RELOC/tex/latex/hfoldsty/t1hfott.fd + RELOC/tex/latex/hfoldsty/t1hfovt.fd + RELOC/tex/latex/hfoldsty/ts1hfor.fd + RELOC/tex/latex/hfoldsty/ts1hfoss.fd + RELOC/tex/latex/hfoldsty/ts1hfott.fd + RELOC/tex/latex/hfoldsty/ts1hfovtt.fd +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-license gpl +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. +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 +docfiles size=93 + RELOC/doc/latex/hhtensor/ChangeLog + RELOC/doc/latex/hhtensor/Makefile + RELOC/doc/latex/hhtensor/README + RELOC/doc/latex/hhtensor/getversion.tex + RELOC/doc/latex/hhtensor/hhtensor.pdf +srcfiles size=4 + RELOC/source/latex/hhtensor/hhtensor.dtx + RELOC/source/latex/hhtensor/hhtensor.ins +catalogue-ctan /macros/latex/contrib/hhtensor +catalogue-date 2012-07-15 22:58:12 +0200 +catalogue-license lppl +catalogue-version 0.61 + +name histogr +category Package +revision 15878 +shortdesc Draw histograms with the LaTeX picture environment. +relocated 1 +longdesc This is a collection pf macros to draw histogram bars inside a +longdesc LaTeX picture-environment. +runfiles size=1 + RELOC/tex/latex/histogr/histogr.sty +docfiles size=27 + RELOC/doc/latex/histogr/histogr.pdf +srcfiles size=4 + RELOC/source/latex/histogr/histogr.dtx + RELOC/source/latex/histogr/histogr.ins +catalogue-ctan /macros/latex/contrib/histogr +catalogue-date 2012-07-15 23:35:06 +0200 +catalogue-license lppl1.3 +catalogue-version 1.01 + +name historische-zeitschrift +category Package +revision 34703 +shortdesc Biblatex style for the journal 'Historische Zeitschrift' +relocated 1 +longdesc The package provides citations according with the house style +longdesc of the 'Historische Zeitschrift', a German historical journal. +longdesc The scheme is a fullcite for the first citation and 'Author, +longdesc Shorttitle (as note N, P)' for later citations (P being the +longdesc page number). For further details, see the description of the +longdesc house style at the journal's site. The package depends on +longdesc biblatex (version 0.8 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 +docfiles size=3 + RELOC/doc/latex/historische-zeitschrift/CHANGES + RELOC/doc/latex/historische-zeitschrift/LIESMICH + RELOC/doc/latex/historische-zeitschrift/README +catalogue-ctan /macros/latex/contrib/biblatex-contrib/historische-zeitschrift +catalogue-date 2014-07-22 11:10:19 +0200 +catalogue-license lppl +catalogue-version 1.1a + +name hitec +category Package +revision 15878 +shortdesc Class for documentation. +relocated 1 +longdesc An article-based class designed for use for documentation in +longdesc high-technology companies. +runfiles size=6 + RELOC/tex/latex/hitec/hitec.cls +docfiles size=7 + RELOC/doc/latex/hitec/README + RELOC/doc/latex/hitec/hitec_doc.pdf + RELOC/doc/latex/hitec/hitec_doc.tex +catalogue-ctan /macros/latex/contrib/hitec +catalogue-date 2012-07-15 23:35:06 +0200 +catalogue-license lppl +catalogue-version 0.0(beta) + +name hletter +category Package +revision 30002 +shortdesc Flexible letter typesetting with flexible page headings. +relocated 1 +longdesc The package permits the user to specify easily, with the aid of +longdesc self defined key-words, letters (with a logo and private) and +longdesc headings. The heading may include a footer and the letter +longdesc provides commands to include a scanned signature and two +longdesc signees. The package works with the merge package. +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 +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/Testheader.tex + RELOC/doc/latex/hletter/Testletter1.tex + RELOC/doc/latex/hletter/Testletter2.tex + RELOC/doc/latex/hletter/Testletter3.tex + RELOC/doc/latex/hletter/Testmerge.dat + RELOC/doc/latex/hletter/Testmerge.tex + RELOC/doc/latex/hletter/signat.eps + RELOC/doc/latex/hletter/signat.jpg +catalogue-ctan /macros/latex/contrib/hletter +catalogue-date 2015-04-01 23:44:24 +0200 +catalogue-license lppl1.2 +catalogue-version 4.2 + +name hobby +category Package +revision 34958 +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 + RELOC/doc/latex/hobby/README + RELOC/doc/latex/hobby/hobby.pdf + RELOC/doc/latex/hobby/hobby_doc.pdf + RELOC/doc/latex/hobby/hobby_doc.tex +srcfiles size=29 + RELOC/source/latex/hobby/hobby.dtx + RELOC/source/latex/hobby/hobby.ins +catalogue-ctan /graphics/pgf/contrib/hobby +catalogue-date 2014-08-18 06:31:54 +0200 +catalogue-license lppl1.3 +catalogue-version 1.6 + +name hobete +category Package +revision 27036 +shortdesc Unofficial beamer theme for the University of Hohenheim. +relocated 1 +longdesc The package provides a beamer theme which features the Ci +longdesc colors of the University of Hohenheim. Please note that this is +longdesc not an official Theme, and that there will be no support for +longdesc it, from the University. Furthermore there is NO relationship +longdesc between the University and this theme. +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-license lppl + +name hook-pre-commit-pkg +category Package +revision 36360 +shortdesc Pre-commit git hook for LaTeX package developpers. +relocated 1 +longdesc This package provides a pre-commit git hook to check basic +longdesc LaTeX syntax for the use of package developers. It is installed +longdesc by copying it into the .git/.hooks file. It then checks the +longdesc following file types: .sty, .dtx, .bbx, .cbx, and .lbx. List of +longdesc performed checks: Each line must be terminated by a %, without +longdesc a space before it. Empty lines are allowed, but not lines with +longdesc nothing but spaces in them. \begin{macro} and \end{macro} must +longdesc be paired. \begin{macrocode} and \end{macrocode} must be +longdesc paired. \begin{macro} must have a second argument. One space +longdesc must be printed between % and \begin{macro} or \end{macro}. % +longdesc must be the first character in the line. Four spaces must be +longdesc printed between % and \begin{macrocode} or \end{macrocode}. \cs +longdesc argument must not start with a backslash. +docfiles size=4 + RELOC/doc/support/hook-pre-commit-pkg/README + RELOC/doc/support/hook-pre-commit-pkg/pre-commit-latex +catalogue-ctan /support/hook-pre-commit-pkg +catalogue-date 2015-02-28 14:55:42 +0100 +catalogue-license gpl3 +catalogue-version 1.1.0 + +name horoscop +category Package +revision 30530 +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 software (Astrolog and Swiss Ephemeris) for computing object +longdesc positions. +runfiles size=14 + RELOC/tex/latex/horoscop/horoscop.sty +docfiles size=172 + RELOC/doc/latex/horoscop/README + RELOC/doc/latex/horoscop/horoscop.pdf +srcfiles size=76 + RELOC/source/latex/horoscop/horoscop.dtx + RELOC/source/latex/horoscop/horoscop.ins +catalogue-ctan /macros/latex/contrib/horoscop +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd +catalogue-version 0.92 + +name hpsdiss +category Package +revision 15878 +shortdesc A dissertation class. +relocated 1 +longdesc The class was developed to typeset a dissertation at ETH +longdesc Zurich. The requirements were to use A5 paper and 10pt type. A +longdesc sample of the output is shown in the PDF documentation link. +runfiles size=6 + RELOC/tex/latex/hpsdiss/hpsdiss.cls +docfiles size=54 + RELOC/doc/latex/hpsdiss/hpsdiss.pdf +srcfiles size=12 + RELOC/source/latex/hpsdiss/hpsdiss.dtx + RELOC/source/latex/hpsdiss/hpsdiss.ins +catalogue-ctan /macros/latex/contrib/hpsdiss +catalogue-date 2014-09-30 00:03:44 +0200 +catalogue-license gpl +catalogue-version 1.0 + +name hrefhide +category Package +revision 22255 +shortdesc Suppress hyper links when printing. +relocated 1 +longdesc This package provides the command \hrefdisplayonly (which +longdesc provides a substitute for \href). While the (hyperlinked) text +longdesc appears like an ordinary \href in the compiled PDF file, the +longdesc same text will be "hidden" when printing the text. (Hiding is +longdesc actually achieved by making the text the same colour as the +longdesc background, thus preserving the layout of the rest of the +longdesc text.) +runfiles size=2 + RELOC/tex/latex/hrefhide/hrefhide.sty +docfiles size=111 + RELOC/doc/latex/hrefhide/README + RELOC/doc/latex/hrefhide/hrefhide-example.pdf + RELOC/doc/latex/hrefhide/hrefhide-example.tex + RELOC/doc/latex/hrefhide/hrefhide.pdf +srcfiles size=12 + RELOC/source/latex/hrefhide/hrefhide.drv + RELOC/source/latex/hrefhide/hrefhide.dtx + RELOC/source/latex/hrefhide/hrefhide.ins +catalogue-ctan /macros/latex/contrib/hrefhide +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0f + +name hrlatex +category Package +revision 18020 +shortdesc LaTeX support for Croatian documents. +relocated 1 +longdesc This package simplifies creation of new documents for the +longdesc (average) Croatian user. As an example, a class file hrdipl.cls +longdesc (designed for the graduation thesis at the University of +longdesc Zagreb) and sample thesis documents are included. +runfiles size=4 + RELOC/tex/latex/hrlatex/fsbispit.cls + RELOC/tex/latex/hrlatex/fsbmath.sty + RELOC/tex/latex/hrlatex/hrlatex.sty +docfiles size=43 + RELOC/doc/latex/hrlatex/README + RELOC/doc/latex/hrlatex/hrlatex.pdf + 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 +srcfiles size=3 + RELOC/source/latex/hrlatex/hrlatex.dtx + RELOC/source/latex/hrlatex/hrlatex.ins +catalogue-ctan /language/croatian/hrlatex +catalogue-date 2012-07-15 23:55:51 +0200 +catalogue-license lppl +catalogue-version 0.23 + +name hvfloat +category Package +revision 25570 +shortdesc Rotating caption and object of floats independently. +relocated 1 +longdesc This package defines a macro to place objects (tables and +longdesc figures) and their captions in different positions with +longdesc different rotating angles within a float. All objects and +longdesc captions can be framed. The main command is \hvFloat{float +longdesc type}{floating object}{caption}{label}; a simple example is +longdesc \hvFloat{figure}{\includegraphics{rose}}{Caption}{fig:0}. +longdesc Options are provided to place captions to the right or left, +longdesc and rotated. Setting nonFloat=true results in placing the float +longdesc here. +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 + RELOC/doc/latex/hvfloat/hvfloat.tex + RELOC/doc/latex/hvfloat/rose.png +catalogue-ctan /macros/latex/contrib/hvfloat +catalogue-date 2012-03-05 13:21:26 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name hvindex +category Package +revision 16136 +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. +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-license lppl +catalogue-version 0.02 + +name hypdvips +category Package +revision 34364 +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 +docfiles size=552 + RELOC/doc/latex/hypdvips/README + RELOC/doc/latex/hypdvips/hypdvips.pdf + RELOC/doc/latex/hypdvips/images/example1.eps + RELOC/doc/latex/hypdvips/images/example2.eps + RELOC/doc/latex/hypdvips/images/example3.eps + RELOC/doc/latex/hypdvips/images/example4.eps + RELOC/doc/latex/hypdvips/images/example5.eps + RELOC/doc/latex/hypdvips/images/example6.eps + RELOC/doc/latex/hypdvips/images/example7.eps + RELOC/doc/latex/hypdvips/images/graph.eps + RELOC/doc/latex/hypdvips/images/icon_draft.eps + RELOC/doc/latex/hypdvips/images/ids.eps + RELOC/doc/latex/hypdvips/images/logfile.eps + RELOC/doc/latex/hypdvips/images/openmsg_six.eps + RELOC/doc/latex/hypdvips/images/openmsg_sixinbrowser.eps + RELOC/doc/latex/hypdvips/images/paperclip.eps + RELOC/doc/latex/hypdvips/images/pushpin.eps + RELOC/doc/latex/hypdvips/images/tag.eps + RELOC/doc/latex/hypdvips/manifest.txt +catalogue-ctan /macros/latex/contrib/hypdvips +catalogue-date 2014-06-22 21:54:58 +0200 +catalogue-license lppl1.3 +catalogue-version 3.02 + +name hypernat +category Package +revision 17358 +shortdesc Allow hyperref and natbib to work together. +relocated 1 +longdesc Allows hyperref package and the natbib package with options +longdesc 'numbers' and 'sort&compress' to work together. This means that +longdesc multiple sequential citations (e.g [3,2,1]) will be compressed +longdesc to [1-3], where the '1' and the '3' are (color-)linked to the +longdesc bibliography. +runfiles size=2 + RELOC/tex/latex/hypernat/hypernat.sty +docfiles size=48 + RELOC/doc/latex/hypernat/hypernat.pdf + RELOC/doc/latex/hypernat/hypernat.tex +catalogue-ctan /macros/latex/contrib/hypernat +catalogue-date 2012-07-16 00:03:18 +0200 +catalogue-license gpl +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. +relocated 1 +longdesc The hyperref package is used to handle cross-referencing +longdesc commands in LaTeX to produce hypertext links in the document. +longdesc The package provides backends for the \special set defined for +longdesc HyperTeX DVI processors; for embedded pdfmark commands for +longdesc processing by Acrobat Distiller (dvips and Y&Y's dvipsone); for +longdesc Y&Y's dviwindo; for PDF control within pdfTeX and dvipdfm; for +longdesc TeX4ht; and for VTeX's pdf and HTML backends. The package is +longdesc distributed with the backref and nameref packages, which make +longdesc use of the facilities of hyperref. The package depends on the +longdesc author's kvoptions, ltxcmdsand refcount packages. +runfiles size=219 + 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/hpdftex.def + RELOC/tex/latex/hyperref/htex4ht.cfg + RELOC/tex/latex/hyperref/htex4ht.def + RELOC/tex/latex/hyperref/htexture.def + RELOC/tex/latex/hyperref/hvtex.def + RELOC/tex/latex/hyperref/hvtexhtm.def + RELOC/tex/latex/hyperref/hvtexmrk.def + RELOC/tex/latex/hyperref/hxetex.def + RELOC/tex/latex/hyperref/hylatex.ltx + RELOC/tex/latex/hyperref/hyperref.sty + RELOC/tex/latex/hyperref/hypertex.def + RELOC/tex/latex/hyperref/minitoc-hyper.sty + RELOC/tex/latex/hyperref/nameref.sty + RELOC/tex/latex/hyperref/nohyperref.sty + RELOC/tex/latex/hyperref/ntheorem-hyper.sty + RELOC/tex/latex/hyperref/pd1enc.def + RELOC/tex/latex/hyperref/pdfmark.def + RELOC/tex/latex/hyperref/psdextra.def + RELOC/tex/latex/hyperref/puarenc.def + RELOC/tex/latex/hyperref/puenc.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-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 + +name hyperxmp +category Package +revision 35258 +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 +longdesc itself. The metadata is designed to be easy to extract, even by +longdesc programs that are oblivious to the document's file format. Most +longdesc of Adobe's applications store XMP metadata when saving files. +longdesc Now, with the hyperxmp package, it is trivial for LaTeX +longdesc document authors to store XMP metadata in their documents as +longdesc well. Version 2.2 of the package added support for the IPTC +longdesc Photo Metadata schema. It allows \xmpcomma and \xmpquote to be +longdesc used in any hyperxmp option, not only those that require +longdesc special treatment of commas. And it introduces an \xmplinesep +longdesc macro that controls how multiline fields are represented in the +longdesc XMP packet. The package integrates seamlessly with hyperref and +longdesc requires virtually no modifications to documents that already +longdesc exploit hyperref's mechanisms for specifying PDF metadata. The +longdesc current version of hyperxmp can embed the following metadata as +longdesc XMP: title, authors, primary author's title or position, +longdesc metadata writer, subject/summary, keywords, copyright, license +longdesc URL, document base URL, document identifier and instance +longdesc identifier, language, source file name, PDF generating tool, +longdesc PDF version, and contact telephone number/postal address/email +longdesc address/URL. Hyperxmp currently embeds XMP only within PDF +longdesc documents; it is compatible with pdflatex, xelatex, +longdesc latex+dvipdfm, and latex+dvips+ps2pdf. +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 + RELOC/source/latex/hyperxmp/einstein-xmp.tex + RELOC/source/latex/hyperxmp/einstein1.png + RELOC/source/latex/hyperxmp/einstein2.png + RELOC/source/latex/hyperxmp/gglo-hyxmp.ist + RELOC/source/latex/hyperxmp/gind-hyxmp.ist + RELOC/source/latex/hyperxmp/hyperxmp.dtx + RELOC/source/latex/hyperxmp/hyperxmp.ins +catalogue-ctan /macros/latex/contrib/hyperxmp +catalogue-date 2014-09-25 08:26:55 +0200 +catalogue-license lppl1.3 +catalogue-version 2.6 + +name hyphen-afrikaans +category TLCore +revision 25990 +shortdesc Afrikaans hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Afrikaans in T1/EC and UTF-8 +longdesc encodings. OpenOffice includes older patterns created by a +longdesc different author, but the patterns packaged with TeX are +longdesc considered superior in quality. +depend 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 + +name hyphen-ancientgreek +category TLCore +revision 29725 +shortdesc Ancient Greek hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Ancient Greek in LGR and UTF-8 +longdesc encodings, including support for (obsolete) Ibycus font +longdesc encoding. Patterns in UTF-8 use two code positions for each of +longdesc the vowels with acute accent (a.k.a tonos, oxia), e.g., U+03AE, +longdesc U+1F75 for eta. +depend 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 + RELOC/tex/generic/hyphen/grahyph5.tex + RELOC/tex/generic/hyphen/ibyhyph.tex + +name hyphen-arabic +category TLCore +revision 23085 +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= + +name hyphen-armenian +category TLCore +revision 23085 +shortdesc Armenian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Armenian for Unicode engines. +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 + +name hyphen-base +category TLCore +revision 34525 +relocated 1 +runfiles size=24 + RELOC/tex/generic/config/language.dat + RELOC/tex/generic/config/language.dat.lua + RELOC/tex/generic/config/language.def + RELOC/tex/generic/config/language.us + RELOC/tex/generic/config/language.us.def + RELOC/tex/generic/config/language.us.lua + RELOC/tex/generic/hyphen/dumyhyph.tex + RELOC/tex/generic/hyphen/hyphen.tex + RELOC/tex/generic/hyphen/hypht1.tex + RELOC/tex/generic/hyphen/zerohyph.tex + +name hyphen-basque +category TLCore +revision 23085 +catalogue bahyph +shortdesc Basque hyphenation patterns. +relocated 1 +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= +catalogue-ctan /language/basque +catalogue-date 2012-05-17 15:24:13 +0200 +catalogue-license other-free + +name hyphen-bulgarian +category TLCore +revision 25990 +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= + +name hyphen-catalan +category TLCore +revision 25990 +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 + +name hyphen-chinese +category TLCore +revision 25990 +shortdesc Chinese pinyin hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for unaccented transliterated Mandarin +longdesc Chinese (pinyin) in T1/EC and UTF-8 encodings. +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= + +name hyphen-coptic +category TLCore +revision 23085 +shortdesc Coptic hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Coptic in UTF-8 encoding as well as in +longdesc ASCII-based encoding for 8-bit engines. The latter can only be +longdesc used with special Coptic fonts (like CBcoptic). The patterns +longdesc are considered experimental. +depend 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= + +name hyphen-croatian +category TLCore +revision 23085 +catalogue hrhyph +shortdesc Croatian hyphenation patterns. +relocated 1 +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= +catalogue-ctan /language/hyphenation/hrhyph.tex +catalogue-date 2012-07-15 23:55:51 +0200 +catalogue-license lppl1.3 + +name hyphen-czech +category TLCore +revision 25990 +shortdesc Czech hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Czech in T1/EC and UTF-8 encodings. +longdesc Original patterns 'czhyphen' are still distributed in the +longdesc 'csplain' package and loaded with ISO Latin 2 encoding (IL2). +depend 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 + +name hyphen-danish +category TLCore +revision 23085 +catalogue dkhyphen +shortdesc Danish hyphenation patterns. +relocated 1 +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= +catalogue-ctan /language/hyphenation/dkhyphen +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name hyphen-dutch +category TLCore +revision 25990 +shortdesc Dutch hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Dutch in T1/EC and UTF-8 encodings. +longdesc These patterns don't handle cases like 'menuutje' > 'menu-tje', +longdesc and don't hyphenate words that have different hyphenations +longdesc according to their meaning. +depend 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 + +name hyphen-english +category TLCore +revision 25990 +shortdesc English hyphenation patterns. +relocated 1 +longdesc Additional hyphenation patterns for American and British +longdesc English in ASCII encoding. The American English patterns +longdesc (usenglishmax) greatly extend the standard patterns from Knuth +longdesc to find many additional hyphenation points. British English +longdesc hyphenation is completely different from US English, so has its +longdesc own set of patterns. +depend 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 + +name hyphen-esperanto +category TLCore +revision 23085 +shortdesc Esperanto hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Esperanto ISO Latin 3 and UTF-8 +longdesc encodings. Note that TeX distributions don't ship any suitable +longdesc fonts in Latin 3 encoding, so unless you create your own font +longdesc support or want to use MlTeX, using native Unicode engines is +longdesc highly recommended. +depend 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= + +name hyphen-estonian +category TLCore +revision 23085 +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= + +name hyphen-ethiopic +category TLCore +revision 23085 +shortdesc Hyphenation patterns for Ethiopic scripts. +relocated 1 +longdesc Hyphenation patterns for languages written using the Ethiopic +longdesc script for Unicode engines. They are not supposed to be +longdesc linguistically relevant in all cases and should, for proper +longdesc typography, be replaced by files tailored to individual +longdesc languages. +depend 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 + +name hyphen-farsi +category TLCore +revision 23085 +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= + +name hyphen-finnish +category TLCore +revision 25990 +catalogue fihyph +shortdesc Finnish hyphenation patterns. +relocated 1 +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= +catalogue-ctan /language/hyphenation/fihyph +catalogue-date 2012-07-11 23:21:34 +0200 +catalogue-license pd + +name hyphen-french +category TLCore +revision 25990 +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= + +name hyphen-friulan +category TLCore +revision 26595 +shortdesc Friulan hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Friulan in ASCII encoding. They are +longdesc supposed to comply with the common spelling of the Friulan +longdesc (Furlan) language as fixed by the Regional Law N.15/96 dated +longdesc November 6, 1996 and its following amendments. +depend 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= + +name hyphen-galician +category TLCore +revision 25990 +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= + +name hyphen-georgian +category TLCore +revision 30326 +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= + +name hyphen-german +category TLCore +revision 29725 +shortdesc German hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for German in T1/EC and UTF-8 encodings, +longdesc for traditional and reformed spelling, including Swiss German. +longdesc The package includes the latest patterns from dehyph-exptl +longdesc (known to TeX under names 'german', 'ngerman' and +longdesc 'swissgerman'), however 8-bit engines still load old versions +longdesc of patterns for 'german' and 'ngerman' for 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. +depend hyphen-base +depend hyph-utf8 +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 + +name hyphen-greek +category TLCore +revision 29725 +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 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 +docfiles size=463 + RELOC/doc/generic/elhyphen/README + RELOC/doc/generic/elhyphen/anc-test.ltx + RELOC/doc/generic/elhyphen/anc-test.pdf + RELOC/doc/generic/elhyphen/ancient.pdf + RELOC/doc/generic/elhyphen/compound.ltx + RELOC/doc/generic/elhyphen/compound.pdf + RELOC/doc/generic/elhyphen/copyrite.txt + RELOC/doc/generic/elhyphen/modern.pdf +catalogue-ctan /language/hyphenation/elhyphen +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 5 + +name hyphen-hungarian +category TLCore +revision 29725 +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/. +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 + 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 +catalogue-ctan /language/hungarian/hyphenation +catalogue-date 2012-06-19 22:38:05 +0200 +catalogue-license gpl + +name hyphen-icelandic +category TLCore +revision 23085 +catalogue icehyph +shortdesc Icelandic hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Icelandic in T1/EC and UTF-8 +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= +catalogue-ctan /language/hyphenation/icehyph.tex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name hyphen-indic +category TLCore +revision 25990 +shortdesc Indic hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Assamese, Bengali, Gujarati, Hindi, +longdesc Kannada, Malayalam, Marathi, Oriya, Panjabi, Tamil and Telugu +longdesc for Unicode engines. +depend hyphen-base +depend hyph-utf8 +execute AddHyphen name=assamese lefthyphenmin=1 righthyphenmin=1 file=loadhyph-as.tex file_patterns=hyph-as.pat.txt file_exceptions= +execute AddHyphen name=bengali lefthyphenmin=1 righthyphenmin=1 file=loadhyph-bn.tex file_patterns=hyph-bn.pat.txt file_exceptions= +execute AddHyphen name=gujarati lefthyphenmin=1 righthyphenmin=1 file=loadhyph-gu.tex file_patterns=hyph-gu.pat.txt file_exceptions= +execute AddHyphen name=hindi lefthyphenmin=1 righthyphenmin=1 file=loadhyph-hi.tex file_patterns=hyph-hi.pat.txt file_exceptions= +execute AddHyphen name=kannada lefthyphenmin=1 righthyphenmin=1 file=loadhyph-kn.tex file_patterns=hyph-kn.pat.txt file_exceptions= +execute AddHyphen name=malayalam lefthyphenmin=1 righthyphenmin=1 file=loadhyph-ml.tex file_patterns=hyph-ml.pat.txt file_exceptions= +execute AddHyphen name=marathi lefthyphenmin=1 righthyphenmin=1 file=loadhyph-mr.tex file_patterns=hyph-mr.pat.txt file_exceptions= +execute AddHyphen name=oriya lefthyphenmin=1 righthyphenmin=1 file=loadhyph-or.tex file_patterns=hyph-or.pat.txt file_exceptions= +execute AddHyphen name=panjabi lefthyphenmin=1 righthyphenmin=1 file=loadhyph-pa.tex file_patterns=hyph-pa.pat.txt file_exceptions= +execute AddHyphen name=tamil lefthyphenmin=1 righthyphenmin=1 file=loadhyph-ta.tex file_patterns=hyph-ta.pat.txt file_exceptions= +execute AddHyphen name=telugu lefthyphenmin=1 righthyphenmin=1 file=loadhyph-te.tex file_patterns=hyph-te.pat.txt file_exceptions= + +name hyphen-indonesian +category TLCore +revision 25990 +shortdesc Indonesian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Indonesian (Bahasa Indonesia) in ASCII +longdesc encoding. They are probably also usable for Malay (Bahasa +longdesc Melayu). +depend 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 + +name hyphen-interlingua +category TLCore +revision 25990 +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 + +name hyphen-irish +category TLCore +revision 25990 +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. +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 + +name hyphen-italian +category TLCore +revision 25990 +catalogue ithyph +shortdesc Italian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Italian in ASCII encoding. Compliant +longdesc with the Recommendation UNI 6461 on hyphenation issued by the +longdesc Italian Standards Institution (Ente Nazionale di Unificazione +longdesc UNI). +depend 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= +catalogue-ctan /language/hyphenation/ithyph.tex +catalogue-date 2012-06-23 19:46:16 +0200 +catalogue-license lgpl +catalogue-version 4.8g + +name hyphen-kurmanji +category TLCore +revision 25990 +shortdesc Kurmanji hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Kurmanji (Northern Kurdish) as spoken +longdesc in Turkey and by the Kurdish diaspora in Europe, in T1/EC and +longdesc UTF-8 encodings. +depend 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= + +name hyphen-latin +category TLCore +revision 34520 +catalogue lahyph +shortdesc Latin and classical Latin hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Latin in T1/EC and UTF-8 encodings, +longdesc mainly in modern spelling (u when u is needed and v when v is +longdesc needed), medieval spelling with the ligatures \ae and \oe and +longdesc the (uncial) lowercase 'v' written as a 'u' is also supported. +longdesc Apparently there is no conflict between the patterns of modern +longdesc Latin and those of medieval Latin. Hyphenation patterns for the +longdesc Classical Latin in T1/EC and UTF-8 encodings. Classical Latin +longdesc hyphenation patterns are different from those of 'plain' Latin, +longdesc the latter being more adapted to modern Latin. +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= +catalogue-ctan /language/hyphenation/lahyph.tex +catalogue-date 2012-06-24 00:35:21 +0200 +catalogue-license lppl +catalogue-version 3.1 + +name hyphen-latvian +category TLCore +revision 25990 +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= + +name hyphen-lithuanian +category TLCore +revision 23085 +shortdesc Lithuanian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Lithuanian in L7X and UTF-8 encodings. +longdesc \lefthyphenmin and \righthyphenmin have to be at least 2. +depend 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= + +name hyphen-mongolian +category TLCore +revision 25990 +shortdesc Mongolian hyphenation patterns in Cyrillic script. +relocated 1 +longdesc Hyphenation patterns for Mongolian in T2A, LMC and UTF-8 +longdesc encodings. LMC encoding is used in MonTeX. The package includes +longdesc two sets of patterns that will hopefully be merged in future. +depend 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" + +name hyphen-norwegian +category TLCore +revision 23085 +shortdesc Norwegian Bokmal and Nynorsk hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Norwegian Bokmal and Nynorsk in T1/EC +longdesc and UTF-8 encodings. +depend 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 + +name hyphen-piedmontese +category TLCore +revision 29193 +shortdesc Piedmontese hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Piedmontese in ASCII encoding. +longdesc Compliant with 'Gramatica dla lengua piemonteisa' by Camillo +longdesc Brero. +depend 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= + +name hyphen-polish +category TLCore +revision 25990 +catalogue plhyph +shortdesc Polish hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Polish in QX and UTF-8 encodings. +longdesc These patterns are also used by Polish TeX formats MeX and +longdesc LaMeX. +depend 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 +catalogue-ctan /language/polish/plhyph.tex +catalogue-date 2012-06-08 17:19:18 +0200 +catalogue-license knuth +catalogue-version 3.0a + +name hyphen-portuguese +category TLCore +revision 31125 +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 + +name hyphen-romanian +category TLCore +revision 25990 +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. +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= + +name hyphen-romansh +category TLCore +revision 25990 +shortdesc Romansh hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Romansh in ASCII encoding. They are +longdesc supposed to comply with the rules indicated by the Lia +longdesc Rumantscha (Romansh language society). +depend 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= + +name hyphen-russian +category TLCore +revision 23085 +shortdesc Russian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Russian in T2A and UTF-8 encodings. +longdesc For 8-bit engines, the 'ruhyphen' package provides a number of +longdesc different pattern sets, as well as different (8-bit) encodings, +longdesc that can be chosen at format-generation time. The UTF-8 +longdesc version only provides the default pattern set. A mechanism +longdesc similar to the one used for 8-bit patterns may be implemented +longdesc in the future. +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 + +name hyphen-sanskrit +category TLCore +revision 28522 +shortdesc Sanskrit hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Sanskrit and Prakrit in +longdesc transliteration, and in Devanagari, Bengali, Kannada, Malayalam +longdesc and Telugu scripts for Unicode engines. +depend 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= + +name hyphen-serbian +category TLCore +revision 25990 +catalogue srhyphc +shortdesc Serbian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Serbian in T1/EC, T2A and UTF-8 +longdesc encodings. For 8-bit engines the patterns are available +longdesc separately as 'serbian' in T1/EC encoding for Latin script and +longdesc 'serbianc' in T2A encoding for Cyrillic script. Unicode engines +longdesc should only use 'serbian' which has patterns in both scripts +longdesc combined. +depend 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 +catalogue-ctan /language/hyphenation/srhyphc.tex +catalogue-date 2012-07-10 14:48:34 +0200 +catalogue-license gpl +catalogue-version 1.0a + +name hyphen-slovak +category TLCore +revision 25990 +shortdesc Slovak hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Slovak in T1/EC and UTF-8 encodings. +longdesc Original patterns 'skhyphen' are still distributed in the +longdesc 'csplain' package and loaded with ISO Latin 2 encoding (IL2). +depend 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 + +name hyphen-slovenian +category TLCore +revision 25990 +shortdesc Slovenian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Slovenian in T1/EC and UTF-8 +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= + +name hyphen-spanish +category TLCore +revision 25990 +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= +catalogue-ctan /language/spanish/hyphen/base +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 4.5 + +name hyphen-swedish +category TLCore +revision 23085 +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= + +name hyphen-thai +category TLCore +revision 30605 +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= + +name hyphen-turkish +category TLCore +revision 23085 +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. +depend hyphen-base +depend hyph-utf8 +execute AddHyphen name=turkish lefthyphenmin=2 righthyphenmin=2 file=loadhyph-tr.tex file_patterns=hyph-tr.pat.txt file_exceptions= +catalogue-ctan /language/hyphenation/tkhyph.tex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free + +name hyphen-turkmen +category TLCore +revision 25990 +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= + +name hyphen-ukrainian +category TLCore +revision 23085 +shortdesc Ukrainian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Ukrainian in T2A and UTF-8 encodings. +longdesc For 8-bit engines, the 'ukrhyph' package provides a number of +longdesc different pattern sets, as well as different (8-bit) encodings, +longdesc that can be chosen at format-generation time. The UTF-8 +longdesc version only provides the default pattern set. A mechanism +longdesc similar to the one used for 8-bit patterns may be implemented +longdesc in the future. +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= + +name hyphen-uppersorbian +category TLCore +revision 23085 +shortdesc Upper Sorbian hyphenation patterns. +relocated 1 +longdesc Hyphenation patterns for Upper Sorbian in T1/EC and UTF-8 +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 + +name hyphen-welsh +category TLCore +revision 23085 +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 + 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 +catalogue-license other-free +catalogue-version 696 + +name hyplain +category Package +revision 15878 +shortdesc Basic support for multiple languages in Plain TeX. +relocated 1 +longdesc The package offers a means to set up hyphenation suitable for +longdesc several languages and/or dialects, and to select them or switch +longdesc between them while typesetting. +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-ctan /macros/plain/contrib/hyplain +catalogue-date 2012-07-16 10:42:38 +0200 +catalogue-license pd +catalogue-version 1.0 + +name ibycus-babel +category Package +revision 15878 +shortdesc Use the Ibycus 4 Greek font with Babel +relocated 1 +longdesc The package allows you to use the Ibycus 4 font for ancient +longdesc Greek with Babel. It uses a Perl script to generate hyphenation +longdesc patterns for Ibycus from those for the ordinary Babel encoding, +longdesc cbgreek. It sets up ibycus as a pseudo-language you can specify +longdesc in the normal Babel manner. For proper hyphenation of Greek +longdesc quoted in mid-paragraph, you should use it with elatex (all +longdesc current distributions of LaTeX are built with e-TeX, so the +longdesc constraint should not be onerous). +runfiles size=3 + RELOC/tex/latex/ibycus-babel/ibycus.ldf + RELOC/tex/latex/ibycus-babel/lgienc.def + RELOC/tex/latex/ibycus-babel/lgifib.fd +docfiles size=21 + RELOC/doc/latex/ibycus-babel/README + RELOC/doc/latex/ibycus-babel/ibycus-babel-test.tex + RELOC/doc/latex/ibycus-babel/ibycus-babel.pdf + RELOC/doc/latex/ibycus-babel/ibyhyph.pl +srcfiles size=7 + RELOC/source/latex/ibycus-babel/ibycus-babel.dtx + RELOC/source/latex/ibycus-babel/ibycus-babel.ins +catalogue-ctan /language/greek/ibycus-babel +catalogue-date 2012-02-26 19:37:31 +0100 +catalogue-license lppl +catalogue-version 3.0 + +name ibygrk +category Package +revision 15878 +shortdesc Fonts and macros to typeset ancient Greek. +relocated 1 +longdesc Ibycus is a Greek typeface, based on Silvio Levy's realisation +longdesc of a classic Didot cut of Greek type from around 1800. The +longdesc fonts are available both as Metafont source and in Adobe Type 1 +longdesc format. This distribution of ibycus is accompanied by a set of +longdesc macro packages to use it with Plain TeX or LaTeX, but for use +longdesc with Babel, see the ibycus-babel package. +execute addMixedMap iby.map +runfiles size=109 + RELOC/fonts/afm/public/ibygrk/fibb84.afm + RELOC/fonts/afm/public/ibygrk/fibr84.afm + RELOC/fonts/enc/dvips/ibygrk/IbycusHTG.enc + RELOC/fonts/map/dvips/ibygrk/iby.map + RELOC/fonts/source/public/ibygrk/abary4.mf + RELOC/fonts/source/public/ibygrk/cigma4.mf + RELOC/fonts/source/public/ibygrk/digamma4.mf + RELOC/fonts/source/public/ibygrk/ebary4.mf + RELOC/fonts/source/public/ibygrk/fibb84.mf + RELOC/fonts/source/public/ibygrk/fibb848.mf + RELOC/fonts/source/public/ibygrk/fibb849.mf + RELOC/fonts/source/public/ibygrk/fibo84.mf + RELOC/fonts/source/public/ibygrk/fibo848.mf + RELOC/fonts/source/public/ibygrk/fibo849.mf + RELOC/fonts/source/public/ibygrk/fibr84.mf + RELOC/fonts/source/public/ibygrk/fibr848.mf + RELOC/fonts/source/public/ibygrk/fibr849.mf + RELOC/fonts/source/public/ibygrk/hbary4.mf + RELOC/fonts/source/public/ibygrk/ibary4.mf + RELOC/fonts/source/public/ibygrk/ibyacc4.mf + RELOC/fonts/source/public/ibygrk/ibycus4.map + RELOC/fonts/source/public/ibygrk/ibycus4.mf + RELOC/fonts/source/public/ibygrk/ibylig4.mf + RELOC/fonts/source/public/ibygrk/ibylwr4.mf + RELOC/fonts/source/public/ibygrk/ibypnct4.mf + RELOC/fonts/source/public/ibygrk/ibyupr4.mf + RELOC/fonts/source/public/ibygrk/koppa4.mf + RELOC/fonts/source/public/ibygrk/obary4.mf + RELOC/fonts/source/public/ibygrk/sampi4.mf + RELOC/fonts/source/public/ibygrk/ubary4.mf + RELOC/fonts/source/public/ibygrk/version4.mf + RELOC/fonts/source/public/ibygrk/wbary4.mf + RELOC/fonts/tfm/public/ibygrk/fibb84.tfm + RELOC/fonts/tfm/public/ibygrk/fibb848.tfm + RELOC/fonts/tfm/public/ibygrk/fibb849.tfm + RELOC/fonts/tfm/public/ibygrk/fibo84.tfm + RELOC/fonts/tfm/public/ibygrk/fibo848.tfm + RELOC/fonts/tfm/public/ibygrk/fibo849.tfm + RELOC/fonts/tfm/public/ibygrk/fibr84.tfm + RELOC/fonts/tfm/public/ibygrk/fibr848.tfm + RELOC/fonts/tfm/public/ibygrk/fibr849.tfm + RELOC/fonts/type1/public/ibygrk/fibb84.pfb + RELOC/fonts/type1/public/ibygrk/fibr84.pfb + RELOC/tex/generic/ibygrk/Uibycus.fd + RELOC/tex/generic/ibygrk/Uibycus4.fd + RELOC/tex/generic/ibygrk/iby4extr.tex + RELOC/tex/generic/ibygrk/ibycus4.map + RELOC/tex/generic/ibygrk/ibycus4.sty + RELOC/tex/generic/ibygrk/ibycus4.tex + RELOC/tex/generic/ibygrk/ibycusps.tex + RELOC/tex/generic/ibygrk/psibycus.sty + RELOC/tex/generic/ibygrk/pssetiby.tex + RELOC/tex/generic/ibygrk/setiby4.tex + RELOC/tex/generic/ibygrk/tlgsqq.tex + RELOC/tex/generic/ibygrk/version4.tex +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-license gpl +catalogue-version 4.5 + +name icsv +category Package +revision 15878 +shortdesc Class for typesetting articles for the ICSV conference. +relocated 1 +longdesc This is an ad-hoc class for typesetting articles for the ICSV +longdesc conference, based on the earler active-conf by the same author. +runfiles size=3 + RELOC/tex/latex/icsv/icsv.cls +docfiles size=58 + RELOC/doc/latex/icsv/README + RELOC/doc/latex/icsv/icsv-example.tex + RELOC/doc/latex/icsv/icsv.pdf +srcfiles size=10 + RELOC/source/latex/icsv/icsv.dtx + RELOC/source/latex/icsv/icsv.ins +catalogue-ctan /macros/latex/contrib/conferences/icsv +catalogue-date 2012-05-08 21:52:08 +0200 +catalogue-license lppl +catalogue-version 0.2 + +name idxcmds +category Package +revision 38115 +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 +docfiles size=105 + RELOC/doc/latex/idxcmds/README + RELOC/doc/latex/idxcmds/idxcmds_en.pdf + RELOC/doc/latex/idxcmds/idxcmds_en.tex +catalogue-ctan /macros/latex/contrib/idxcmds +catalogue-date 2015-08-13 13:06:19 +0200 +catalogue-license lppl1.3 +catalogue-topics index +catalogue-version 0.2c + +name idxlayout +category Package +revision 25821 +shortdesc Configurable index layout, responsive to KOMA-Script and memoir. +relocated 1 +longdesc The idxlayout package offers a key-value interface to configure +longdesc index layout parameters, e.g. allowing for three-column indexes +longdesc or for "parent" items and their affiliated subitems being +longdesc typeset as a single paragraph. The package is responsive to the +longdesc index-related options and commands of the KOMA-Script and +longdesc memoir classes. +runfiles size=2 + RELOC/tex/latex/idxlayout/idxlayout.sty +docfiles size=84 + RELOC/doc/latex/idxlayout/README + RELOC/doc/latex/idxlayout/idxlayout.pdf +srcfiles size=12 + RELOC/source/latex/idxlayout/idxlayout.dtx + RELOC/source/latex/idxlayout/idxlayout.ins +catalogue-ctan /macros/latex/contrib/idxlayout +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +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. +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 +docfiles size=86 + RELOC/doc/latex/ieeepes/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.tex + RELOC/doc/latex/ieeepes/ieeepes_skel.tex + RELOC/doc/latex/ieeepes/vk.eps +catalogue-ctan /macros/latex/contrib/ieeepes +catalogue-date 2011-10-06 15:17:32 +0200 +catalogue-license lppl +catalogue-version 4.0 + +name IEEEtran +category Package +revision 38238 +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. +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 + +name ifetex +category Package +revision 24853 +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 +longdesc package using \usepackage{ifetex} or in plain TeX using \input +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 +srcfiles size=3 + RELOC/source/latex/ifetex/ifetex.dtx + RELOC/source/latex/ifetex/ifetex.ins +catalogue-ctan /macros/latex/contrib/ifetex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name ifluatex +category Package +revision 26725 +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 + RELOC/doc/latex/oberdiek/test/ifluatex-test1.tex + RELOC/doc/latex/oberdiek/test/ifluatex-test2.tex + RELOC/doc/latex/oberdiek/test/ifluatex-test3.tex +srcfiles size=7 + RELOC/source/latex/oberdiek/ifluatex.dtx +catalogue-ctan /macros/latex/contrib/oberdiek/ifluatex.dtx +catalogue-date 2012-07-10 22:54:06 +0200 +catalogue-license lppl1.3 +catalogue-version 1.3 + +name ifmslide +category Package +revision 20727 +shortdesc Presentation slides for screen and printouts. +relocated 1 +longdesc This package is used to produce printed slides with LaTeX and +longdesc online presentations with pdfLaTeX. It is provided by the +longdesc 'Institute of Mechanics' (ifm) Univ. of Technology Darmstadt, +longdesc Germany. It is based on ideas of pdfslide, but completely +longdesc rewritten for compatibility with texpower and seminar. The +longdesc manual describes all functions and provides a sample. +runfiles size=211 + RELOC/tex/latex/ifmslide/aqua_ravines.eps + RELOC/tex/latex/ifmslide/aqua_ravines.jpg + RELOC/tex/latex/ifmslide/button1c.eps + RELOC/tex/latex/ifmslide/button1c.pdf + RELOC/tex/latex/ifmslide/button1e.eps + RELOC/tex/latex/ifmslide/button1e.pdf + RELOC/tex/latex/ifmslide/buttonec.eps + RELOC/tex/latex/ifmslide/buttonec.pdf + RELOC/tex/latex/ifmslide/buttonee.eps + RELOC/tex/latex/ifmslide/buttonee.pdf + RELOC/tex/latex/ifmslide/buttongc.eps + RELOC/tex/latex/ifmslide/buttongc.pdf + RELOC/tex/latex/ifmslide/buttonge.eps + RELOC/tex/latex/ifmslide/buttonge.pdf + RELOC/tex/latex/ifmslide/ifmlogoc.eps + RELOC/tex/latex/ifmslide/ifmlogoc.pdf + RELOC/tex/latex/ifmslide/ifmlogog.eps + RELOC/tex/latex/ifmslide/ifmlogog.pdf + RELOC/tex/latex/ifmslide/ifmslide.cfg + RELOC/tex/latex/ifmslide/ifmslide.sty + RELOC/tex/latex/ifmslide/liquid_helium.eps + RELOC/tex/latex/ifmslide/liquid_helium.jpg +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-ctan /macros/latex/contrib/ifmslide +catalogue-date 2015-01-19 21:19:14 +0100 +catalogue-license lppl1.2 +catalogue-version 0.47 + +name ifmtarg +category Package +revision 19363 +shortdesc If-then-else command for processing potentially empty arguments. +relocated 1 +runfiles size=1 + RELOC/tex/latex/ifmtarg/ifmtarg.sty +docfiles size=43 + RELOC/doc/latex/ifmtarg/README + RELOC/doc/latex/ifmtarg/ifmtarg.pdf +srcfiles size=3 + RELOC/source/latex/ifmtarg/ifmtarg.ins + RELOC/source/latex/ifmtarg/ifmtarg.tex +catalogue-ctan /macros/latex/contrib/ifmtarg +catalogue-date 2012-05-29 15:13:53 +0200 +catalogue-license lppl +catalogue-version 1.2a + +name ifnextok +category Package +revision 23379 +shortdesc Utility macro: peek ahead without ignoring spaces. +relocated 1 +longdesc The package deals with the behaviour of the LaTeX internal +longdesc command \@ifnextchar, which skips blank spaces. This has the +longdesc potential to surprise users, since it can produce really +longdesc unwanted effects. A common example occurs with brackets +longdesc starting a line following \\: the command looks for an optional +longdesc argument, whereas the user wants the brackets to be printed. +longdesc The package offers commands and options for modifying this +longdesc behaviour, maybe limited to certain parts of the document +longdesc source. +runfiles size=8 + RELOC/tex/latex/ifnextok/ifnextok.sty +docfiles size=70 + RELOC/doc/latex/ifnextok/README + RELOC/doc/latex/ifnextok/RELEASEs.txt + RELOC/doc/latex/ifnextok/SRCFILEs.txt + RELOC/doc/latex/ifnextok/ifnextok.pdf + RELOC/doc/latex/ifnextok/testIfNT.pdf +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 +catalogue-ctan /macros/latex/contrib/ifnextok +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.3 + +name ifoddpage +category Package +revision 23979 +shortdesc Determine if the current page is odd or even. +relocated 1 +longdesc The package provides an \ifoddpage conditional to determine if +longdesc the current page is odd or even. The macro \checkoddpage must +longdesc be used direct before to check the page number using a label. +longdesc Two compiler runs are therefore required to achieve correct +longdesc results. In addition, the conditional \ifoddpageoronside is +longdesc provided which is also true in oneside mode where all pages use +longdesc the odd page layout. +runfiles size=1 + RELOC/tex/latex/ifoddpage/ifoddpage.sty +docfiles size=34 + RELOC/doc/latex/ifoddpage/README + RELOC/doc/latex/ifoddpage/ifoddpage.pdf +srcfiles size=4 + RELOC/source/latex/ifoddpage/ifoddpage.dtx + RELOC/source/latex/ifoddpage/ifoddpage.ins +catalogue-ctan /macros/latex/contrib/ifoddpage +catalogue-date 2013-11-21 21:20:37 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name ifplatform +category Package +revision 21156 +shortdesc Conditionals to test which platform is being used. +relocated 1 +longdesc This package uses the (La)TeX extension -shell-escape to +longdesc establish whether the document is being processed on a Windows +longdesc or on a Unix-like system (Mac OS X, Linux, etc.), or on Cygwin +longdesc (Unix environment over a windows system). Booleans provided +longdesc are: \ifwindows, \iflinux, \ifmacosx and \ifcygwin. The package +longdesc also preserves the output of uname on a Unix-like system, which +longdesc may be used to distinguish between various classes of Unix +longdesc systems. +runfiles size=1 + RELOC/tex/latex/ifplatform/ifplatform.sty +docfiles size=38 + RELOC/doc/latex/ifplatform/README + RELOC/doc/latex/ifplatform/ifplatform.pdf +srcfiles size=5 + RELOC/source/latex/ifplatform/ifplatform.dtx + RELOC/source/latex/ifplatform/ifplatform.ins +catalogue-ctan /macros/latex/contrib/ifplatform +catalogue-date 2014-10-17 10:16:22 +0200 +catalogue-license lppl +catalogue-version 0.4 + +name ifsym +category Package +revision 24868 +shortdesc A collection of symbols. +relocated 1 +longdesc A set of symbol fonts, written in Metafont, offering +longdesc (respectively) clock-face symbols, geometrical symbols, weather +longdesc symbols, mountaineering symbols, electronic circuit symbols and +longdesc a set of miscellaneous symbols. A LaTeX package is provided, +longdesc that allows the user to load only those symbols needed in a +longdesc document. +runfiles size=46 + RELOC/fonts/source/public/ifsym/ifclk.gen + RELOC/fonts/source/public/ifsym/ifclk10.mf + RELOC/fonts/source/public/ifsym/ifclkb10.mf + RELOC/fonts/source/public/ifsym/ifgeo.gen + RELOC/fonts/source/public/ifsym/ifgeo10.mf + RELOC/fonts/source/public/ifsym/ifgeob10.mf + RELOC/fonts/source/public/ifsym/ifgeobn10.mf + RELOC/fonts/source/public/ifsym/ifgeobw10.mf + RELOC/fonts/source/public/ifsym/ifgeon10.mf + RELOC/fonts/source/public/ifsym/ifgeow10.mf + RELOC/fonts/source/public/ifsym/ifsym.gen + RELOC/fonts/source/public/ifsym/ifsym10.mf + RELOC/fonts/source/public/ifsym/ifsymb10.mf + RELOC/fonts/source/public/ifsym/ifsymbi10.mf + RELOC/fonts/source/public/ifsym/ifsymi10.mf + RELOC/fonts/source/public/ifsym/ifwea.gen + RELOC/fonts/source/public/ifsym/ifwea10.mf + RELOC/fonts/source/public/ifsym/ifweab10.mf + RELOC/fonts/tfm/public/ifsym/ifclk10.tfm + RELOC/fonts/tfm/public/ifsym/ifclkb10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeo10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeob10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeobn10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeobw10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeon10.tfm + RELOC/fonts/tfm/public/ifsym/ifgeow10.tfm + RELOC/fonts/tfm/public/ifsym/ifsym10.tfm + RELOC/fonts/tfm/public/ifsym/ifsymb10.tfm + RELOC/fonts/tfm/public/ifsym/ifsymbi10.tfm + RELOC/fonts/tfm/public/ifsym/ifsymi10.tfm + RELOC/fonts/tfm/public/ifsym/ifwea10.tfm + RELOC/fonts/tfm/public/ifsym/ifweab10.tfm + RELOC/tex/latex/ifsym/ifsym.sty + RELOC/tex/latex/ifsym/uifblk.fd + RELOC/tex/latex/ifsym/uifclk.fd + RELOC/tex/latex/ifsym/uifgeo.fd + RELOC/tex/latex/ifsym/uifsym.fd + RELOC/tex/latex/ifsym/uifwea.fd +docfiles size=161 + RELOC/doc/fonts/ifsym/ifsym.ps +catalogue-ctan /fonts/ifsym +catalogue-date 2014-05-08 15:40:26 +0200 +catalogue-license other-free + +name iftex +category Package +revision 29654 +shortdesc Am I running under pdfTeX, XeTeX or LuaTeX? +relocated 1 +longdesc The package, which works both for Plain TeX and for LaTeX, +longdesc defines the \ifPDFTeX, \ifXeTeX, and \ifLuaTeX conditionals for +longdesc testing which engine is being used for typesetting. The package +longdesc also provides the \RequirePDFTeX, \RequireXeTeX, and +longdesc \RequireLuaTeX commands which throw an error if pdfTeX, XeTeX +longdesc or LuaTeX (respectively) is not the engine in use. +runfiles size=1 + RELOC/tex/generic/iftex/iftex.sty +docfiles size=10 + RELOC/doc/generic/iftex/README + RELOC/doc/generic/iftex/iftex.pdf + RELOC/doc/generic/iftex/iftex.tex +catalogue-ctan /macros/latex/contrib/iftex +catalogue-date 2014-09-06 11:27:22 +0200 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name ifthenx +category Package +revision 25819 +shortdesc Extra tests for \ifthenelse. +relocated 1 +longdesc The package extends the ifthen package, providing extra +longdesc predicates for the package's \ifthenelse command. The package +longdesc is complementary to xifthen, in that they provide different +longdesc facilities; the two may be loaded in the same document, as long +longdesc as xifthen is loaded first. +runfiles size=3 + RELOC/tex/latex/ifthenx/ifthenx.sty +docfiles size=1 + RELOC/doc/latex/ifthenx/README +catalogue-ctan /macros/latex/contrib/ifthenx +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1a + +name ifxetex +category Package +revision 19685 +shortdesc Am I running under XeTeX? +relocated 1 +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 +docfiles size=42 + RELOC/doc/generic/ifxetex/README + RELOC/doc/generic/ifxetex/ifxetex.pdf +srcfiles size=3 + RELOC/source/generic/ifxetex/ifxetex.ins + RELOC/source/generic/ifxetex/ifxetex.tex +catalogue-ctan /macros/generic/ifxetex +catalogue-date 2012-03-06 15:23:45 +0100 +catalogue-license lppl +catalogue-version 0.5 + +name iitem +category Package +revision 29613 +shortdesc Multiple level of lists in one list-like environment. +relocated 1 +longdesc The package defines multiple level lists within one list-like +longdesc environment. instead of writing \begin{enumerate} \item 1 +longdesc \begin{enumerate} \item 2 \begin{enumerate} \item 3 +longdesc \begin{enumerate} \item 4 \end{enumerate} \end{enumerate} \item +longdesc 2.1 \end{enumerate} \item 1.1 \begin{enumerate} \item 2 +longdesc \end{enumerate} \end{enumerate} this package allows you to +longdesc write \begin{enumerate} \item 1 \iitem 2 \iiitem 3 \ivtem 4 +longdesc \iitem 2.1 \item 1.1 \iitem 2 \end{enumerate} +runfiles size=1 + RELOC/tex/latex/iitem/iitem.sty +docfiles size=94 + RELOC/doc/latex/iitem/README + RELOC/doc/latex/iitem/iitem.pdf +srcfiles size=4 + RELOC/source/latex/iitem/iitem.dtx + RELOC/source/latex/iitem/iitem.ins +catalogue-ctan /macros/latex/contrib/iitem +catalogue-date 2013-04-09 15:55:17 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name ijmart +category Package +revision 30958 +shortdesc LaTeX Class for the Israel Journal of Mathematics. +relocated 1 +longdesc The Israel Journal of Mathematics is published by The Hebrew +longdesc University Magnes Press. This class provides LaTeX support for +longdesc its authors and editors. It strives to achieve the distinct +longdesc "look and feel" of the journal, while having the interface +longdesc similar to that of the amsart document class. This will help +longdesc authors already familiar with amsart to easily submit +longdesc manuscripts for The Israel Journal of Mathematics or to put the +longdesc preprints in arXiv with minimal changes in the LaTeX source. +runfiles size=11 + RELOC/bibtex/bst/ijmart/ijmart.bst + RELOC/tex/latex/ijmart/ijmart.cls +docfiles size=252 + RELOC/doc/latex/ijmart/Makefile + RELOC/doc/latex/ijmart/README + RELOC/doc/latex/ijmart/ijmart.bib + RELOC/doc/latex/ijmart/ijmart.pdf + RELOC/doc/latex/ijmart/ijmsample.bib + RELOC/doc/latex/ijmart/ijmsample.pdf + RELOC/doc/latex/ijmart/ijmsample.tex +srcfiles size=15 + RELOC/source/latex/ijmart/ijmart.dtx + RELOC/source/latex/ijmart/ijmart.ins +catalogue-ctan /macros/latex/contrib/ijmart +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.7 + +name ijqc +category Package +revision 15878 +shortdesc BibTeX style file for the Intl. J. Quantum Chem. +relocated 1 +longdesc ijqc.bst is a BibTeX style file to support publication in +longdesc Wiley's International Journal of Quantum Chemistry. It is not +longdesc in any way officially endorsed by the publisher or editors, and +longdesc is provided without any warranty one could ever think of. +runfiles size=7 + RELOC/bibtex/bst/ijqc/ijqc.bst +docfiles size=39 + RELOC/doc/bibtex/ijqc/README + RELOC/doc/bibtex/ijqc/makefile + RELOC/doc/bibtex/ijqc/mybib.bib + RELOC/doc/bibtex/ijqc/xampl.pdf + RELOC/doc/bibtex/ijqc/xampl.tex +catalogue-ctan /biblio/bibtex/contrib/ijqc +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name imac +category Package +revision 17347 +shortdesc International Modal Analysis Conference format. +relocated 1 +longdesc A set of files for producing correctly formatted documents for +longdesc the International Modal Analysis Conference. The bundle +longdesc provides a LaTeX package and a BibTeX style file. +runfiles size=8 + RELOC/bibtex/bst/imac/imac.bst + RELOC/tex/latex/imac/imac.sty +docfiles size=36 + RELOC/doc/latex/imac/imac.bib + RELOC/doc/latex/imac/imac.pdf + RELOC/doc/latex/imac/imac.tex + RELOC/doc/latex/imac/readme.txt +catalogue-ctan /macros/latex/contrib/imac +catalogue-date 2012-05-29 15:13:53 +0200 +catalogue-license gpl + +name image-gallery +category Package +revision 15878 +shortdesc Create an overview of pictures from a digital camera or from other sources. +relocated 1 +longdesc The class may be used to create an overview of pictures from a +longdesc digital camera or from other sources. It is possible to adjust +longdesc the size of the pictures and all the margins. The example file +longdesc shows the usage. +runfiles size=2 + RELOC/tex/latex/image-gallery/image-gallery.cls +docfiles size=399 + RELOC/doc/latex/image-gallery/README + RELOC/doc/latex/image-gallery/gallery-example.pdf + RELOC/doc/latex/image-gallery/gallery-example.tex + RELOC/doc/latex/image-gallery/mypics.txt + RELOC/doc/latex/image-gallery/pic001.jpg + RELOC/doc/latex/image-gallery/pic002.jpg + RELOC/doc/latex/image-gallery/pic003.jpg + RELOC/doc/latex/image-gallery/pic004.jpg + RELOC/doc/latex/image-gallery/pic005.jpg + RELOC/doc/latex/image-gallery/pic006.jpg + RELOC/doc/latex/image-gallery/pic007.jpg + RELOC/doc/latex/image-gallery/pic008.jpg + RELOC/doc/latex/image-gallery/pic009.jpg + RELOC/doc/latex/image-gallery/pic010.jpg + RELOC/doc/latex/image-gallery/pic011.jpg + RELOC/doc/latex/image-gallery/pic012.jpg + RELOC/doc/latex/image-gallery/pic013.jpg + RELOC/doc/latex/image-gallery/pic014.jpg + RELOC/doc/latex/image-gallery/pic015.jpg + RELOC/doc/latex/image-gallery/pic016.jpg + RELOC/doc/latex/image-gallery/pic017.jpg + RELOC/doc/latex/image-gallery/pic018.jpg + RELOC/doc/latex/image-gallery/pic019.jpg + RELOC/doc/latex/image-gallery/pic020.jpg + RELOC/doc/latex/image-gallery/pic021.jpg + RELOC/doc/latex/image-gallery/pic022.jpg +catalogue-ctan /macros/latex/contrib/image-gallery +catalogue-date 2014-10-02 22:30:28 +0200 +catalogue-license lppl +catalogue-version v1.0j + +name imakeidx +category Package +revision 31166 +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 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 + RELOC/doc/latex/imakeidx/manifest.txt +srcfiles size=17 + RELOC/source/latex/imakeidx/imakeidx.dtx +catalogue-ctan /macros/latex/contrib/imakeidx +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.3a + +name impatient-cn +category Package +revision 35576 +relocated 1 +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/concepts.tex + RELOC/doc/plain/impatient-cn/config.tex + RELOC/doc/plain/impatient-cn/copyrght.tex + RELOC/doc/plain/impatient-cn/eplain.tex + RELOC/doc/plain/impatient-cn/eplain3.tex + RELOC/doc/plain/impatient-cn/errors.tex + RELOC/doc/plain/impatient-cn/examples.tex + RELOC/doc/plain/impatient-cn/fdl.tex + RELOC/doc/plain/impatient-cn/fonts.tex + RELOC/doc/plain/impatient-cn/frontm.tex + RELOC/doc/plain/impatient-cn/genops.tex + RELOC/doc/plain/impatient-cn/index.tex + RELOC/doc/plain/impatient-cn/macros.tex + RELOC/doc/plain/impatient-cn/math.tex + RELOC/doc/plain/impatient-cn/modes.tex + RELOC/doc/plain/impatient-cn/pages.tex + RELOC/doc/plain/impatient-cn/paras.tex + RELOC/doc/plain/impatient-cn/preface.tex + RELOC/doc/plain/impatient-cn/read1st.tex + RELOC/doc/plain/impatient-cn/tips.tex + RELOC/doc/plain/impatient-cn/usebook.tex + RELOC/doc/plain/impatient-cn/usermacs.tex + RELOC/doc/plain/impatient-cn/usingtex.tex + RELOC/doc/plain/impatient-cn/xeCJK-base.tex + RELOC/doc/plain/impatient-cn/xmptext.tex + +name impatient-fr +category Package +revision 15878 +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. +docfiles size=625 + RELOC/doc/plain/impatient-fr/README + 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.tex + RELOC/doc/plain/impatient-fr/fcapsule.tex + RELOC/doc/plain/impatient-fr/fconcept.tex + RELOC/doc/plain/impatient-fr/fcopyrgh.tex + RELOC/doc/plain/impatient-fr/fdl.tex + RELOC/doc/plain/impatient-fr/ferrors.tex + RELOC/doc/plain/impatient-fr/fexamples.tex + RELOC/doc/plain/impatient-fr/ffrontm.tex + RELOC/doc/plain/impatient-fr/fgenops.tex + RELOC/doc/plain/impatient-fr/fmacros.tex + RELOC/doc/plain/impatient-fr/fmath.tex + RELOC/doc/plain/impatient-fr/fmodes.tex + RELOC/doc/plain/impatient-fr/fonts.tex + RELOC/doc/plain/impatient-fr/fpages.tex + RELOC/doc/plain/impatient-fr/fparas.tex + RELOC/doc/plain/impatient-fr/fpreface.tex + RELOC/doc/plain/impatient-fr/fread1st.tex + RELOC/doc/plain/impatient-fr/ftips.tex + RELOC/doc/plain/impatient-fr/fusebook.tex + RELOC/doc/plain/impatient-fr/fusermacs.tex + RELOC/doc/plain/impatient-fr/fusingtex.tex + RELOC/doc/plain/impatient-fr/fxmptext.tex +catalogue-ctan /info/impatient +catalogue-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-license fdl + +name impnattypo +category Package +revision 36448 +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 +srcfiles size=10 + RELOC/source/latex/impnattypo/impnattypo.dtx + RELOC/source/latex/impnattypo/impnattypo.ins +catalogue-ctan /macros/latex/contrib/impnattypo +catalogue-date 2015-03-06 07:08:43 +0100 +catalogue-license lppl1.3 +catalogue-version 1.4 + +name import +category Package +revision 17361 +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 +docfiles size=64 + RELOC/doc/latex/import/import.pdf + RELOC/doc/latex/import/import.tex +catalogue-ctan /macros/latex/contrib/import +catalogue-date 2012-05-09 15:25:33 +0200 +catalogue-license pd +catalogue-version 5.1 + +name imsproc +category Package +revision 29803 +shortdesc Typeset IMS conference proceedings. +relocated 1 +longdesc The class typesets papers for IMS (Iranian Mathematical +longdesc Society) conference proceedings. The class uses the XePersian +longdesc package. +runfiles size=14 + RELOC/tex/xelatex/imsproc/imsproc.cls +docfiles size=19 + RELOC/doc/xelatex/imsproc/README + RELOC/doc/xelatex/imsproc/logo.JPG + RELOC/doc/xelatex/imsproc/sample-imsproc.tex +catalogue-ctan /macros/xetex/latex/imsproc +catalogue-date 2014-09-06 11:31:57 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name imtekda +category Package +revision 17667 +shortdesc IMTEK thesis class. +relocated 1 +longdesc The class permits typesetting of diploma, bachelor's and +longdesc master's theses for the Institute of Microsystem Technology +longdesc (IMTEK) at the University of Freiburg (Germany). The class is +longdesc based on the KOMA-Script class scrbook. Included in the +longdesc documentation is a large collection of useful tips for +longdesc typesetting theses and a list of recommended packages. +runfiles size=4 + RELOC/tex/latex/imtekda/IMTEKda.cls +docfiles size=208 + RELOC/doc/latex/imtekda/IMTEKda.pdf + RELOC/doc/latex/imtekda/README + 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 +srcfiles size=24 + RELOC/source/latex/imtekda/IMTEKda.dtx + RELOC/source/latex/imtekda/IMTEKda.ins +catalogue-ctan /macros/latex/contrib/imtekda +catalogue-date 2014-10-02 22:30:28 +0200 +catalogue-license lppl +catalogue-version 1.7 + +name incgraph +category Package +revision 36500 +shortdesc Sophisticated graphics inclusion in a PDF document. +relocated 1 +longdesc The package provides tools for including graphics at the full +longdesc size of the output medium, or for creating "pages" whose size +longdesc is that of the graphic they contain. A principal use case is +longdesc documents that require inclusion of (potentially many) scans or +longdesc photographs. Bookmarking is especially supported. The tool box +longdesc has basic macros and a 'convenience' user interface that wraps +longdesc \includegraphics. +runfiles size=4 + RELOC/tex/latex/incgraph/incgraph.sty +docfiles size=575 + RELOC/doc/latex/incgraph/CHANGES + RELOC/doc/latex/incgraph/README + RELOC/doc/latex/incgraph/exaimage-0001.png + RELOC/doc/latex/incgraph/exaimage-0037.png + RELOC/doc/latex/incgraph/exaimage-0123.png + RELOC/doc/latex/incgraph/example.jpg + RELOC/doc/latex/incgraph/incgraph-example-a.pdf + RELOC/doc/latex/incgraph/incgraph-example-a.tex + RELOC/doc/latex/incgraph/incgraph-example-b.pdf + RELOC/doc/latex/incgraph/incgraph-example-b.tex + RELOC/doc/latex/incgraph/incgraph-example-c.pdf + RELOC/doc/latex/incgraph/incgraph-example-c.tex + RELOC/doc/latex/incgraph/incgraph.pdf + RELOC/doc/latex/incgraph/incgraph.tex +catalogue-ctan /macros/latex/contrib/incgraph +catalogue-date 2015-03-12 20:31:50 +0100 +catalogue-license lppl1.3 +catalogue-version 1.12 + +name inconsolata +category Package +revision 36009 +shortdesc A monospaced font, with support files for use with TeX. +relocated 1 +longdesc Inconsolata is a monospaced font designed by Raph Levien. This +longdesc package contains the font (in both Adobe Type 1 and OpenType +longdesc formats) in regular and bold weights, with additional glyphs +longdesc and options to control slashed zero, upright quotes and a +longdesc shapelier lower-case L, plus metric files for use with TeX, and +longdesc LaTeX font definition and other relevant files. +execute addMap zi4.map +runfiles size=183 + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-0.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-1.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-2.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-3.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-4.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-5.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-6.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ly1-7.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-0.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-1.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-2.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-3.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-4.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-5.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-6.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ot1-7.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-0.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-1.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-2.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-3.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-4.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-5.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-6.enc + RELOC/fonts/enc/dvips/inconsolata/i4-qx-7.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-0.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-1.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-2.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-3.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-4.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-5.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-6.enc + RELOC/fonts/enc/dvips/inconsolata/i4-t1-7.enc + RELOC/fonts/enc/dvips/inconsolata/i4-ts1.enc + RELOC/fonts/map/dvips/inconsolata/zi4.map + RELOC/fonts/opentype/public/inconsolata/Inconsolatazi4-Bold.otf + RELOC/fonts/opentype/public/inconsolata/Inconsolatazi4-Regular.otf + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-0.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-1.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-2.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-3.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-4.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-5.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-6.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-0.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-1.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-2.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-3.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-4.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-5.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-6.tfm + RELOC/fonts/tfm/public/inconsolata/ly1-zi4r-7.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-0.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-1.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-2.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-3.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-4.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-5.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-6.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-0.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-1.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-2.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-3.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-4.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-5.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-6.tfm + RELOC/fonts/tfm/public/inconsolata/ot1-zi4r-7.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-0.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-1.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-2.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-3.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-4.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-5.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-6.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-0.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-1.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-2.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-3.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-4.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-5.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-6.tfm + RELOC/fonts/tfm/public/inconsolata/qx-zi4r-7.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-0.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-1.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-2.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-3.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-4.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-5.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-6.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4b-7.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-0.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-1.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-2.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-3.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-4.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-5.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-6.tfm + RELOC/fonts/tfm/public/inconsolata/t1-zi4r-7.tfm + RELOC/fonts/tfm/public/inconsolata/ts1-zi4b.tfm + RELOC/fonts/tfm/public/inconsolata/ts1-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/tex/latex/inconsolata/inconsolata.sty + 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-ctan /fonts/inconsolata +catalogue-date 2014-06-23 06:08:55 +0200 +catalogue-license ofl +catalogue-version 1.05 + +name index +category Package +revision 24099 +shortdesc Extended index for LaTeX including multiple indexes. +relocated 1 +longdesc This is a reimplementation of LaTeX's indexing macros to +longdesc provide better support for indexing. For example, it supports +longdesc multiple indexes in a single document and provides a more +longdesc robust \index command. It supplies short hand notations for the +longdesc \index command (^{word}) and a * variation of \index +longdesc (abbreviated _{word}) that prints the word being indexed, as +longdesc well as creating an index entry for it. +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 +docfiles size=63 + RELOC/doc/latex/index/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/plaintst.tex + RELOC/doc/latex/index/sample.tex + RELOC/doc/latex/index/test.bib +srcfiles size=14 + RELOC/source/latex/index/index.dtx + RELOC/source/latex/index/index.ins +catalogue-ctan /macros/latex/contrib/index +catalogue-date 2012-06-03 13:48:34 +0200 +catalogue-license other-free +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 + RELOC/doc/latex/indextools/latexmkrc + RELOC/doc/latex/indextools/makefile +srcfiles size=18 + RELOC/source/latex/indextools/indextools.dtx +catalogue-ctan /macros/latex/contrib/indextools +catalogue-date 2015-01-25 12:29:54 +0100 +catalogue-license lppl1.3 +catalogue-version 1.4 + +name initials +category Package +revision 15878 +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. +execute addMap Acorn.map +execute addMap AnnSton.map +execute addMap ArtNouv.map +execute addMap ArtNouvc.map +execute addMap Carrickc.map +execute addMap Eichenla.map +execute addMap Eileen.map +execute addMap EileenBl.map +execute addMap Elzevier.map +execute addMap GotIn.map +execute addMap GoudyIn.map +execute addMap Kinigcap.map +execute addMap Konanur.map +execute addMap Kramer.map +execute addMap MorrisIn.map +execute addMap Nouveaud.map +execute addMap Romantik.map +execute addMap Rothdn.map +execute addMap RoyalIn.map +execute addMap Sanremo.map +execute addMap Starburst.map +execute addMap Typocaps.map +execute addMap Zallman.map +runfiles size=898 + RELOC/dvips/initials/config.Acorn + RELOC/dvips/initials/config.AnnSton + RELOC/dvips/initials/config.ArtNouv + RELOC/dvips/initials/config.ArtNouvc + RELOC/dvips/initials/config.Carrickc + RELOC/dvips/initials/config.Eichenla + RELOC/dvips/initials/config.Eileen + RELOC/dvips/initials/config.EileenBl + RELOC/dvips/initials/config.Elzevier + RELOC/dvips/initials/config.GotIn + RELOC/dvips/initials/config.GoudyIn + RELOC/dvips/initials/config.Kinigcap + RELOC/dvips/initials/config.Konanur + RELOC/dvips/initials/config.Kramer + RELOC/dvips/initials/config.MorrisIn + RELOC/dvips/initials/config.Nouveaud + RELOC/dvips/initials/config.Romantik + RELOC/dvips/initials/config.Rothdn + RELOC/dvips/initials/config.RoyalIn + RELOC/dvips/initials/config.Sanremo + RELOC/dvips/initials/config.Starburst + RELOC/dvips/initials/config.Typocaps + RELOC/dvips/initials/config.Zallman + RELOC/fonts/afm/public/initials/Acorn.afm + RELOC/fonts/afm/public/initials/AnnSton.afm + RELOC/fonts/afm/public/initials/ArtNouv.afm + RELOC/fonts/afm/public/initials/ArtNouvc.afm + RELOC/fonts/afm/public/initials/Carrickc.afm + RELOC/fonts/afm/public/initials/Eichenla.afm + RELOC/fonts/afm/public/initials/Eileen.afm + RELOC/fonts/afm/public/initials/EileenBl.afm + RELOC/fonts/afm/public/initials/Elzevier.afm + RELOC/fonts/afm/public/initials/GotIn.afm + RELOC/fonts/afm/public/initials/GoudyIn.afm + RELOC/fonts/afm/public/initials/Kinigcap.afm + RELOC/fonts/afm/public/initials/Konanur.afm + RELOC/fonts/afm/public/initials/Kramer.afm + RELOC/fonts/afm/public/initials/MorrisIn.afm + RELOC/fonts/afm/public/initials/Nouveaud.afm + RELOC/fonts/afm/public/initials/Romantik.afm + RELOC/fonts/afm/public/initials/Rothdn.afm + RELOC/fonts/afm/public/initials/RoyalIn.afm + RELOC/fonts/afm/public/initials/Sanremo.afm + RELOC/fonts/afm/public/initials/Starburst.afm + RELOC/fonts/afm/public/initials/Typocaps.afm + RELOC/fonts/afm/public/initials/Zallman.afm + RELOC/fonts/map/dvips/initials/Acorn.map + RELOC/fonts/map/dvips/initials/AnnSton.map + RELOC/fonts/map/dvips/initials/ArtNouv.map + RELOC/fonts/map/dvips/initials/ArtNouvc.map + RELOC/fonts/map/dvips/initials/Carrickc.map + RELOC/fonts/map/dvips/initials/Eichenla.map + RELOC/fonts/map/dvips/initials/Eileen.map + RELOC/fonts/map/dvips/initials/EileenBl.map + RELOC/fonts/map/dvips/initials/Elzevier.map + RELOC/fonts/map/dvips/initials/GotIn.map + RELOC/fonts/map/dvips/initials/GoudyIn.map + RELOC/fonts/map/dvips/initials/Kinigcap.map + RELOC/fonts/map/dvips/initials/Konanur.map + RELOC/fonts/map/dvips/initials/Kramer.map + RELOC/fonts/map/dvips/initials/MorrisIn.map + RELOC/fonts/map/dvips/initials/Nouveaud.map + RELOC/fonts/map/dvips/initials/Romantik.map + RELOC/fonts/map/dvips/initials/Rothdn.map + RELOC/fonts/map/dvips/initials/RoyalIn.map + RELOC/fonts/map/dvips/initials/Sanremo.map + RELOC/fonts/map/dvips/initials/Starburst.map + RELOC/fonts/map/dvips/initials/Typocaps.map + RELOC/fonts/map/dvips/initials/Zallman.map + RELOC/fonts/tfm/public/initials/Acorn.tfm + RELOC/fonts/tfm/public/initials/AnnSton.tfm + RELOC/fonts/tfm/public/initials/ArtNouv.tfm + RELOC/fonts/tfm/public/initials/ArtNouvc.tfm + RELOC/fonts/tfm/public/initials/Carrickc.tfm + RELOC/fonts/tfm/public/initials/Eichenla.tfm + RELOC/fonts/tfm/public/initials/Eileen.tfm + RELOC/fonts/tfm/public/initials/EileenBl.tfm + RELOC/fonts/tfm/public/initials/Elzevier.tfm + RELOC/fonts/tfm/public/initials/GotIn.tfm + RELOC/fonts/tfm/public/initials/GoudyIn.tfm + RELOC/fonts/tfm/public/initials/Kinigcap.tfm + RELOC/fonts/tfm/public/initials/Konanur.tfm + RELOC/fonts/tfm/public/initials/Kramer.tfm + RELOC/fonts/tfm/public/initials/MorrisIn.tfm + RELOC/fonts/tfm/public/initials/Nouveaud.tfm + RELOC/fonts/tfm/public/initials/Romantik.tfm + RELOC/fonts/tfm/public/initials/Rothdn.tfm + RELOC/fonts/tfm/public/initials/RoyalIn.tfm + RELOC/fonts/tfm/public/initials/Sanremo.tfm + RELOC/fonts/tfm/public/initials/Starburst.tfm + RELOC/fonts/tfm/public/initials/Typocaps.tfm + RELOC/fonts/tfm/public/initials/Zallman.tfm + RELOC/fonts/type1/public/initials/Acorn.pfb + RELOC/fonts/type1/public/initials/AnnSton.pfb + RELOC/fonts/type1/public/initials/ArtNouv.pfb + RELOC/fonts/type1/public/initials/ArtNouvc.pfb + RELOC/fonts/type1/public/initials/Carrickc.pfb + RELOC/fonts/type1/public/initials/Eichenla.pfb + RELOC/fonts/type1/public/initials/Eileen.pfb + RELOC/fonts/type1/public/initials/EileenBl.pfb + RELOC/fonts/type1/public/initials/Elzevier.pfb + RELOC/fonts/type1/public/initials/GotIn.pfb + RELOC/fonts/type1/public/initials/GoudyIn.pfb + RELOC/fonts/type1/public/initials/Kinigcap.pfb + RELOC/fonts/type1/public/initials/Konanur.pfb + RELOC/fonts/type1/public/initials/Kramer.pfb + RELOC/fonts/type1/public/initials/MorrisIn.pfb + RELOC/fonts/type1/public/initials/Nouveaud.pfb + RELOC/fonts/type1/public/initials/Romantik.pfb + RELOC/fonts/type1/public/initials/Rothdn.pfb + RELOC/fonts/type1/public/initials/RoyalIn.pfb + RELOC/fonts/type1/public/initials/Sanremo.pfb + RELOC/fonts/type1/public/initials/Starburst.pfb + RELOC/fonts/type1/public/initials/Typocaps.pfb + RELOC/fonts/type1/public/initials/Zallman.pfb + RELOC/tex/latex/initials/Acorn.fd + RELOC/tex/latex/initials/AnnSton.fd + RELOC/tex/latex/initials/ArtNouv.fd + RELOC/tex/latex/initials/ArtNouvc.fd + RELOC/tex/latex/initials/Carrickc.fd + RELOC/tex/latex/initials/Eichenla.fd + RELOC/tex/latex/initials/Eileen.fd + RELOC/tex/latex/initials/EileenBl.fd + RELOC/tex/latex/initials/Elzevier.fd + RELOC/tex/latex/initials/GotIn.fd + RELOC/tex/latex/initials/GoudyIn.fd + RELOC/tex/latex/initials/Kinigcap.fd + RELOC/tex/latex/initials/Konanur.fd + RELOC/tex/latex/initials/Kramer.fd + RELOC/tex/latex/initials/MorrisIn.fd + RELOC/tex/latex/initials/Nouveaud.fd + RELOC/tex/latex/initials/Romantik.fd + RELOC/tex/latex/initials/Rothdn.fd + RELOC/tex/latex/initials/RoyalIn.fd + RELOC/tex/latex/initials/Sanremo.fd + RELOC/tex/latex/initials/Starburst.fd + RELOC/tex/latex/initials/Typocaps.fd + RELOC/tex/latex/initials/Zallman.fd +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-license lppl + +name inlinebib +category Package +revision 22018 +shortdesc Citations in footnotes. +relocated 1 +longdesc A BibTeX style and a LaTeX package that allow for a full +longdesc bibliography at the end of the document as well as citation +longdesc details in footnotes. The footnote details include "op. cit." +longdesc and "ibid." contractions. +runfiles size=8 + RELOC/bibtex/bst/inlinebib/inlinebib.bst + RELOC/tex/latex/inlinebib/inlinebib.sty + RELOC/tex/latex/inlinebib/pageranges.sty +docfiles size=10 + RELOC/doc/bibtex/inlinebib/MANIFEST + RELOC/doc/bibtex/inlinebib/inlinebib.htm + RELOC/doc/bibtex/inlinebib/inlinebib.txt + RELOC/doc/bibtex/inlinebib/inlinebib1.gif + RELOC/doc/bibtex/inlinebib/inlinebib2.gif +catalogue-ctan /biblio/bibtex/contrib/inlinebib +catalogue-date 2012-06-18 18:51:38 +0200 +catalogue-license lppl + +name inlinedef +category Package +revision 15878 +shortdesc Inline expansions within definitions. +relocated 1 +longdesc The package provides a macro \Inline that precedes a \def or +longdesc \gdef. Within the definition text of an inlined definition, +longdesc keywords such as \Expand may be used to selectively inline +longdesc certain expansions at definition-time. This eases the process +longdesc of redefining macros in terms of the original definition, as +longdesc well as definitions in which the token that must be expanded is +longdesc deep within, where \expandafter would be difficult and \edef is +longdesc not suitable. Another application is as an easier version of +longdesc \aftergroup, by defining a macro in terms of expanded local +longdesc variables, then ending the group with +longdesc \expandafter\endgroup\macro. +runfiles size=3 + RELOC/tex/latex/inlinedef/inlinedef.sty +docfiles size=42 + RELOC/doc/latex/inlinedef/README + RELOC/doc/latex/inlinedef/inlinedef.pdf + RELOC/doc/latex/inlinedef/inlinetest.tex +srcfiles size=11 + RELOC/source/latex/inlinedef/inlinedef.dtx + RELOC/source/latex/inlinedef/inlinedef.ins +catalogue-ctan /macros/latex/contrib/inlinedef +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name inputtrc +category Package +revision 28019 +shortdesc Trace which file loads which. +relocated 1 +longdesc The package produces screen/log messages of the form '<current> +longdesc INPUTTING <next>' reporting LaTeX input commands (<current> and +longdesc <next> being file names). The message is indented to reflect +longdesc the level of input nesting. Tracing may be turned on and off, +longdesc and the unit of indentation may be adjusted. The implementation +longdesc somewhat resembles those of packages FiNK and inputfile. +runfiles size=3 + RELOC/tex/latex/inputtrc/inputtrc.RLS + RELOC/tex/latex/inputtrc/inputtrc.sty +docfiles size=95 + RELOC/doc/latex/inputtrc/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 +srcfiles size=8 + RELOC/source/latex/inputtrc/README.tex + RELOC/source/latex/inputtrc/inputtrc.tex + RELOC/source/latex/inputtrc/srcfiles.tex +catalogue-ctan /macros/latex/contrib/inputtrc +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.3 + +name insbox +category Package +revision 34299 +shortdesc Insert pictures/boxes into paragraphs. +relocated 1 +longdesc The package provides convenient bundling of the \parshape +longdesc primitive. LaTeX users should note that this is a generic +longdesc package, and should be loaded using \input . +runfiles size=2 + RELOC/tex/generic/insbox/insbox.tex +docfiles size=26 + RELOC/doc/generic/insbox/demo.pdf + RELOC/doc/generic/insbox/demo.tex + RELOC/doc/generic/insbox/pic1.eps + RELOC/doc/generic/insbox/pic2.eps +catalogue-ctan /macros/generic/insbox +catalogue-date 2014-06-13 18:25:15 +0200 +catalogue-license pd +catalogue-version 2.2 + +name installfont +category Package +revision 31205 +shortdesc A bash script for installing a LaTeX font family. +longdesc With this script you can install a LaTeX font family +longdesc (PostScript Type 1, TrueType and OpenType formats are +longdesc supported). Font series from light to ultra bold, and (faked) +longdesc small caps and (faked) slanted shapes are supported, but not +longdesc expert fonts. The script will rename the fonts automatically +longdesc (optional) or will otherwise expect the *.afm files and the +longdesc font files (in PostScript Type1 format) named in the Karl Berry +longdesc scheme (e.g. 5bbr8a.pfb). After running the script, you should +longdesc have a working font installation in your local TeX tree. +depend installfont.ARCH +runfiles size=5 + texmf-dist/scripts/installfont/installfont-tl +docfiles size=24 + texmf-dist/doc/support/installfont/LICENSE + texmf-dist/doc/support/installfont/README + texmf-dist/doc/support/installfont/installfont + texmf-dist/doc/support/installfont/installfont.pdf + texmf-dist/doc/support/installfont/installfont.tex + texmf-dist/doc/support/installfont/manifest.txt +catalogue-ctan /support/installfont +catalogue-date 2013-07-15 19:52:10 +0200 +catalogue-license lppl +catalogue-version v1.7 + +name interactiveworkbook +category Package +revision 15878 +shortdesc LaTeX-based interactive PDF on the Web. +relocated 1 +longdesc The package interactiveworkbook gives the user the ability to +longdesc write LaTeX documents which, ultimately, create interactive +longdesc question-and-answer Portable Document Format (PDF) tutorials +longdesc meant to be used by Internet students and that, in particular, +longdesc freely use mathematical notation. +runfiles size=17 + RELOC/tex/latex/interactiveworkbook/interactiveworkbook-web.sty + RELOC/tex/latex/interactiveworkbook/interactiveworkbook.sty +docfiles size=242 + RELOC/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.pdf + RELOC/doc/latex/interactiveworkbook/documentation/interactiveworkbookmanual.tex + RELOC/doc/latex/interactiveworkbook/epsfiles/WS_FTP.LOG + RELOC/doc/latex/interactiveworkbook/epsfiles/buttonappearance.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/checkclear.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/checksubmit.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques1.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques10.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques11.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques12.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques13.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques14.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques15.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques16.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques17.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques18.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques19.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques2.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques20.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques3.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques4.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques5.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques6.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques7.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques8.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/exerques9.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/fieldclear.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/fieldsubmit.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/ndex.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/next.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonecheckfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonecheckfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonecheckone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonecheckthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonechecktwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonefieldtwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopupfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopupfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopupone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopupthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageonepopuptwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradiofive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradiofour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradioone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradiothree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pageoneradiotwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreecheckfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreecheckfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreecheckone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreecheckthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreechecktwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreefieldtwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopupfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopupfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopupone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopupthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreepopuptwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradiofive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradiofour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradioone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradiothree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagethreeradiotwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwocheckfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwocheckfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwocheckone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwocheckthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwochecktwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwofieldtwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopupfive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopupfour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopupone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopupthree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetwopopuptwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadiofive.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadiofour.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadioone.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadiothree.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/pagetworadiotwo.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/popupclear.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/popupsubmit.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/prev.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/radioclear.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/radiosubmit.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/return.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/rightcheckcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/rightfieldcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/rightpopupcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/rightradiocorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/wrongcheckcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/wrongfieldcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/wrongpopupcorrect.eps + RELOC/doc/latex/interactiveworkbook/epsfiles/wrongradiocorrect.eps + RELOC/doc/latex/interactiveworkbook/samplefiles/check.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/check.tex + RELOC/doc/latex/interactiveworkbook/samplefiles/field.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/field.tex + RELOC/doc/latex/interactiveworkbook/samplefiles/ndex.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/ndex.tex + RELOC/doc/latex/interactiveworkbook/samplefiles/popup.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/popup.tex + RELOC/doc/latex/interactiveworkbook/samplefiles/radio.pdf + RELOC/doc/latex/interactiveworkbook/samplefiles/radio.tex +catalogue-ctan /macros/latex/contrib/interactiveworkbook +catalogue-date 2012-07-16 16:30:40 +0200 +catalogue-license lppl + +name interchar +category Package +revision 36312 +shortdesc Managing character class schemes in XeTeX +relocated 1 +longdesc The package manages character class schemes of XeTeX. Using +longdesc this package, you may switch among different character class +longdesc schemes. Migration commands are provided for make packages +longdesc using this mechanism compatible with each others. +runfiles size=6 + RELOC/tex/xelatex/interchar/interchar.sty +docfiles size=29 + RELOC/doc/xelatex/interchar/README + RELOC/doc/xelatex/interchar/interchar.pdf + 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 +catalogue-ctan /macros/xetex/latex/interchar +catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name interfaces +category Package +revision 21474 +shortdesc Set parameters for other packages, conveniently. +relocated 1 +longdesc The package provides a small number of convenient macros that +longdesc access features in other frequently-used packages, or provide +longdesc interfaces to other useful facilities such as the pdfTeX +longdesc \pdfelapsedtime primitive. Most of these macros use pgfkeys to +longdesc provide a key-value syntax. The package also uses the package +longdesc scrlfile from the Koma-Script bundle (for controlled loading of +longdesc other files) and etoolbox. The package is bundled with 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. +runfiles size=60 + RELOC/tex/latex/interfaces/interfaces-LaTeX.sty + RELOC/tex/latex/interfaces/interfaces-appendix.sty + RELOC/tex/latex/interfaces/interfaces-base.sty + RELOC/tex/latex/interfaces/interfaces-bookmark.sty + RELOC/tex/latex/interfaces/interfaces-embedfile.sty + RELOC/tex/latex/interfaces/interfaces-enumitem.sty + RELOC/tex/latex/interfaces/interfaces-environ.sty + RELOC/tex/latex/interfaces/interfaces-etoolbox.sty + RELOC/tex/latex/interfaces/interfaces-fancyhdr.sty + RELOC/tex/latex/interfaces/interfaces-hypbmsec.sty + RELOC/tex/latex/interfaces/interfaces-hyperref.sty + RELOC/tex/latex/interfaces/interfaces-makecell.sty + RELOC/tex/latex/interfaces/interfaces-marks.sty + RELOC/tex/latex/interfaces/interfaces-pgfkeys.sty + RELOC/tex/latex/interfaces/interfaces-scrlfile.sty + RELOC/tex/latex/interfaces/interfaces-tikz.sty + RELOC/tex/latex/interfaces/interfaces-titlesec.sty + RELOC/tex/latex/interfaces/interfaces-tocloft.sty + RELOC/tex/latex/interfaces/interfaces-truncate.sty + RELOC/tex/latex/interfaces/interfaces-umrand.sty + RELOC/tex/latex/interfaces/interfaces.sty +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-license lppl1.3 +catalogue-version 3.1 + +name interpreter +category Package +revision 27232 +shortdesc Translate input files on the fly. +relocated 1 +longdesc The package preprocesses input files to a Lua(La)TeX run, on +longdesc the fly. The user defines Lua regular expressions to search for +longdesc patterns and modify input lines (or entire paragraphs) +longdesc accordingly, before TeX reads the material. In this way, +longdesc documents may be prepared in a non-TeX language (e.g., some +longdesc lightweight markup language) and turned into 'proper' TeX for +longdesc processing. The source of the documentation is typed in such a +longdesc lightweight language and is thus easily readable in a text +longdesc editor (the PDF file is also available, of course); the +longdesc transformation to TeX syntax via Interpreter's functions is +longdesc explained in the documentation itself. Interpreter is +longdesc implemented using the author's gates (lua version), and works +longdesc for plain TeX and LaTeX, but not ConTeXt. +runfiles size=8 + RELOC/tex/luatex/interpreter/interpreter.lua + RELOC/tex/luatex/interpreter/interpreter.sty + RELOC/tex/luatex/interpreter/interpreter.tex +docfiles size=41 + RELOC/doc/luatex/interpreter/README + RELOC/doc/luatex/interpreter/i-doc.lua + RELOC/doc/luatex/interpreter/interpreter-doc.pdf + RELOC/doc/luatex/interpreter/interpreter-doc.tex + RELOC/doc/luatex/interpreter/interpreter-doc.txt +catalogue-ctan /macros/luatex/generic/interpreter +catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name interval +category Package +revision 34840 +shortdesc Format mathematical intervals, ensuring proper spacing. +relocated 1 +longdesc When typing an open interval as $]a,b[$, a closing bracket is +longdesc being used in place of an opening fence and vice versa. This +longdesc leads to the wrong spacing in, say, $]-a,b[$ or $A\in]a,b[=B$. +longdesc The package attempts to solve this using: \interval{a}{b} -> +longdesc [a,b] \interval[open]{a}{b} -> ]a,b[ \interval[open left]{a}{b} +longdesc -> ]a,b] The package also supports fence scaling and ensures +longdesc that the enclosing fences will end up having the proper closing +longdesc and opening types. TeX maths does not do this job properly. +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-license lppl1.3 +catalogue-version 0.3 + +name intro-scientific +category Package +revision 15878 +shortdesc Introducing scientific/mathematical documents using LaTeX. +relocated 1 +longdesc "Writing Scientific Documents Using LaTeX" is an article +longdesc introducing the use of LaTeX in typesetting scientific +longdesc documents. It covers the basics of creating a new LaTeX +longdesc document, special typesetting considerations, mathematical +longdesc typesetting and graphics. It also touches on bibliographic data +longdesc and BibTeX. +docfiles size=113 + RELOC/doc/latex/intro-scientific/Makefile + RELOC/doc/latex/intro-scientific/README + RELOC/doc/latex/intro-scientific/earth-moon.pdf + RELOC/doc/latex/intro-scientific/scidoc.pdf + RELOC/doc/latex/intro-scientific/scidoc.tex +catalogue-ctan /info/intro-scientific +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 5th edition + +name inversepath +category Package +revision 15878 +shortdesc Calculate inverse file paths. +relocated 1 +longdesc The package calculates inverse relative paths. Such things may +longdesc be useful, for example, when writing an auxiliary file to a +longdesc different directory. +runfiles size=1 + RELOC/tex/latex/inversepath/inversepath.sty +docfiles size=21 + RELOC/doc/latex/inversepath/README + RELOC/doc/latex/inversepath/inversepath.pdf +srcfiles size=4 + RELOC/source/latex/inversepath/inversepath.dtx + RELOC/source/latex/inversepath/inversepath.ins +catalogue-ctan /macros/latex/contrib/inversepath +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name invoice +category Package +revision 31579 +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 + RELOC/doc/latex/invoice/invoice.tex +catalogue-ctan /macros/latex/contrib/invoice +catalogue-date 2011-10-06 12:43:40 +0200 +catalogue-license gpl + +name ionumbers +category Package +revision 33457 +shortdesc Restyle numbers in maths mode. +relocated 1 +longdesc 'ionumbers' stands for 'input/output numbers'. The package +longdesc restyles numbers in maths mode. If a number in the input file +longdesc is written, e.g., as $3,231.44$ as commonly used in English +longdesc texts, the package is able to restyle it to be output as +longdesc $3\,231{,}44$ as commonly used in German texts (and vice +longdesc versa). This may be useful, for example, if you have a large +longdesc table and want to include it in texts with different output +longdesc conventions without the need to change the table. The package +longdesc can also automatically group digits left of the decimal +longdesc separator (thousands) and right of the decimal separator +longdesc (thousandths) in triplets without the need of specifing commas +longdesc (English) or points (German) as separators. E.g., the input +longdesc $1234.567890$ can be output as $1\,234.\,567\,890$. Finally, an +longdesc e starts the exponent of the number. For example, $21e6$ may be +longdesc output as $26\times10\,^{6}$. +runfiles size=7 + RELOC/tex/latex/ionumbers/ionumbers.sty +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/ionumbers_test.pdf + RELOC/doc/latex/ionumbers/ionumbers_test.tex +srcfiles size=16 + RELOC/source/latex/ionumbers/ionumbers.dtx + RELOC/source/latex/ionumbers/ionumbers.ins +catalogue-ctan /macros/latex/contrib/ionumbers +catalogue-date 2014-04-15 20:08:53 +0200 +catalogue-license gpl +catalogue-version 0.3.3 + +name iopart-num +category Package +revision 15878 +shortdesc Numeric citation style for IOP journals. +relocated 1 +longdesc A BibTeX style providing numeric citation in Harvard-like +longdesc format. Intended for use with Institute of Physics (IOP) +longdesc journals, including Journal of Physics. +runfiles size=9 + RELOC/bibtex/bst/iopart-num/iopart-num.bst +docfiles size=21 + RELOC/doc/bibtex/iopart-num/README + RELOC/doc/bibtex/iopart-num/iopart-num.bib + RELOC/doc/bibtex/iopart-num/iopart-num.pdf + RELOC/doc/bibtex/iopart-num/iopart-num.tex +catalogue-ctan /biblio/bibtex/contrib/iopart-num +catalogue-date 2012-04-09 12:10:14 +0200 +catalogue-license lppl +catalogue-version 2.1 + +name ipaex +category Package +revision 35583 +shortdesc IPA and IPAex fonts from Information-technology Promotion Agency, Japan. +relocated 1 +longdesc The fonts provide fixed-width glyphs for Kana and Kanji +longdesc characters, proportional width glyphs for Western characters. +runfiles size=10379 + 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-ctan /fonts/ipaex +catalogue-date 2014-11-14 13:18:39 +0100 +catalogue-license other-free + +name ipaex-type1 +category Package +revision 31927 +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 + RELOC/fonts/map/dvips/ipaex-type1/ipaex-type1.map + 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-u03.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u04.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u1e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u1f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u20.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u21.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u22.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u23.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u24.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u25.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u26.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u27.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u29.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u2e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u2f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u30.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u31.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u32.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u33.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u34.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u35.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u36.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u37.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u38.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u39.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u3f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u40.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u41.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u42.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u43.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u44.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u45.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u46.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u47.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u48.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u49.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u4f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u50.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u51.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u52.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u53.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u54.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u55.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u56.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u57.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u58.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u59.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u5f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u60.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u61.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u62.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u63.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u64.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u65.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u66.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u67.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u68.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u69.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u6f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u70.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u71.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u72.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u73.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u74.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u75.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u76.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u77.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u78.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u79.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u7f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u80.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u81.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u82.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u83.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u84.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u85.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u86.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u87.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u88.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u89.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u8f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u90.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u91.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u92.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u93.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u94.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u95.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u96.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u97.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u98.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u99.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-u9f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uf0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uf8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uf9.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ufa.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-ufe.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-r-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-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-u03.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u04.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u1e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u1f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u20.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u21.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u22.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u23.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u24.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u25.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u26.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u27.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u29.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u2e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u2f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u30.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u31.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u32.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u33.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u34.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u35.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u36.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u37.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u38.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u39.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u3f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u40.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u41.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u42.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u43.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u44.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u45.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u46.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u47.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u48.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u49.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u4f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u50.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u51.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u52.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u53.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u54.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u55.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u56.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u57.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u58.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u59.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u5f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u60.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u61.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u62.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u63.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u64.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u65.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u66.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u67.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u68.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u69.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u6f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u70.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u71.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u72.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u73.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u74.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u75.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u76.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u77.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u78.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u79.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u7f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u80.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u81.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u82.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u83.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u84.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u85.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u86.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u87.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u88.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u89.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u8f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u90.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u91.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u92.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u93.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u94.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u95.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u96.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u97.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u98.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u99.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-u9f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-uf8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-uf9.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ufa.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-ufe.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxg-ro-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-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-u03.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u04.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u1e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u1f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u20.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u21.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u22.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u23.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u24.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u25.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u26.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u27.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u29.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u2e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u2f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u30.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u31.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u32.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u33.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u34.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u35.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u36.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u37.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u38.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u39.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u3f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u40.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u41.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u42.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u43.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u44.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u45.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u46.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u47.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u48.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u49.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u4f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u50.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u51.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u52.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u53.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u54.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u55.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u56.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u57.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u58.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u59.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u5f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u60.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u61.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u62.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u63.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u64.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u65.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u66.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u67.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u68.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u69.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u6f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u70.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u71.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u72.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u73.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u74.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u75.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u76.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u77.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u78.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u79.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u7f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u80.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u81.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u82.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u83.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u84.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u85.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u86.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u87.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u88.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u89.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u8f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u90.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u91.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u92.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u93.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u94.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u95.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u96.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u97.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u98.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u99.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-u9f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uf0.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uf8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uf9.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ufa.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-ufe.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-r-uff.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-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-u03.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u04.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u1e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u1f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u20.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u21.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u22.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u23.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u24.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u25.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u26.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u27.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u29.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u2e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u2f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u30.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u31.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u32.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u33.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u34.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u35.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u36.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u37.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u38.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u39.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u3f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u40.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u41.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u42.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u43.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u44.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u45.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u46.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u47.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u48.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u49.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u4f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u50.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u51.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u52.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u53.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u54.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u55.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u56.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u57.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u58.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u59.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u5f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u60.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u61.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u62.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u63.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u64.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u65.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u66.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u67.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u68.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u69.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u6f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u70.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u71.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u72.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u73.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u74.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u75.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u76.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u77.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u78.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u79.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u7f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u80.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u81.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u82.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u83.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u84.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u85.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u86.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u87.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u88.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u89.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u8f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u90.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u91.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u92.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u93.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u94.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u95.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u96.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u97.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u98.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u99.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9a.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9b.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9c.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9d.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9e.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-u9f.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-uf8.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-uf9.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ufa.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-ufe.tfm + RELOC/fonts/tfm/public/ipaex-type1/ipxm-ro-uff.tfm + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-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-u03.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u04.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u1e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u1f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u20.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u21.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u22.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u23.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u24.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u25.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u26.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u27.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u29.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u2e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u2f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u30.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u31.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u32.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u33.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u34.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u35.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u36.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u37.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u38.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u39.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u3f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u40.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u41.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u42.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u43.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u44.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u45.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u46.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u47.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u48.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u49.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u4f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u50.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u51.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u52.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u53.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u54.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u55.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u56.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u57.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u58.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u59.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u5f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u60.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u61.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u62.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u63.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u64.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u65.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u66.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u67.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u68.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u69.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u6f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u70.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u71.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u72.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u73.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u74.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u75.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u76.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u77.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u78.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u79.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u7f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u80.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u81.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u82.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u83.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u84.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u85.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u86.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u87.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u88.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u89.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u8f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u90.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u91.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u92.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u93.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u94.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u95.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u96.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u97.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u98.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u99.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-u9f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uf0.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uf8.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uf9.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ufa.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-ufe.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxg-r-uff.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-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-u03.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u04.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u1e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u1f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u20.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u21.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u22.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u23.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u24.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u25.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u26.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u27.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u29.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u2e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u2f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u30.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u31.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u32.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u33.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u34.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u35.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u36.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u37.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u38.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u39.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u3f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u40.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u41.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u42.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u43.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u44.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u45.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u46.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u47.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u48.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u49.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u4f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u50.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u51.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u52.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u53.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u54.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u55.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u56.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u57.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u58.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u59.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u5f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u60.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u61.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u62.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u63.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u64.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u65.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u66.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u67.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u68.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u69.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u6f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u70.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u71.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u72.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u73.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u74.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u75.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u76.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u77.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u78.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u79.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u7f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u80.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u81.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u82.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u83.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u84.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u85.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u86.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u87.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u88.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u89.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u8f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u90.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u91.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u92.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u93.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u94.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u95.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u96.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u97.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u98.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u99.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9a.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9b.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9c.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9d.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9e.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-u9f.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uf0.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uf8.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uf9.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ufa.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-ufe.pfb + RELOC/fonts/type1/public/ipaex-type1/ipxm-r-uff.pfb + RELOC/tex/latex/ipaex-type1/c70ipxg.fd + RELOC/tex/latex/ipaex-type1/c70ipxga.fd + RELOC/tex/latex/ipaex-type1/c70ipxm.fd + RELOC/tex/latex/ipaex-type1/c70ipxma.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-license other-free +catalogue-version 0.3b + +name iso10303 +category Package +revision 15878 +shortdesc Typesetting the STEP standards. +relocated 1 +longdesc Class and package files building on iso for typesetting the ISO +longdesc 10303 (STEP) standards. Standard documents prepared using these +longdesc packages have been published by ISO. +runfiles size=87 + RELOC/tex/latex/iso10303/aicv1.sty + RELOC/tex/latex/iso10303/apendint.tex + RELOC/tex/latex/iso10303/apmpspec.tex + RELOC/tex/latex/iso10303/apmptbl.tex + RELOC/tex/latex/iso10303/apmptempl.tex + RELOC/tex/latex/iso10303/apsstempl.tex + RELOC/tex/latex/iso10303/apv12.sty + RELOC/tex/latex/iso10303/atsv11.sty + RELOC/tex/latex/iso10303/bpfap1.tex + RELOC/tex/latex/iso10303/bpfap10.tex + RELOC/tex/latex/iso10303/bpfap11.tex + RELOC/tex/latex/iso10303/bpfap12.tex + RELOC/tex/latex/iso10303/bpfap13.tex + RELOC/tex/latex/iso10303/bpfap14.tex + RELOC/tex/latex/iso10303/bpfap15.tex + RELOC/tex/latex/iso10303/bpfap16.tex + RELOC/tex/latex/iso10303/bpfap2.tex + RELOC/tex/latex/iso10303/bpfap3.tex + RELOC/tex/latex/iso10303/bpfap4.tex + RELOC/tex/latex/iso10303/bpfap5.tex + RELOC/tex/latex/iso10303/bpfap6.tex + RELOC/tex/latex/iso10303/bpfap7.tex + RELOC/tex/latex/iso10303/bpfap8.tex + RELOC/tex/latex/iso10303/bpfap9.tex + RELOC/tex/latex/iso10303/bpfats1.tex + RELOC/tex/latex/iso10303/bpfats10.tex + RELOC/tex/latex/iso10303/bpfats11.tex + RELOC/tex/latex/iso10303/bpfats12.tex + RELOC/tex/latex/iso10303/bpfats14.tex + RELOC/tex/latex/iso10303/bpfats2.tex + RELOC/tex/latex/iso10303/bpfats3.tex + RELOC/tex/latex/iso10303/bpfats4.tex + RELOC/tex/latex/iso10303/bpfats5.tex + RELOC/tex/latex/iso10303/bpfats6.tex + RELOC/tex/latex/iso10303/bpfats7.tex + RELOC/tex/latex/iso10303/bpfats8.tex + RELOC/tex/latex/iso10303/bpfats9.tex + RELOC/tex/latex/iso10303/bpfir1.tex + RELOC/tex/latex/iso10303/bpfir2.tex + RELOC/tex/latex/iso10303/bpfir3.tex + RELOC/tex/latex/iso10303/bpfs1.tex + RELOC/tex/latex/iso10303/bpfs2.tex + RELOC/tex/latex/iso10303/bpfs3.tex + RELOC/tex/latex/iso10303/irv12.sty + RELOC/tex/latex/iso10303/stepman.tex + RELOC/tex/latex/iso10303/stepv13.4ht + RELOC/tex/latex/iso10303/stepv13.sty + RELOC/tex/latex/iso10303/stppdlst.tex +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-license lppl +catalogue-version 1.5 + +name isodate +category Package +revision 16613 +shortdesc Tune the output format of dates according to language. +relocated 1 +longdesc This package provides ten output formats of the commands +longdesc \today, \printdate, \printdateTeX, and \daterange (partly +longdesc language dependent). Formats available are: ISO (yyyy-mm-dd), +longdesc numeric (e.g. dd.\,mm.~yyyy), short (e.g. dd.\,mm.\,yy), TeX +longdesc (yyyy/mm/dd), original (e.g. dd. mmm yyyy), short original +longdesc (e.g. dd. mmm yy), as well as numerical formats with Roman +longdesc numerals for the month. The commands \printdate and +longdesc \printdateTeX print any date. The command \daterange prints a +longdesc date range and leaves out unnecessary year or month entries. +longdesc This package supports German (old and new rules), Austrian, US +longdesc English, British English, French, Danish, Swedish, and +longdesc Norwegian. +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 +docfiles size=127 + RELOC/doc/latex/isodate/ChangeLog + RELOC/doc/latex/isodate/README + RELOC/doc/latex/isodate/getversion.tex + RELOC/doc/latex/isodate/isodate.pdf + RELOC/doc/latex/isodate/isodate.xml + RELOC/doc/latex/isodate/isodateo.pdf + RELOC/doc/latex/isodate/testdate.pdf + RELOC/doc/latex/isodate/testdate.tex + RELOC/doc/latex/isodate/testisodate_without_babel.tex +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 +catalogue-ctan /macros/latex/contrib/isodate +catalogue-date 2012-06-11 00:09:45 +0200 +catalogue-license lppl +catalogue-version 2.28 + +name isodoc +category Package +revision 37549 +shortdesc A LaTeX class for typesetting letters and invoices. +relocated 1 +longdesc The isodoc class can be used for the preparation of letters and +longdesc invoices (and, in the future, similar documents). Documents are +longdesc set up with options, thus making the class easily adaptable to +longdesc user's wishes and extensible for other document types. The +longdesc class is based on the NTG brief class by Victor Eijkhout, which +longdesc implements the NEN1026 standard. +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 + RELOC/source/latex/isodoc/isodoc.dtx + RELOC/source/latex/isodoc/isodoc.ins +catalogue-ctan /macros/latex/contrib/isodoc +catalogue-date 2015-06-15 17:57:43 +0200 +catalogue-license lppl1.3 +catalogue-topics letter invoice +catalogue-version 1.07 + +name isomath +category Package +revision 27654 +shortdesc Mathematics style for science and technology. +relocated 1 +longdesc The package provides tools for a mathematical style that +longdesc conforms to the International Standard ISO 80000-2 and is +longdesc common in science and technology. It changes the default shape +longdesc of capital Greek letters to italic, sets up bold italic and +longdesc sans-serif bold italic math alphabets with Latin and Greek +longdesc characters, and defines macros for markup of vector, matrix and +longdesc tensor symbols. +runfiles size=4 + RELOC/tex/latex/isomath/isomath.sty +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.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.sty.txt + RELOC/doc/latex/isomath/isomath.txt +catalogue-ctan /macros/latex/contrib/isomath +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.6.1 + +name isonums +category Package +revision 17362 +shortdesc Display numbers in maths mode according to ISO 31-0. +relocated 1 +longdesc The package makes a quick hack to ziffer to display numbers in +longdesc maths mode according to ISO 31-0, regardless of input format +longdesc (European $1.235,7$ or Anglo-American $1,235.7$). The options +longdesc [euro, anglo] control the global input format. Default input +longdesc format is anglo. Documentation is included as comments to the +longdesc text source. +runfiles size=2 + RELOC/tex/latex/isonums/isonums.sty +docfiles size=52 + RELOC/doc/latex/isonums/isonums.pdf + RELOC/doc/latex/isonums/isonums.tex +catalogue-ctan /macros/latex/contrib/isonums +catalogue-date 2014-05-28 23:45:53 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name isorot +category Package +revision 15878 +shortdesc Rotation of document elements. +relocated 1 +longdesc The package is for rotation of document elements. It is a +longdesc combination of the lscape package and an extension of the +longdesc rotating package. The package is designed for use with the iso +longdesc class but may be used with any normal class. +runfiles size=2 + RELOC/tex/latex/isorot/isorot.sty +docfiles size=51 + RELOC/doc/latex/isorot/README + RELOC/doc/latex/isorot/rotman.pdf + RELOC/doc/latex/isorot/rotman.tex +srcfiles size=13 + RELOC/source/latex/isorot/isorot.dtx + RELOC/source/latex/isorot/isorot.ins +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-license lppl +catalogue-version 2.4 + +name isotope +category Package +revision 23711 +shortdesc A package for typesetting isotopes +relocated 1 +longdesc The package provides a command \isotope for setting the atomic +longdesc weight and atomic number indications of isotopes. (The naive +longdesc way of doing the job with (La)TeX mathematics commands produces +longdesc an unsatisfactory result.) +runfiles size=1 + RELOC/tex/latex/isotope/isotope.sty +docfiles size=1 + RELOC/doc/latex/isotope/README +srcfiles size=3 + RELOC/source/latex/isotope/isotope.dtx + RELOC/source/latex/isotope/isotope.ins +catalogue-ctan /macros/latex/contrib/isotope +catalogue-date 2012-06-23 19:30:01 +0200 +catalogue-license lppl +catalogue-version v0.3 + +name issuulinks +category Package +revision 25742 +shortdesc Produce external links instead of internal ones. +relocated 1 +longdesc The PDF visualizer http://issuu.com/ISSUU is a popular service +longdesc which shows PDF documents "a page a time". Due to the way it is +longdesc implemented, internal links in these documents are not allowed. +longdesc Instead, they must be converted to external ones in the form +longdesc http://issuu.com/action/page?page=PAGENUMBER. The package +longdesc patches hyperref to produce external links in the required form +longdesc instead of internal links created by \ref, \cite and other +longdesc commands. Since the package redefines the internals of +longdesc hyperref, it must be loaded it AFTER hyperref. +runfiles size=1 + RELOC/tex/latex/issuulinks/issuulinks.sty +docfiles size=96 + RELOC/doc/latex/issuulinks/Makefile + RELOC/doc/latex/issuulinks/README + RELOC/doc/latex/issuulinks/issuulinks.pdf + RELOC/doc/latex/issuulinks/sample.pdf + RELOC/doc/latex/issuulinks/sample.tex +srcfiles size=4 + RELOC/source/latex/issuulinks/issuulinks.dtx + RELOC/source/latex/issuulinks/issuulinks.ins +catalogue-ctan /macros/latex/contrib/issuulinks +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name itnumpar +category Package +revision 15878 +shortdesc Spell numbers in words (Italian). +relocated 1 +longdesc Sometimes we need to say "Capitolo primo" or "Capitolo uno" +longdesc instead of "Capitolo 1", that is, spelling the number in words +longdesc instead of the usual digit form. This package provides support +longdesc for spelling out numbers in Italian words, both in cardinal and +longdesc in ordinal form. +runfiles size=2 + RELOC/tex/latex/itnumpar/itnumpar.sty +docfiles size=38 + RELOC/doc/latex/itnumpar/README + RELOC/doc/latex/itnumpar/itnumpar.pdf +srcfiles size=8 + RELOC/source/latex/itnumpar/itnumpar.dtx + RELOC/source/latex/itnumpar/itnumpar.ins +catalogue-ctan /macros/latex/contrib/itnumpar +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name iwhdp +category Package +revision 37552 +shortdesc Halle Institute for Economic Research (IWH) Discussion Papers. +relocated 1 +longdesc The document class is for creating Discussion Papers of the +longdesc Halle Institute for Economic Research (IWH) in Halle, Germany. +longdesc The class offers options for both English and German texts. +runfiles size=9 + RELOC/tex/latex/iwhdp/iwhdp.cls +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/iwhdp_Manual.bib + RELOC/doc/latex/iwhdp/iwhdp_Manual.pdf + RELOC/doc/latex/iwhdp/iwhdp_Manual.tex + RELOC/doc/latex/iwhdp/iwhdp_paper.bib + RELOC/doc/latex/iwhdp/iwhdp_paper.tex +catalogue-ctan /macros/latex/contrib/iwhdp +catalogue-date 2015-06-02 17:50:41 +0200 +catalogue-license lppl1.3 +catalogue-topics misc-paper class +catalogue-version 0.50 + +name iwona +category Package +revision 19611 +shortdesc A two-element sans-serif font. +relocated 1 +longdesc Iwona is a two-element sans-serif typeface. It was created as +longdesc an alternative version of the Kurier typeface, which was +longdesc designed in 1975 for a diploma in typeface design at the Warsaw +longdesc Academy of Fine Arts under the supervision of Roman +longdesc Tomaszewski. This distribution contains a significantly +longdesc extended set of characters covering the following modern +longdesc alphabets: latin (including Vietnamese), Cyrillic and Greek as +longdesc well as a number of additional symbols (including mathematical +longdesc symbols). The fonts are prepared in Type 1 and OpenType +longdesc formats. For use with TeX the following encoding files have +longdesc been prepared: T1 (ec), T2 (abc), and OT2--Cyrillic, T5 +longdesc (Vietnamese), OT4, QX, texansi and nonstandard (IL2 for the +longdesc Czech fonts), as well as supporting macros and files defining +longdesc fonts for LaTeX. +execute addMap iwona.map +runfiles size=4371 + RELOC/fonts/afm/nowacki/iwona/iwonab.afm + RELOC/fonts/afm/nowacki/iwona/iwonabi.afm + RELOC/fonts/afm/nowacki/iwona/iwonacb.afm + RELOC/fonts/afm/nowacki/iwona/iwonacbi.afm + RELOC/fonts/afm/nowacki/iwona/iwonach.afm + RELOC/fonts/afm/nowacki/iwona/iwonachi.afm + RELOC/fonts/afm/nowacki/iwona/iwonacl.afm + RELOC/fonts/afm/nowacki/iwona/iwonacli.afm + RELOC/fonts/afm/nowacki/iwona/iwonacm.afm + RELOC/fonts/afm/nowacki/iwona/iwonacmi.afm + RELOC/fonts/afm/nowacki/iwona/iwonacr.afm + RELOC/fonts/afm/nowacki/iwona/iwonacri.afm + RELOC/fonts/afm/nowacki/iwona/iwonah.afm + RELOC/fonts/afm/nowacki/iwona/iwonahi.afm + RELOC/fonts/afm/nowacki/iwona/iwonal.afm + RELOC/fonts/afm/nowacki/iwona/iwonali.afm + RELOC/fonts/afm/nowacki/iwona/iwonam.afm + RELOC/fonts/afm/nowacki/iwona/iwonami.afm + RELOC/fonts/afm/nowacki/iwona/iwonar.afm + RELOC/fonts/afm/nowacki/iwona/iwonari.afm + RELOC/fonts/enc/dvips/iwona/cs-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/cs-iwona.enc + RELOC/fonts/enc/dvips/iwona/ec-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/ec-iwona.enc + RELOC/fonts/enc/dvips/iwona/ex-iwona.enc + RELOC/fonts/enc/dvips/iwona/greek-iwona.enc + RELOC/fonts/enc/dvips/iwona/l7x-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/l7x-iwona.enc + RELOC/fonts/enc/dvips/iwona/mi-iwona.enc + RELOC/fonts/enc/dvips/iwona/qx-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/qx-iwona.enc + RELOC/fonts/enc/dvips/iwona/rm-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/rm-iwona.enc + RELOC/fonts/enc/dvips/iwona/sy-iwona.enc + RELOC/fonts/enc/dvips/iwona/t2a-iwona.enc + RELOC/fonts/enc/dvips/iwona/t2b-iwona.enc + RELOC/fonts/enc/dvips/iwona/t2c-iwona.enc + RELOC/fonts/enc/dvips/iwona/t5-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/t5-iwona.enc + RELOC/fonts/enc/dvips/iwona/texnansi-iwona-sc.enc + RELOC/fonts/enc/dvips/iwona/texnansi-iwona.enc + RELOC/fonts/enc/dvips/iwona/ts1-iwona.enc + RELOC/fonts/enc/dvips/iwona/wncy-iwona.enc + RELOC/fonts/map/dvips/iwona/iwona-cs.map + RELOC/fonts/map/dvips/iwona/iwona-ec.map + RELOC/fonts/map/dvips/iwona/iwona-ex.map + RELOC/fonts/map/dvips/iwona/iwona-greek.map + RELOC/fonts/map/dvips/iwona/iwona-l7x.map + RELOC/fonts/map/dvips/iwona/iwona-mi.map + RELOC/fonts/map/dvips/iwona/iwona-qx.map + RELOC/fonts/map/dvips/iwona/iwona-rm.map + RELOC/fonts/map/dvips/iwona/iwona-sy.map + RELOC/fonts/map/dvips/iwona/iwona-t2a.map + RELOC/fonts/map/dvips/iwona/iwona-t2b.map + RELOC/fonts/map/dvips/iwona/iwona-t2c.map + RELOC/fonts/map/dvips/iwona/iwona-t5.map + RELOC/fonts/map/dvips/iwona/iwona-texnansi.map + RELOC/fonts/map/dvips/iwona/iwona-ts1.map + RELOC/fonts/map/dvips/iwona/iwona-wncy.map + RELOC/fonts/map/dvips/iwona/iwona.map + RELOC/fonts/opentype/nowacki/iwona/Iwona-Bold.otf + RELOC/fonts/opentype/nowacki/iwona/Iwona-BoldItalic.otf + RELOC/fonts/opentype/nowacki/iwona/Iwona-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/Iwona-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCond-Bold.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCond-BoldItalic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCond-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCond-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondHeavy-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondHeavy-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondLight-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondLight-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondMedium-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaCondMedium-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaHeavy-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaHeavy-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaLight-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaLight-Regular.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaMedium-Italic.otf + RELOC/fonts/opentype/nowacki/iwona/IwonaMedium-Regular.otf + RELOC/fonts/tfm/nowacki/iwona/cs-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/cs-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/ec-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/ex-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/greek-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/l7x-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/mi-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/qx-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/rm-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonabz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonacbz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonachz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonaclz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonacmz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonacrz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonahz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonalz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonamz.tfm + RELOC/fonts/tfm/nowacki/iwona/sy-iwonarz.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/t2a-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/t2b-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/t2c-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/t5-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonab-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonabi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacb-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacbi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonach-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonachi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacl-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacli-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacm-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacmi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacr-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacri-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonah-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonahi-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonal-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonali-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonam-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonami-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonar-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonari-sc.tfm + RELOC/fonts/tfm/nowacki/iwona/texnansi-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/ts1-iwonari.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonab.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonabi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacb.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacbi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonach.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonachi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacl.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacli.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacm.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacmi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacr.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonacri.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonah.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonahi.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonal.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonali.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonam.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonami.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonar.tfm + RELOC/fonts/tfm/nowacki/iwona/wncy-iwonari.tfm + RELOC/fonts/type1/nowacki/iwona/iwonab.pfb + RELOC/fonts/type1/nowacki/iwona/iwonabi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacb.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacbi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonach.pfb + RELOC/fonts/type1/nowacki/iwona/iwonachi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacl.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacli.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacm.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacmi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacr.pfb + RELOC/fonts/type1/nowacki/iwona/iwonacri.pfb + RELOC/fonts/type1/nowacki/iwona/iwonah.pfb + RELOC/fonts/type1/nowacki/iwona/iwonahi.pfb + RELOC/fonts/type1/nowacki/iwona/iwonal.pfb + RELOC/fonts/type1/nowacki/iwona/iwonali.pfb + RELOC/fonts/type1/nowacki/iwona/iwonam.pfb + RELOC/fonts/type1/nowacki/iwona/iwonami.pfb + RELOC/fonts/type1/nowacki/iwona/iwonar.pfb + RELOC/fonts/type1/nowacki/iwona/iwonari.pfb + RELOC/tex/latex/iwona/il2iwona.fd + RELOC/tex/latex/iwona/il2iwonac.fd + RELOC/tex/latex/iwona/il2iwonal.fd + RELOC/tex/latex/iwona/il2iwonalc.fd + RELOC/tex/latex/iwona/iwona.sty + RELOC/tex/latex/iwona/l7xiwona.fd + RELOC/tex/latex/iwona/l7xiwonac.fd + RELOC/tex/latex/iwona/l7xiwonal.fd + RELOC/tex/latex/iwona/l7xiwonalc.fd + RELOC/tex/latex/iwona/ly1iwona.fd + RELOC/tex/latex/iwona/ly1iwonac.fd + RELOC/tex/latex/iwona/ly1iwonal.fd + RELOC/tex/latex/iwona/ly1iwonalc.fd + RELOC/tex/latex/iwona/omliwona.fd + RELOC/tex/latex/iwona/omliwonac.fd + RELOC/tex/latex/iwona/omliwonal.fd + RELOC/tex/latex/iwona/omliwonalc.fd + RELOC/tex/latex/iwona/omsiwona.fd + RELOC/tex/latex/iwona/omsiwonac.fd + RELOC/tex/latex/iwona/omsiwonal.fd + RELOC/tex/latex/iwona/omsiwonalc.fd + RELOC/tex/latex/iwona/omxiwona.fd + RELOC/tex/latex/iwona/omxiwonac.fd + RELOC/tex/latex/iwona/omxiwonal.fd + RELOC/tex/latex/iwona/omxiwonalc.fd + RELOC/tex/latex/iwona/ot1iwona.fd + RELOC/tex/latex/iwona/ot1iwonac.fd + RELOC/tex/latex/iwona/ot1iwonacm.fd + RELOC/tex/latex/iwona/ot1iwonal.fd + RELOC/tex/latex/iwona/ot1iwonalc.fd + RELOC/tex/latex/iwona/ot1iwonalcm.fd + RELOC/tex/latex/iwona/ot1iwonalm.fd + RELOC/tex/latex/iwona/ot1iwonam.fd + RELOC/tex/latex/iwona/ot2iwona.fd + RELOC/tex/latex/iwona/ot2iwonac.fd + RELOC/tex/latex/iwona/ot2iwonal.fd + RELOC/tex/latex/iwona/ot2iwonalc.fd + RELOC/tex/latex/iwona/ot4iwona.fd + RELOC/tex/latex/iwona/ot4iwonac.fd + RELOC/tex/latex/iwona/ot4iwonal.fd + RELOC/tex/latex/iwona/ot4iwonalc.fd + RELOC/tex/latex/iwona/qxiwona.fd + RELOC/tex/latex/iwona/qxiwonac.fd + RELOC/tex/latex/iwona/qxiwonal.fd + RELOC/tex/latex/iwona/qxiwonalc.fd + RELOC/tex/latex/iwona/t1iwona.fd + RELOC/tex/latex/iwona/t1iwonac.fd + RELOC/tex/latex/iwona/t1iwonal.fd + RELOC/tex/latex/iwona/t1iwonalc.fd + RELOC/tex/latex/iwona/t2aiwona.fd + RELOC/tex/latex/iwona/t2aiwonac.fd + RELOC/tex/latex/iwona/t2aiwonal.fd + RELOC/tex/latex/iwona/t2aiwonalc.fd + RELOC/tex/latex/iwona/t2biwona.fd + RELOC/tex/latex/iwona/t2biwonac.fd + RELOC/tex/latex/iwona/t2biwonal.fd + RELOC/tex/latex/iwona/t2biwonalc.fd + RELOC/tex/latex/iwona/t2ciwona.fd + RELOC/tex/latex/iwona/t2ciwonac.fd + RELOC/tex/latex/iwona/t2ciwonal.fd + RELOC/tex/latex/iwona/t2ciwonalc.fd + RELOC/tex/latex/iwona/t5iwona.fd + RELOC/tex/latex/iwona/t5iwonac.fd + RELOC/tex/latex/iwona/t5iwonal.fd + RELOC/tex/latex/iwona/t5iwonalc.fd + RELOC/tex/latex/iwona/ts1iwona.fd + RELOC/tex/latex/iwona/ts1iwonac.fd + RELOC/tex/latex/iwona/ts1iwonal.fd + RELOC/tex/latex/iwona/ts1iwonalc.fd + RELOC/tex/plain/iwona/iwona-math.tex +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-version 0.995b + +name jablantile +category Package +revision 16364 +shortdesc Metafont version of tiles in the style of Slavik Jablan. +relocated 1 +longdesc This is a small Metafont font to implement the modular tiles +longdesc described by Slavik Jablan. For an outline of the theoretical +longdesc structure of the tiles, see (for example) Jablan's JMM 2006 +longdesc Exhibit. +runfiles size=7 + RELOC/fonts/source/public/jablantile/jablantile.mf +docfiles size=6 + RELOC/doc/fonts/jablantile/README + RELOC/doc/fonts/jablantile/dearjablan.tex + RELOC/doc/fonts/jablantile/jablantile.pdf +catalogue-ctan /fonts/jablantile +catalogue-date 2014-05-09 00:43:11 +0200 +catalogue-license pd + +name jadetex +category Package +revision 33694 +shortdesc Macros supporting Jade DSSSL output. +longdesc Macro package on top of LaTeX to typeset TeX output of the Jade +longdesc DSSSL implementation. +depend latex +depend passivetex +depend pdftex +depend tex +depend jadetex.ARCH +execute AddFormat name=jadetex engine=pdftex patterns=language.dat options="*jadetex.ini" +execute AddFormat name=pdfjadetex engine=pdftex patterns=language.dat options="*pdfjadetex.ini" +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 +docfiles size=34 + texmf-dist/doc/man/man1/jadetex.1 + texmf-dist/doc/man/man1/jadetex.man1.pdf + texmf-dist/doc/man/man1/pdfjadetex.1 + texmf-dist/doc/man/man1/pdfjadetex.man1.pdf + texmf-dist/doc/otherformats/jadetex/base/ChangeLog + texmf-dist/doc/otherformats/jadetex/base/ChangeLog-old + texmf-dist/doc/otherformats/jadetex/base/Makefile + texmf-dist/doc/otherformats/jadetex/base/demo.sgm + texmf-dist/doc/otherformats/jadetex/base/docbook.dsl + texmf-dist/doc/otherformats/jadetex/base/index.html + texmf-dist/doc/otherformats/jadetex/base/index.xml + texmf-dist/doc/otherformats/jadetex/base/index.xsl + texmf-dist/doc/otherformats/jadetex/base/jadetex.cfg + texmf-dist/doc/otherformats/jadetex/base/logo.png + texmf-dist/doc/otherformats/jadetex/base/releasenotes.dsl + texmf-dist/doc/otherformats/jadetex/base/releasenotes.xml +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 +catalogue-license other-free +catalogue-version 3.13 + +name jadetex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of jadetex +binfiles arch=i386-linux size=2 + bin/i386-linux/jadetex + bin/i386-linux/pdfjadetex + +name jamtimes +category Package +revision 20408 +shortdesc Expanded Times Roman fonts. +relocated 1 +longdesc The package offers LaTeX support for the expanded Times Roman +longdesc font, which has been used for many years in the Journal +longdesc d'Analyse Mathematique. Mathematics support is based on the +longdesc Belleek fonts. +runfiles size=136 + RELOC/fonts/map/dvips/jamtimes/jtm.map + RELOC/fonts/tfm/public/jamtimes/blsy.tfm + RELOC/fonts/tfm/public/jamtimes/jtmb7tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmb8cv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmb8rv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmb8tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbc7tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbc8tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi7me.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi7tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi8cv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi8rv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbi8tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbo7tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbo8cv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbo8rv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmbo8tv.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7tc.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7ye.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr7yoe.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8cc.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8ce.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8cw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8rc.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8re.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8rw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8tc.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmr8tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmrc7te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmrc7tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmrc8te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmrc8tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri7me.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri7te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri7tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri7ze.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8ce.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8cw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8re.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8rw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmri8tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro7te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro7tw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8ce.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8cw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8re.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8rw.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8te.tfm + RELOC/fonts/tfm/public/jamtimes/jtmro8tw.tfm + RELOC/fonts/tfm/public/jamtimes/ptmb8a.tfm + RELOC/fonts/tfm/public/jamtimes/ptmbi8a.tfm + RELOC/fonts/tfm/public/jamtimes/ptmr8a.tfm + RELOC/fonts/tfm/public/jamtimes/ptmri8a.tfm + RELOC/fonts/tfm/public/jamtimes/rblmi.tfm + RELOC/fonts/vf/public/jamtimes/jtmb7tv.vf + RELOC/fonts/vf/public/jamtimes/jtmb8cv.vf + RELOC/fonts/vf/public/jamtimes/jtmb8tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbc7tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbc8tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbi7me.vf + RELOC/fonts/vf/public/jamtimes/jtmbi7tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbi8cv.vf + RELOC/fonts/vf/public/jamtimes/jtmbi8tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbo7tv.vf + RELOC/fonts/vf/public/jamtimes/jtmbo8cv.vf + RELOC/fonts/vf/public/jamtimes/jtmbo8tv.vf + RELOC/fonts/vf/public/jamtimes/jtmr7tc.vf + RELOC/fonts/vf/public/jamtimes/jtmr7te.vf + RELOC/fonts/vf/public/jamtimes/jtmr7tw.vf + RELOC/fonts/vf/public/jamtimes/jtmr7ye.vf + RELOC/fonts/vf/public/jamtimes/jtmr8cc.vf + RELOC/fonts/vf/public/jamtimes/jtmr8ce.vf + RELOC/fonts/vf/public/jamtimes/jtmr8cw.vf + RELOC/fonts/vf/public/jamtimes/jtmr8tc.vf + RELOC/fonts/vf/public/jamtimes/jtmr8te.vf + RELOC/fonts/vf/public/jamtimes/jtmr8tw.vf + RELOC/fonts/vf/public/jamtimes/jtmrc7te.vf + RELOC/fonts/vf/public/jamtimes/jtmrc7tw.vf + RELOC/fonts/vf/public/jamtimes/jtmrc8te.vf + RELOC/fonts/vf/public/jamtimes/jtmrc8tw.vf + RELOC/fonts/vf/public/jamtimes/jtmri7me.vf + RELOC/fonts/vf/public/jamtimes/jtmri7te.vf + RELOC/fonts/vf/public/jamtimes/jtmri7tw.vf + RELOC/fonts/vf/public/jamtimes/jtmri8ce.vf + RELOC/fonts/vf/public/jamtimes/jtmri8cw.vf + RELOC/fonts/vf/public/jamtimes/jtmri8te.vf + RELOC/fonts/vf/public/jamtimes/jtmri8tw.vf + RELOC/fonts/vf/public/jamtimes/jtmro7te.vf + RELOC/fonts/vf/public/jamtimes/jtmro7tw.vf + RELOC/fonts/vf/public/jamtimes/jtmro8ce.vf + RELOC/fonts/vf/public/jamtimes/jtmro8cw.vf + RELOC/fonts/vf/public/jamtimes/jtmro8te.vf + RELOC/fonts/vf/public/jamtimes/jtmro8tw.vf + RELOC/tex/latex/jamtimes/jamtimes.sty + RELOC/tex/latex/jamtimes/omljtm.fd + RELOC/tex/latex/jamtimes/omsjtm.fd + RELOC/tex/latex/jamtimes/ot1jtm.fd + RELOC/tex/latex/jamtimes/t1jtm.fd + RELOC/tex/latex/jamtimes/ts1jtm.fd +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-version 1.12 + +name japanese-otf +category Package +revision 36953 +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 + 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 + RELOC/fonts/ofm/public/japanese-otf/otf-cjge-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjgr-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjgr-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmb-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmb-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmgr-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmgr-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjml-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjml-v.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmr-h.ofm + RELOC/fonts/ofm/public/japanese-otf/otf-cjmr-v.ofm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgexpminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/brsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidcmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgb5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjge5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmb5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjml5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidjmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidkmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/cidtmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/expminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/expminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/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 + RELOC/fonts/tfm/public/japanese-otf/hmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/hminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/hminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/nmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ccgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ccgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ccmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ccmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjge-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjge-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjml-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjml-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-cjmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ckgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ckgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ckmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ckmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ctgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ctgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ctmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ctmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ucmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujge-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujge-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgen-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgen-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujml-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujml-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmln-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmln-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ujmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-ukmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utgr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utgr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utmr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/otf-utmr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/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 + RELOC/fonts/tfm/public/japanese-otf/rubygotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubygothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubygothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubymgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubymgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf/rubyminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfcmrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgb9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgba-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgba-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbe-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbe-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgbnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjge9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgea-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgea-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgeb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgec-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgec-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjged-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjged-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgee-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgee-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgef-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgef-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgen9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgena-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgena-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgend-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgend-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgene-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgene-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgenf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjgrnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmb9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmba-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmba-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbe-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbe-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmbnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmgrnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjml9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmla-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmla-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmld-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmld-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmle-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmle-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmln9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmlnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrn9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrna-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrna-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrne-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrne-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfjmrnf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfkmrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utfmrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftgrf-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr0-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr0-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr1-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr1-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr2-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr2-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr3-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr3-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr4-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr4-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr5-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr5-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr6-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr6-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr7-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr7-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr8-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr8-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr9-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmr9-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmra-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmra-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrb-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrb-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrc-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrc-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrd-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrd-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmre-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmre-v.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrf-h.tfm + RELOC/fonts/tfm/public/japanese-otf/utftmrf-v.tfm + RELOC/fonts/vf/public/japanese-otf/brsgexpgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminl-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminl-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminln-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminln-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgexpminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/brsgnmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/cidcmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgb5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjge5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjge5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmb5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjml5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjml5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/cidjmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidkmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/cidtmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/expgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/expgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/expgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/expgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/expmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/expmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/expmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/expmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/expminb-h.vf + RELOC/fonts/vf/public/japanese-otf/expminb-v.vf + RELOC/fonts/vf/public/japanese-otf/expminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/expminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/expminl-h.vf + RELOC/fonts/vf/public/japanese-otf/expminl-v.vf + RELOC/fonts/vf/public/japanese-otf/expminln-h.vf + RELOC/fonts/vf/public/japanese-otf/expminln-v.vf + RELOC/fonts/vf/public/japanese-otf/expminr-h.vf + RELOC/fonts/vf/public/japanese-otf/expminr-v.vf + RELOC/fonts/vf/public/japanese-otf/expminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/expminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf/nmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf/nmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf/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 + RELOC/fonts/vf/public/japanese-otf/rubygotheb-v.vf + RELOC/fonts/vf/public/japanese-otf/rubygothr-h.vf + RELOC/fonts/vf/public/japanese-otf/rubygothr-v.vf + RELOC/fonts/vf/public/japanese-otf/rubymgothr-h.vf + RELOC/fonts/vf/public/japanese-otf/rubymgothr-v.vf + RELOC/fonts/vf/public/japanese-otf/rubyminb-h.vf + RELOC/fonts/vf/public/japanese-otf/rubyminb-v.vf + RELOC/fonts/vf/public/japanese-otf/rubyminl-h.vf + RELOC/fonts/vf/public/japanese-otf/rubyminl-v.vf + RELOC/fonts/vf/public/japanese-otf/rubyminr-h.vf + RELOC/fonts/vf/public/japanese-otf/rubyminr-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfcmrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgb9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgba-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgba-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbe-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbe-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgbnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjge9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjge9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgea-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgea-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgeb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgec-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgec-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjged-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjged-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgee-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgee-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgef-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgef-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgen9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgena-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgena-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgend-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgend-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgene-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgene-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgenf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjgrnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmb9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmba-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmba-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbe-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbe-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmbnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmgrnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjml9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjml9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmla-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmla-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmld-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmld-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmle-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmle-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmln9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmlnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrn9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrna-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrna-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrne-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrne-v.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfjmrnf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfkmrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utfmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utfmrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgra-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgra-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgre-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgre-v.vf + RELOC/fonts/vf/public/japanese-otf/utftgrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utftgrf-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr0-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr0-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr1-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr1-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr2-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr2-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr3-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr3-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr4-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr4-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr5-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr5-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr6-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr6-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr7-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr7-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr8-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr8-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmr9-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmr9-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmra-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmra-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrb-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrb-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrc-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrc-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrd-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrd-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmre-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmre-v.vf + RELOC/fonts/vf/public/japanese-otf/utftmrf-h.vf + RELOC/fonts/vf/public/japanese-otf/utftmrf-v.vf + RELOC/tex/platex/japanese-otf/ajmacros.sty + RELOC/tex/platex/japanese-otf/mlcid.sty + RELOC/tex/platex/japanese-otf/otf-hangul.dfu + RELOC/tex/platex/japanese-otf/redeffont.sty +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-ctan /language/japanese/japanese-otf +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version v1.7b6 + +name japanese-otf-uptex +category Package +revision 36763 +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 + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgexpminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upbrsgnmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upexpminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uphminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgotheb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothebn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothebn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlmgothrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/upnmlminrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/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 + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygotheb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubygothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubymgothr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubymgothr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminb-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminb-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/uprubyminr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfcmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbo-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbo-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbu-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbu-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgbz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgej-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgej-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgek-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgek-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgel-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgel-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgem-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgem-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgen-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeo-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeo-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgep-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgep-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjger-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjger-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjges-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjges-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjget-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjget-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeu-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgeu-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgev-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgev-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgez-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgez-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbo-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbo-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbu-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbu-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmbz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmll-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmll-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmln-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlo-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlo-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmls-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmls-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlu-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlu-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmlz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfjmrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrj-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrj-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrv-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrv-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utfmrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftgrz-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrk-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrk-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrl-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrl-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrm-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrm-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrn-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrn-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmro-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmro-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrp-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrp-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrq-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrq-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrr-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrr-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrs-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrs-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrt-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrt-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmru-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmru-v.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrz-h.tfm + RELOC/fonts/tfm/public/japanese-otf-uptex/utftmrz-v.tfm + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgexpminrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upbrsgnmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upexpminrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgotheb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothebn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothebn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlmgothrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/upnmlminrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/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 + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygotheb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubygothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubymgothr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubymgothr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminb-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminb-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/uprubyminr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfcmro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfgrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbo-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbo-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbu-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbu-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgbz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgej-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgej-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgek-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgek-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgel-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgel-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgem-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgem-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgen-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeo-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeo-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgep-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgep-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjger-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjger-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjges-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjges-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjget-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjget-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeu-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgeu-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgev-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgev-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgez-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgez-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjgrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbo-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbo-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbu-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbu-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmbz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmgrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmll-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmll-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmln-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlo-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlo-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmls-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmls-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlu-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlu-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmlz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfjmrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrj-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrj-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrv-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrv-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utfmrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrz-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftgrz-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrk-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrk-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrl-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrl-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrm-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrm-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrn-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrn-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmro-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmro-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrp-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrp-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrq-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrq-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrr-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrr-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrs-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrs-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrt-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmrt-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmru-h.vf + RELOC/fonts/vf/public/japanese-otf-uptex/utftmru-v.vf + RELOC/fonts/vf/public/japanese-otf-uptex/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-ctan /language/japanese/japanese-otf-uptex +catalogue-date 2015-04-12 09:02:59 +0200 +catalogue-license bsd3 +catalogue-version 0.17 + +name japanese +category Package +revision 30855 +shortdesc A substitute for a babel package for Japanese. +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. +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 +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 + +name jknapltx +category Package +revision 19440 +catalogue jknappen +shortdesc Miscellaneous packages by Joerg Knappen. +relocated 1 +longdesc Miscellaneous macros by Jorg Knappen, including: represent +longdesc counters in greek; Maxwell's non-commutative division; +longdesc latin1jk, latin2jk and latin3jk, which are their inputenc +longdesc definition files that allow verbatim input in the respective +longdesc ISO Latin codes; blackboard bold fonts in maths; use of RSFS +longdesc fonts in maths; extra alignments for \parboxes; swap Roman and +longdesc Sans fonts; transliterate semitic languages; patches to make +longdesc (La)TeX formulae embeddable in SGML; use maths "minus" in text +longdesc as appropriate; simple Young tableaux. +runfiles size=19 + RELOC/tex/latex/jknapltx/greekctr.sty + RELOC/tex/latex/jknapltx/holtpolt.sty + RELOC/tex/latex/jknapltx/latin1jk.def + RELOC/tex/latex/jknapltx/latin2jk.def + RELOC/tex/latex/jknapltx/latin3jk.def + RELOC/tex/latex/jknapltx/mathbbol.sty + RELOC/tex/latex/jknapltx/mathrsfs.sty + RELOC/tex/latex/jknapltx/parboxx.sty + RELOC/tex/latex/jknapltx/sans.sty + RELOC/tex/latex/jknapltx/semtrans.sty + RELOC/tex/latex/jknapltx/sgmlcmpt.sty + RELOC/tex/latex/jknapltx/smartmn.sty + RELOC/tex/latex/jknapltx/tccompat.sty + RELOC/tex/latex/jknapltx/ursfs.fd + RELOC/tex/latex/jknapltx/ustmary.fd + RELOC/tex/latex/jknapltx/young.sty +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-license gpl + +name jlabels +category Package +revision 24858 +shortdesc Make letter-sized pages of labels. +relocated 1 +longdesc The package provides controls for the numbers of rows and +longdesc columns. +runfiles size=1 + RELOC/tex/latex/jlabels/jlabels.sty +docfiles size=11 + RELOC/doc/latex/jlabels/README + RELOC/doc/latex/jlabels/jlabels.pdf + RELOC/doc/latex/jlabels/jlabels.tex +catalogue-ctan /macros/latex/contrib/jlabels +catalogue-date 2015-02-23 19:50:58 +0100 +catalogue-license lppl + +name jmlr +category Package +revision 36370 +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 + 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/sample-books/bookLogo-gray.png + RELOC/doc/latex/jmlr/sample-books/bookLogo.png + RELOC/doc/latex/jmlr/sample-books/jmlrbook-sample.pdf + RELOC/doc/latex/jmlr/sample-books/jmlrbook-sample.tex + RELOC/doc/latex/jmlr/sample-books/paper1/paper1.bib + RELOC/doc/latex/jmlr/sample-books/paper1/paper1.tex + RELOC/doc/latex/jmlr/sample-books/paper2/paper2.bib + RELOC/doc/latex/jmlr/sample-books/paper2/paper2.tex + RELOC/doc/latex/jmlr/sample-books/paper3/paper3.bib + RELOC/doc/latex/jmlr/sample-books/paper3/paper3.tex + RELOC/doc/latex/jmlr/sample-books/paper4/paper4.bib + RELOC/doc/latex/jmlr/sample-books/paper4/paper4.tex + RELOC/doc/latex/jmlr/sample-books/proceedings-sample.pdf + RELOC/doc/latex/jmlr/sample-books/proceedings-sample.tex + RELOC/doc/latex/jmlr/sample-papers/images/circle-gray.png + RELOC/doc/latex/jmlr/sample-papers/images/circle.jpg + RELOC/doc/latex/jmlr/sample-papers/images/nodes-gray.png + RELOC/doc/latex/jmlr/sample-papers/images/nodes.png + RELOC/doc/latex/jmlr/sample-papers/images/square-gray.png + RELOC/doc/latex/jmlr/sample-papers/images/square.png + RELOC/doc/latex/jmlr/sample-papers/images/teximage.tex + RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.bib + RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.pdf + RELOC/doc/latex/jmlr/sample-papers/jmlr-sample.tex + RELOC/doc/latex/jmlr/sample-papers/jmlrwcp-sample.pdf + RELOC/doc/latex/jmlr/sample-papers/jmlrwcp-sample.tex +srcfiles size=50 + RELOC/source/latex/jmlr/jmlr.dtx + RELOC/source/latex/jmlr/jmlr.ins +catalogue-ctan /macros/latex/contrib/jmlr +catalogue-date 2015-02-24 16:25:24 +0100 +catalogue-license lppl1.3 +catalogue-version 1.21 + +name jmn +category Package +revision 22719 +relocated 1 +runfiles size=22 + RELOC/fonts/afm/jmn/hans/hans-sh.afm + RELOC/fonts/afm/jmn/hans/hans.afm + RELOC/fonts/enc/dvips/jmn/hans.enc + RELOC/fonts/map/dvips/jmn/hans.map + RELOC/fonts/tfm/jmn/hans/hans-sh.tfm + RELOC/fonts/tfm/jmn/hans/hans.tfm + RELOC/fonts/type1/jmn/hans/hans-sh.pfb + RELOC/fonts/type1/jmn/hans/hans-sh.pfm + RELOC/fonts/type1/jmn/hans/hans.pfb + RELOC/fonts/type1/jmn/hans/hans.pfm + +name jneurosci +category Package +revision 17346 +shortdesc BibTeX style for the Journal of Neuroscience. +relocated 1 +longdesc This is a slightly modified version of the namedplus style, +longdesc which fully conforms with the Journal of Neuroscience citation +longdesc style. It should be characterised as an author-date citation +longdesc style; a BibTeX style and a LaTeX package are provided. +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-license lppl +catalogue-version 1.00 + +name jpsj +category Package +revision 15878 +shortdesc Document Class for Journal of the Physical Society of Japan. +relocated 1 +runfiles size=8 + RELOC/tex/latex/jpsj/jpsj2.cls +docfiles size=61 + RELOC/doc/latex/jpsj/dummy.eps + RELOC/doc/latex/jpsj/injpsj2.pdf + RELOC/doc/latex/jpsj/injpsj2.tex + RELOC/doc/latex/jpsj/template.tex +catalogue-ctan /macros/latex/contrib/jpsj +catalogue-date 2012-04-24 20:59:15 +0200 +catalogue-license lppl +catalogue-version 1.2.2 + +name jsclasses +category Package +revision 34959 +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 + RELOC/source/platex/jsclasses/jsclasses.dtx + RELOC/source/platex/jsclasses/jsclasses.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 +catalogue-ctan /macros/latex/contrib/jsclasses +catalogue-date 2014-11-17 08:06:22 +0100 +catalogue-license bsd + +name jslectureplanner +category Package +revision 37878 +shortdesc Creation and management of university course material. +relocated 1 +longdesc The jslectureplanner package facilitates the generation and +longdesc management of university course material. It provides an +longdesc interface to set up and access centralized course data that can +longdesc be reused in all course documents. Furthermore, the package is +longdesc able to calculate the session dates of a whole semester and +longdesc generate course programs, if the course is held weekly and the +longdesc date of the first lecture is specified. Moreover, the package +longdesc can be used to generate a sectioned course bibliography via +longdesc biblatex. +runfiles size=14 + RELOC/tex/latex/jslectureplanner/cologne.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-ctan /macros/latex/contrib/jslectureplanner +catalogue-date 2015-07-15 13:52:44 +0200 +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 + +name jumplines +category Package +revision 37553 +shortdesc Articles with teasers and continuation later on. +relocated 1 +longdesc Jumplines is a package for typesetting (newspaper) articles +longdesc that show a teaser (some few lines of text/content) and are +longdesc continued at a later place, with optional hyperlinking and a +longdesc list of articles. It requires lualatex for colour support in +longdesc split boxes. +runfiles size=5 + RELOC/tex/latex/jumplines/jumplines.sty +docfiles size=67 + RELOC/doc/latex/jumplines/README + RELOC/doc/latex/jumplines/jumplines_doc.pdf + RELOC/doc/latex/jumplines/jumplines_doc.tex + RELOC/doc/latex/jumplines/jumplines_example.pdf + RELOC/doc/latex/jumplines/jumplines_example.tex +catalogue-ctan /macros/latex/contrib/jumplines +catalogue-date 2015-06-04 15:27:17 +0200 +catalogue-license lppl1.3 +catalogue-topics luatex journalpub +catalogue-version 0.2 + +name junicode +category Package +revision 28286 +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 +docfiles size=105 + RELOC/doc/fonts/junicode/Junicode.pdf + RELOC/doc/fonts/junicode/Junicode.tex + RELOC/doc/fonts/junicode/README + RELOC/doc/fonts/junicode/aelfric_job.pdf + 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 +catalogue-ctan /fonts/junicode +catalogue-date 2014-05-11 22:11:06 +0200 +catalogue-license gpl +catalogue-version 0.7.7 + +name juraabbrev +category Package +revision 15878 +shortdesc Abbreviations for typesetting (German) juridical documents. +relocated 1 +longdesc This package should be helpful for people working on (German) +longdesc law. It helps you to handle abbreviations and creates a list of +longdesc those (pre-defined) abbreviations that have actually been used +longdesc in the document +runfiles size=4 + RELOC/makeindex/juraabbrev/laws.ist + RELOC/tex/latex/juraabbrev/juraabbrev.4ht + RELOC/tex/latex/juraabbrev/juraabbrev.sty +docfiles size=120 + RELOC/doc/latex/juraabbrev/README + RELOC/doc/latex/juraabbrev/abbrevtest.tex + RELOC/doc/latex/juraabbrev/juraabbrev.pdf +srcfiles size=13 + RELOC/source/latex/juraabbrev/juraabbrev.dtx + RELOC/source/latex/juraabbrev/juraabbrev.ins +catalogue-ctan /macros/latex/contrib/juraabbrev +catalogue-date 2012-05-09 16:03:55 +0200 +catalogue-license gpl + +name jurabib +category Package +revision 15878 +shortdesc Extended BibTeX citation support for the humanities and legal texts. +relocated 1 +longdesc This package enables automated citation with BibTeX for legal +longdesc studies and the humanities. In addition, the package provides +longdesc commands for specifying editors in a commentary in a convenient +longdesc way. Simplified formatting of the citation as well as the +longdesc bibliography entry is also provided. It is possible to display +longdesc the (short) title of a work only if an authors is cited with +longdesc multiple works. Giving a full citation in the text, conforming +longdesc to the bibliography entry, is supported. Several options are +longdesc provided which might be of special interest for those outside +longdesc legal studies--for instance, displaying multiple full +longdesc citations. In addition, the format of last names and first +longdesc names of authors may be changed easily. Cross references to +longdesc other footnotes are possible. Language dependent handling of +longdesc bibliography entries is possible by the special language field. +runfiles size=145 + RELOC/bibtex/bib/jurabib/book.bib + RELOC/bibtex/bib/jurabib/comment.bib + RELOC/bibtex/bib/jurabib/jbtest.bib + RELOC/bibtex/bib/jurabib/jbtesthu.bib + RELOC/bibtex/bst/jurabib/jox.bst + RELOC/bibtex/bst/jurabib/jurabib.bst + RELOC/bibtex/bst/jurabib/jureco.bst + RELOC/bibtex/bst/jurabib/jurunsrt.bst + RELOC/tex/latex/jurabib/dajbbib.ldf + RELOC/tex/latex/jurabib/dejbbib.ldf + RELOC/tex/latex/jurabib/dujbbib.ldf + RELOC/tex/latex/jurabib/enjbbib.ldf + RELOC/tex/latex/jurabib/fijbbib.ldf + RELOC/tex/latex/jurabib/frjbbib.ldf + RELOC/tex/latex/jurabib/itjbbib.ldf + RELOC/tex/latex/jurabib/jblong.cfg + RELOC/tex/latex/jurabib/jurabib.cfg + RELOC/tex/latex/jurabib/jurabib.sty + RELOC/tex/latex/jurabib/nojbbib.ldf + RELOC/tex/latex/jurabib/ptjbbib.ldf + RELOC/tex/latex/jurabib/spjbbib.ldf +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-ctan /macros/latex/contrib/jurabib +catalogue-date 2012-05-09 16:03:55 +0200 +catalogue-license gpl +catalogue-version 0.6 + +name juramisc +category Package +revision 15878 +shortdesc Typesetting German juridical documents. +relocated 1 +longdesc A collection of classes for typesetting court sentences, legal +longdesc opinions, books and dissertations for German lawyers. A +longdesc jurabook class is also provided, which may not yet be complete. +runfiles size=31 + RELOC/tex/latex/juramisc/jbgoe.clo + RELOC/tex/latex/juramisc/jbstgallen.clo + RELOC/tex/latex/juramisc/jbtrier.clo + RELOC/tex/latex/juramisc/jurabase.sty + RELOC/tex/latex/juramisc/jurabook.cls + RELOC/tex/latex/juramisc/juraovw.cls + RELOC/tex/latex/juramisc/juraurtl.cls +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-ctan /macros/latex/contrib/juramisc +catalogue-date 2013-10-30 13:49:16 +0100 +catalogue-license lppl +catalogue-version 0.91 + +name jurarsp +category Package +revision 15878 +shortdesc Citations of judgements and official documents in (German) juridical documents. +relocated 1 +longdesc This package should be helpful for people working on (German) +longdesc law. It (ab)uses BibTeX for citations of judgements and +longdesc official documents. For this purpose, a special BibTeX-style is +longdesc provided. +runfiles size=17 + RELOC/bibtex/bst/jurarsp/jurarsp.bst + RELOC/tex/latex/jurarsp/jurarsp.cfg + RELOC/tex/latex/jurarsp/jurarsp.sty +docfiles size=57 + RELOC/doc/latex/jurarsp/README + RELOC/doc/latex/jurarsp/jurarsp.pdf + RELOC/doc/latex/jurarsp/rsptest.bib + RELOC/doc/latex/jurarsp/rsptest.tex +srcfiles size=31 + RELOC/source/latex/jurarsp/jurarsp.dtx + RELOC/source/latex/jurarsp/jurarsp.ins +catalogue-ctan /macros/latex/contrib/jurarsp +catalogue-date 2012-05-09 16:03:55 +0200 +catalogue-license gpl +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. +relocated 1 +longdesc This package provides a LaTeX environment listing, an +longdesc alternative to the built-in verbatim environment. The listing +longdesc environment is tailored for including listings of computer +longdesc program source code into documents. The main advantages over +longdesc the original verbatim environment are: environments +longdesc automatically fixes leading whitespace so that the environment +longdesc and program listing can be indented with the rest of the +longdesc document source, and; listing environments may easily be +longdesc customised and extended. +runfiles size=2 + RELOC/tex/latex/jvlisting/jvlisting.sty +docfiles size=53 + RELOC/doc/latex/jvlisting/README + RELOC/doc/latex/jvlisting/examples.tex + RELOC/doc/latex/jvlisting/jvlisting.pdf + RELOC/doc/latex/jvlisting/test.tex +srcfiles size=7 + RELOC/source/latex/jvlisting/jvlisting.dtx + RELOC/source/latex/jvlisting/jvlisting.ins +catalogue-ctan /macros/latex/contrib/jvlisting +catalogue-date 2014-10-02 22:34:18 +0200 +catalogue-license lppl +catalogue-version 0.7 + +name kantlipsum +category Package +revision 27994 +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 + RELOC/source/latex/kantlipsum/kantlipsum.dtx + RELOC/source/latex/kantlipsum/kantlipsum.ins +catalogue-ctan /macros/latex/contrib/kantlipsum +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.6 + +name karnaughmap +category Package +revision 36989 +shortdesc Typeset Karnaugh maps. +relocated 1 +longdesc This package provides an easy to use interface to typeset +longdesc Karnaugh maps using TikZ. Though similar to the karnaugh +longdesc macros, it provides a key-value system to customize +longdesc karnaughmaps and a proper LaTeX package. +runfiles size=6 + RELOC/tex/latex/karnaughmap/karnaughmap.sty +docfiles size=81 + RELOC/doc/latex/karnaughmap/README + RELOC/doc/latex/karnaughmap/karnaughmap.pdf +srcfiles size=17 + RELOC/source/latex/karnaughmap/karnaughmap.dtx + RELOC/source/latex/karnaughmap/karnaughmap.ins +catalogue-ctan /graphics/pgf/contrib/karnaughmap +catalogue-date 2015-04-21 17:08:42 +0200 +catalogue-license lppl1.2 +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 +docfiles size=37 + RELOC/doc/generic/kastrup/binhex.pdf +srcfiles size=7 + RELOC/source/generic/kastrup/binhex.drv + RELOC/source/generic/kastrup/binhex.dtx + RELOC/source/generic/kastrup/binhex.ins +catalogue-ctan /macros/generic/kastrup +catalogue-date 2012-04-27 17:42:45 +0200 +catalogue-license other-free + +name kdgdocs +category Package +revision 24498 +shortdesc Document classes for Karel de Grote University College. +relocated 1 +longdesc The bundle provides two classes for usage by KdG professors and +longdesc master students: kdgcoursetext: for writing course texts, and +longdesc kdgmasterthesis: for writing master's theses. The bundle +longdesc replaces the original kdgcoursetext package (now removed from +longdesc the archive). +runfiles size=5 + RELOC/tex/latex/kdgdocs/kdgcoursetext.cls + RELOC/tex/latex/kdgdocs/kdgmasterthesis.cls +docfiles size=285 + RELOC/doc/latex/kdgdocs/LICENSE + RELOC/doc/latex/kdgdocs/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.tex + RELOC/doc/latex/kdgdocs/kdgdocs.pdf + RELOC/doc/latex/kdgdocs/kdgmasterthesis-example.pdf + RELOC/doc/latex/kdgdocs/kdgmasterthesis-example.tex + RELOC/doc/latex/kdgdocs/manifest.txt + RELOC/doc/latex/kdgdocs/pi-orchid.jpg +srcfiles size=11 + RELOC/source/latex/kdgdocs/kdgdocs.dtx + RELOC/source/latex/kdgdocs/kdgdocs.ins +catalogue-ctan /macros/latex/contrib/kdgdocs +catalogue-date 2014-10-10 10:29:00 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name kerkis +category Package +revision 15878 +shortdesc Kerkis (Greek) font family. +relocated 1 +longdesc Sans-serif Greek fonts to match the URW Bookman set (which are +longdesc distributed with Kerkis). The Kerkis font set has some support +longdesc for mathematics as well as other glyphs missing from the base +longdesc URW Bookman fonts. Macros are provided to use the fonts in OT1, +longdesc T1 (only NG/ng glyphs missing) and LGR encodings, as well as in +longdesc mathematics; small caps and old-style number glyphs are also +longdesc available. The philosophy, and the design process, of the +longdesc Kerkis fonts is discussed in a paper in TUGboat 23(3/4), 2002. +execute addMap kerkis.map +runfiles size=760 + RELOC/fonts/afm/public/kerkis/Kerkis-Bold.afm + RELOC/fonts/afm/public/kerkis/Kerkis-BoldItalic.afm + RELOC/fonts/afm/public/kerkis/Kerkis-BoldSmallCaps.afm + RELOC/fonts/afm/public/kerkis/Kerkis-Calligraphic.afm + RELOC/fonts/afm/public/kerkis/Kerkis-Italic.afm + RELOC/fonts/afm/public/kerkis/Kerkis-SemiBold-Italic.afm + RELOC/fonts/afm/public/kerkis/Kerkis-SemiBold.afm + RELOC/fonts/afm/public/kerkis/Kerkis-SmallCaps.afm + RELOC/fonts/afm/public/kerkis/Kerkis.afm + RELOC/fonts/afm/public/kerkis/KerkisSans-Bold.afm + RELOC/fonts/afm/public/kerkis/KerkisSans-BoldItalic.afm + RELOC/fonts/afm/public/kerkis/KerkisSans-Italic.afm + RELOC/fonts/afm/public/kerkis/KerkisSans-SmallCaps.afm + RELOC/fonts/afm/public/kerkis/KerkisSans.afm + RELOC/fonts/afm/public/kerkis/ktsy.afm + RELOC/fonts/enc/dvips/kerkis/gkerkis.enc + RELOC/fonts/enc/dvips/kerkis/gkerkisc.enc + RELOC/fonts/enc/dvips/kerkis/gpkerkis.enc + RELOC/fonts/enc/dvips/kerkis/gpkerkisc.enc + RELOC/fonts/enc/dvips/kerkis/kerkis.enc + RELOC/fonts/enc/dvips/kerkis/kerkisc.enc + RELOC/fonts/enc/dvips/kerkis/kerkisec.enc + RELOC/fonts/enc/dvips/kerkis/kerkisecsc.enc + RELOC/fonts/enc/dvips/kerkis/kmath.enc + RELOC/fonts/enc/dvips/kerkis/kmex.enc + RELOC/fonts/enc/dvips/kerkis/kmsym.enc + RELOC/fonts/map/dvips/kerkis/kerkis.map + RELOC/fonts/tfm/public/kerkis/ek8a.tfm + RELOC/fonts/tfm/public/kerkis/ek8r.tfm + RELOC/fonts/tfm/public/kerkis/ekb8a.tfm + RELOC/fonts/tfm/public/kerkis/ekb8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbi8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbi8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbo8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbo8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbsc8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbsc8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbsco8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbsco8r.tfm + RELOC/fonts/tfm/public/kerkis/ekbui8a.tfm + RELOC/fonts/tfm/public/kerkis/ekbui8r.tfm + RELOC/fonts/tfm/public/kerkis/ekcal8a.tfm + RELOC/fonts/tfm/public/kerkis/ekcal8r.tfm + RELOC/fonts/tfm/public/kerkis/eki8a.tfm + RELOC/fonts/tfm/public/kerkis/eki8r.tfm + RELOC/fonts/tfm/public/kerkis/eko8a.tfm + RELOC/fonts/tfm/public/kerkis/eko8r.tfm + RELOC/fonts/tfm/public/kerkis/eksb8a.tfm + RELOC/fonts/tfm/public/kerkis/eksb8r.tfm + RELOC/fonts/tfm/public/kerkis/eksbi8a.tfm + RELOC/fonts/tfm/public/kerkis/eksbi8r.tfm + RELOC/fonts/tfm/public/kerkis/eksbo8a.tfm + RELOC/fonts/tfm/public/kerkis/eksbo8r.tfm + RELOC/fonts/tfm/public/kerkis/eksbui8a.tfm + RELOC/fonts/tfm/public/kerkis/eksbui8r.tfm + RELOC/fonts/tfm/public/kerkis/eksc8a.tfm + RELOC/fonts/tfm/public/kerkis/eksc8r.tfm + RELOC/fonts/tfm/public/kerkis/eksco8a.tfm + RELOC/fonts/tfm/public/kerkis/eksco8r.tfm + RELOC/fonts/tfm/public/kerkis/eksf8a.tfm + RELOC/fonts/tfm/public/kerkis/eksf8t.tfm + RELOC/fonts/tfm/public/kerkis/eksfb8a.tfm + RELOC/fonts/tfm/public/kerkis/eksfb8t.tfm + RELOC/fonts/tfm/public/kerkis/eksfbi8a.tfm + RELOC/fonts/tfm/public/kerkis/eksfbi8t.tfm + RELOC/fonts/tfm/public/kerkis/eksfi8a.tfm + RELOC/fonts/tfm/public/kerkis/eksfi8t.tfm + RELOC/fonts/tfm/public/kerkis/eksfsc8a.tfm + RELOC/fonts/tfm/public/kerkis/eksfsc8t.tfm + RELOC/fonts/tfm/public/kerkis/ekui8a.tfm + RELOC/fonts/tfm/public/kerkis/ekui8r.tfm + RELOC/fonts/tfm/public/kerkis/gk7a.tfm + RELOC/fonts/tfm/public/kerkis/gk7t.tfm + RELOC/fonts/tfm/public/kerkis/gkb7a.tfm + RELOC/fonts/tfm/public/kerkis/gkb7t.tfm + RELOC/fonts/tfm/public/kerkis/gkbi7a.tfm + RELOC/fonts/tfm/public/kerkis/gkbi7t.tfm + RELOC/fonts/tfm/public/kerkis/gkbo7a.tfm + RELOC/fonts/tfm/public/kerkis/gkbo7t.tfm + RELOC/fonts/tfm/public/kerkis/gkbsc8a.tfm + RELOC/fonts/tfm/public/kerkis/gkbsc8r.tfm + RELOC/fonts/tfm/public/kerkis/gkbsco8a.tfm + RELOC/fonts/tfm/public/kerkis/gkbsco8r.tfm + RELOC/fonts/tfm/public/kerkis/gkbui7a.tfm + RELOC/fonts/tfm/public/kerkis/gkbui7t.tfm + RELOC/fonts/tfm/public/kerkis/gkcal7a.tfm + RELOC/fonts/tfm/public/kerkis/gkcal7t.tfm + RELOC/fonts/tfm/public/kerkis/gki7a.tfm + RELOC/fonts/tfm/public/kerkis/gki7t.tfm + RELOC/fonts/tfm/public/kerkis/gko7a.tfm + RELOC/fonts/tfm/public/kerkis/gko7t.tfm + RELOC/fonts/tfm/public/kerkis/gksb7a.tfm + RELOC/fonts/tfm/public/kerkis/gksb7t.tfm + RELOC/fonts/tfm/public/kerkis/gksbi7a.tfm + RELOC/fonts/tfm/public/kerkis/gksbi7t.tfm + RELOC/fonts/tfm/public/kerkis/gksbo7a.tfm + RELOC/fonts/tfm/public/kerkis/gksbo7t.tfm + RELOC/fonts/tfm/public/kerkis/gksbui7a.tfm + RELOC/fonts/tfm/public/kerkis/gksbui7t.tfm + RELOC/fonts/tfm/public/kerkis/gksc7a.tfm + RELOC/fonts/tfm/public/kerkis/gksc7t.tfm + RELOC/fonts/tfm/public/kerkis/gksco7a.tfm + RELOC/fonts/tfm/public/kerkis/gksco7t.tfm + RELOC/fonts/tfm/public/kerkis/gksf7a.tfm + RELOC/fonts/tfm/public/kerkis/gksf7t.tfm + RELOC/fonts/tfm/public/kerkis/gksfb7a.tfm + RELOC/fonts/tfm/public/kerkis/gksfb7t.tfm + RELOC/fonts/tfm/public/kerkis/gksfbi7a.tfm + RELOC/fonts/tfm/public/kerkis/gksfbi7t.tfm + RELOC/fonts/tfm/public/kerkis/gksfi7a.tfm + RELOC/fonts/tfm/public/kerkis/gksfi7t.tfm + RELOC/fonts/tfm/public/kerkis/gksfsc7a.tfm + RELOC/fonts/tfm/public/kerkis/gksfsc7t.tfm + RELOC/fonts/tfm/public/kerkis/gkui7a.tfm + RELOC/fonts/tfm/public/kerkis/gkui7t.tfm + RELOC/fonts/tfm/public/kerkis/k8a.tfm + RELOC/fonts/tfm/public/kerkis/k8r.tfm + RELOC/fonts/tfm/public/kerkis/kb8a.tfm + RELOC/fonts/tfm/public/kerkis/kb8r.tfm + RELOC/fonts/tfm/public/kerkis/kbi8a.tfm + RELOC/fonts/tfm/public/kerkis/kbi8r.tfm + RELOC/fonts/tfm/public/kerkis/kbo8a.tfm + RELOC/fonts/tfm/public/kerkis/kbo8r.tfm + RELOC/fonts/tfm/public/kerkis/kbsc8a.tfm + RELOC/fonts/tfm/public/kerkis/kbsc8r.tfm + RELOC/fonts/tfm/public/kerkis/kbsco8a.tfm + RELOC/fonts/tfm/public/kerkis/kbsco8r.tfm + RELOC/fonts/tfm/public/kerkis/kbui8a.tfm + RELOC/fonts/tfm/public/kerkis/kbui8r.tfm + RELOC/fonts/tfm/public/kerkis/kcal8a.tfm + RELOC/fonts/tfm/public/kerkis/kcal8r.tfm + RELOC/fonts/tfm/public/kerkis/ki8a.tfm + RELOC/fonts/tfm/public/kerkis/ki8r.tfm + RELOC/fonts/tfm/public/kerkis/kmath8a.tfm + RELOC/fonts/tfm/public/kerkis/kmath8r.tfm + RELOC/fonts/tfm/public/kerkis/ko8a.tfm + RELOC/fonts/tfm/public/kerkis/ko8r.tfm + RELOC/fonts/tfm/public/kerkis/ksb8a.tfm + RELOC/fonts/tfm/public/kerkis/ksb8r.tfm + RELOC/fonts/tfm/public/kerkis/ksbi8a.tfm + RELOC/fonts/tfm/public/kerkis/ksbi8r.tfm + RELOC/fonts/tfm/public/kerkis/ksbo8a.tfm + RELOC/fonts/tfm/public/kerkis/ksbo8r.tfm + RELOC/fonts/tfm/public/kerkis/ksbui8a.tfm + RELOC/fonts/tfm/public/kerkis/ksbui8r.tfm + RELOC/fonts/tfm/public/kerkis/ksc8a.tfm + RELOC/fonts/tfm/public/kerkis/ksc8r.tfm + RELOC/fonts/tfm/public/kerkis/ksco8a.tfm + RELOC/fonts/tfm/public/kerkis/ksco8r.tfm + RELOC/fonts/tfm/public/kerkis/ksf8a.tfm + RELOC/fonts/tfm/public/kerkis/ksf8t.tfm + RELOC/fonts/tfm/public/kerkis/ksfb8a.tfm + RELOC/fonts/tfm/public/kerkis/ksfb8t.tfm + RELOC/fonts/tfm/public/kerkis/ksfbi8a.tfm + RELOC/fonts/tfm/public/kerkis/ksfbi8t.tfm + RELOC/fonts/tfm/public/kerkis/ksfi8a.tfm + RELOC/fonts/tfm/public/kerkis/ksfi8t.tfm + RELOC/fonts/tfm/public/kerkis/ksfsc8a.tfm + RELOC/fonts/tfm/public/kerkis/ksfsc8t.tfm + RELOC/fonts/tfm/public/kerkis/ktsy8a.tfm + RELOC/fonts/tfm/public/kerkis/ktsy8r.tfm + RELOC/fonts/tfm/public/kerkis/kui8a.tfm + RELOC/fonts/tfm/public/kerkis/kui8r.tfm + RELOC/fonts/type1/public/kerkis/Kerkis-Bold.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-BoldItalic.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-BoldSmallCaps.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-Calligraphic.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-Italic.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-SemiBold-Italic.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-SemiBold.pfb + RELOC/fonts/type1/public/kerkis/Kerkis-SmallCaps.pfb + RELOC/fonts/type1/public/kerkis/Kerkis.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans-Bold.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans-BoldItalic.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans-Italic.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans-SmallCaps.pfb + RELOC/fonts/type1/public/kerkis/KerkisSans.pfb + RELOC/fonts/type1/public/kerkis/ktsy.pfb + RELOC/fonts/vf/public/kerkis/ek8a.vf + RELOC/fonts/vf/public/kerkis/ekb8a.vf + RELOC/fonts/vf/public/kerkis/ekbi8a.vf + RELOC/fonts/vf/public/kerkis/ekbo8a.vf + RELOC/fonts/vf/public/kerkis/ekbsc8a.vf + RELOC/fonts/vf/public/kerkis/ekbsco8a.vf + RELOC/fonts/vf/public/kerkis/ekbui8a.vf + RELOC/fonts/vf/public/kerkis/ekcal8a.vf + RELOC/fonts/vf/public/kerkis/eki8a.vf + RELOC/fonts/vf/public/kerkis/eko8a.vf + RELOC/fonts/vf/public/kerkis/eksb8a.vf + RELOC/fonts/vf/public/kerkis/eksbi8a.vf + RELOC/fonts/vf/public/kerkis/eksbo8a.vf + RELOC/fonts/vf/public/kerkis/eksbui8a.vf + RELOC/fonts/vf/public/kerkis/eksc8a.vf + RELOC/fonts/vf/public/kerkis/eksco8a.vf + RELOC/fonts/vf/public/kerkis/eksf8t.vf + RELOC/fonts/vf/public/kerkis/eksfb8t.vf + RELOC/fonts/vf/public/kerkis/eksfbi8t.vf + RELOC/fonts/vf/public/kerkis/eksfi8t.vf + RELOC/fonts/vf/public/kerkis/eksfsc8t.vf + RELOC/fonts/vf/public/kerkis/ekui8a.vf + RELOC/fonts/vf/public/kerkis/gk7t.vf + RELOC/fonts/vf/public/kerkis/gkb7t.vf + RELOC/fonts/vf/public/kerkis/gkbi7t.vf + RELOC/fonts/vf/public/kerkis/gkbo7t.vf + RELOC/fonts/vf/public/kerkis/gkbsc8a.vf + RELOC/fonts/vf/public/kerkis/gkbsco8a.vf + RELOC/fonts/vf/public/kerkis/gkbui7t.vf + RELOC/fonts/vf/public/kerkis/gkcal7t.vf + RELOC/fonts/vf/public/kerkis/gki7t.vf + RELOC/fonts/vf/public/kerkis/gko7t.vf + RELOC/fonts/vf/public/kerkis/gksb7t.vf + RELOC/fonts/vf/public/kerkis/gksbi7t.vf + RELOC/fonts/vf/public/kerkis/gksbo7t.vf + RELOC/fonts/vf/public/kerkis/gksbui7t.vf + RELOC/fonts/vf/public/kerkis/gksc7t.vf + RELOC/fonts/vf/public/kerkis/gksco7t.vf + RELOC/fonts/vf/public/kerkis/gksf7t.vf + RELOC/fonts/vf/public/kerkis/gksfb7t.vf + RELOC/fonts/vf/public/kerkis/gksfbi7t.vf + RELOC/fonts/vf/public/kerkis/gksfi7t.vf + RELOC/fonts/vf/public/kerkis/gksfsc7t.vf + RELOC/fonts/vf/public/kerkis/gkui7t.vf + RELOC/fonts/vf/public/kerkis/k8a.vf + RELOC/fonts/vf/public/kerkis/kb8a.vf + RELOC/fonts/vf/public/kerkis/kbi8a.vf + RELOC/fonts/vf/public/kerkis/kbo8a.vf + RELOC/fonts/vf/public/kerkis/kbsc8a.vf + RELOC/fonts/vf/public/kerkis/kbsco8a.vf + RELOC/fonts/vf/public/kerkis/kbui8a.vf + RELOC/fonts/vf/public/kerkis/kcal8a.vf + RELOC/fonts/vf/public/kerkis/ki8a.vf + RELOC/fonts/vf/public/kerkis/kmath8a.vf + RELOC/fonts/vf/public/kerkis/ko8a.vf + RELOC/fonts/vf/public/kerkis/ksb8a.vf + RELOC/fonts/vf/public/kerkis/ksbi8a.vf + RELOC/fonts/vf/public/kerkis/ksbo8a.vf + RELOC/fonts/vf/public/kerkis/ksbui8a.vf + RELOC/fonts/vf/public/kerkis/ksc8a.vf + RELOC/fonts/vf/public/kerkis/ksco8a.vf + RELOC/fonts/vf/public/kerkis/ksf8t.vf + RELOC/fonts/vf/public/kerkis/ksfb8t.vf + RELOC/fonts/vf/public/kerkis/ksfbi8t.vf + RELOC/fonts/vf/public/kerkis/ksfi8t.vf + RELOC/fonts/vf/public/kerkis/ksfsc8t.vf + RELOC/fonts/vf/public/kerkis/ktsy8a.vf + RELOC/fonts/vf/public/kerkis/kui8a.vf + RELOC/tex/latex/kerkis/kerkis.sty + RELOC/tex/latex/kerkis/kmath.sty + RELOC/tex/latex/kerkis/lgrkfn.fd + RELOC/tex/latex/kerkis/lgrmak.fd + RELOC/tex/latex/kerkis/lgrmaksf.fd + RELOC/tex/latex/kerkis/omlmak.fd + RELOC/tex/latex/kerkis/omsmak.fd + RELOC/tex/latex/kerkis/ot1kfn.fd + RELOC/tex/latex/kerkis/ot1mak.fd + RELOC/tex/latex/kerkis/ot1maksf.fd + RELOC/tex/latex/kerkis/t1mak.fd + RELOC/tex/latex/kerkis/t1maksf.fd +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-license lppl + +name kerntest +category Package +revision 15878 +shortdesc Print tables and generate control files to adjust kernings. +relocated 1 +longdesc This class makes it easy to generate tables that show many +longdesc different kerning pairs of an arbitrary font, usable by LaTeX. +longdesc It shows the kerning values that are used in the font by +longdesc default. In addition, this class enables the user to alter the +longdesc kernings and to observe the results. Kerning pairs can be +longdesc defined for groups of similar glyphs at the same time. An mtx +longdesc file is generated automatically. The mtx file may then be +longdesc loaded by fontinst to introduce the user-made kernings into the +longdesc virtual font for later use in LaTeX. +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 +docfiles size=232 + RELOC/doc/latex/kerntest/ChangeLog + RELOC/doc/latex/kerntest/README + RELOC/doc/latex/kerntest/ToDo + RELOC/doc/latex/kerntest/kerntest.pdf + RELOC/doc/latex/kerntest/krntst-v.tex + RELOC/doc/latex/kerntest/ot1-XXX-m-n.tex + RELOC/doc/latex/kerntest/schoolb.map + RELOC/doc/latex/kerntest/schoolb1.tex + RELOC/doc/latex/kerntest/schoolb2.tex + RELOC/doc/latex/kerntest/t1-9nc-m-n-1.tex + RELOC/doc/latex/kerntest/t1-9nc-m-n-2.tex + RELOC/doc/latex/kerntest/t1-XXX-m-n.tex + RELOC/doc/latex/kerntest/t1-cmr-m-n-1200.tex + RELOC/doc/latex/kerntest/t1-ptm-bx-n-example.tex + RELOC/doc/latex/kerntest/t1-ptm-m-n-shortexample.tex + RELOC/doc/latex/kerntest/t1-ptm-m-n.tex + RELOC/doc/latex/kerntest/testschoolb.tex + RELOC/doc/latex/kerntest/ts1-XXX-m-n.tex +srcfiles size=45 + RELOC/source/latex/kerntest/Makefile + RELOC/source/latex/kerntest/kerntest.dtx + RELOC/source/latex/kerntest/kerntest.ins +catalogue-ctan /macros/latex/contrib/kerntest +catalogue-date 2012-05-08 22:29:29 +0200 +catalogue-license lppl +catalogue-version 1.32 + +name keycommand +category Package +revision 18042 +shortdesc Simple creation of commands with key-value arguments. +relocated 1 +longdesc The package (which requires e-TeX) provides a natural way to +longdesc define commands with optional keys. The package provides +longdesc \newkeycommand, \renewkeycommand, \providekeycommand, +longdesc \newkeyenvironment and \renewkeyenvironment, together with +longdesc \keycmd for a more advanced interface. The package is based on +longdesc kvsetkeys by Heiko Oberdiek. +runfiles size=5 + RELOC/tex/latex/keycommand/keycommand.sty +docfiles size=125 + RELOC/doc/latex/keycommand/README + RELOC/doc/latex/keycommand/keycommand-example.pdf + RELOC/doc/latex/keycommand/keycommand-example.tex + RELOC/doc/latex/keycommand/keycommand.pdf +srcfiles size=16 + RELOC/source/latex/keycommand/keycommand.drv + RELOC/source/latex/keycommand/keycommand.dtx + RELOC/source/latex/keycommand/keycommand.ins +catalogue-ctan /macros/latex/contrib/keycommand +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 3.1415 + +name keyreader +category Package +revision 28195 +shortdesc A robust interface to xkeyval. +relocated 1 +longdesc The package provides a robust interface to controlling keys in +longdesc xkeyval, removing some of that package's restrictions. The +longdesc package also addresses some of the issues now covered by the +longdesc author's ltxkeys package, which was assumed to be a replacement +longdesc for keyreader. Since keyreader has remained a favourite with +longdesc users, it has been reinstated. +runfiles size=10 + RELOC/tex/latex/keyreader/keyreader.sty +docfiles size=64 + RELOC/doc/latex/keyreader/README + RELOC/doc/latex/keyreader/keyreader-example1.tex + RELOC/doc/latex/keyreader/keyreader-guide.pdf + RELOC/doc/latex/keyreader/keyreader-guide.tex +catalogue-ctan /macros/latex/contrib/keyreader +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.5b + +name keystroke +category Package +revision 17992 +shortdesc Graphical representation of keys on keyboard. +relocated 1 +longdesc A LaTeX package which provides macros for the graphical +longdesc representation of the keys on a computer keyboard. +runfiles size=10 + RELOC/tex/latex/keystroke/keystroke.sty + RELOC/tex/latex/keystroke/keystroke_left.eps + RELOC/tex/latex/keystroke/keystroke_left.pdf + RELOC/tex/latex/keystroke/keystroke_middle.eps + RELOC/tex/latex/keystroke/keystroke_middle.pdf + RELOC/tex/latex/keystroke/keystroke_right.eps + RELOC/tex/latex/keystroke/keystroke_right.pdf +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-license gpl +catalogue-version v1.6 + +name keyval2e +category Package +revision 23698 +shortdesc A lightweight and robust key-value parser. +relocated 1 +longdesc The package provides lightweight and robust facilities for +longdesc creating and managing keys. Its machinery isn't as extensive as +longdesc that of, e.g., the ltxkeys package, but it is equally robust; +longdesc ease of use and speed of processing are the design aims of the +longdesc package. +runfiles size=3 + RELOC/tex/latex/keyval2e/keyval2e.sty +docfiles size=91 + RELOC/doc/latex/keyval2e/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.tex +catalogue-ctan /macros/latex/contrib/keyval2e +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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 kix +category Package +revision 21606 +shortdesc Typeset KIX codes. +relocated 1 +longdesc Implements KIX codes as used by the Dutch PTT for bulk mail +longdesc addressing. (Royal Mail 4 State Code.) KIX is a registered +longdesc trade mark of PTT Post Holdings B. V. +runfiles size=1 + RELOC/tex/latex/kix/kix.sty +docfiles size=32 + RELOC/doc/latex/kix/kix.pdf + RELOC/doc/latex/kix/kix.tex +catalogue-ctan /macros/latex/contrib/kix +catalogue-date 2012-05-08 22:29:29 +0200 +catalogue-license lppl1 + +name kluwer +category Package +revision 15878 +relocated 1 +runfiles size=114 + RELOC/bibtex/bst/kluwer/klunamed.bst + RELOC/bibtex/bst/kluwer/klunum.bst + RELOC/tex/latex/kluwer/klu10.clo + RELOC/tex/latex/kluwer/klu105.clo + RELOC/tex/latex/kluwer/klu11.clo + RELOC/tex/latex/kluwer/klu12.clo + RELOC/tex/latex/kluwer/klu9.clo + RELOC/tex/latex/kluwer/klucite.sty + RELOC/tex/latex/kluwer/kluedit.sty + RELOC/tex/latex/kluwer/klufloa.sty + RELOC/tex/latex/kluwer/klulist.sty + RELOC/tex/latex/kluwer/klumac.sty + RELOC/tex/latex/kluwer/klumath.sty + RELOC/tex/latex/kluwer/klumono.sty + RELOC/tex/latex/kluwer/klunote.sty + RELOC/tex/latex/kluwer/kluopen.sty + RELOC/tex/latex/kluwer/klups.sty + RELOC/tex/latex/kluwer/kluref.sty + RELOC/tex/latex/kluwer/klusec.sty + RELOC/tex/latex/kluwer/klut10.clo + RELOC/tex/latex/kluwer/klut11.clo + RELOC/tex/latex/kluwer/klut12.clo + RELOC/tex/latex/kluwer/klut9.clo + RELOC/tex/latex/kluwer/klutab.sty + RELOC/tex/latex/kluwer/kluwer.cls +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. +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 + 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/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 + RELOC/fonts/map/dvips/knitting/knitfont.map + RELOC/fonts/source/public/knitting/knit_dimens.mf + RELOC/fonts/source/public/knitting/knit_grid_cables.mf + RELOC/fonts/source/public/knitting/knit_nogrid_cables.mf + RELOC/fonts/source/public/knitting/knit_symbols.mf + RELOC/fonts/source/public/knitting/knitg_sc_in.mf + RELOC/fonts/source/public/knitting/knitg_sc_out.mf + RELOC/fonts/source/public/knitting/knitgg.mf + RELOC/fonts/source/public/knitting/knitgn.mf + RELOC/fonts/source/public/knitting/knitgp.mf + RELOC/fonts/source/public/knitting/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 + RELOC/fonts/tfm/public/knitting/knitg_sc_in.tfm + RELOC/fonts/tfm/public/knitting/knitg_sc_out.tfm + RELOC/fonts/tfm/public/knitting/knitgg.tfm + RELOC/fonts/tfm/public/knitting/knitgn.tfm + RELOC/fonts/tfm/public/knitting/knitgp.tfm + RELOC/fonts/tfm/public/knitting/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 + RELOC/fonts/type1/public/knitting/knitg_sc_in.pfb + RELOC/fonts/type1/public/knitting/knitg_sc_out.pfb + RELOC/fonts/type1/public/knitting/knitgg.pfb + RELOC/fonts/type1/public/knitting/knitgn.pfb + RELOC/fonts/type1/public/knitting/knitgp.pfb + RELOC/fonts/type1/public/knitting/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-ctan /fonts/knitting +catalogue-date 2014-10-10 10:29:00 +0200 +catalogue-license lppl1.3 +catalogue-version 2.0 + +name knuth-lib +category Package +revision 35820 +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. +runfiles size=47 + RELOC/fonts/source/public/knuth-lib/3test.mf + RELOC/fonts/source/public/knuth-lib/6test.mf + RELOC/fonts/source/public/knuth-lib/expr.mf + RELOC/fonts/source/public/knuth-lib/grayf.mf + RELOC/fonts/source/public/knuth-lib/io.mf + RELOC/fonts/source/public/knuth-lib/logo.mf + RELOC/fonts/source/public/knuth-lib/logo10.mf + RELOC/fonts/source/public/knuth-lib/logo8.mf + RELOC/fonts/source/public/knuth-lib/logo9.mf + RELOC/fonts/source/public/knuth-lib/logobf10.mf + RELOC/fonts/source/public/knuth-lib/logosl10.mf + RELOC/fonts/source/public/knuth-lib/manfnt.mf + RELOC/fonts/source/public/knuth-lib/null.mf + RELOC/fonts/source/public/knuth-lib/rtest.mf + RELOC/fonts/source/public/knuth-lib/slant.mf + RELOC/fonts/source/public/knuth-lib/test.mf + RELOC/fonts/source/public/knuth-lib/waits.mf + RELOC/fonts/source/public/knuth-lib/ztest.mf + RELOC/fonts/tfm/public/knuth-lib/logo10.tfm + RELOC/fonts/tfm/public/knuth-lib/logo8.tfm + RELOC/fonts/tfm/public/knuth-lib/logo9.tfm + RELOC/fonts/tfm/public/knuth-lib/logobf10.tfm + RELOC/fonts/tfm/public/knuth-lib/logosl10.tfm + RELOC/fonts/tfm/public/knuth-lib/manfnt.tfm + RELOC/tex/generic/knuth-lib/null.tex + RELOC/tex/plain/knuth-lib/manmac.tex + RELOC/tex/plain/knuth-lib/mftmac.tex + RELOC/tex/plain/knuth-lib/story.tex + RELOC/tex/plain/knuth-lib/testfont.tex + RELOC/tex/plain/knuth-lib/webmac.tex +catalogue-ctan /systems/knuth/dist/lib +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license knuth + +name knuth-local +category Package +revision 33147 +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 + RELOC/fonts/source/public/knuth-local/black.mf + RELOC/fonts/source/public/knuth-local/blackaps.mf + RELOC/fonts/source/public/knuth-local/blackimagen.mf + RELOC/fonts/source/public/knuth-local/blacklino.mf + RELOC/fonts/source/public/knuth-local/blacklj.mf + RELOC/fonts/source/public/knuth-local/domino.mf + RELOC/fonts/source/public/knuth-local/gray.mf + RELOC/fonts/source/public/knuth-local/grayaps.mf + RELOC/fonts/source/public/knuth-local/grayimagen.mf + RELOC/fonts/source/public/knuth-local/grayimagen3.mf + RELOC/fonts/source/public/knuth-local/grayimagenlight.mf + RELOC/fonts/source/public/knuth-local/graylj.mf + RELOC/fonts/source/public/knuth-local/local.mf + RELOC/fonts/source/public/knuth-local/logod10.mf + RELOC/fonts/source/public/knuth-local/logosl9.mf + RELOC/fonts/source/public/knuth-local/mfman.mf + RELOC/fonts/source/public/knuth-local/oneone.mf + RELOC/fonts/source/public/knuth-local/random.mf + RELOC/fonts/source/public/knuth-local/slantaps4.mf + RELOC/fonts/source/public/knuth-local/slantimagen4.mf + RELOC/fonts/source/public/knuth-local/slantimagen6.mf + RELOC/fonts/source/public/knuth-local/slantlino4.mf + RELOC/fonts/source/public/knuth-local/slantlj4.mf + RELOC/fonts/source/public/knuth-local/snfont.mf + RELOC/fonts/tfm/public/knuth-local/domino.tfm + RELOC/fonts/tfm/public/knuth-local/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-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 + +name koma-moderncvclassic +category Package +revision 25025 +shortdesc Makes the style and command of moderncv (style classic) available for koma-classes and thus compatible with biblatex. +relocated 1 +longdesc This package provides an imitation of the moderncv class with +longdesc the classic style (by Xavier Danaux), to be used in conjunction +longdesc with the koma-classes. Thus it is possible to configure +longdesc pagelayout, headings etc. the way it is done in koma-classes. +longdesc Moreover, it is possible to use biblatex, while the original +longdesc moderncv-class is incompatible with biblatex. +runfiles size=4 + RELOC/tex/latex/koma-moderncvclassic/koma-moderncvclassic.sty +docfiles size=50 + RELOC/doc/latex/koma-moderncvclassic/README + RELOC/doc/latex/koma-moderncvclassic/changelog + RELOC/doc/latex/koma-moderncvclassic/cvbasic.pdf + RELOC/doc/latex/koma-moderncvclassic/cvbasic.tex +catalogue-ctan /macros/latex/contrib/koma-moderncvclassic +catalogue-date 2012-01-05 01:27:26 +0100 +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 + +name koma-script +category TLCore +revision 37734 +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 changing and defining page styles, a package scrdate for +longdesc getting not only the current date but also the name of the day, +longdesc and a package scrtime for getting the current time. All these +longdesc packages may be used not only with KOMA-Script classes but also +longdesc with the standard classes. Since every package has its own +longdesc version number, the version number quoted only refers to the +longdesc version of scrbook, scrreprt, scrartcl, scrlttr2 and typearea +longdesc (which are the main parts of the bundle). +runfiles size=4894 + RELOC/doc/latex/koma-script/INSTALL.txt + RELOC/doc/latex/koma-script/INSTALLD.txt + RELOC/doc/latex/koma-script/README + RELOC/doc/latex/koma-script/koma-script.html + RELOC/doc/latex/koma-script/komabug.tex + RELOC/doc/latex/koma-script/komascr.html + RELOC/doc/latex/koma-script/komascript.html + RELOC/doc/latex/koma-script/lppl-de.txt + RELOC/doc/latex/koma-script/lppl.txt + RELOC/doc/latex/koma-script/manifest.txt + RELOC/doc/latex/koma-script/scraddr.html + RELOC/doc/latex/koma-script/scrartcl.html + RELOC/doc/latex/koma-script/scrbase.html + RELOC/doc/latex/koma-script/scrbook.html + RELOC/doc/latex/koma-script/scrdate.html + RELOC/doc/latex/koma-script/scrextend.html + RELOC/doc/latex/koma-script/scrguide.html + RELOC/doc/latex/koma-script/scrguide.pdf + RELOC/doc/latex/koma-script/scrguien.html + RELOC/doc/latex/koma-script/scrguien.pdf + RELOC/doc/latex/koma-script/scrhack.html + RELOC/doc/latex/koma-script/scrhack.pdf + RELOC/doc/latex/koma-script/scrjura.pdf + RELOC/doc/latex/koma-script/scrlayer-notecolumn.html + RELOC/doc/latex/koma-script/scrlayer-scrpage.html + RELOC/doc/latex/koma-script/scrlayer.html + RELOC/doc/latex/koma-script/scrletter.html + RELOC/doc/latex/koma-script/scrlfile.html + RELOC/doc/latex/koma-script/scrlttr2.html + RELOC/doc/latex/koma-script/scrpage2.pdf + RELOC/doc/latex/koma-script/scrreprt.html + RELOC/doc/latex/koma-script/scrtime.html + RELOC/doc/latex/koma-script/scrwfile.html + RELOC/doc/latex/koma-script/tocbasic.html + RELOC/doc/latex/koma-script/tocstyle.pdf + RELOC/doc/latex/koma-script/typearea.html + RELOC/source/latex/koma-script/ChangeLog + RELOC/source/latex/koma-script/ChangeLog.2 + RELOC/source/latex/koma-script/Makefile + RELOC/source/latex/koma-script/Makefile.baseinit + RELOC/source/latex/koma-script/Makefile.baserules + RELOC/source/latex/koma-script/doc/Makefile + RELOC/source/latex/koma-script/doc/Makefile.guide + RELOC/source/latex/koma-script/doc/Makefile.latexinit + RELOC/source/latex/koma-script/doc/bin/genhtmlidx.pl + RELOC/source/latex/koma-script/doc/bin/genindex.pl + RELOC/source/latex/koma-script/doc/english/Makefile + RELOC/source/latex/koma-script/doc/english/adrconvnote.tex + RELOC/source/latex/koma-script/doc/english/authorpart.tex + RELOC/source/latex/koma-script/doc/english/common-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/expertpart.tex + RELOC/source/latex/koma-script/doc/english/guide-english.tex + RELOC/source/latex/koma-script/doc/english/guide.tex + RELOC/source/latex/koma-script/doc/english/htmlsetup + RELOC/source/latex/koma-script/doc/english/introduction.tex + RELOC/source/latex/koma-script/doc/english/japanlco.tex + RELOC/source/latex/koma-script/doc/english/linkalias.tex + RELOC/source/latex/koma-script/doc/english/preface.tex + RELOC/source/latex/koma-script/doc/english/scraddr.tex + RELOC/source/latex/koma-script/doc/english/scrbase.tex + RELOC/source/latex/koma-script/doc/english/scrbookreportarticle-experts.tex + RELOC/source/latex/koma-script/doc/english/scrbookreportarticle.tex + RELOC/source/latex/koma-script/doc/english/scrdatetime.tex + RELOC/source/latex/koma-script/doc/english/scrextend.tex + RELOC/source/latex/koma-script/doc/english/scrhack.tex + RELOC/source/latex/koma-script/doc/english/scrjura.tex + RELOC/source/latex/koma-script/doc/english/scrlayer-notecolumn-example.tex + RELOC/source/latex/koma-script/doc/english/scrlayer-notecolumn.tex + RELOC/source/latex/koma-script/doc/english/scrlayer-scrpage-experts.tex + RELOC/source/latex/koma-script/doc/english/scrlayer-scrpage.tex + RELOC/source/latex/koma-script/doc/english/scrlayer.tex + RELOC/source/latex/koma-script/doc/english/scrlfile.tex + RELOC/source/latex/koma-script/doc/english/scrlttr2-experts.tex + RELOC/source/latex/koma-script/doc/english/scrlttr2.tex + RELOC/source/latex/koma-script/doc/english/scrlttr2examples.dtx + RELOC/source/latex/koma-script/doc/english/scrwfile.tex + RELOC/source/latex/koma-script/doc/english/tocbasic.tex + RELOC/source/latex/koma-script/doc/english/typearea-experts.tex + RELOC/source/latex/koma-script/doc/english/typearea.tex + RELOC/source/latex/koma-script/doc/guide.bib + RELOC/source/latex/koma-script/doc/guide.tex + RELOC/source/latex/koma-script/doc/koma-script.html + RELOC/source/latex/koma-script/doc/komascr.html + RELOC/source/latex/koma-script/doc/komascript.html + RELOC/source/latex/koma-script/doc/linkalias.tex + RELOC/source/latex/koma-script/doc/ngerman/Makefile + RELOC/source/latex/koma-script/doc/ngerman/adrconvnote.tex + RELOC/source/latex/koma-script/doc/ngerman/authorpart.tex + RELOC/source/latex/koma-script/doc/ngerman/common-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/expertpart.tex + RELOC/source/latex/koma-script/doc/ngerman/guide-ngerman.tex + RELOC/source/latex/koma-script/doc/ngerman/guide.tex + RELOC/source/latex/koma-script/doc/ngerman/htmlsetup + RELOC/source/latex/koma-script/doc/ngerman/introduction.tex + RELOC/source/latex/koma-script/doc/ngerman/linkalias.tex + RELOC/source/latex/koma-script/doc/ngerman/preface.tex + RELOC/source/latex/koma-script/doc/ngerman/scraddr.tex + RELOC/source/latex/koma-script/doc/ngerman/scrbase.tex + RELOC/source/latex/koma-script/doc/ngerman/scrbookreportarticle-experts.tex + RELOC/source/latex/koma-script/doc/ngerman/scrbookreportarticle.tex + RELOC/source/latex/koma-script/doc/ngerman/scrdatetime.tex + RELOC/source/latex/koma-script/doc/ngerman/scrextend.tex + RELOC/source/latex/koma-script/doc/ngerman/scrhack.tex + RELOC/source/latex/koma-script/doc/ngerman/scrjura.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn-example.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer-notecolumn.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer-scrpage-experts.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer-scrpage.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlayer.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlfile.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlttr2-experts.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlttr2.tex + RELOC/source/latex/koma-script/doc/ngerman/scrlttr2examples.dtx + RELOC/source/latex/koma-script/doc/ngerman/scrwfile.tex + RELOC/source/latex/koma-script/doc/ngerman/tocbasic.tex + RELOC/source/latex/koma-script/doc/ngerman/typearea-experts.tex + RELOC/source/latex/koma-script/doc/ngerman/typearea.tex + RELOC/source/latex/koma-script/doc/plength.dtx + RELOC/source/latex/koma-script/doc/scraddr.html + RELOC/source/latex/koma-script/doc/scrartcl.html + RELOC/source/latex/koma-script/doc/scrbase.html + RELOC/source/latex/koma-script/doc/scrbook.html + RELOC/source/latex/koma-script/doc/scrdate.html + RELOC/source/latex/koma-script/doc/scrextend.html + RELOC/source/latex/koma-script/doc/scrguide.cls + RELOC/source/latex/koma-script/doc/scrguide.gst + RELOC/source/latex/koma-script/doc/scrguide.html + RELOC/source/latex/koma-script/doc/scrguide.ist + RELOC/source/latex/koma-script/doc/scrguide.pdf + RELOC/source/latex/koma-script/doc/scrguien.html + RELOC/source/latex/koma-script/doc/scrguien.pdf + RELOC/source/latex/koma-script/doc/scrhack.html + RELOC/source/latex/koma-script/doc/scrlayer-notecolumn.html + RELOC/source/latex/koma-script/doc/scrlayer-scrpage.html + RELOC/source/latex/koma-script/doc/scrlayer.html + RELOC/source/latex/koma-script/doc/scrletter.html + RELOC/source/latex/koma-script/doc/scrlfile.html + RELOC/source/latex/koma-script/doc/scrlttr2.html + RELOC/source/latex/koma-script/doc/scrpage2.tex + RELOC/source/latex/koma-script/doc/scrreprt.html + RELOC/source/latex/koma-script/doc/scrtime.html + RELOC/source/latex/koma-script/doc/scrwfile.html + RELOC/source/latex/koma-script/doc/tocbasic.html + RELOC/source/latex/koma-script/doc/typearea.html + RELOC/source/latex/koma-script/japanlco.dtx + RELOC/source/latex/koma-script/scraddr.dtx + RELOC/source/latex/koma-script/scrdoc.dtx + RELOC/source/latex/koma-script/scrdocstrip.tex + RELOC/source/latex/koma-script/scrextend.dtx + RELOC/source/latex/koma-script/scrhack.dtx + RELOC/source/latex/koma-script/scrjura.dtx + RELOC/source/latex/koma-script/scrkernel-basics.dtx + RELOC/source/latex/koma-script/scrkernel-bibliography.dtx + RELOC/source/latex/koma-script/scrkernel-circularletters.dtx + RELOC/source/latex/koma-script/scrkernel-compatibility.dtx + RELOC/source/latex/koma-script/scrkernel-floats.dtx + RELOC/source/latex/koma-script/scrkernel-fonts.dtx + RELOC/source/latex/koma-script/scrkernel-footnotes.dtx + RELOC/source/latex/koma-script/scrkernel-index.dtx + RELOC/source/latex/koma-script/scrkernel-language.dtx + RELOC/source/latex/koma-script/scrkernel-letterclassoptions.dtx + RELOC/source/latex/koma-script/scrkernel-listsandtabulars.dtx + RELOC/source/latex/koma-script/scrkernel-listsof.dtx + RELOC/source/latex/koma-script/scrkernel-miscellaneous.dtx + RELOC/source/latex/koma-script/scrkernel-notepaper.dtx + RELOC/source/latex/koma-script/scrkernel-pagestyles.dtx + RELOC/source/latex/koma-script/scrkernel-paragraphs.dtx + RELOC/source/latex/koma-script/scrkernel-pseudolengths.dtx + RELOC/source/latex/koma-script/scrkernel-sections.dtx + RELOC/source/latex/koma-script/scrkernel-title.dtx + RELOC/source/latex/koma-script/scrkernel-typearea.dtx + RELOC/source/latex/koma-script/scrkernel-variables.dtx + RELOC/source/latex/koma-script/scrkernel-version.dtx + RELOC/source/latex/koma-script/scrlayer-notecolumn.dtx + RELOC/source/latex/koma-script/scrlayer-scrpage.dtx + RELOC/source/latex/koma-script/scrlayer.dtx + RELOC/source/latex/koma-script/scrlfile.dtx + RELOC/source/latex/koma-script/scrlogo.dtx + RELOC/source/latex/koma-script/scrmain.ins + RELOC/source/latex/koma-script/scrpage.dtx + RELOC/source/latex/koma-script/scrsource.tex + RELOC/source/latex/koma-script/scrstrip.inc + RELOC/source/latex/koma-script/scrstrop.inc + RELOC/source/latex/koma-script/scrtime.dtx + RELOC/source/latex/koma-script/scrwfile.dtx + RELOC/source/latex/koma-script/tocbasic.dtx + RELOC/source/latex/koma-script/tocstyle.dtx + RELOC/tex/latex/koma-script/DIN.lco + RELOC/tex/latex/koma-script/DINmtext.lco + RELOC/tex/latex/koma-script/KOMAold.lco + RELOC/tex/latex/koma-script/KakuLL.lco + RELOC/tex/latex/koma-script/NF.lco + RELOC/tex/latex/koma-script/NipponEH.lco + RELOC/tex/latex/koma-script/NipponEL.lco + RELOC/tex/latex/koma-script/NipponLH.lco + RELOC/tex/latex/koma-script/NipponLL.lco + RELOC/tex/latex/koma-script/NipponRL.lco + RELOC/tex/latex/koma-script/SN.lco + RELOC/tex/latex/koma-script/SNleft.lco + RELOC/tex/latex/koma-script/UScommercial9.lco + RELOC/tex/latex/koma-script/UScommercial9DW.lco + RELOC/tex/latex/koma-script/float.hak + RELOC/tex/latex/koma-script/floatrow.hak + RELOC/tex/latex/koma-script/hyperref.hak + RELOC/tex/latex/koma-script/listings.hak + RELOC/tex/latex/koma-script/scraddr.sty + RELOC/tex/latex/koma-script/scrartcl.cls + RELOC/tex/latex/koma-script/scrbase.sty + RELOC/tex/latex/koma-script/scrbook.cls + RELOC/tex/latex/koma-script/scrdate.sty + RELOC/tex/latex/koma-script/scrdoc.cls + RELOC/tex/latex/koma-script/scrextend.sty + RELOC/tex/latex/koma-script/scrfontsizes.sty + RELOC/tex/latex/koma-script/scrhack.sty + RELOC/tex/latex/koma-script/scrjura.sty + RELOC/tex/latex/koma-script/scrkbase.sty + RELOC/tex/latex/koma-script/scrlayer-notecolumn.sty + RELOC/tex/latex/koma-script/scrlayer-scrpage.sty + RELOC/tex/latex/koma-script/scrlayer.sty + RELOC/tex/latex/koma-script/scrletter.sty + RELOC/tex/latex/koma-script/scrlfile.sty + RELOC/tex/latex/koma-script/scrlttr2.cls + RELOC/tex/latex/koma-script/scrpage2.sty + RELOC/tex/latex/koma-script/scrreprt.cls + RELOC/tex/latex/koma-script/scrsize10pt.clo + RELOC/tex/latex/koma-script/scrsize11pt.clo + RELOC/tex/latex/koma-script/scrsize12pt.clo + RELOC/tex/latex/koma-script/scrtime.sty + RELOC/tex/latex/koma-script/scrwfile.sty + RELOC/tex/latex/koma-script/setspace.hak + RELOC/tex/latex/koma-script/tocbasic.sty + RELOC/tex/latex/koma-script/tocstyle.sty + RELOC/tex/latex/koma-script/typearea.sty + RELOC/tex/latex/koma-script/visualize.lco +catalogue-also scrartcl scrbook +catalogue-ctan /macros/latex/contrib/koma-script +catalogue-date 2015-07-02 16:31:08 +0200 +catalogue-license lppl1.3 +catalogue-topics class letter book-pub page-hf geometry +catalogue-version 3.18 + +name kotex-oblivoir +category Package +revision 38033 +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. +depend memoir +depend kotex-utf +runfiles size=60 + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/10_5.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/fapapersize.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/hfontsel.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/hfontspec.nanum + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memhangul-common.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memhangul-patch.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memhangul-ucs.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-enumerate.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-gremph.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-interword.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/memucs-setspace.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/nanumfontsel.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/ob-koreanappendix.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/ob-nokoreanappendix.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-ucs/ob-toclof.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/memhangul-x.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/memucs-interword-x.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xetexko-var.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-amssymb.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-dotemph.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-font.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-hyper.sty + RELOC/tex/latex/kotex-oblivoir/memhangul-x/xob-paralist.sty + RELOC/tex/latex/kotex-oblivoir/oblivoir-base.cls + 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-license lppl1.3 +catalogue-topics korean class +catalogue-version 2.1.4 + +name kotex-plain +category Package +revision 36990 +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. +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-license lppl1.3 +catalogue-version 2.1.0 + +name kotex-utf +category Package +revision 37900 +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. +depend cjk-ko +runfiles size=38 + RELOC/tex/latex/kotex-utf/contrib/dhucs-cmap.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-enumerate.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-enumitem.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-gremph.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-interword.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-paralist.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-sectsty.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-setspace.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-trivcj.sty + RELOC/tex/latex/kotex-utf/contrib/dhucs-ucshyper.sty + RELOC/tex/latex/kotex-utf/contrib/dhucsfn.sty + RELOC/tex/latex/kotex-utf/contrib/kotex-logo.sty + RELOC/tex/latex/kotex-utf/contrib/kotex-varioref.sty + RELOC/tex/latex/kotex-utf/dhucs-nanumfont.sty + RELOC/tex/latex/kotex-utf/dhucs.sty + RELOC/tex/latex/kotex-utf/hfontspec.default + RELOC/tex/latex/kotex-utf/kosections-utf.sty + RELOC/tex/latex/kotex-utf/kotex.cfg + RELOC/tex/latex/kotex-utf/kotexutf.sty + RELOC/tex/latex/kotex-utf/lucenc.dfu + RELOC/tex/latex/kotex-utf/lucuhcmj.fd + RELOC/tex/latex/kotex-utf/tex4ht/dhucs.4ht + RELOC/tex/latex/kotex-utf/tex4ht/dhucs.cfg + RELOC/tex/latex/kotex-utf/tex4ht/kosections-utf.4ht +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-license lppl1.3 +catalogue-topics korean +catalogue-version 2.1.1 + +name kotex-utils +category Package +revision 36210 +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 + 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-license lppl +catalogue-version 2.0.1 + +name kotex-utils.i386-linux +category Package +revision 32101 +shortdesc i386-linux files of kotex-utils +binfiles arch=i386-linux size=3 + bin/i386-linux/jamo-normalize + bin/i386-linux/komkindex + bin/i386-linux/ttf2kotexfont + +name kpathsea +category TLCore +revision 37193 +shortdesc Path searching library for TeX-related files. +longdesc Kpathsea is a library and utility programs which provide path +longdesc searching facilities for TeX file types, including the self- +longdesc locating feature required for movable installations, layered on +longdesc top of a general search mechanism. It is not distributed +longdesc separately, but rather is released and maintained as part of +longdesc the TeX live sources. +depend kpathsea.ARCH +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 + 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/man/man1/kpseaccess.1 + texmf-dist/doc/man/man1/kpseaccess.man1.pdf + texmf-dist/doc/man/man1/kpsereadlink.1 + texmf-dist/doc/man/man1/kpsereadlink.man1.pdf + texmf-dist/doc/man/man1/kpsestat.1 + texmf-dist/doc/man/man1/kpsestat.man1.pdf + texmf-dist/doc/man/man1/kpsewhich.1 + texmf-dist/doc/man/man1/kpsewhich.man1.pdf + texmf-dist/doc/man/man1/mkocp.1 + texmf-dist/doc/man/man1/mkocp.man1.pdf + texmf-dist/doc/man/man1/mkofm.1 + texmf-dist/doc/man/man1/mkofm.man1.pdf + texmf-dist/doc/man/man1/mktexfmt.1 + texmf-dist/doc/man/man1/mktexfmt.man1.pdf + texmf-dist/doc/man/man1/mktexlsr.1 + texmf-dist/doc/man/man1/mktexlsr.man1.pdf + texmf-dist/doc/man/man1/mktexmf.1 + texmf-dist/doc/man/man1/mktexmf.man1.pdf + texmf-dist/doc/man/man1/mktexpk.1 + texmf-dist/doc/man/man1/mktexpk.man1.pdf + texmf-dist/doc/man/man1/mktextfm.1 + texmf-dist/doc/man/man1/mktextfm.man1.pdf + texmf-dist/doc/man/man1/texhash.1 + texmf-dist/doc/man/man1/texhash.man1.pdf + texmf-dist/doc/web2c/web2c.html + texmf-dist/doc/web2c/web2c.pdf +catalogue-date 2015-03-27 13:27:34 +0100 +catalogue-license lgpl + +name kpathsea.i386-linux +category TLCore +revision 37207 +shortdesc i386-linux files of kpathsea +binfiles arch=i386-linux size=47 + bin/i386-linux/kpseaccess + bin/i386-linux/kpsereadlink + bin/i386-linux/kpsestat + bin/i386-linux/kpsewhich + bin/i386-linux/mkocp + bin/i386-linux/mkofm + bin/i386-linux/mktexfmt + bin/i386-linux/mktexlsr + bin/i386-linux/mktexmf + bin/i386-linux/mktexpk + bin/i386-linux/mktextfm + bin/i386-linux/texhash + +name kpfonts +category Package +revision 29803 +shortdesc A complete set of fonts for text and mathematics. +relocated 1 +longdesc The family contains text fonts in roman, sans-serif and +longdesc monospaced shapes, with true small caps and old-style numbers; +longdesc the package offers full support of the textcomp package. The +longdesc mathematics fonts include all the AMS fonts, in both normal and +longdesc bold weights. Each of the font types is available in two main +longdesc versions: default and 'light'. Each version is available in +longdesc four variants: default; oldstyle numbers; oldstyle numbers with +longdesc old ligatures such as ct and st, and long-tailed capital Q; and +longdesc veryoldstyle with long s. Other variants include small caps as +longdesc default or 'large small caps', and for mathematics both upright +longdesc and slanted shapes for Greek letters, as well as default and +longdesc narrow versions of multiple integrals. The fonts were +longdesc originally derived from URW Palladio (with URW's agreement) +longdesc though the fonts are very clearly different in appearance from +longdesc their parent. +execute addMap kpfonts.map +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 + 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 + RELOC/fonts/tfm/public/kpfonts/jkpbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbit8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbite.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmiaw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsy.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsya.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsyc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsyd.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsydw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbsyw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxite.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpbxsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpex.tfm + RELOC/fonts/tfm/public/kpfonts/jkpexa.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpfssosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpkosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbex.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbexa.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbite.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmiaw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbne.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsy.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsyc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsyd.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsydw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbsyw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxite.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxne.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplbxsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplex.tfm + RELOC/fonts/tfm/public/kpfonts/jkplexa.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplfosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplkosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmiaw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmite.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmne.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplmsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsy.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsyc.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsyd.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsydw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplsyw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkplvosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmiaw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmitc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmite.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpmsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmit7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkposnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbex.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssbxsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssex.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssfosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmsc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmscsl.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsskosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsslbsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsslbsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsslsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsslsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmia.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsce.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmscsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssmsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmscsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmscsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsssyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsssybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmsc7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmsc8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpssvosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsy.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsya.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsyb.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsybw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsyc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsyd.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsydw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpsyw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttbsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn8a.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmnc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmne.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsl7c.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsl8r.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmslc.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttmsle.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttosnmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpttvosmsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosbxsl8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmi.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmif.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmifw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmit7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmit8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmiw.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmn7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmn8t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmsl7t.tfm + RELOC/fonts/tfm/public/kpfonts/jkpvosmsl8t.tfm + RELOC/fonts/type1/public/kpfonts/jkpbex.pfb + RELOC/fonts/type1/public/kpfonts/jkpbexa.pfb + RELOC/fonts/type1/public/kpfonts/jkpbit8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpbitc.pfb + RELOC/fonts/type1/public/kpfonts/jkpbite.pfb + RELOC/fonts/type1/public/kpfonts/jkpbmi.pfb + RELOC/fonts/type1/public/kpfonts/jkpbmia.pfb + RELOC/fonts/type1/public/kpfonts/jkpbn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpbnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpbne.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsce.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsy.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsya.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsyb.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsyc.pfb + RELOC/fonts/type1/public/kpfonts/jkpbsyd.pfb + RELOC/fonts/type1/public/kpfonts/jkpex.pfb + RELOC/fonts/type1/public/kpfonts/jkpexa.pfb + RELOC/fonts/type1/public/kpfonts/jkpkbsc.pfb + RELOC/fonts/type1/public/kpfonts/jkpkmsc.pfb + RELOC/fonts/type1/public/kpfonts/jkplbex.pfb + RELOC/fonts/type1/public/kpfonts/jkplbexa.pfb + RELOC/fonts/type1/public/kpfonts/jkplbit8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplbitc.pfb + RELOC/fonts/type1/public/kpfonts/jkplbite.pfb + RELOC/fonts/type1/public/kpfonts/jkplbmi.pfb + RELOC/fonts/type1/public/kpfonts/jkplbmia.pfb + RELOC/fonts/type1/public/kpfonts/jkplbn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplbnc.pfb + RELOC/fonts/type1/public/kpfonts/jkplbne.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsce.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsy.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsyb.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsyc.pfb + RELOC/fonts/type1/public/kpfonts/jkplbsyd.pfb + RELOC/fonts/type1/public/kpfonts/jkplex.pfb + RELOC/fonts/type1/public/kpfonts/jkplexa.pfb + RELOC/fonts/type1/public/kpfonts/jkplkbsc.pfb + RELOC/fonts/type1/public/kpfonts/jkplkmsc.pfb + RELOC/fonts/type1/public/kpfonts/jkplmi.pfb + RELOC/fonts/type1/public/kpfonts/jkplmia.pfb + RELOC/fonts/type1/public/kpfonts/jkplmit8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplmitc.pfb + RELOC/fonts/type1/public/kpfonts/jkplmite.pfb + RELOC/fonts/type1/public/kpfonts/jkplmn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplmnc.pfb + RELOC/fonts/type1/public/kpfonts/jkplmne.pfb + RELOC/fonts/type1/public/kpfonts/jkplmsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkplmsce.pfb + RELOC/fonts/type1/public/kpfonts/jkplsy.pfb + RELOC/fonts/type1/public/kpfonts/jkplsyb.pfb + RELOC/fonts/type1/public/kpfonts/jkplsyc.pfb + RELOC/fonts/type1/public/kpfonts/jkplsyd.pfb + RELOC/fonts/type1/public/kpfonts/jkpmi.pfb + RELOC/fonts/type1/public/kpfonts/jkpmia.pfb + RELOC/fonts/type1/public/kpfonts/jkpmit8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpmitc.pfb + RELOC/fonts/type1/public/kpfonts/jkpmite.pfb + RELOC/fonts/type1/public/kpfonts/jkpmn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpmnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpmne.pfb + RELOC/fonts/type1/public/kpfonts/jkpmsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpmsce.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbne.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpssbsce.pfb + RELOC/fonts/type1/public/kpfonts/jkpsskbsc.pfb + RELOC/fonts/type1/public/kpfonts/jkpsskmsc.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmne.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmsc8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpssmsce.pfb + RELOC/fonts/type1/public/kpfonts/jkpsy.pfb + RELOC/fonts/type1/public/kpfonts/jkpsya.pfb + RELOC/fonts/type1/public/kpfonts/jkpsyb.pfb + RELOC/fonts/type1/public/kpfonts/jkpsyc.pfb + RELOC/fonts/type1/public/kpfonts/jkpsyd.pfb + RELOC/fonts/type1/public/kpfonts/jkpttbn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpttbnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpttbne.pfb + RELOC/fonts/type1/public/kpfonts/jkpttmn8a.pfb + RELOC/fonts/type1/public/kpfonts/jkpttmnc.pfb + RELOC/fonts/type1/public/kpfonts/jkpttmne.pfb + RELOC/fonts/vf/public/kpfonts/jkpbit7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbmiaw.vf + RELOC/fonts/vf/public/kpfonts/jkpbmif.vf + RELOC/fonts/vf/public/kpfonts/jkpbmifw.vf + RELOC/fonts/vf/public/kpfonts/jkpbmiw.vf + RELOC/fonts/vf/public/kpfonts/jkpbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpbsydw.vf + RELOC/fonts/vf/public/kpfonts/jkpbsyw.vf + RELOC/fonts/vf/public/kpfonts/jkpbxit7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpfssosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpkosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbmiaw.vf + RELOC/fonts/vf/public/kpfonts/jkplbmif.vf + RELOC/fonts/vf/public/kpfonts/jkplbmifw.vf + RELOC/fonts/vf/public/kpfonts/jkplbmiw.vf + RELOC/fonts/vf/public/kpfonts/jkplbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbsybw.vf + RELOC/fonts/vf/public/kpfonts/jkplbsydw.vf + RELOC/fonts/vf/public/kpfonts/jkplbsyw.vf + RELOC/fonts/vf/public/kpfonts/jkplbxit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplfosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplkosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmiaw.vf + RELOC/fonts/vf/public/kpfonts/jkplmif.vf + RELOC/fonts/vf/public/kpfonts/jkplmifw.vf + RELOC/fonts/vf/public/kpfonts/jkplmit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmiw.vf + RELOC/fonts/vf/public/kpfonts/jkplmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmit7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplsybw.vf + RELOC/fonts/vf/public/kpfonts/jkplsydw.vf + RELOC/fonts/vf/public/kpfonts/jkplsyw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbmi.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbmif.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbmifw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbmiw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmi.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmif.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmifw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmiw.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkplvosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmiaw.vf + RELOC/fonts/vf/public/kpfonts/jkpmif.vf + RELOC/fonts/vf/public/kpfonts/jkpmifw.vf + RELOC/fonts/vf/public/kpfonts/jkpmit7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmiw.vf + RELOC/fonts/vf/public/kpfonts/jkpmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbit7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxit7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmit7c.vf + RELOC/fonts/vf/public/kpfonts/jkposmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkposmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkposmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkposmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkposnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbex.vf + RELOC/fonts/vf/public/kpfonts/jkpssbmi.vf + RELOC/fonts/vf/public/kpfonts/jkpssbmia.vf + RELOC/fonts/vf/public/kpfonts/jkpssbmif.vf + RELOC/fonts/vf/public/kpfonts/jkpssbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsyb.vf + RELOC/fonts/vf/public/kpfonts/jkpssbsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssex.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssfosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpsskosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsslbsyb.vf + RELOC/fonts/vf/public/kpfonts/jkpsslbsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpsslsyb.vf + RELOC/fonts/vf/public/kpfonts/jkpsslsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpssmi.vf + RELOC/fonts/vf/public/kpfonts/jkpssmia.vf + RELOC/fonts/vf/public/kpfonts/jkpssmif.vf + RELOC/fonts/vf/public/kpfonts/jkpssmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsc7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmscsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmscsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmscsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsssyb.vf + RELOC/fonts/vf/public/kpfonts/jkpsssybw.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbmi.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbmif.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmi.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmif.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmsc7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmsc8t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpssvosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpsybw.vf + RELOC/fonts/vf/public/kpfonts/jkpsydw.vf + RELOC/fonts/vf/public/kpfonts/jkpsyw.vf + RELOC/fonts/vf/public/kpfonts/jkpttbn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpttbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttbsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpttbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttmn7c.vf + RELOC/fonts/vf/public/kpfonts/jkpttmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttmsl7c.vf + RELOC/fonts/vf/public/kpfonts/jkpttmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttosnmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpttvosmsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbmi.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbmif.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbmifw.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbmiw.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosbxsl8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmi.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmif.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmifw.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmit7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmit8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmiw.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmn7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmn8t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmsl7t.vf + RELOC/fonts/vf/public/kpfonts/jkpvosmsl8t.vf + RELOC/tex/latex/kpfonts/kpfonts.sty + RELOC/tex/latex/kpfonts/omljkp.fd + RELOC/tex/latex/kpfonts/omljkpl.fd + RELOC/tex/latex/kpfonts/omljkplvos.fd + RELOC/tex/latex/kpfonts/omljkplvosw.fd + RELOC/tex/latex/kpfonts/omljkplw.fd + RELOC/tex/latex/kpfonts/omljkpss.fd + RELOC/tex/latex/kpfonts/omljkpssvos.fd + RELOC/tex/latex/kpfonts/omljkpvos.fd + RELOC/tex/latex/kpfonts/omljkpvosw.fd + RELOC/tex/latex/kpfonts/omljkpw.fd + RELOC/tex/latex/kpfonts/omsjkp.fd + RELOC/tex/latex/kpfonts/omsjkpl.fd + RELOC/tex/latex/kpfonts/omsjkplw.fd + RELOC/tex/latex/kpfonts/omsjkpw.fd + RELOC/tex/latex/kpfonts/omxjkp.fd + RELOC/tex/latex/kpfonts/omxjkpl.fd + RELOC/tex/latex/kpfonts/omxjkpss.fd + RELOC/tex/latex/kpfonts/ot1jkp.fd + RELOC/tex/latex/kpfonts/ot1jkpf.fd + RELOC/tex/latex/kpfonts/ot1jkpfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpk.fd + RELOC/tex/latex/kpfonts/ot1jkpkf.fd + RELOC/tex/latex/kpfonts/ot1jkpkfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpkos.fd + RELOC/tex/latex/kpfonts/ot1jkpkosn.fd + RELOC/tex/latex/kpfonts/ot1jkpkvos.fd + RELOC/tex/latex/kpfonts/ot1jkpl.fd + RELOC/tex/latex/kpfonts/ot1jkplf.fd + RELOC/tex/latex/kpfonts/ot1jkplfosn.fd + RELOC/tex/latex/kpfonts/ot1jkplk.fd + RELOC/tex/latex/kpfonts/ot1jkplkf.fd + RELOC/tex/latex/kpfonts/ot1jkplkfosn.fd + RELOC/tex/latex/kpfonts/ot1jkplkos.fd + RELOC/tex/latex/kpfonts/ot1jkplkosn.fd + RELOC/tex/latex/kpfonts/ot1jkplkvos.fd + RELOC/tex/latex/kpfonts/ot1jkplos.fd + RELOC/tex/latex/kpfonts/ot1jkplosn.fd + RELOC/tex/latex/kpfonts/ot1jkplvos.fd + RELOC/tex/latex/kpfonts/ot1jkpos.fd + RELOC/tex/latex/kpfonts/ot1jkposn.fd + RELOC/tex/latex/kpfonts/ot1jkpss.fd + RELOC/tex/latex/kpfonts/ot1jkpssf.fd + RELOC/tex/latex/kpfonts/ot1jkpssfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpssk.fd + RELOC/tex/latex/kpfonts/ot1jkpsskf.fd + RELOC/tex/latex/kpfonts/ot1jkpsskfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpsskos.fd + RELOC/tex/latex/kpfonts/ot1jkpsskosn.fd + RELOC/tex/latex/kpfonts/ot1jkpsskvos.fd + RELOC/tex/latex/kpfonts/ot1jkpssos.fd + RELOC/tex/latex/kpfonts/ot1jkpssosn.fd + RELOC/tex/latex/kpfonts/ot1jkpssvos.fd + RELOC/tex/latex/kpfonts/ot1jkptt.fd + RELOC/tex/latex/kpfonts/ot1jkpttos.fd + RELOC/tex/latex/kpfonts/ot1jkpttosn.fd + RELOC/tex/latex/kpfonts/ot1jkpttvos.fd + RELOC/tex/latex/kpfonts/ot1jkpvos.fd + RELOC/tex/latex/kpfonts/ot1jkpx.fd + RELOC/tex/latex/kpfonts/ot1jkpxf.fd + RELOC/tex/latex/kpfonts/ot1jkpxfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpxk.fd + RELOC/tex/latex/kpfonts/ot1jkpxkf.fd + RELOC/tex/latex/kpfonts/ot1jkpxkfosn.fd + RELOC/tex/latex/kpfonts/ot1jkpxkos.fd + RELOC/tex/latex/kpfonts/ot1jkpxkosn.fd + RELOC/tex/latex/kpfonts/ot1jkpxkvos.fd + RELOC/tex/latex/kpfonts/ot1jkpxos.fd + RELOC/tex/latex/kpfonts/ot1jkpxosn.fd + RELOC/tex/latex/kpfonts/ot1jkpxvos.fd + RELOC/tex/latex/kpfonts/t1jkp.fd + RELOC/tex/latex/kpfonts/t1jkpf.fd + RELOC/tex/latex/kpfonts/t1jkpfosn.fd + RELOC/tex/latex/kpfonts/t1jkpk.fd + RELOC/tex/latex/kpfonts/t1jkpkf.fd + RELOC/tex/latex/kpfonts/t1jkpkfosn.fd + RELOC/tex/latex/kpfonts/t1jkpkos.fd + RELOC/tex/latex/kpfonts/t1jkpkosn.fd + RELOC/tex/latex/kpfonts/t1jkpkvos.fd + RELOC/tex/latex/kpfonts/t1jkpl.fd + RELOC/tex/latex/kpfonts/t1jkplf.fd + RELOC/tex/latex/kpfonts/t1jkplfosn.fd + RELOC/tex/latex/kpfonts/t1jkplk.fd + RELOC/tex/latex/kpfonts/t1jkplkf.fd + RELOC/tex/latex/kpfonts/t1jkplkfosn.fd + RELOC/tex/latex/kpfonts/t1jkplkos.fd + RELOC/tex/latex/kpfonts/t1jkplkosn.fd + RELOC/tex/latex/kpfonts/t1jkplkvos.fd + RELOC/tex/latex/kpfonts/t1jkplos.fd + RELOC/tex/latex/kpfonts/t1jkplosn.fd + RELOC/tex/latex/kpfonts/t1jkplvos.fd + RELOC/tex/latex/kpfonts/t1jkpos.fd + RELOC/tex/latex/kpfonts/t1jkposn.fd + RELOC/tex/latex/kpfonts/t1jkpss.fd + RELOC/tex/latex/kpfonts/t1jkpssf.fd + RELOC/tex/latex/kpfonts/t1jkpssfosn.fd + RELOC/tex/latex/kpfonts/t1jkpssk.fd + RELOC/tex/latex/kpfonts/t1jkpsskf.fd + RELOC/tex/latex/kpfonts/t1jkpsskfosn.fd + RELOC/tex/latex/kpfonts/t1jkpsskos.fd + RELOC/tex/latex/kpfonts/t1jkpsskosn.fd + RELOC/tex/latex/kpfonts/t1jkpsskvos.fd + RELOC/tex/latex/kpfonts/t1jkpssos.fd + RELOC/tex/latex/kpfonts/t1jkpssosn.fd + RELOC/tex/latex/kpfonts/t1jkpssvos.fd + RELOC/tex/latex/kpfonts/t1jkptt.fd + RELOC/tex/latex/kpfonts/t1jkpttos.fd + RELOC/tex/latex/kpfonts/t1jkpttosn.fd + RELOC/tex/latex/kpfonts/t1jkpttvos.fd + RELOC/tex/latex/kpfonts/t1jkpvos.fd + RELOC/tex/latex/kpfonts/t1jkpx.fd + RELOC/tex/latex/kpfonts/t1jkpxf.fd + RELOC/tex/latex/kpfonts/t1jkpxfosn.fd + RELOC/tex/latex/kpfonts/t1jkpxk.fd + RELOC/tex/latex/kpfonts/t1jkpxkf.fd + RELOC/tex/latex/kpfonts/t1jkpxkfosn.fd + RELOC/tex/latex/kpfonts/t1jkpxkos.fd + RELOC/tex/latex/kpfonts/t1jkpxkosn.fd + RELOC/tex/latex/kpfonts/t1jkpxkvos.fd + RELOC/tex/latex/kpfonts/t1jkpxos.fd + RELOC/tex/latex/kpfonts/t1jkpxosn.fd + RELOC/tex/latex/kpfonts/t1jkpxvos.fd + RELOC/tex/latex/kpfonts/ts1jkp.fd + RELOC/tex/latex/kpfonts/ts1jkpf.fd + RELOC/tex/latex/kpfonts/ts1jkpfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpk.fd + RELOC/tex/latex/kpfonts/ts1jkpkf.fd + RELOC/tex/latex/kpfonts/ts1jkpkfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpkos.fd + RELOC/tex/latex/kpfonts/ts1jkpkosn.fd + RELOC/tex/latex/kpfonts/ts1jkpkvos.fd + RELOC/tex/latex/kpfonts/ts1jkpl.fd + RELOC/tex/latex/kpfonts/ts1jkplf.fd + RELOC/tex/latex/kpfonts/ts1jkplfosn.fd + RELOC/tex/latex/kpfonts/ts1jkplk.fd + RELOC/tex/latex/kpfonts/ts1jkplkf.fd + RELOC/tex/latex/kpfonts/ts1jkplkfosn.fd + RELOC/tex/latex/kpfonts/ts1jkplkos.fd + RELOC/tex/latex/kpfonts/ts1jkplkosn.fd + RELOC/tex/latex/kpfonts/ts1jkplkvos.fd + RELOC/tex/latex/kpfonts/ts1jkplos.fd + RELOC/tex/latex/kpfonts/ts1jkplosn.fd + RELOC/tex/latex/kpfonts/ts1jkplvos.fd + RELOC/tex/latex/kpfonts/ts1jkpos.fd + RELOC/tex/latex/kpfonts/ts1jkposn.fd + RELOC/tex/latex/kpfonts/ts1jkpss.fd + RELOC/tex/latex/kpfonts/ts1jkpssf.fd + RELOC/tex/latex/kpfonts/ts1jkpssfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpssk.fd + RELOC/tex/latex/kpfonts/ts1jkpsskf.fd + RELOC/tex/latex/kpfonts/ts1jkpsskfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpsskos.fd + RELOC/tex/latex/kpfonts/ts1jkpsskosn.fd + RELOC/tex/latex/kpfonts/ts1jkpsskvos.fd + RELOC/tex/latex/kpfonts/ts1jkpssos.fd + RELOC/tex/latex/kpfonts/ts1jkpssosn.fd + RELOC/tex/latex/kpfonts/ts1jkpssvos.fd + RELOC/tex/latex/kpfonts/ts1jkptt.fd + RELOC/tex/latex/kpfonts/ts1jkpttos.fd + RELOC/tex/latex/kpfonts/ts1jkpttosn.fd + RELOC/tex/latex/kpfonts/ts1jkpttvos.fd + RELOC/tex/latex/kpfonts/ts1jkpvos.fd + RELOC/tex/latex/kpfonts/ts1jkpx.fd + RELOC/tex/latex/kpfonts/ts1jkpxf.fd + RELOC/tex/latex/kpfonts/ts1jkpxfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpxk.fd + RELOC/tex/latex/kpfonts/ts1jkpxkf.fd + RELOC/tex/latex/kpfonts/ts1jkpxkfosn.fd + RELOC/tex/latex/kpfonts/ts1jkpxkos.fd + RELOC/tex/latex/kpfonts/ts1jkpxkosn.fd + RELOC/tex/latex/kpfonts/ts1jkpxkvos.fd + RELOC/tex/latex/kpfonts/ts1jkpxos.fd + RELOC/tex/latex/kpfonts/ts1jkpxosn.fd + RELOC/tex/latex/kpfonts/ts1jkpxvos.fd + RELOC/tex/latex/kpfonts/ujkpexa.fd + RELOC/tex/latex/kpfonts/ujkplexa.fd + RELOC/tex/latex/kpfonts/ujkplmia.fd + RELOC/tex/latex/kpfonts/ujkplmiaw.fd + RELOC/tex/latex/kpfonts/ujkplsyb.fd + RELOC/tex/latex/kpfonts/ujkplsybw.fd + RELOC/tex/latex/kpfonts/ujkplsyc.fd + RELOC/tex/latex/kpfonts/ujkplsyd.fd + RELOC/tex/latex/kpfonts/ujkplsydw.fd + RELOC/tex/latex/kpfonts/ujkpmia.fd + RELOC/tex/latex/kpfonts/ujkpmiaw.fd + RELOC/tex/latex/kpfonts/ujkpsslsyb.fd + RELOC/tex/latex/kpfonts/ujkpsslsybw.fd + RELOC/tex/latex/kpfonts/ujkpssmia.fd + RELOC/tex/latex/kpfonts/ujkpsssyb.fd + RELOC/tex/latex/kpfonts/ujkpsssybw.fd + RELOC/tex/latex/kpfonts/ujkpsya.fd + RELOC/tex/latex/kpfonts/ujkpsyb.fd + RELOC/tex/latex/kpfonts/ujkpsybw.fd + RELOC/tex/latex/kpfonts/ujkpsyc.fd + RELOC/tex/latex/kpfonts/ujkpsyd.fd + RELOC/tex/latex/kpfonts/ujkpsydw.fd +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-license gpl +catalogue-version 3.31 + +name ksfh_nat +category Package +revision 24825 +catalogue ksfh-nat +shortdesc BibTeX style for KSFH Munich. +relocated 1 +longdesc The package supports bibliographies as standard for KSFH +longdesc (Katholische Stiftungsfachhochschule) Munich. BibTeX entries in +longdesc article, book, inbook, incollection and misc formats are +longdesc supported. +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-license lppl1.3 +catalogue-version 1.1 + +name ktv-texdata +category Package +revision 27369 +shortdesc Extract subsets of documents. +relocated 1 +longdesc The package defines an exercice environment which numbers every +longdesc exercise, and a command \get to extract a collection whose +longdesc argument is a comma-separated set of exercise index numbers. +longdesc While the package was designed for teachers constructing tables +longdesc of exercises, it plainly has more general application. +runfiles size=3 + RELOC/tex/latex/ktv-texdata/ktv-buildnum.sty + RELOC/tex/latex/ktv-texdata/ktv-texdata.sty +docfiles size=60 + RELOC/doc/latex/ktv-texdata/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 +srcfiles size=15 + RELOC/source/latex/ktv-texdata/ktv-texdata.dtx + RELOC/source/latex/ktv-texdata/ktv-texdata.ins +catalogue-ctan /macros/latex/contrib/ktv-texdata +catalogue-date 2012-08-13 12:34:19 +0200 +catalogue-license gpl +catalogue-version 05.34 + +name kurier +category Package +revision 19612 +shortdesc A two-element sans-serif typeface. +relocated 1 +longdesc Kurier is a two-element sans-serif typeface. It was designed +longdesc for a diploma in typeface design at the Warsaw Academy of Fine +longdesc Arts under the supervision of Roman Tomaszewski. This +longdesc distribution contains a significantly extended set of +longdesc characters covering the following modern alphabets: latin +longdesc (including Vietnamese), Cyrillic and Greek as well as a number +longdesc of additional symbols (including mathematical symbols). The +longdesc fonts are prepared in Type 1 and OpenType formats. For use with +longdesc TeX the following encoding files have been prepared: T1 (ec), +longdesc T2 (abc), and OT2--Cyrillic, T5 (Vietnamese), OT4, QX, texansi +longdesc and--nonstandard (IL2 for the Czech fonts), as well as +longdesc supporting macros and files defining fonts for LaTeX. +execute addMap kurier.map +runfiles size=4363 + RELOC/fonts/afm/nowacki/kurier/kurierb.afm + RELOC/fonts/afm/nowacki/kurier/kurierbi.afm + RELOC/fonts/afm/nowacki/kurier/kuriercb.afm + RELOC/fonts/afm/nowacki/kurier/kuriercbi.afm + RELOC/fonts/afm/nowacki/kurier/kurierch.afm + RELOC/fonts/afm/nowacki/kurier/kurierchi.afm + RELOC/fonts/afm/nowacki/kurier/kuriercl.afm + RELOC/fonts/afm/nowacki/kurier/kuriercli.afm + RELOC/fonts/afm/nowacki/kurier/kuriercm.afm + RELOC/fonts/afm/nowacki/kurier/kuriercmi.afm + RELOC/fonts/afm/nowacki/kurier/kuriercr.afm + RELOC/fonts/afm/nowacki/kurier/kuriercri.afm + RELOC/fonts/afm/nowacki/kurier/kurierh.afm + RELOC/fonts/afm/nowacki/kurier/kurierhi.afm + RELOC/fonts/afm/nowacki/kurier/kurierl.afm + RELOC/fonts/afm/nowacki/kurier/kurierli.afm + RELOC/fonts/afm/nowacki/kurier/kurierm.afm + RELOC/fonts/afm/nowacki/kurier/kuriermi.afm + RELOC/fonts/afm/nowacki/kurier/kurierr.afm + RELOC/fonts/afm/nowacki/kurier/kurierri.afm + RELOC/fonts/enc/dvips/kurier/cs-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/cs-kurier.enc + RELOC/fonts/enc/dvips/kurier/ec-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/ec-kurier.enc + RELOC/fonts/enc/dvips/kurier/ex-kurier.enc + RELOC/fonts/enc/dvips/kurier/greek-kurier.enc + RELOC/fonts/enc/dvips/kurier/l7x-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/l7x-kurier.enc + RELOC/fonts/enc/dvips/kurier/mi-kurier.enc + RELOC/fonts/enc/dvips/kurier/qx-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/qx-kurier.enc + RELOC/fonts/enc/dvips/kurier/rm-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/rm-kurier.enc + RELOC/fonts/enc/dvips/kurier/sy-kurier.enc + RELOC/fonts/enc/dvips/kurier/t2a-kurier.enc + RELOC/fonts/enc/dvips/kurier/t2b-kurier.enc + RELOC/fonts/enc/dvips/kurier/t2c-kurier.enc + RELOC/fonts/enc/dvips/kurier/t5-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/t5-kurier.enc + RELOC/fonts/enc/dvips/kurier/texnansi-kurier-sc.enc + RELOC/fonts/enc/dvips/kurier/texnansi-kurier.enc + RELOC/fonts/enc/dvips/kurier/ts1-kurier.enc + RELOC/fonts/enc/dvips/kurier/wncy-kurier.enc + RELOC/fonts/map/dvips/kurier/kurier-cs.map + RELOC/fonts/map/dvips/kurier/kurier-ec.map + RELOC/fonts/map/dvips/kurier/kurier-ex.map + RELOC/fonts/map/dvips/kurier/kurier-greek.map + RELOC/fonts/map/dvips/kurier/kurier-l7x.map + RELOC/fonts/map/dvips/kurier/kurier-mi.map + RELOC/fonts/map/dvips/kurier/kurier-qx.map + RELOC/fonts/map/dvips/kurier/kurier-rm.map + RELOC/fonts/map/dvips/kurier/kurier-sy.map + RELOC/fonts/map/dvips/kurier/kurier-t2a.map + RELOC/fonts/map/dvips/kurier/kurier-t2b.map + RELOC/fonts/map/dvips/kurier/kurier-t2c.map + RELOC/fonts/map/dvips/kurier/kurier-t5.map + RELOC/fonts/map/dvips/kurier/kurier-texnansi.map + RELOC/fonts/map/dvips/kurier/kurier-ts1.map + RELOC/fonts/map/dvips/kurier/kurier-wncy.map + RELOC/fonts/map/dvips/kurier/kurier.map + RELOC/fonts/opentype/nowacki/kurier/Kurier-Bold.otf + RELOC/fonts/opentype/nowacki/kurier/Kurier-BoldItalic.otf + RELOC/fonts/opentype/nowacki/kurier/Kurier-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/Kurier-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCond-Bold.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCond-BoldItalic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCond-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCond-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondHeavy-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondHeavy-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondLight-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondLight-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondMedium-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierCondMedium-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierHeavy-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierHeavy-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierLight-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierLight-Regular.otf + RELOC/fonts/opentype/nowacki/kurier/KurierMedium-Italic.otf + RELOC/fonts/opentype/nowacki/kurier/KurierMedium-Regular.otf + RELOC/fonts/tfm/nowacki/kurier/cs-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/cs-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/ec-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/ex-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/greek-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/l7x-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/mi-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/qx-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/rm-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierbz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kuriercbz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierchz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierclz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kuriercmz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kuriercrz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierhz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierlz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kuriermz.tfm + RELOC/fonts/tfm/nowacki/kurier/sy-kurierrz.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2a-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2b-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/t2c-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/t5-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercb-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercbi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierch-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierchi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercmi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierh-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierhi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierl-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierli-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierm-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriermi-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierr-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierri-sc.tfm + RELOC/fonts/tfm/nowacki/kurier/texnansi-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/ts1-kurierri.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierb.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierbi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercb.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercbi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierch.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierchi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercl.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercli.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercm.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercmi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercr.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriercri.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierh.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierhi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierl.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierli.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierm.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kuriermi.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierr.tfm + RELOC/fonts/tfm/nowacki/kurier/wncy-kurierri.tfm + RELOC/fonts/type1/nowacki/kurier/kurierb.pfb + RELOC/fonts/type1/nowacki/kurier/kurierbi.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercb.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercbi.pfb + RELOC/fonts/type1/nowacki/kurier/kurierch.pfb + RELOC/fonts/type1/nowacki/kurier/kurierchi.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercl.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercli.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercm.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercmi.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercr.pfb + RELOC/fonts/type1/nowacki/kurier/kuriercri.pfb + RELOC/fonts/type1/nowacki/kurier/kurierh.pfb + RELOC/fonts/type1/nowacki/kurier/kurierhi.pfb + RELOC/fonts/type1/nowacki/kurier/kurierl.pfb + RELOC/fonts/type1/nowacki/kurier/kurierli.pfb + RELOC/fonts/type1/nowacki/kurier/kurierm.pfb + RELOC/fonts/type1/nowacki/kurier/kuriermi.pfb + RELOC/fonts/type1/nowacki/kurier/kurierr.pfb + RELOC/fonts/type1/nowacki/kurier/kurierri.pfb + RELOC/tex/latex/kurier/il2kurier.fd + RELOC/tex/latex/kurier/il2kurierc.fd + RELOC/tex/latex/kurier/il2kurierl.fd + RELOC/tex/latex/kurier/il2kurierlc.fd + RELOC/tex/latex/kurier/kurier.sty + RELOC/tex/latex/kurier/l7xkurier.fd + RELOC/tex/latex/kurier/l7xkurierc.fd + RELOC/tex/latex/kurier/l7xkurierl.fd + RELOC/tex/latex/kurier/l7xkurierlc.fd + RELOC/tex/latex/kurier/ly1kurier.fd + RELOC/tex/latex/kurier/ly1kurierc.fd + RELOC/tex/latex/kurier/ly1kurierl.fd + RELOC/tex/latex/kurier/ly1kurierlc.fd + RELOC/tex/latex/kurier/omlkurier.fd + RELOC/tex/latex/kurier/omlkurierc.fd + RELOC/tex/latex/kurier/omlkurierl.fd + RELOC/tex/latex/kurier/omlkurierlc.fd + RELOC/tex/latex/kurier/omskurier.fd + RELOC/tex/latex/kurier/omskurierc.fd + RELOC/tex/latex/kurier/omskurierl.fd + RELOC/tex/latex/kurier/omskurierlc.fd + RELOC/tex/latex/kurier/omxkurier.fd + RELOC/tex/latex/kurier/omxkurierc.fd + RELOC/tex/latex/kurier/omxkurierl.fd + RELOC/tex/latex/kurier/omxkurierlc.fd + RELOC/tex/latex/kurier/ot1kurier.fd + RELOC/tex/latex/kurier/ot1kurierc.fd + RELOC/tex/latex/kurier/ot1kuriercm.fd + RELOC/tex/latex/kurier/ot1kurierl.fd + RELOC/tex/latex/kurier/ot1kurierlc.fd + RELOC/tex/latex/kurier/ot1kurierlcm.fd + RELOC/tex/latex/kurier/ot1kurierlm.fd + RELOC/tex/latex/kurier/ot1kurierm.fd + RELOC/tex/latex/kurier/ot2kurier.fd + RELOC/tex/latex/kurier/ot2kurierc.fd + RELOC/tex/latex/kurier/ot2kurierl.fd + RELOC/tex/latex/kurier/ot2kurierlc.fd + RELOC/tex/latex/kurier/ot4kurier.fd + RELOC/tex/latex/kurier/ot4kurierc.fd + RELOC/tex/latex/kurier/ot4kurierl.fd + RELOC/tex/latex/kurier/ot4kurierlc.fd + RELOC/tex/latex/kurier/qxkurier.fd + RELOC/tex/latex/kurier/qxkurierc.fd + RELOC/tex/latex/kurier/qxkurierl.fd + RELOC/tex/latex/kurier/qxkurierlc.fd + RELOC/tex/latex/kurier/t1kurier.fd + RELOC/tex/latex/kurier/t1kurierc.fd + RELOC/tex/latex/kurier/t1kurierl.fd + RELOC/tex/latex/kurier/t1kurierlc.fd + RELOC/tex/latex/kurier/t2akurier.fd + RELOC/tex/latex/kurier/t2akurierc.fd + RELOC/tex/latex/kurier/t2akurierl.fd + RELOC/tex/latex/kurier/t2akurierlc.fd + RELOC/tex/latex/kurier/t2bkurier.fd + RELOC/tex/latex/kurier/t2bkurierc.fd + RELOC/tex/latex/kurier/t2bkurierl.fd + RELOC/tex/latex/kurier/t2bkurierlc.fd + RELOC/tex/latex/kurier/t2ckurier.fd + RELOC/tex/latex/kurier/t2ckurierc.fd + RELOC/tex/latex/kurier/t2ckurierl.fd + RELOC/tex/latex/kurier/t2ckurierlc.fd + RELOC/tex/latex/kurier/t5kurier.fd + RELOC/tex/latex/kurier/t5kurierc.fd + RELOC/tex/latex/kurier/t5kurierl.fd + RELOC/tex/latex/kurier/t5kurierlc.fd + RELOC/tex/latex/kurier/ts1kurier.fd + RELOC/tex/latex/kurier/ts1kurierc.fd + RELOC/tex/latex/kurier/ts1kurierl.fd + RELOC/tex/latex/kurier/ts1kurierlc.fd + RELOC/tex/plain/kurier/kurier-math.tex +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-version 0.995b + +name l2picfaq +category Package +revision 19601 +shortdesc LaTeX pictures "how-to" (German). +relocated 1 +longdesc The document (in German) is a collection of "how-to" notes +longdesc about LaTeX and pictures. The aim of the document is to provide +longdesc a solution, in the form of some sample code, for every problem. +docfiles size=166 + RELOC/doc/latex/l2picfaq/README + RELOC/doc/latex/l2picfaq/ctanlion.pdf + RELOC/doc/latex/l2picfaq/gfdl.tex + RELOC/doc/latex/l2picfaq/l2picfaq.pdf + RELOC/doc/latex/l2picfaq/l2picfaq.tex +catalogue-ctan /info/l2picfaq/german +catalogue-date 2012-04-26 12:50:58 +0200 +catalogue-license fdl +catalogue-version 1.50 + +name l2tabu-english +category Package +revision 15878 +shortdesc English translation of "Obsolete packages and commands". +relocated 1 +longdesc English translation of the l2tabu practical guide to LaTeX2e by +longdesc Mark Trettin. A list of obsolete packages and commands. +docfiles size=95 + RELOC/doc/latex/l2tabu-english/l2tabuen.pdf + RELOC/doc/latex/l2tabu-english/l2tabuen.tex +catalogue-ctan /info/l2tabu/english +catalogue-date 2012-04-26 12:50:58 +0200 +catalogue-license gpl +catalogue-version 1.8.5.7 + +name l2tabu-french +category Package +revision 31315 +shortdesc French translation of l2tabu. +relocated 1 +longdesc French translation of l2tabu. +docfiles size=101 + RELOC/doc/latex/l2tabu-french/README + RELOC/doc/latex/l2tabu-french/l2tabufr.pdf + RELOC/doc/latex/l2tabu-french/l2tabufr.tex +catalogue-ctan /info/l2tabu/french +catalogue-date 2013-07-30 20:12:28 +0200 +catalogue-license gpl +catalogue-version 2.3 + +name l2tabu-italian +category Package +revision 25218 +shortdesc Italian Translation of Obsolete packages and commands +relocated 1 +longdesc Italian translation of the l2tabu practical guide to LaTeX2e (a +longdesc list of obsolete packages and commands). +docfiles size=76 + RELOC/doc/latex/l2tabu-italian/l2tabuit.pdf + RELOC/doc/latex/l2tabu-italian/l2tabuit.tex +catalogue-ctan /info/l2tabu/italian +catalogue-date 2012-02-28 11:54:12 +0100 +catalogue-license other-free +catalogue-version 2.3 + +name l2tabu-spanish +category Package +revision 15878 +shortdesc Spanish translation of "Obsolete packages and commands". +relocated 1 +longdesc A Spanish translation of the l2tabu practical guide to LaTeX2e +longdesc by Mark Trettin. A list of obsolete packages, commands and +longdesc usages. +docfiles size=84 + RELOC/doc/latex/l2tabu-spanish/README + RELOC/doc/latex/l2tabu-spanish/l2tabues.pdf + RELOC/doc/latex/l2tabu-spanish/l2tabues.tex +catalogue-ctan /info/l2tabu/spanish +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd +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 +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 +longdesc contributed packages); A system for typesetting package +longdesc documentation; and An automated process for creating CTAN +longdesc releases. The package is essentially independent of other +longdesc material released by the LaTeX3 team, and may be updated on a +longdesc different schedule. +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 +catalogue-ctan /macros/latex/contrib/l3build +catalogue-date 2015-09-14 17:31:25 +0200 +catalogue-license lppl1.3 +catalogue-topics package-devel macro-supp +catalogue-version SVN 6007 + +name l3experimental +category Package +revision 38360 +shortdesc Experimental LaTeX3 concepts +relocated 1 +longdesc The l3experimental packages are a collection of experimental +longdesc implementations for aspects of the LaTeX3 kernel, dealing with +longdesc higher-level ideas such as the Designer Interface. Some of them +longdesc work as stand alone packages, providing new functionality, and +longdesc can be used on top of LaTeX2e with no changes to the existing +longdesc kernel. The present release includes: 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 + 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 + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso885911.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso885913.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso885914.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso885915.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso885916.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88592.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88593.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88594.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88595.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88596.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88597.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88598.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-iso88599.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-utf16.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-utf32.def + RELOC/tex/latex/l3experimental/l3str/l3str-enc-utf8.def + RELOC/tex/latex/l3experimental/l3str/l3str-esc-hex.def + RELOC/tex/latex/l3experimental/l3str/l3str-esc-name.def + 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/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-ctan /macros/latex/contrib/l3experimental +catalogue-date 2015-09-12 09:51:31 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp layout latex3 pre-release +catalogue-version SVN 6001 + +name l3kernel +category Package +revision 38371 +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 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 + 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.tex + RELOC/doc/latex/l3kernel/l3syntax-changes.pdf + RELOC/doc/latex/l3kernel/l3syntax-changes.tex + RELOC/doc/latex/l3kernel/source3.pdf + RELOC/doc/latex/l3kernel/source3.tex + RELOC/doc/latex/l3kernel/source3body.tex +srcfiles size=572 + RELOC/source/latex/l3kernel/expl3.dtx + RELOC/source/latex/l3kernel/l3.ins + RELOC/source/latex/l3kernel/l3alloc.dtx + RELOC/source/latex/l3kernel/l3basics.dtx + RELOC/source/latex/l3kernel/l3bootstrap.dtx + RELOC/source/latex/l3kernel/l3box.dtx + RELOC/source/latex/l3kernel/l3candidates.dtx + RELOC/source/latex/l3kernel/l3clist.dtx + RELOC/source/latex/l3kernel/l3coffins.dtx + RELOC/source/latex/l3kernel/l3color.dtx + RELOC/source/latex/l3kernel/l3doc.dtx + RELOC/source/latex/l3kernel/l3docstrip.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/l3format.ins + RELOC/source/latex/l3kernel/l3fp-assign.dtx + RELOC/source/latex/l3kernel/l3fp-aux.dtx + RELOC/source/latex/l3kernel/l3fp-basics.dtx + RELOC/source/latex/l3kernel/l3fp-convert.dtx + RELOC/source/latex/l3kernel/l3fp-expo.dtx + RELOC/source/latex/l3kernel/l3fp-extended.dtx + RELOC/source/latex/l3kernel/l3fp-logic.dtx + RELOC/source/latex/l3kernel/l3fp-parse.dtx + RELOC/source/latex/l3kernel/l3fp-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/l3int.dtx + RELOC/source/latex/l3kernel/l3keys.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/l3seq.dtx + RELOC/source/latex/l3kernel/l3skip.dtx + RELOC/source/latex/l3kernel/l3str.dtx + RELOC/source/latex/l3kernel/l3sys.dtx + RELOC/source/latex/l3kernel/l3tl.dtx + RELOC/source/latex/l3kernel/l3token.dtx + RELOC/source/latex/l3kernel/l3unicode-data.dtx +catalogue-also l3packages l3experimental +catalogue-ctan /macros/latex/contrib/l3kernel +catalogue-date 2015-09-12 08:20:42 +0200 +catalogue-license lppl1.3 +catalogue-topics format latex3 pre-release +catalogue-version SVN 6002 + +name l3packages +category Package +revision 38360 +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 + 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/source/latex/l3packages/l3keys2e/l3keys2e.dtx + RELOC/source/latex/l3packages/l3keys2e/l3keys2e.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 +catalogue-also l3kernel l3experimental +catalogue-ctan /macros/latex/contrib/l3packages +catalogue-date 2015-09-12 09:01:48 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp latex3 pre-release +catalogue-version SVN 6001 + +name labbook +category Package +revision 15878 +shortdesc Typeset laboratory journals. +relocated 1 +longdesc This class is designed to typeset laboratory journals that +longdesc contain chronologically ordered records about experiments. From +longdesc the sectioning commands, an experiment index is generated. The +longdesc class is based on the KOMA-Script class scrbook.cls. There can +longdesc be several index entries for one experiment. +runfiles size=5 + RELOC/tex/latex/labbook/labbook.cls +docfiles size=70 + RELOC/doc/latex/labbook/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.tex + RELOC/doc/latex/labbook/labbook.el + RELOC/doc/latex/labbook/labbook.pdf +srcfiles size=21 + RELOC/source/latex/labbook/labbook.dtx + RELOC/source/latex/labbook/labbook.ins +catalogue-ctan /macros/latex/contrib/labbook +catalogue-date 2014-10-10 17:17: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 + +name labels +category Package +revision 15878 +shortdesc Print sheets of sticky labels. +relocated 1 +longdesc A LaTeX package to print a regular grid of ragged-right labels +longdesc on a page, suitable for sheets of labels which can be fed +longdesc through a printer. Macros are provided to allow easy input of +longdesc names and addresses in a form free of TeX markup. Equally +longdesc useful is a feature for making multiple copies of a single +longdesc label, e.g., return address stickers to go with the labels. +longdesc Rows, columns, borders can all be specified to match the label +longdesc sheet being used. +runfiles size=6 + RELOC/tex/latex/labels/labels.sty + RELOC/tex/latex/labels/olabels.sty +docfiles size=87 + RELOC/doc/latex/labels/README + RELOC/doc/latex/labels/labels.pdf + RELOC/doc/latex/labels/test/avery5162.tex + RELOC/doc/latex/labels/test/badge.tex + RELOC/doc/latex/labels/test/beebe.tex + RELOC/doc/latex/labels/test/door.tex + RELOC/doc/latex/labels/test/door209.tex + RELOC/doc/latex/labels/test/names.dat + RELOC/doc/latex/labels/test/news.tex + RELOC/doc/latex/labels/test/test.tex + RELOC/doc/latex/labels/test/test1.tex + RELOC/doc/latex/labels/test/test10.tex + RELOC/doc/latex/labels/test/test11.tex + RELOC/doc/latex/labels/test/test12.tex + RELOC/doc/latex/labels/test/test2.tex + RELOC/doc/latex/labels/test/test3.tex + RELOC/doc/latex/labels/test/test4.tex + RELOC/doc/latex/labels/test/test5.tex + RELOC/doc/latex/labels/test/test6.tex + RELOC/doc/latex/labels/test/test7.tex + RELOC/doc/latex/labels/test/test8.tex + RELOC/doc/latex/labels/test/test9.tex + RELOC/doc/latex/labels/test/testnew.tex + RELOC/doc/latex/labels/test/testnew1.tex + RELOC/doc/latex/labels/test/testnew10.tex + RELOC/doc/latex/labels/test/testnew11.tex + RELOC/doc/latex/labels/test/testnew12.tex + RELOC/doc/latex/labels/test/testnew13.tex + RELOC/doc/latex/labels/test/testnew2.tex + RELOC/doc/latex/labels/test/testnew3.tex + RELOC/doc/latex/labels/test/testnew4.tex + RELOC/doc/latex/labels/test/testnew5.tex + RELOC/doc/latex/labels/test/testnew6.tex + RELOC/doc/latex/labels/test/testnew7.tex + RELOC/doc/latex/labels/test/testnew8.tex + RELOC/doc/latex/labels/test/testnew9.tex + RELOC/doc/latex/labels/test/zwekform.tex +srcfiles size=13 + RELOC/source/latex/labels/labels.dtx + RELOC/source/latex/labels/labels.ins +catalogue-ctan /macros/latex/contrib/labels +catalogue-date 2011-12-16 16:22:52 +0100 +catalogue-license lppl1.2 +catalogue-version 13 + +name labyrinth +category Package +revision 33454 +shortdesc Draw labyrinths and solution paths. +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 +docfiles size=63 + RELOC/doc/latex/labyrinth/README + RELOC/doc/latex/labyrinth/classic-en.ist + RELOC/doc/latex/labyrinth/labyrinth.pdf + RELOC/doc/latex/labyrinth/labyrinth.tex + RELOC/doc/latex/labyrinth/lstlocal.cfg +catalogue-ctan /macros/latex/contrib/labyrinth +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name lacheck +category TLCore +revision 37078 +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 + texmf-dist/doc/man/man1/lacheck.1 + texmf-dist/doc/man/man1/lacheck.man1.pdf +catalogue-ctan /support/lacheck +catalogue-date 2015-03-27 20:49:39 +0100 +catalogue-license gpl + +name lacheck.i386-linux +category TLCore +revision 37340 +shortdesc i386-linux files of lacheck +binfiles arch=i386-linux size=16 + 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 lambda +category Package +revision 28669 +relocated 1 +runfiles size=85 + RELOC/tex/lambda/base/UT1cmr.fd + RELOC/tex/lambda/base/UT1omlgc.fd + RELOC/tex/lambda/base/elhyph16.tex + RELOC/tex/lambda/base/french.bgd + RELOC/tex/lambda/base/french.lay + RELOC/tex/lambda/base/grcodes.tex + RELOC/tex/lambda/base/greek.bgd + RELOC/tex/lambda/base/greek.lay + RELOC/tex/lambda/base/grmhyph.tex + RELOC/tex/lambda/base/inuit.hpn + RELOC/tex/lambda/base/lambda.tex + RELOC/tex/lambda/base/lchcmr.fd + RELOC/tex/lambda/base/lchenc.def + RELOC/tex/lambda/base/ocherokee.sty + RELOC/tex/lambda/base/odev.sty + RELOC/tex/lambda/base/ojapan.sty + RELOC/tex/lambda/base/omarab.cfg + RELOC/tex/lambda/base/omega.sty + RELOC/tex/lambda/base/omlgc.cfg + RELOC/tex/lambda/base/ot1omarb.fd + RELOC/tex/lambda/base/ot1omlgc.fd + RELOC/tex/lambda/base/ot1uctt.fd + RELOC/tex/lambda/base/usenglish.bgd + RELOC/tex/lambda/base/usenglish.lay + RELOC/tex/lambda/base/ut1enc.def + RELOC/tex/lambda/config/lambda.ini + RELOC/tex/lambda/config/language.dat + +name langcode +category Package +revision 27764 +shortdesc Simple language-dependent settings based on language codes. +relocated 1 +longdesc The package provides a command \uselangcode{<code>} to adjust +longdesc language-dependent settings such as key words, typographical +longdesc conventions and language codes (ISO 639-1). The package +longdesc provides a means of selecting macros according to the specified +longdesc code, for preparing a document that is to be separately typeset +longdesc in different laguages. The package is dependent on the plainpkg +longdesc package, and is already in use in the morehype and catcodes +longdesc packages. +runfiles size=2 + RELOC/tex/generic/langcode/langcode.sty +docfiles size=87 + RELOC/doc/generic/langcode/README + RELOC/doc/generic/langcode/SrcFILEs.txt + RELOC/doc/generic/langcode/langcode.pdf +srcfiles size=2 + RELOC/source/generic/langcode/langcode.tex + RELOC/source/generic/langcode/srcfiles.tex +catalogue-ctan /macros/generic/langcode +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name lapdf +category Package +revision 23806 +shortdesc PDF drawing directly in TeX documents. +relocated 1 +longdesc The package provides the means to use PDF drawing primitives to +longdesc produce high quality, colored graphics. It uses Bezier curves +longdesc (integral and rational) from degree one to seven, allows TeX +longdesc typesetting in the graphic, offers most of the standard math +longdesc functions, allows plotting normal, parametric and polar +longdesc functions. The package has linear, logx, logy, logxy and polar +longdesc grids with many specs; it can rotate, clip and do many nice +longdesc things easily it has two looping commands for programming and +longdesc many instructive example files. The package requires pdfTeX but +longdesc otherwise only depends on the calc package. +runfiles size=16 + RELOC/tex/latex/lapdf/lapdf.sty +docfiles size=819 + RELOC/doc/latex/lapdf/README + RELOC/doc/latex/lapdf/arcs.pdf + RELOC/doc/latex/lapdf/arcs.tex + RELOC/doc/latex/lapdf/bezier.pdf + RELOC/doc/latex/lapdf/bezier.tex + RELOC/doc/latex/lapdf/bezinfo.pdf + RELOC/doc/latex/lapdf/bezinfo.tex + RELOC/doc/latex/lapdf/buttrfly.pdf + RELOC/doc/latex/lapdf/buttrfly.tex + RELOC/doc/latex/lapdf/cfamily.pdf + RELOC/doc/latex/lapdf/cfamily.tex + RELOC/doc/latex/lapdf/chrysant.pdf + RELOC/doc/latex/lapdf/chrysant.tex + RELOC/doc/latex/lapdf/circle.pdf + RELOC/doc/latex/lapdf/circle.tex + RELOC/doc/latex/lapdf/colors.pdf + RELOC/doc/latex/lapdf/colors.tex + RELOC/doc/latex/lapdf/conic.pdf + RELOC/doc/latex/lapdf/conic.tex + RELOC/doc/latex/lapdf/curve.pdf + RELOC/doc/latex/lapdf/curve.tex + RELOC/doc/latex/lapdf/curveto.pdf + RELOC/doc/latex/lapdf/curveto.tex + RELOC/doc/latex/lapdf/cycloid.pdf + RELOC/doc/latex/lapdf/cycloid.tex + RELOC/doc/latex/lapdf/drawing.pdf + RELOC/doc/latex/lapdf/drawing.tex + RELOC/doc/latex/lapdf/ellipse.pdf + RELOC/doc/latex/lapdf/ellipse.tex + RELOC/doc/latex/lapdf/fplot.pdf + RELOC/doc/latex/lapdf/fplot.tex + RELOC/doc/latex/lapdf/geometry.pdf + RELOC/doc/latex/lapdf/geometry.tex + RELOC/doc/latex/lapdf/grids.pdf + RELOC/doc/latex/lapdf/grids.tex + RELOC/doc/latex/lapdf/hippo.pdf + RELOC/doc/latex/lapdf/hippo.tex + RELOC/doc/latex/lapdf/lapdf.pdf + RELOC/doc/latex/lapdf/lapdf.tex + RELOC/doc/latex/lapdf/licence.txt + RELOC/doc/latex/lapdf/line.pdf + RELOC/doc/latex/lapdf/line.tex + RELOC/doc/latex/lapdf/polygon.pdf + RELOC/doc/latex/lapdf/polygon.tex + RELOC/doc/latex/lapdf/polynom.pdf + RELOC/doc/latex/lapdf/polynom.tex + RELOC/doc/latex/lapdf/pplot.pdf + RELOC/doc/latex/lapdf/pplot.tex + RELOC/doc/latex/lapdf/preamble.tex + RELOC/doc/latex/lapdf/pythagor.pdf + RELOC/doc/latex/lapdf/pythagor.tex + RELOC/doc/latex/lapdf/qcircle.pdf + RELOC/doc/latex/lapdf/qcircle.tex + RELOC/doc/latex/lapdf/quartic.pdf + RELOC/doc/latex/lapdf/quartic.tex + RELOC/doc/latex/lapdf/rational.pdf + RELOC/doc/latex/lapdf/rational.tex + RELOC/doc/latex/lapdf/rcircle.pdf + RELOC/doc/latex/lapdf/rcircle.tex + RELOC/doc/latex/lapdf/rcurve.pdf + RELOC/doc/latex/lapdf/rcurve.tex + RELOC/doc/latex/lapdf/recttria.pdf + RELOC/doc/latex/lapdf/recttria.tex + RELOC/doc/latex/lapdf/roundtri.pdf + RELOC/doc/latex/lapdf/roundtri.tex + RELOC/doc/latex/lapdf/rparams.pdf + RELOC/doc/latex/lapdf/rparams.tex + RELOC/doc/latex/lapdf/superell.pdf + RELOC/doc/latex/lapdf/superell.tex + RELOC/doc/latex/lapdf/tplot.pdf + RELOC/doc/latex/lapdf/tplot.tex + RELOC/doc/latex/lapdf/trochoid.pdf + RELOC/doc/latex/lapdf/trochoid.tex + RELOC/doc/latex/lapdf/turtle.pdf + RELOC/doc/latex/lapdf/turtle.tex + RELOC/doc/latex/lapdf/vector.pdf + RELOC/doc/latex/lapdf/vector.tex +catalogue-ctan /macros/latex/contrib/lapdf +catalogue-date 2014-10-17 21:54:02 +0200 +catalogue-license gpl +catalogue-version 1.1 + +name lastpackage +category Package +revision 34481 +shortdesc Indicates the last loaded package. +relocated 1 +longdesc This package may be used to define the last point where some +longdesc code shall be executed. Its provides a package name for use in +longdesc package-placing commands from the author's templatetools. Usage +longdesc examples are provided in the documentation. +runfiles size=1 + RELOC/tex/latex/lastpackage/lastpackage.sty +docfiles size=64 + RELOC/doc/latex/lastpackage/README + RELOC/doc/latex/lastpackage/lastpackage.pdf +srcfiles size=3 + RELOC/source/latex/lastpackage/lastpackage.dtx + RELOC/source/latex/lastpackage/lastpackage.ins +catalogue-ctan /macros/latex/contrib/lastpackage +catalogue-date 2014-07-01 22:21:53 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name lastpage +category Package +revision 36680 +shortdesc Reference last page for Page N of M type footers. +relocated 1 +longdesc Reference the number of pages in your LaTeX document through +longdesc the introduction of a new label which can be referenced like +longdesc \pageref{LastPage} to give a reference to the last page of a +longdesc document. It is particularly useful in the page footer that +longdesc says: Page N of M. +runfiles size=4 + RELOC/tex/latex/lastpage/lastpage.sty + RELOC/tex/latex/lastpage/lastpage209.sty +docfiles size=139 + RELOC/doc/latex/lastpage/README + RELOC/doc/latex/lastpage/lastpage-example.pdf + RELOC/doc/latex/lastpage/lastpage-example.tex + RELOC/doc/latex/lastpage/lastpage.pdf +srcfiles size=22 + RELOC/source/latex/lastpage/lastpage.drv + RELOC/source/latex/lastpage/lastpage.dtx + RELOC/source/latex/lastpage/lastpage.ins +catalogue-ctan /macros/latex/contrib/lastpage +catalogue-date 2015-03-30 14:40:12 +0200 +catalogue-license lppl1.3 +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 +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. +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 + +name latex-bib-ex +category Package +revision 25831 +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. +docfiles size=233 + RELOC/doc/latex/latex-bib-ex/01-01-1.ltx + RELOC/doc/latex/latex-bib-ex/01-01-2.ltx + RELOC/doc/latex/latex-bib-ex/01-02-1.ltx + RELOC/doc/latex/latex-bib-ex/01-02-2.ltx + RELOC/doc/latex/latex-bib-ex/01-02-3.ltx + RELOC/doc/latex/latex-bib-ex/01-03-1.ltx + RELOC/doc/latex/latex-bib-ex/01-03-2.ltx2 + RELOC/doc/latex/latex-bib-ex/01-03-3.ltx + RELOC/doc/latex/latex-bib-ex/01-03-4.ltx + RELOC/doc/latex/latex-bib-ex/02-01-1.ltx2 + RELOC/doc/latex/latex-bib-ex/02-01-2.ltx2 + RELOC/doc/latex/latex-bib-ex/02-02-1.ltx2 + RELOC/doc/latex/latex-bib-ex/02-02-2.ltx2 + RELOC/doc/latex/latex-bib-ex/02-02-3.ltx2 + RELOC/doc/latex/latex-bib-ex/02-03-1.ltx2 + RELOC/doc/latex/latex-bib-ex/02-03-2.ltx2 + RELOC/doc/latex/latex-bib-ex/02-03-3.ltx2 + RELOC/doc/latex/latex-bib-ex/02-04-1.ltx + RELOC/doc/latex/latex-bib-ex/02-04-2.ltx + RELOC/doc/latex/latex-bib-ex/02-04-3.ltx + RELOC/doc/latex/latex-bib-ex/02-04-4.ltx + RELOC/doc/latex/latex-bib-ex/02-04-5.ltx + RELOC/doc/latex/latex-bib-ex/02-06-1.ltx2crop + RELOC/doc/latex/latex-bib-ex/02-07-1.ltx + RELOC/doc/latex/latex-bib-ex/02-07-10.ltx + RELOC/doc/latex/latex-bib-ex/02-07-11.ltx + RELOC/doc/latex/latex-bib-ex/02-07-12.ltx + RELOC/doc/latex/latex-bib-ex/02-07-13.ltx + RELOC/doc/latex/latex-bib-ex/02-07-14.ltx + RELOC/doc/latex/latex-bib-ex/02-07-15.ltx2 + RELOC/doc/latex/latex-bib-ex/02-07-16.ltx + RELOC/doc/latex/latex-bib-ex/02-07-17.ltx + RELOC/doc/latex/latex-bib-ex/02-07-18.ltx + RELOC/doc/latex/latex-bib-ex/02-07-19.ltx + RELOC/doc/latex/latex-bib-ex/02-07-2.ltx + RELOC/doc/latex/latex-bib-ex/02-07-20.ltx + RELOC/doc/latex/latex-bib-ex/02-07-21.ltx + RELOC/doc/latex/latex-bib-ex/02-07-22.ltx + RELOC/doc/latex/latex-bib-ex/02-07-23.ltx + RELOC/doc/latex/latex-bib-ex/02-07-3.ltx + RELOC/doc/latex/latex-bib-ex/02-07-4.ltx + RELOC/doc/latex/latex-bib-ex/02-07-5.ltx + RELOC/doc/latex/latex-bib-ex/02-07-6.ltx + RELOC/doc/latex/latex-bib-ex/02-07-7.ltx + RELOC/doc/latex/latex-bib-ex/02-07-8.ltx + RELOC/doc/latex/latex-bib-ex/02-07-9.ltx + RELOC/doc/latex/latex-bib-ex/03-03-1.ltx2 + RELOC/doc/latex/latex-bib-ex/03-03-10.ltx2 + RELOC/doc/latex/latex-bib-ex/03-03-11.ltx + RELOC/doc/latex/latex-bib-ex/03-03-12.ltx + RELOC/doc/latex/latex-bib-ex/03-03-13.ltx + RELOC/doc/latex/latex-bib-ex/03-03-14.ltx + RELOC/doc/latex/latex-bib-ex/03-03-15.ltx + RELOC/doc/latex/latex-bib-ex/03-03-16.ltx + RELOC/doc/latex/latex-bib-ex/03-03-17.ltx + RELOC/doc/latex/latex-bib-ex/03-03-18.ltx + RELOC/doc/latex/latex-bib-ex/03-03-19.ltx + RELOC/doc/latex/latex-bib-ex/03-03-2.ltx + RELOC/doc/latex/latex-bib-ex/03-03-20.ltx + RELOC/doc/latex/latex-bib-ex/03-03-21.ltx + RELOC/doc/latex/latex-bib-ex/03-03-22.ltx + RELOC/doc/latex/latex-bib-ex/03-03-23.ltx + RELOC/doc/latex/latex-bib-ex/03-03-24.ltx2 + RELOC/doc/latex/latex-bib-ex/03-03-25.ltx2 + RELOC/doc/latex/latex-bib-ex/03-03-26.ltx2 + RELOC/doc/latex/latex-bib-ex/03-03-3.ltx + RELOC/doc/latex/latex-bib-ex/03-03-4.ltx2 + RELOC/doc/latex/latex-bib-ex/03-03-5.ltx + RELOC/doc/latex/latex-bib-ex/03-03-6.ltx2 + RELOC/doc/latex/latex-bib-ex/03-03-7.ltx + RELOC/doc/latex/latex-bib-ex/03-03-8.ltx + RELOC/doc/latex/latex-bib-ex/03-03-9.ltx + RELOC/doc/latex/latex-bib-ex/03-04-1.ltx + RELOC/doc/latex/latex-bib-ex/03-04-10.ltx + RELOC/doc/latex/latex-bib-ex/03-04-11.ltx + RELOC/doc/latex/latex-bib-ex/03-04-2.ltx + RELOC/doc/latex/latex-bib-ex/03-04-3.ltx + RELOC/doc/latex/latex-bib-ex/03-04-4.ltx + RELOC/doc/latex/latex-bib-ex/03-04-5.ltx + RELOC/doc/latex/latex-bib-ex/03-04-6.ltx + RELOC/doc/latex/latex-bib-ex/03-04-7.ltx + RELOC/doc/latex/latex-bib-ex/03-04-8.ltx + RELOC/doc/latex/latex-bib-ex/03-04-9.ltx + RELOC/doc/latex/latex-bib-ex/03-05-1.ltx2 + RELOC/doc/latex/latex-bib-ex/03-05-2.ltx2 + RELOC/doc/latex/latex-bib-ex/03-05-3.ltx2 + RELOC/doc/latex/latex-bib-ex/03-05-4.ltx2 + RELOC/doc/latex/latex-bib-ex/03-06-1.ltx + RELOC/doc/latex/latex-bib-ex/03-06-2.ltx + RELOC/doc/latex/latex-bib-ex/03-06-3.ltx + RELOC/doc/latex/latex-bib-ex/03-06-4.ltx + RELOC/doc/latex/latex-bib-ex/03-06-5.ltx + RELOC/doc/latex/latex-bib-ex/03-07-1.ltx + RELOC/doc/latex/latex-bib-ex/03-08-1.ltx + RELOC/doc/latex/latex-bib-ex/03-08-2.ltx + RELOC/doc/latex/latex-bib-ex/03-08-3.ltx + RELOC/doc/latex/latex-bib-ex/03-08-4.ltx + RELOC/doc/latex/latex-bib-ex/03-08-5.ltx + RELOC/doc/latex/latex-bib-ex/03-09-1.ltx2 + RELOC/doc/latex/latex-bib-ex/03-09-2.ltx2 + RELOC/doc/latex/latex-bib-ex/03-09-3.ltx + RELOC/doc/latex/latex-bib-ex/03-09-4.ltx + RELOC/doc/latex/latex-bib-ex/03-10-1.ltx + RELOC/doc/latex/latex-bib-ex/03-10-10.ltx + RELOC/doc/latex/latex-bib-ex/03-10-11.ltx + RELOC/doc/latex/latex-bib-ex/03-10-12.ltx + RELOC/doc/latex/latex-bib-ex/03-10-13.ltx + RELOC/doc/latex/latex-bib-ex/03-10-14.ltx + RELOC/doc/latex/latex-bib-ex/03-10-15.ltx + RELOC/doc/latex/latex-bib-ex/03-10-2.ltx + RELOC/doc/latex/latex-bib-ex/03-10-3.ltx + RELOC/doc/latex/latex-bib-ex/03-10-4.ltx + RELOC/doc/latex/latex-bib-ex/03-10-5.ltx + RELOC/doc/latex/latex-bib-ex/03-10-6.ltx + RELOC/doc/latex/latex-bib-ex/03-10-7.ltx + RELOC/doc/latex/latex-bib-ex/03-10-8.ltx + RELOC/doc/latex/latex-bib-ex/03-10-9.ltx + RELOC/doc/latex/latex-bib-ex/03-11-1.ltx + RELOC/doc/latex/latex-bib-ex/03-11-10.ltx + RELOC/doc/latex/latex-bib-ex/03-11-11.ltx + RELOC/doc/latex/latex-bib-ex/03-11-12.ltx + RELOC/doc/latex/latex-bib-ex/03-11-13.ltx + RELOC/doc/latex/latex-bib-ex/03-11-14.ltx + RELOC/doc/latex/latex-bib-ex/03-11-15.ltx + RELOC/doc/latex/latex-bib-ex/03-11-16.ltx + RELOC/doc/latex/latex-bib-ex/03-11-17.ltx + RELOC/doc/latex/latex-bib-ex/03-11-18.ltx + RELOC/doc/latex/latex-bib-ex/03-11-19.ltx + RELOC/doc/latex/latex-bib-ex/03-11-2.ltx + RELOC/doc/latex/latex-bib-ex/03-11-20.ltx2 + RELOC/doc/latex/latex-bib-ex/03-11-21.ltx + RELOC/doc/latex/latex-bib-ex/03-11-22.ltx + RELOC/doc/latex/latex-bib-ex/03-11-23.ltx + RELOC/doc/latex/latex-bib-ex/03-11-24.ltx + RELOC/doc/latex/latex-bib-ex/03-11-3.ltx + RELOC/doc/latex/latex-bib-ex/03-11-4.ltx + RELOC/doc/latex/latex-bib-ex/03-11-5.ltx + RELOC/doc/latex/latex-bib-ex/03-11-6.ltx + RELOC/doc/latex/latex-bib-ex/03-11-7.ltx + RELOC/doc/latex/latex-bib-ex/03-11-8.ltx + RELOC/doc/latex/latex-bib-ex/03-11-9.ltx + RELOC/doc/latex/latex-bib-ex/04-05-1.ltx2crop + RELOC/doc/latex/latex-bib-ex/04-05-2.ltx2crop + RELOC/doc/latex/latex-bib-ex/04-07-1.ltx + RELOC/doc/latex/latex-bib-ex/05-04-1.ltx + RELOC/doc/latex/latex-bib-ex/06-01-1.ltx + RELOC/doc/latex/latex-bib-ex/06-01-2.ltx + RELOC/doc/latex/latex-bib-ex/06-01-3.ltx + RELOC/doc/latex/latex-bib-ex/06-01-4.ltx + RELOC/doc/latex/latex-bib-ex/06-01-5.ltx + RELOC/doc/latex/latex-bib-ex/06-01-6.ltx + RELOC/doc/latex/latex-bib-ex/06-01-7.ltx + RELOC/doc/latex/latex-bib-ex/06-02-1.ltx + RELOC/doc/latex/latex-bib-ex/08-01-1.ltx + RELOC/doc/latex/latex-bib-ex/08-02-1.ltx + RELOC/doc/latex/latex-bib-ex/08-03-1.ltx + RELOC/doc/latex/latex-bib-ex/08-04-1.ltx + RELOC/doc/latex/latex-bib-ex/08-05-1.ltx + RELOC/doc/latex/latex-bib-ex/08-06-1.ltx + 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/UTF8.bib + RELOC/doc/latex/latex-bib-ex/articles.bib + RELOC/doc/latex/latex-bib-ex/bibA.bib + RELOC/doc/latex/latex-bib-ex/bibB.bib + RELOC/doc/latex/latex-bib-ex/bibtool.bib + RELOC/doc/latex/latex-bib-ex/bibtool2.bib + RELOC/doc/latex/latex-bib-ex/books.bib + RELOC/doc/latex/latex-bib-ex/case.bib + RELOC/doc/latex/latex-bib-ex/case2.bib + RELOC/doc/latex/latex-bib-ex/crossref.bib + RELOC/doc/latex/latex-bib-ex/crossref2.bib + RELOC/doc/latex/latex-bib-ex/de-examples-dw.bib + RELOC/doc/latex/latex-bib-ex/demo.bib + RELOC/doc/latex/latex-bib-ex/demo.lbx + RELOC/doc/latex/latex-bib-ex/demo10.bib + RELOC/doc/latex/latex-bib-ex/demo11.bib + RELOC/doc/latex/latex-bib-ex/demo2.bib + RELOC/doc/latex/latex-bib-ex/demo3.bib + RELOC/doc/latex/latex-bib-ex/demo4.bib + RELOC/doc/latex/latex-bib-ex/demo4.bl2 + RELOC/doc/latex/latex-bib-ex/demo5.bib + RELOC/doc/latex/latex-bib-ex/demo6.bib + RELOC/doc/latex/latex-bib-ex/demo7.bib + RELOC/doc/latex/latex-bib-ex/demo8.bib + RELOC/doc/latex/latex-bib-ex/demo9.bib + RELOC/doc/latex/latex-bib-ex/easy.bst + RELOC/doc/latex/latex-bib-ex/examples-dw.bib + RELOC/doc/latex/latex-bib-ex/examples.bib + RELOC/doc/latex/latex-bib-ex/examplesA.bib + RELOC/doc/latex/latex-bib-ex/examplesB.bib + RELOC/doc/latex/latex-bib-ex/klassiker.bib + RELOC/doc/latex/latex-bib-ex/natbib.cfg + RELOC/doc/latex/latex-bib-ex/philosophy-examples.bib + 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-license lppl1.3 + +name latex-bin +category TLCore +revision 37078 +shortdesc LaTeX executables and man pages. +depend latex +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 + texmf-dist/doc/man/man1/latex.1 + texmf-dist/doc/man/man1/latex.man1.pdf + texmf-dist/doc/man/man1/pdflatex.1 + texmf-dist/doc/man/man1/pdflatex.man1.pdf + +name latex-bin.i386-linux +category TLCore +revision 14050 +shortdesc i386-linux files of latex-bin +binfiles arch=i386-linux size=4 + bin/i386-linux/dvilualatex + bin/i386-linux/latex + bin/i386-linux/lualatex + bin/i386-linux/pdflatex + +name latex-brochure +category Package +revision 28916 +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. +docfiles size=2752 + RELOC/doc/latex/latex-brochure/README + RELOC/doc/latex/latex-brochure/README.pdf + RELOC/doc/latex/latex-brochure/brochure-a3folderFB.pdf + RELOC/doc/latex/latex-brochure/brochure-a3folderIN.pdf + RELOC/doc/latex/latex-brochure/brochure-a4.pdf + RELOC/doc/latex/latex-brochure/brochure-ledgerfolderFB.pdf + RELOC/doc/latex/latex-brochure/brochure-ledgerfolderIN.pdf + RELOC/doc/latex/latex-brochure/brochure-letter.pdf + RELOC/doc/latex/latex-brochure/brochure.bib + RELOC/doc/latex/latex-brochure/brochure.pdf + RELOC/doc/latex/latex-brochure/brochure.sty + RELOC/doc/latex/latex-brochure/brochure.tex + RELOC/doc/latex/latex-brochure/build + RELOC/doc/latex/latex-brochure/diagram-crop.eps + RELOC/doc/latex/latex-brochure/diagram-crop.pdf + RELOC/doc/latex/latex-brochure/fullscreen.eps + RELOC/doc/latex/latex-brochure/fullscreen.png + RELOC/doc/latex/latex-brochure/index.html + RELOC/doc/latex/latex-brochure/sample-crop.eps + RELOC/doc/latex/latex-brochure/sample-crop.pdf + RELOC/doc/latex/latex-brochure/typo-degraded.eps + RELOC/doc/latex/latex-brochure/typo-degraded.png +catalogue-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-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 + +name latex-course +category Package +revision 25505 +shortdesc A LaTeX course as a projected presentation. +relocated 1 +longdesc A brief Beamer-based slide presentation on LaTeX, based on +longdesc Rupprecht's LaTeX 2.09 course, which the author has translated +longdesc to English and taken to LaTeX2e/Beamer. Additional material was +longdesc taken from the Short Introduction to LaTeX. +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.tex + RELOC/doc/latex/latex-course/LaTeX-course.prj + RELOC/doc/latex/latex-course/README + RELOC/doc/latex/latex-course/beamercolorthemeross.sty +catalogue-ctan /info/latex-course +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +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. +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. +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/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-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 <file> This +longdesc programme handles style files (extension .sty), class files +longdesc (extension .cls), and other TeX input files. The file extension +longdesc must be given. +depend latexfileversion.ARCH +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 + +name latex-fonts +category Package +revision 28888 +shortdesc A collection of fonts used in LaTeX distributions. +relocated 1 +longdesc This is a collection of fonts for use with standard LaTeX +longdesc packages and classes. It includes 'invisible' fonts (for use +longdesc with the slides class), line and circle fonts (for use in the +longdesc picture environment) and 'LaTeX symbol' fonts. For full support +longdesc of a LaTeX installation, some Computer Modern font variants +longdesc cmbsy(6-9), cmcsc(8,9), cmex(7-9) and cmmib(5-9) from the +longdesc amsfonts distribution, are also necessary. The fonts are +longdesc available as Metafont source, and metric (tfm) files are also +longdesc provided. Most of the fonts are also available in Adobe Type 1 +longdesc format, in the amsfonts distribution. +runfiles size=61 + RELOC/fonts/source/public/latex-fonts/circle.mf + RELOC/fonts/source/public/latex-fonts/icmcsc10.mf + RELOC/fonts/source/public/latex-fonts/icmex10.mf + RELOC/fonts/source/public/latex-fonts/icmmi8.mf + RELOC/fonts/source/public/latex-fonts/icmsy8.mf + RELOC/fonts/source/public/latex-fonts/icmtt8.mf + RELOC/fonts/source/public/latex-fonts/ilasy8.mf + RELOC/fonts/source/public/latex-fonts/ilcmss8.mf + RELOC/fonts/source/public/latex-fonts/ilcmssb8.mf + RELOC/fonts/source/public/latex-fonts/ilcmssi8.mf + RELOC/fonts/source/public/latex-fonts/lasy.mf + RELOC/fonts/source/public/latex-fonts/lasy10.mf + RELOC/fonts/source/public/latex-fonts/lasy5.mf + RELOC/fonts/source/public/latex-fonts/lasy6.mf + RELOC/fonts/source/public/latex-fonts/lasy7.mf + RELOC/fonts/source/public/latex-fonts/lasy8.mf + RELOC/fonts/source/public/latex-fonts/lasy9.mf + RELOC/fonts/source/public/latex-fonts/lasyb10.mf + RELOC/fonts/source/public/latex-fonts/lcircle10.mf + RELOC/fonts/source/public/latex-fonts/lcirclew10.mf + RELOC/fonts/source/public/latex-fonts/lcmss8.mf + RELOC/fonts/source/public/latex-fonts/lcmssb8.mf + RELOC/fonts/source/public/latex-fonts/lcmssi8.mf + RELOC/fonts/source/public/latex-fonts/line.mf + RELOC/fonts/source/public/latex-fonts/line10.mf + RELOC/fonts/source/public/latex-fonts/linew10.mf + RELOC/fonts/source/public/latex-fonts/sroman.mf + RELOC/fonts/source/public/latex-fonts/sromanu.mf + RELOC/fonts/tfm/public/latex-fonts/icmcsc10.tfm + RELOC/fonts/tfm/public/latex-fonts/icmex10.tfm + RELOC/fonts/tfm/public/latex-fonts/icmmi8.tfm + RELOC/fonts/tfm/public/latex-fonts/icmsy8.tfm + RELOC/fonts/tfm/public/latex-fonts/icmtt8.tfm + RELOC/fonts/tfm/public/latex-fonts/ilasy8.tfm + RELOC/fonts/tfm/public/latex-fonts/ilcmss8.tfm + RELOC/fonts/tfm/public/latex-fonts/ilcmssb8.tfm + RELOC/fonts/tfm/public/latex-fonts/ilcmssi8.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy10.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy5.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy6.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy7.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy8.tfm + RELOC/fonts/tfm/public/latex-fonts/lasy9.tfm + RELOC/fonts/tfm/public/latex-fonts/lasyb10.tfm + RELOC/fonts/tfm/public/latex-fonts/lcircle10.tfm + RELOC/fonts/tfm/public/latex-fonts/lcirclew10.tfm + RELOC/fonts/tfm/public/latex-fonts/lcmss8.tfm + RELOC/fonts/tfm/public/latex-fonts/lcmssb8.tfm + RELOC/fonts/tfm/public/latex-fonts/lcmssi8.tfm + RELOC/fonts/tfm/public/latex-fonts/line10.tfm + RELOC/fonts/tfm/public/latex-fonts/linew10.tfm +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-license lppl + +name latex-git-log +category Package +revision 30983 +shortdesc Typeset git log information. +longdesc The program is run within a git repository, and outputs the +longdesc entire version history, as a LaTeX table. That output will +longdesc typically be redirected to a file; the author recommends +longdesc typesetting in landscape orientation. +depend latex-git-log.ARCH +runfiles size=3 + texmf-dist/scripts/latex-git-log/latex-git-log +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/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 +catalogue-ctan /support/latex-git-log +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl3 +catalogue-version 0.9 + +name latex-git-log.i386-linux +category Package +revision 30983 +shortdesc i386-linux files of latex-git-log +binfiles arch=i386-linux size=1 + bin/i386-linux/latex-git-log + +name latex-graphics-companion +category Package +revision 29235 +catalogue lgc-examples +shortdesc Examples from The LaTeX Graphics Companion. +relocated 1 +longdesc The source of the examples printed in the book, together with +longdesc necessary supporting files. +docfiles size=447 + RELOC/doc/latex/latex-graphics-companion/1-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-10.pic + RELOC/doc/latex/latex-graphics-companion/1-4-11.pic + RELOC/doc/latex/latex-graphics-companion/1-4-12.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-3.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-4.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-5.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-6.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-7.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-8.ltx + RELOC/doc/latex/latex-graphics-companion/1-4-9.pic + RELOC/doc/latex/latex-graphics-companion/10-1-1.ltx + RELOC/doc/latex/latex-graphics-companion/10-1-2.ltx + RELOC/doc/latex/latex-graphics-companion/10-1-3.ltx + RELOC/doc/latex/latex-graphics-companion/10-1-4.inl + RELOC/doc/latex/latex-graphics-companion/10-1-5.inl + RELOC/doc/latex/latex-graphics-companion/10-5-1.ltx + RELOC/doc/latex/latex-graphics-companion/11-3-1.ltx + RELOC/doc/latex/latex-graphics-companion/11-6-1.inl + RELOC/doc/latex/latex-graphics-companion/12-0-1.mp + RELOC/doc/latex/latex-graphics-companion/12-0-10.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-11.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-12.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-2.mp + RELOC/doc/latex/latex-graphics-companion/12-0-3.mp + RELOC/doc/latex/latex-graphics-companion/12-0-4.mp + RELOC/doc/latex/latex-graphics-companion/12-0-5.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-6.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-7.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-8.ltx + RELOC/doc/latex/latex-graphics-companion/12-0-9.ltx + RELOC/doc/latex/latex-graphics-companion/2-2-1.inl + RELOC/doc/latex/latex-graphics-companion/2-2-10.inl + RELOC/doc/latex/latex-graphics-companion/2-2-11.inl + RELOC/doc/latex/latex-graphics-companion/2-2-12.inl + RELOC/doc/latex/latex-graphics-companion/2-2-13.inl + RELOC/doc/latex/latex-graphics-companion/2-2-14.inl + RELOC/doc/latex/latex-graphics-companion/2-2-15.inl + RELOC/doc/latex/latex-graphics-companion/2-2-16.inl + RELOC/doc/latex/latex-graphics-companion/2-2-17.inl + RELOC/doc/latex/latex-graphics-companion/2-2-18.inl + RELOC/doc/latex/latex-graphics-companion/2-2-19.inl + RELOC/doc/latex/latex-graphics-companion/2-2-2.inl + RELOC/doc/latex/latex-graphics-companion/2-2-20.inl + RELOC/doc/latex/latex-graphics-companion/2-2-3.inl + RELOC/doc/latex/latex-graphics-companion/2-2-4.inl + RELOC/doc/latex/latex-graphics-companion/2-2-5.inl + RELOC/doc/latex/latex-graphics-companion/2-2-6.inl + RELOC/doc/latex/latex-graphics-companion/2-2-7.inl + RELOC/doc/latex/latex-graphics-companion/2-2-8.inl + RELOC/doc/latex/latex-graphics-companion/2-2-9.inl + RELOC/doc/latex/latex-graphics-companion/2-3-1.inl + RELOC/doc/latex/latex-graphics-companion/2-3-10.ltx + RELOC/doc/latex/latex-graphics-companion/2-3-11.ltx + RELOC/doc/latex/latex-graphics-companion/2-3-12.ltx + RELOC/doc/latex/latex-graphics-companion/2-3-13.inl + RELOC/doc/latex/latex-graphics-companion/2-3-14.ltx + RELOC/doc/latex/latex-graphics-companion/2-3-15.inl + RELOC/doc/latex/latex-graphics-companion/2-3-16.inl + RELOC/doc/latex/latex-graphics-companion/2-3-17.inl + RELOC/doc/latex/latex-graphics-companion/2-3-2.inl + RELOC/doc/latex/latex-graphics-companion/2-3-3.inl + RELOC/doc/latex/latex-graphics-companion/2-3-4.inl + RELOC/doc/latex/latex-graphics-companion/2-3-5.inl + RELOC/doc/latex/latex-graphics-companion/2-3-6.inl + RELOC/doc/latex/latex-graphics-companion/2-3-7.inl + RELOC/doc/latex/latex-graphics-companion/2-3-8.inl + RELOC/doc/latex/latex-graphics-companion/2-3-9.inl + RELOC/doc/latex/latex-graphics-companion/3-1-1.mp + RELOC/doc/latex/latex-graphics-companion/3-1-2.mp + RELOC/doc/latex/latex-graphics-companion/3-1-3.mp + RELOC/doc/latex/latex-graphics-companion/3-1-4.mp + RELOC/doc/latex/latex-graphics-companion/3-1-5.mp + RELOC/doc/latex/latex-graphics-companion/3-1-6.mp + RELOC/doc/latex/latex-graphics-companion/3-1-7.mp + RELOC/doc/latex/latex-graphics-companion/3-1-8.mp + RELOC/doc/latex/latex-graphics-companion/3-1-9.mp + RELOC/doc/latex/latex-graphics-companion/3-2-1.mp + RELOC/doc/latex/latex-graphics-companion/3-2-2.mp + RELOC/doc/latex/latex-graphics-companion/3-2-3.mp + RELOC/doc/latex/latex-graphics-companion/3-3-1.mp + RELOC/doc/latex/latex-graphics-companion/3-3-10.mp + RELOC/doc/latex/latex-graphics-companion/3-3-11.mp + RELOC/doc/latex/latex-graphics-companion/3-3-12.mp + RELOC/doc/latex/latex-graphics-companion/3-3-13.mp + RELOC/doc/latex/latex-graphics-companion/3-3-14.mp + RELOC/doc/latex/latex-graphics-companion/3-3-15.mp + RELOC/doc/latex/latex-graphics-companion/3-3-16.mp + RELOC/doc/latex/latex-graphics-companion/3-3-17.mp + RELOC/doc/latex/latex-graphics-companion/3-3-18.mp + RELOC/doc/latex/latex-graphics-companion/3-3-19.mp + RELOC/doc/latex/latex-graphics-companion/3-3-2.mp + RELOC/doc/latex/latex-graphics-companion/3-3-3.mp + RELOC/doc/latex/latex-graphics-companion/3-3-4.mp + RELOC/doc/latex/latex-graphics-companion/3-3-5.mp + RELOC/doc/latex/latex-graphics-companion/3-3-6.mp + RELOC/doc/latex/latex-graphics-companion/3-3-7.mp + RELOC/doc/latex/latex-graphics-companion/3-3-8.mp + RELOC/doc/latex/latex-graphics-companion/3-3-9.mp + RELOC/doc/latex/latex-graphics-companion/3-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-3.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-4.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-5.ltx + RELOC/doc/latex/latex-graphics-companion/3-4-6.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-1.inl + RELOC/doc/latex/latex-graphics-companion/4-10-10.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-11.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-2.inl + RELOC/doc/latex/latex-graphics-companion/4-10-3.inl + RELOC/doc/latex/latex-graphics-companion/4-10-4.inl + RELOC/doc/latex/latex-graphics-companion/4-10-5.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-6.inl + RELOC/doc/latex/latex-graphics-companion/4-10-7.ltx + RELOC/doc/latex/latex-graphics-companion/4-10-8.inl + RELOC/doc/latex/latex-graphics-companion/4-10-9.inl + RELOC/doc/latex/latex-graphics-companion/4-2-1.inl + RELOC/doc/latex/latex-graphics-companion/4-2-2.inl + RELOC/doc/latex/latex-graphics-companion/4-2-3.inl + RELOC/doc/latex/latex-graphics-companion/4-2-4.inl + RELOC/doc/latex/latex-graphics-companion/4-2-5.inl + RELOC/doc/latex/latex-graphics-companion/4-3-1.inl + RELOC/doc/latex/latex-graphics-companion/4-3-2.inl + RELOC/doc/latex/latex-graphics-companion/4-4-1.inl + RELOC/doc/latex/latex-graphics-companion/4-4-10.inl + RELOC/doc/latex/latex-graphics-companion/4-4-11.inl + RELOC/doc/latex/latex-graphics-companion/4-4-12.inl + RELOC/doc/latex/latex-graphics-companion/4-4-2.inl + RELOC/doc/latex/latex-graphics-companion/4-4-3.inl + RELOC/doc/latex/latex-graphics-companion/4-4-4.inl + RELOC/doc/latex/latex-graphics-companion/4-4-5.inl + RELOC/doc/latex/latex-graphics-companion/4-4-6.inl + RELOC/doc/latex/latex-graphics-companion/4-4-7.inl + RELOC/doc/latex/latex-graphics-companion/4-4-8.inl + RELOC/doc/latex/latex-graphics-companion/4-4-9.inl + RELOC/doc/latex/latex-graphics-companion/4-5-1.inl + RELOC/doc/latex/latex-graphics-companion/4-5-10.inl + RELOC/doc/latex/latex-graphics-companion/4-5-11.inl + RELOC/doc/latex/latex-graphics-companion/4-5-12.inl + RELOC/doc/latex/latex-graphics-companion/4-5-13.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-14.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-15.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-16.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-2.inl + RELOC/doc/latex/latex-graphics-companion/4-5-3.ltx + RELOC/doc/latex/latex-graphics-companion/4-5-4.inl + RELOC/doc/latex/latex-graphics-companion/4-5-5.inl + RELOC/doc/latex/latex-graphics-companion/4-5-6.inl + RELOC/doc/latex/latex-graphics-companion/4-5-7.inl + RELOC/doc/latex/latex-graphics-companion/4-5-8.inl + RELOC/doc/latex/latex-graphics-companion/4-5-9.inl + RELOC/doc/latex/latex-graphics-companion/4-6-1.inl + RELOC/doc/latex/latex-graphics-companion/4-6-10.inl + RELOC/doc/latex/latex-graphics-companion/4-6-11.inl + RELOC/doc/latex/latex-graphics-companion/4-6-12.inl + RELOC/doc/latex/latex-graphics-companion/4-6-13.inl + RELOC/doc/latex/latex-graphics-companion/4-6-14.inl + RELOC/doc/latex/latex-graphics-companion/4-6-15.inl + RELOC/doc/latex/latex-graphics-companion/4-6-16.inl + RELOC/doc/latex/latex-graphics-companion/4-6-17.inl + RELOC/doc/latex/latex-graphics-companion/4-6-18.inl + RELOC/doc/latex/latex-graphics-companion/4-6-19.inl + RELOC/doc/latex/latex-graphics-companion/4-6-2.inl + RELOC/doc/latex/latex-graphics-companion/4-6-20.inl + RELOC/doc/latex/latex-graphics-companion/4-6-21.inl + RELOC/doc/latex/latex-graphics-companion/4-6-22.inl + RELOC/doc/latex/latex-graphics-companion/4-6-23.inl + RELOC/doc/latex/latex-graphics-companion/4-6-24.inl + RELOC/doc/latex/latex-graphics-companion/4-6-25.inl + RELOC/doc/latex/latex-graphics-companion/4-6-26.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-27.inl + RELOC/doc/latex/latex-graphics-companion/4-6-28.inl + RELOC/doc/latex/latex-graphics-companion/4-6-29.inl + RELOC/doc/latex/latex-graphics-companion/4-6-3.inl + RELOC/doc/latex/latex-graphics-companion/4-6-30.inl + RELOC/doc/latex/latex-graphics-companion/4-6-31.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-32.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-33.inl + RELOC/doc/latex/latex-graphics-companion/4-6-34.inl + RELOC/doc/latex/latex-graphics-companion/4-6-35.inl + RELOC/doc/latex/latex-graphics-companion/4-6-36.inl + RELOC/doc/latex/latex-graphics-companion/4-6-37.inl + RELOC/doc/latex/latex-graphics-companion/4-6-38.inl + RELOC/doc/latex/latex-graphics-companion/4-6-39.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-4.inl + RELOC/doc/latex/latex-graphics-companion/4-6-40.ltx + RELOC/doc/latex/latex-graphics-companion/4-6-41.inl + RELOC/doc/latex/latex-graphics-companion/4-6-42.inl + RELOC/doc/latex/latex-graphics-companion/4-6-43.inl + RELOC/doc/latex/latex-graphics-companion/4-6-44.inl + RELOC/doc/latex/latex-graphics-companion/4-6-45.inl + RELOC/doc/latex/latex-graphics-companion/4-6-46.inl + RELOC/doc/latex/latex-graphics-companion/4-6-5.inl + RELOC/doc/latex/latex-graphics-companion/4-6-6.inl + RELOC/doc/latex/latex-graphics-companion/4-6-7.inl + RELOC/doc/latex/latex-graphics-companion/4-6-8.inl + RELOC/doc/latex/latex-graphics-companion/4-6-9.inl + RELOC/doc/latex/latex-graphics-companion/4-7-1.ltx + RELOC/doc/latex/latex-graphics-companion/4-7-2.ltx + RELOC/doc/latex/latex-graphics-companion/4-7-3.ltx + RELOC/doc/latex/latex-graphics-companion/4-7-4.ltx + RELOC/doc/latex/latex-graphics-companion/4-8-1.inl + RELOC/doc/latex/latex-graphics-companion/4-8-2.inl + RELOC/doc/latex/latex-graphics-companion/4-8-3.ltx + RELOC/doc/latex/latex-graphics-companion/4-8-4.ltx + RELOC/doc/latex/latex-graphics-companion/4-8-5.ltx + RELOC/doc/latex/latex-graphics-companion/4-9-1.inl + RELOC/doc/latex/latex-graphics-companion/4-9-10.ltx + RELOC/doc/latex/latex-graphics-companion/4-9-2.inl + RELOC/doc/latex/latex-graphics-companion/5-2-1.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-1.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-2.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-3.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-4.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-5.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-6.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-7.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-8.ltx + RELOC/doc/latex/latex-graphics-companion/5-3-9.ltx + RELOC/doc/latex/latex-graphics-companion/5-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/5-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/5-4-3.ltx + RELOC/doc/latex/latex-graphics-companion/5-4-4.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-1.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-10.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-11.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-12.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-13.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-14.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-15.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-16.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-17.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-18.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-19.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-2.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-20.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-21.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-22.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-23.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-24.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-25.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-26.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-27.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-28.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-29.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-3.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-30.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-31.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-32.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-33.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-34.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-35.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-4.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-5.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-6.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-7.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-8.ltx + RELOC/doc/latex/latex-graphics-companion/5-5-9.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-10.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-11.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-12.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-13.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-14.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-15.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-16.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-17.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-18.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-19.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-20.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-21.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-22.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-23.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-24.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-4.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-5.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-6.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-7.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-8.ltx + RELOC/doc/latex/latex-graphics-companion/6-2-9.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-10.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-11.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-12.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-13.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-14.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-4.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-5.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-6.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-7.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-8.ltx + RELOC/doc/latex/latex-graphics-companion/6-3-9.ltx + RELOC/doc/latex/latex-graphics-companion/6-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-4-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-5-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-4.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-5.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-6.ltx + RELOC/doc/latex/latex-graphics-companion/6-6-7.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-1.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-1.m4 + RELOC/doc/latex/latex-graphics-companion/6-7-2.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-2.m4 + RELOC/doc/latex/latex-graphics-companion/6-7-3.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-3.m4 + RELOC/doc/latex/latex-graphics-companion/6-7-4.ltx + RELOC/doc/latex/latex-graphics-companion/6-7-4.m4 + RELOC/doc/latex/latex-graphics-companion/7-2-1.mx1 + RELOC/doc/latex/latex-graphics-companion/7-2-1.mx2 + RELOC/doc/latex/latex-graphics-companion/7-2-1.ptx + RELOC/doc/latex/latex-graphics-companion/7-2-2.ltx + RELOC/doc/latex/latex-graphics-companion/7-2-3.ltx + RELOC/doc/latex/latex-graphics-companion/7-2-4.ltx + RELOC/doc/latex/latex-graphics-companion/7-2-5.ltx + RELOC/doc/latex/latex-graphics-companion/7-2-6.ltx + RELOC/doc/latex/latex-graphics-companion/7-3-1.abc + RELOC/doc/latex/latex-graphics-companion/7-3-2.ltx + RELOC/doc/latex/latex-graphics-companion/7-3-3.abc + RELOC/doc/latex/latex-graphics-companion/7-3-4.abc + RELOC/doc/latex/latex-graphics-companion/7-3-5.abc + RELOC/doc/latex/latex-graphics-companion/7-3-6.abc + RELOC/doc/latex/latex-graphics-companion/7-3-7.abc + RELOC/doc/latex/latex-graphics-companion/7-3-8.abc + RELOC/doc/latex/latex-graphics-companion/7-3-9.abc + RELOC/doc/latex/latex-graphics-companion/7-4-1.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-10.mx1 + RELOC/doc/latex/latex-graphics-companion/7-4-10.mx2 + RELOC/doc/latex/latex-graphics-companion/7-4-10.ptx + RELOC/doc/latex/latex-graphics-companion/7-4-2.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-3.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-4.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-5.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-6.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-7.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-8.mpp + RELOC/doc/latex/latex-graphics-companion/7-4-9.mpp + RELOC/doc/latex/latex-graphics-companion/8-1-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-1-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-1-3.ltx + RELOC/doc/latex/latex-graphics-companion/8-1-4.ltx + RELOC/doc/latex/latex-graphics-companion/8-2-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-2-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-2-3.ltx + RELOC/doc/latex/latex-graphics-companion/8-3-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-3-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-3-3.ltx + RELOC/doc/latex/latex-graphics-companion/8-4-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-4-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-5-1.inl + RELOC/doc/latex/latex-graphics-companion/8-6-1.inl + RELOC/doc/latex/latex-graphics-companion/8-6-2.inl + RELOC/doc/latex/latex-graphics-companion/8-6-3.inl + RELOC/doc/latex/latex-graphics-companion/8-6-4.inl + RELOC/doc/latex/latex-graphics-companion/8-6-5.inl + RELOC/doc/latex/latex-graphics-companion/8-6-6.inl + RELOC/doc/latex/latex-graphics-companion/8-6-7.inl + RELOC/doc/latex/latex-graphics-companion/8-6-8.inl + RELOC/doc/latex/latex-graphics-companion/8-7-1.acr + RELOC/doc/latex/latex-graphics-companion/8-7-1.dwn + RELOC/doc/latex/latex-graphics-companion/8-7-1.ltx + RELOC/doc/latex/latex-graphics-companion/8-7-2.ltx + RELOC/doc/latex/latex-graphics-companion/8-7-3.ltx + RELOC/doc/latex/latex-graphics-companion/8-7-4.ltx + RELOC/doc/latex/latex-graphics-companion/9-2-1.inl + RELOC/doc/latex/latex-graphics-companion/9-2-2.inl + RELOC/doc/latex/latex-graphics-companion/9-2-3.inl + RELOC/doc/latex/latex-graphics-companion/9-2-4.inl + RELOC/doc/latex/latex-graphics-companion/9-2-5.inl + RELOC/doc/latex/latex-graphics-companion/9-2-6.inl + RELOC/doc/latex/latex-graphics-companion/9-2-7.inl + RELOC/doc/latex/latex-graphics-companion/9-2-8.ltx + RELOC/doc/latex/latex-graphics-companion/9-2-9.ltx + RELOC/doc/latex/latex-graphics-companion/9-3-1.inl + RELOC/doc/latex/latex-graphics-companion/9-3-10.inl + RELOC/doc/latex/latex-graphics-companion/9-3-11.inl + RELOC/doc/latex/latex-graphics-companion/9-3-12.inl + RELOC/doc/latex/latex-graphics-companion/9-3-13.inl + RELOC/doc/latex/latex-graphics-companion/9-3-14.inl + RELOC/doc/latex/latex-graphics-companion/9-3-15.inl + RELOC/doc/latex/latex-graphics-companion/9-3-16.inl + RELOC/doc/latex/latex-graphics-companion/9-3-17.inl + RELOC/doc/latex/latex-graphics-companion/9-3-18.inl + RELOC/doc/latex/latex-graphics-companion/9-3-19.inl + RELOC/doc/latex/latex-graphics-companion/9-3-2.inl + RELOC/doc/latex/latex-graphics-companion/9-3-20.inl + RELOC/doc/latex/latex-graphics-companion/9-3-3.inl + RELOC/doc/latex/latex-graphics-companion/9-3-4.inl + RELOC/doc/latex/latex-graphics-companion/9-3-5.inl + RELOC/doc/latex/latex-graphics-companion/9-3-6.inl + RELOC/doc/latex/latex-graphics-companion/9-3-7.inl + RELOC/doc/latex/latex-graphics-companion/9-3-8.inl + RELOC/doc/latex/latex-graphics-companion/9-3-9.inl + RELOC/doc/latex/latex-graphics-companion/A-1-1.inl + RELOC/doc/latex/latex-graphics-companion/Makefile + RELOC/doc/latex/latex-graphics-companion/README + RELOC/doc/latex/latex-graphics-companion/ages.dat + RELOC/doc/latex/latex-graphics-companion/bar.ini + RELOC/doc/latex/latex-graphics-companion/chap.dat + RELOC/doc/latex/latex-graphics-companion/clef.ini + RELOC/doc/latex/latex-graphics-companion/config.ps + RELOC/doc/latex/latex-graphics-companion/decade.dat + RELOC/doc/latex/latex-graphics-companion/feature.ini + RELOC/doc/latex/latex-graphics-companion/graves.dat + RELOC/doc/latex/latex-graphics-companion/inputs/graphics.cfg + RELOC/doc/latex/latex-graphics-companion/inputs/header.tex + RELOC/doc/latex/latex-graphics-companion/inputs/mfpic.sty + RELOC/doc/latex/latex-graphics-companion/inputs/ppex.cls + RELOC/doc/latex/latex-graphics-companion/key.ini + RELOC/doc/latex/latex-graphics-companion/langs.dat + RELOC/doc/latex/latex-graphics-companion/langs2.dat + RELOC/doc/latex/latex-graphics-companion/langs3.dat + RELOC/doc/latex/latex-graphics-companion/macro.ini + RELOC/doc/latex/latex-graphics-companion/mpp.tex + RELOC/doc/latex/latex-graphics-companion/note.ini + RELOC/doc/latex/latex-graphics-companion/notecc.ini + RELOC/doc/latex/latex-graphics-companion/pot.dat + RELOC/doc/latex/latex-graphics-companion/script.ini + RELOC/doc/latex/latex-graphics-companion/scriptcc.ini + RELOC/doc/latex/latex-graphics-companion/showgrid.tex + RELOC/doc/latex/latex-graphics-companion/stones.dat + RELOC/doc/latex/latex-graphics-companion/students.dat + RELOC/doc/latex/latex-graphics-companion/veracx.mx1 + RELOC/doc/latex/latex-graphics-companion/veracx.tex + RELOC/doc/latex/latex-graphics-companion/yearm.dat + RELOC/doc/latex/latex-graphics-companion/years.dat + RELOC/doc/latex/latex-graphics-companion/years.men + RELOC/doc/latex/latex-graphics-companion/years.wom + RELOC/doc/latex/latex-graphics-companion/yearw.dat +catalogue-ctan /info/examples/lgc +catalogue-date 2012-05-22 11:10: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 + +name latex-make +category Package +revision 35357 +shortdesc Easy compiling of complex (and simple) LaTeX documents. +relocated 1 +longdesc This package provides several tools that aim to simplify the +longdesc compilation of LaTeX documents: LaTeX.mk: a Makefile snippet to +longdesc help compiling LaTeX documents in DVI, PDF, PS, ... format. +longdesc Dependencies are automatically tracked: one should be able to +longdesc compile documents with a one-line Makefile containing 'include +longdesc LaTeX.mk'. Complex documents (with multiple bibliographies, +longdesc indexes, glossaries, ...) should be correctly managed. +longdesc figlatex.sty: a LaTeX package to easily insert xfig figures +longdesc (with \includegraphics{file.fig}). It can interact with +longdesc LaTeX.mk so that the latter automatically invokes transfig if +longdesc needed. And various helper tools for LaTeX.mk This package +longdesc requires GNUmake (>= 3.81). +runfiles size=16 + RELOC/scripts/latex-make/figdepth.py + RELOC/scripts/latex-make/gensubfig.py + RELOC/scripts/latex-make/latexfilter.py + RELOC/scripts/latex-make/svg2dev.py + RELOC/scripts/latex-make/svgdepth.py + RELOC/tex/latex/latex-make/figlatex.cfg + RELOC/tex/latex/latex-make/figlatex.sty + RELOC/tex/latex/latex-make/pdfswitch.sty + RELOC/tex/latex/latex-make/texdepends.sty + RELOC/tex/latex/latex-make/texgraphicx.sty +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-ctan /support/latex-make +catalogue-date 2014-10-13 11:02:00 +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 + +name latex-notes-zh-cn +category Package +revision 15878 +shortdesc Chinese Introduction to TeX and LaTeX. +relocated 1 +longdesc The document is an introduction to TeX/LaTeX, in Chinese. It +longdesc covers basic text typesetting, mathematics, graphics, tables, +longdesc Chinese language & fonts, and some miscellaneous features +longdesc (hyperlinks, long documents, bibliographies, indexes and page +longdesc layout). +docfiles size=603 + RELOC/doc/generic/latex-notes-zh-cn/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/license.txt + RELOC/doc/generic/latex-notes-zh-cn/src/basics.tex + RELOC/doc/generic/latex-notes-zh-cn/src/dscf4684.jpg + RELOC/doc/generic/latex-notes-zh-cn/src/examples/arrow.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/color.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/colors.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/curve.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/dashed.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/dot.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/fill.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/label.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/line.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/loop.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/path.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/predefined.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_arc.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_arrow.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_axis.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_bezier.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_circle.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_color.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_curve.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_dot.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_fill.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_frame.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_grid.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_label.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_line.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_linestyle.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_origin.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_parabola.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_polygon.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_rput.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/pst_uput.eps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/subfig.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/subfig_left.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/subfig_right.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/transform.mps + RELOC/doc/generic/latex-notes-zh-cn/src/examples/uline.mps + RELOC/doc/generic/latex-notes-zh-cn/src/fonts.tex + RELOC/doc/generic/latex-notes-zh-cn/src/graphics.tex + RELOC/doc/generic/latex-notes-zh-cn/src/i18n.tex + RELOC/doc/generic/latex-notes-zh-cn/src/introduction.tex + RELOC/doc/generic/latex-notes-zh-cn/src/lnotes.tex + RELOC/doc/generic/latex-notes-zh-cn/src/math.tex + RELOC/doc/generic/latex-notes-zh-cn/src/misc.tex + RELOC/doc/generic/latex-notes-zh-cn/src/postcript.tex + RELOC/doc/generic/latex-notes-zh-cn/src/preface.tex + RELOC/doc/generic/latex-notes-zh-cn/src/reading.bib + RELOC/doc/generic/latex-notes-zh-cn/src/tables.tex +catalogue-ctan /info/latex-notes-zh-cn +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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 +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 + +name latexpand.i386-linux +category Package +revision 27025 +shortdesc i386-linux files of latexpand +binfiles arch=i386-linux size=1 + bin/i386-linux/latexpand + +name latex-referenz +category Package +revision 36671 +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. +docfiles size=285 + RELOC/doc/latex/latex-referenz/01-03-1.xltx + RELOC/doc/latex/latex-referenz/01-04-1.lux + RELOC/doc/latex/latex-referenz/01-04-2.lux + RELOC/doc/latex/latex-referenz/01-08-1.sh + RELOC/doc/latex/latex-referenz/01-08-2.sh + RELOC/doc/latex/latex-referenz/02-03-1.ltx2crop + RELOC/doc/latex/latex-referenz/02-03-2.ltx + RELOC/doc/latex/latex-referenz/02-03-3.ltx + RELOC/doc/latex/latex-referenz/02-03-4.ltx + RELOC/doc/latex/latex-referenz/03-01-1.lux + RELOC/doc/latex/latex-referenz/03-03-1.ltx + RELOC/doc/latex/latex-referenz/03-04-1.ltx + RELOC/doc/latex/latex-referenz/03-05-1.ltx + RELOC/doc/latex/latex-referenz/03-06-1.ltx + RELOC/doc/latex/latex-referenz/03-07-1.ltx + RELOC/doc/latex/latex-referenz/03-07-2.ltx + RELOC/doc/latex/latex-referenz/03-08-1.ltx + RELOC/doc/latex/latex-referenz/03-08-2.ltx + RELOC/doc/latex/latex-referenz/03-08-3.ltx + RELOC/doc/latex/latex-referenz/03-08-4.ltx + RELOC/doc/latex/latex-referenz/03-08-5.ltx + RELOC/doc/latex/latex-referenz/03-08-6.ltx + RELOC/doc/latex/latex-referenz/04-02-1.ltx + RELOC/doc/latex/latex-referenz/05-01-1.ltx + RELOC/doc/latex/latex-referenz/05-02-1.ltx + RELOC/doc/latex/latex-referenz/06-02-1.ltx + RELOC/doc/latex/latex-referenz/06-02-10.ltx + RELOC/doc/latex/latex-referenz/06-02-11.ltx + RELOC/doc/latex/latex-referenz/06-02-12.ltx + RELOC/doc/latex/latex-referenz/06-02-13.ltx + RELOC/doc/latex/latex-referenz/06-02-14.ltx + RELOC/doc/latex/latex-referenz/06-02-15.ltx + RELOC/doc/latex/latex-referenz/06-02-16.ltx + RELOC/doc/latex/latex-referenz/06-02-17.lux + RELOC/doc/latex/latex-referenz/06-02-18.ltx + RELOC/doc/latex/latex-referenz/06-02-2.ltx + RELOC/doc/latex/latex-referenz/06-02-3.ltx + RELOC/doc/latex/latex-referenz/06-02-4.ltx + RELOC/doc/latex/latex-referenz/06-02-5.ltx + RELOC/doc/latex/latex-referenz/06-02-6.ltx + RELOC/doc/latex/latex-referenz/06-02-7.ltx + RELOC/doc/latex/latex-referenz/06-02-8.ltx + RELOC/doc/latex/latex-referenz/06-02-9.ltx + RELOC/doc/latex/latex-referenz/06-03-1.ltx + RELOC/doc/latex/latex-referenz/06-03-10.ltx + RELOC/doc/latex/latex-referenz/06-03-11.ltx + RELOC/doc/latex/latex-referenz/06-03-12.ltx + RELOC/doc/latex/latex-referenz/06-03-13.ltx + RELOC/doc/latex/latex-referenz/06-03-14.ltx + RELOC/doc/latex/latex-referenz/06-03-15.ltx + RELOC/doc/latex/latex-referenz/06-03-16.ltx + RELOC/doc/latex/latex-referenz/06-03-17.lux + RELOC/doc/latex/latex-referenz/06-03-18.ltx + RELOC/doc/latex/latex-referenz/06-03-2.ltx + RELOC/doc/latex/latex-referenz/06-03-3.ltx + RELOC/doc/latex/latex-referenz/06-03-4.ltx + RELOC/doc/latex/latex-referenz/06-03-5.ltx + RELOC/doc/latex/latex-referenz/06-03-6.ltx + RELOC/doc/latex/latex-referenz/06-03-7.ltx + RELOC/doc/latex/latex-referenz/06-03-8.ltx + RELOC/doc/latex/latex-referenz/06-03-9.ltx + RELOC/doc/latex/latex-referenz/06-05-1.ltx + RELOC/doc/latex/latex-referenz/06-05-10.ltx + RELOC/doc/latex/latex-referenz/06-05-11.ltx + RELOC/doc/latex/latex-referenz/06-05-12.ltx + RELOC/doc/latex/latex-referenz/06-05-13.ltx + RELOC/doc/latex/latex-referenz/06-05-14.ltx + RELOC/doc/latex/latex-referenz/06-05-15.ltx + RELOC/doc/latex/latex-referenz/06-05-16.lux + RELOC/doc/latex/latex-referenz/06-05-17.ltx + RELOC/doc/latex/latex-referenz/06-05-18.ltx + RELOC/doc/latex/latex-referenz/06-05-19.ltx + RELOC/doc/latex/latex-referenz/06-05-2.ltx + RELOC/doc/latex/latex-referenz/06-05-20.ltx + RELOC/doc/latex/latex-referenz/06-05-21.ltx + RELOC/doc/latex/latex-referenz/06-05-22.ltx + RELOC/doc/latex/latex-referenz/06-05-23.ltx + RELOC/doc/latex/latex-referenz/06-05-3.ltx + RELOC/doc/latex/latex-referenz/06-05-4.ltx + RELOC/doc/latex/latex-referenz/06-05-5.ltx + RELOC/doc/latex/latex-referenz/06-05-6.ltx + RELOC/doc/latex/latex-referenz/06-05-7.ltx + RELOC/doc/latex/latex-referenz/06-05-8.ltx + RELOC/doc/latex/latex-referenz/06-05-9.ltx + RELOC/doc/latex/latex-referenz/06-06-1.ltx + RELOC/doc/latex/latex-referenz/07-03-1.ltx + RELOC/doc/latex/latex-referenz/07-03-10.ltx + RELOC/doc/latex/latex-referenz/07-03-11.ltx + RELOC/doc/latex/latex-referenz/07-03-12.ltx + RELOC/doc/latex/latex-referenz/07-03-13.ltx + RELOC/doc/latex/latex-referenz/07-03-14.ltx + RELOC/doc/latex/latex-referenz/07-03-15.ltx + RELOC/doc/latex/latex-referenz/07-03-16.ltx + RELOC/doc/latex/latex-referenz/07-03-17.ltx + RELOC/doc/latex/latex-referenz/07-03-18.ltx + RELOC/doc/latex/latex-referenz/07-03-19.ltx + RELOC/doc/latex/latex-referenz/07-03-2.ltx + RELOC/doc/latex/latex-referenz/07-03-20.ltx + RELOC/doc/latex/latex-referenz/07-03-21.ltx + RELOC/doc/latex/latex-referenz/07-03-3.ltx + RELOC/doc/latex/latex-referenz/07-03-4.ltx + RELOC/doc/latex/latex-referenz/07-03-5.ltx + RELOC/doc/latex/latex-referenz/07-03-6.ltx + RELOC/doc/latex/latex-referenz/07-03-7.ltx + RELOC/doc/latex/latex-referenz/07-03-8.ltx + RELOC/doc/latex/latex-referenz/07-03-9.ltx + RELOC/doc/latex/latex-referenz/07-04-1.ltx + RELOC/doc/latex/latex-referenz/07-04-2.ltx + RELOC/doc/latex/latex-referenz/07-04-3.ltx + RELOC/doc/latex/latex-referenz/07-04-4.ltx + RELOC/doc/latex/latex-referenz/08-08-1.xltx + RELOC/doc/latex/latex-referenz/08-08-2.xltx + RELOC/doc/latex/latex-referenz/08-08-3.lux + RELOC/doc/latex/latex-referenz/08-08-4.lux + RELOC/doc/latex/latex-referenz/08-08-5.lux + RELOC/doc/latex/latex-referenz/08-08-6.lux + RELOC/doc/latex/latex-referenz/09-03-1.ltx + RELOC/doc/latex/latex-referenz/09-03-2.ltx + RELOC/doc/latex/latex-referenz/09-03-3.ltx + RELOC/doc/latex/latex-referenz/09-03-4.ltx + RELOC/doc/latex/latex-referenz/09-05-1.ltx + RELOC/doc/latex/latex-referenz/09-05-2.ltx + RELOC/doc/latex/latex-referenz/09-05-3.ltx + RELOC/doc/latex/latex-referenz/09-05-4.ltx + RELOC/doc/latex/latex-referenz/09-05-5.ltx + RELOC/doc/latex/latex-referenz/09-05-6.ltx + RELOC/doc/latex/latex-referenz/09-05-7.ltx + RELOC/doc/latex/latex-referenz/09-05-8.ltx + RELOC/doc/latex/latex-referenz/09-07-1.ltx + RELOC/doc/latex/latex-referenz/09-07-10.ltx + RELOC/doc/latex/latex-referenz/09-07-11.ltx + RELOC/doc/latex/latex-referenz/09-07-12.ltx + RELOC/doc/latex/latex-referenz/09-07-13.ltx + RELOC/doc/latex/latex-referenz/09-07-2.ltx + RELOC/doc/latex/latex-referenz/09-07-3.ltx + RELOC/doc/latex/latex-referenz/09-07-4.ltx + RELOC/doc/latex/latex-referenz/09-07-5.ltx + RELOC/doc/latex/latex-referenz/09-07-6.ltx + RELOC/doc/latex/latex-referenz/09-07-7.ltx + RELOC/doc/latex/latex-referenz/09-07-8.ltx + RELOC/doc/latex/latex-referenz/09-07-9.ltx + RELOC/doc/latex/latex-referenz/09-08-1.ltx + RELOC/doc/latex/latex-referenz/09-08-10.ltx + RELOC/doc/latex/latex-referenz/09-08-11.ltx + RELOC/doc/latex/latex-referenz/09-08-12.ltx + RELOC/doc/latex/latex-referenz/09-08-13.ltx + RELOC/doc/latex/latex-referenz/09-08-2.ltx + RELOC/doc/latex/latex-referenz/09-08-3.ltx + RELOC/doc/latex/latex-referenz/09-08-4.ltx + RELOC/doc/latex/latex-referenz/09-08-5.ltx + RELOC/doc/latex/latex-referenz/09-08-6.ltx + RELOC/doc/latex/latex-referenz/09-08-7.ltx + RELOC/doc/latex/latex-referenz/09-08-8.ltxps + RELOC/doc/latex/latex-referenz/09-08-9.ltx + RELOC/doc/latex/latex-referenz/10-02-1.ltx2crop + RELOC/doc/latex/latex-referenz/10-03-1.ltx + RELOC/doc/latex/latex-referenz/10-03-10.ltx + RELOC/doc/latex/latex-referenz/10-03-11.ltx + RELOC/doc/latex/latex-referenz/10-03-12.ltx + RELOC/doc/latex/latex-referenz/10-03-13.ltx + RELOC/doc/latex/latex-referenz/10-03-14.ltx + RELOC/doc/latex/latex-referenz/10-03-15.ltx + RELOC/doc/latex/latex-referenz/10-03-16.ltx + RELOC/doc/latex/latex-referenz/10-03-17.ltx + RELOC/doc/latex/latex-referenz/10-03-18.ltx + RELOC/doc/latex/latex-referenz/10-03-19.ltx + RELOC/doc/latex/latex-referenz/10-03-2.ltx + RELOC/doc/latex/latex-referenz/10-03-20.ltx + RELOC/doc/latex/latex-referenz/10-03-21.ltx + RELOC/doc/latex/latex-referenz/10-03-22.ltx + RELOC/doc/latex/latex-referenz/10-03-23.ltx + RELOC/doc/latex/latex-referenz/10-03-24.ltx + RELOC/doc/latex/latex-referenz/10-03-25.ltx + RELOC/doc/latex/latex-referenz/10-03-26.ltx + RELOC/doc/latex/latex-referenz/10-03-27.ltx + RELOC/doc/latex/latex-referenz/10-03-28.ltx + RELOC/doc/latex/latex-referenz/10-03-29.ltx + RELOC/doc/latex/latex-referenz/10-03-3.ltx + RELOC/doc/latex/latex-referenz/10-03-30.ltx + RELOC/doc/latex/latex-referenz/10-03-31.ltx + RELOC/doc/latex/latex-referenz/10-03-32.ltx2 + RELOC/doc/latex/latex-referenz/10-03-4.ltx + RELOC/doc/latex/latex-referenz/10-03-5.lux + RELOC/doc/latex/latex-referenz/10-03-6.ltx + RELOC/doc/latex/latex-referenz/10-03-7.ltx + RELOC/doc/latex/latex-referenz/10-03-8.ltx + 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/UTF8.bib + RELOC/doc/latex/latex-referenz/bspfont.cls + RELOC/doc/latex/latex-referenz/caspervector.bib + RELOC/doc/latex/latex-referenz/de-examples-dw.bib + RELOC/doc/latex/latex-referenz/demo11.bib + RELOC/doc/latex/latex-referenz/exa-fontconfig.tex + RELOC/doc/latex/latex-referenz/exaarticle.cls + RELOC/doc/latex/latex-referenz/exaarticle2.cls + RELOC/doc/latex/latex-referenz/exabook.cls + RELOC/doc/latex/latex-referenz/exabook2.cls + RELOC/doc/latex/latex-referenz/examinimal.cls + RELOC/doc/latex/latex-referenz/examples-dw.bib + RELOC/doc/latex/latex-referenz/examples.bib + RELOC/doc/latex/latex-referenz/examplesA.bib + RELOC/doc/latex/latex-referenz/examplesB.bib + RELOC/doc/latex/latex-referenz/exareport.cls + RELOC/doc/latex/latex-referenz/exaxetex.cls + RELOC/doc/latex/latex-referenz/fontDemo-E.tex + RELOC/doc/latex/latex-referenz/fontDemo.tex + RELOC/doc/latex/latex-referenz/hv.bib + RELOC/doc/latex/latex-referenz/images/B.eps + RELOC/doc/latex/latex-referenz/images/B.pdf + RELOC/doc/latex/latex-referenz/klassiker.bib + RELOC/doc/latex/latex-referenz/l3keysdemo.sty + RELOC/doc/latex/latex-referenz/luabibentry.lua + RELOC/doc/latex/latex-referenz/plainDemo.bst + RELOC/doc/latex/latex-referenz/screxa.cls + RELOC/doc/latex/latex-referenz/screxabook.cls + 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-license lppl1.3 +catalogue-version 2 + +name latex-tabellen +category Package +revision 16979 +shortdesc LaTeX Tabellen. +relocated 1 +longdesc The examples from the book <<Tabellen mit LaTeX>>, 2nd ed. +docfiles size=324 + RELOC/doc/latex/latex-tabellen/01-01-1.ltxps + RELOC/doc/latex/latex-tabellen/01-01-10.ltx + RELOC/doc/latex/latex-tabellen/01-01-11.ltx + RELOC/doc/latex/latex-tabellen/01-01-12.ltx + RELOC/doc/latex/latex-tabellen/01-01-13.ltx + RELOC/doc/latex/latex-tabellen/01-01-14.ltx + RELOC/doc/latex/latex-tabellen/01-01-15.ltx + RELOC/doc/latex/latex-tabellen/01-01-16.ltx + RELOC/doc/latex/latex-tabellen/01-01-17.ltx + RELOC/doc/latex/latex-tabellen/01-01-18.ltx + RELOC/doc/latex/latex-tabellen/01-01-19.ltx + RELOC/doc/latex/latex-tabellen/01-01-2.ltx + RELOC/doc/latex/latex-tabellen/01-01-3.ltx + RELOC/doc/latex/latex-tabellen/01-01-4.ltx + RELOC/doc/latex/latex-tabellen/01-01-5.ltx + RELOC/doc/latex/latex-tabellen/01-01-6.ltx + RELOC/doc/latex/latex-tabellen/01-01-7.ltx + RELOC/doc/latex/latex-tabellen/01-01-8.ltx + RELOC/doc/latex/latex-tabellen/01-01-9.ltx + RELOC/doc/latex/latex-tabellen/01-02-1.ltxps + RELOC/doc/latex/latex-tabellen/01-02-2.ltx + RELOC/doc/latex/latex-tabellen/01-02-3.ltx + RELOC/doc/latex/latex-tabellen/01-02-4.ltx + RELOC/doc/latex/latex-tabellen/01-02-5.ltx + RELOC/doc/latex/latex-tabellen/01-02-6.ltx + RELOC/doc/latex/latex-tabellen/01-02-7.ltx + RELOC/doc/latex/latex-tabellen/01-02-8.ltx + RELOC/doc/latex/latex-tabellen/01-02-9.ltx + RELOC/doc/latex/latex-tabellen/02-01-1.ltx + RELOC/doc/latex/latex-tabellen/02-01-10.ltxps + RELOC/doc/latex/latex-tabellen/02-01-11.ltx + RELOC/doc/latex/latex-tabellen/02-01-12.ltx + RELOC/doc/latex/latex-tabellen/02-01-13.ltx + RELOC/doc/latex/latex-tabellen/02-01-14.ltx + RELOC/doc/latex/latex-tabellen/02-01-15.ltx + RELOC/doc/latex/latex-tabellen/02-01-16.ltx + RELOC/doc/latex/latex-tabellen/02-01-17.ltx + RELOC/doc/latex/latex-tabellen/02-01-18.ltx + RELOC/doc/latex/latex-tabellen/02-01-19.ltx + RELOC/doc/latex/latex-tabellen/02-01-2.ltx + RELOC/doc/latex/latex-tabellen/02-01-3.ltx + RELOC/doc/latex/latex-tabellen/02-01-4.ltx + RELOC/doc/latex/latex-tabellen/02-01-5.ltx + RELOC/doc/latex/latex-tabellen/02-01-6.ltx + RELOC/doc/latex/latex-tabellen/02-01-7.ltx + RELOC/doc/latex/latex-tabellen/02-01-8.ltxps + RELOC/doc/latex/latex-tabellen/02-01-9.ltxps + RELOC/doc/latex/latex-tabellen/02-02-1.ltx + RELOC/doc/latex/latex-tabellen/02-02-2.ltx + RELOC/doc/latex/latex-tabellen/02-02-3.ltx + RELOC/doc/latex/latex-tabellen/02-02-4.ltx + RELOC/doc/latex/latex-tabellen/02-02-5.ltx + RELOC/doc/latex/latex-tabellen/02-02-6.ltx + RELOC/doc/latex/latex-tabellen/02-03-1.ltx + RELOC/doc/latex/latex-tabellen/02-03-10.ltx + RELOC/doc/latex/latex-tabellen/02-03-11.ltx + RELOC/doc/latex/latex-tabellen/02-03-12.ltx + RELOC/doc/latex/latex-tabellen/02-03-13.ltx + RELOC/doc/latex/latex-tabellen/02-03-14.ltx + RELOC/doc/latex/latex-tabellen/02-03-2.ltx + RELOC/doc/latex/latex-tabellen/02-03-3.ltx + RELOC/doc/latex/latex-tabellen/02-03-4.ltx + RELOC/doc/latex/latex-tabellen/02-03-5.ltx + RELOC/doc/latex/latex-tabellen/02-03-6.ltx + RELOC/doc/latex/latex-tabellen/02-03-7.ltx + RELOC/doc/latex/latex-tabellen/02-03-8.ltx + RELOC/doc/latex/latex-tabellen/02-03-9.ltx + RELOC/doc/latex/latex-tabellen/02-04-1.ltx + RELOC/doc/latex/latex-tabellen/02-04-10.ltx + RELOC/doc/latex/latex-tabellen/02-04-2.ltx + RELOC/doc/latex/latex-tabellen/02-04-3.ltx + RELOC/doc/latex/latex-tabellen/02-04-4.ltx + RELOC/doc/latex/latex-tabellen/02-04-5.ltx + RELOC/doc/latex/latex-tabellen/02-04-6.ltx + RELOC/doc/latex/latex-tabellen/02-04-7.ltx + RELOC/doc/latex/latex-tabellen/02-04-8.ltx + RELOC/doc/latex/latex-tabellen/02-04-9.ltx + RELOC/doc/latex/latex-tabellen/02-05-1.ltx + RELOC/doc/latex/latex-tabellen/02-05-10.ltx + RELOC/doc/latex/latex-tabellen/02-05-11.ltx + RELOC/doc/latex/latex-tabellen/02-05-2.ltx + RELOC/doc/latex/latex-tabellen/02-05-3.ltx + RELOC/doc/latex/latex-tabellen/02-05-4.ltx + RELOC/doc/latex/latex-tabellen/02-05-5.ltx + RELOC/doc/latex/latex-tabellen/02-05-6.ltx + RELOC/doc/latex/latex-tabellen/02-05-7.ltx + RELOC/doc/latex/latex-tabellen/02-05-8.ltx + RELOC/doc/latex/latex-tabellen/02-05-9.ltx + RELOC/doc/latex/latex-tabellen/02-06-1.ltx + RELOC/doc/latex/latex-tabellen/02-06-2.ltx + RELOC/doc/latex/latex-tabellen/02-06-3.ltx + RELOC/doc/latex/latex-tabellen/02-06-4.ltx + RELOC/doc/latex/latex-tabellen/02-06-5.ltx + RELOC/doc/latex/latex-tabellen/02-07-1.ltx + RELOC/doc/latex/latex-tabellen/02-07-2.ltx + RELOC/doc/latex/latex-tabellen/02-07-3.ltx + RELOC/doc/latex/latex-tabellen/02-07-4.ltx2 + RELOC/doc/latex/latex-tabellen/02-07-5.ltx + RELOC/doc/latex/latex-tabellen/02-08-1.ltx + RELOC/doc/latex/latex-tabellen/02-08-2.ltx + RELOC/doc/latex/latex-tabellen/02-08-3.ltx + RELOC/doc/latex/latex-tabellen/02-08-4.ltx + RELOC/doc/latex/latex-tabellen/02-08-5.ltx + RELOC/doc/latex/latex-tabellen/02-08-6.ltx + RELOC/doc/latex/latex-tabellen/02-08-7.ltx + RELOC/doc/latex/latex-tabellen/02-08-8.ltx + RELOC/doc/latex/latex-tabellen/02-09-1.ltx + RELOC/doc/latex/latex-tabellen/02-09-2.ltx + RELOC/doc/latex/latex-tabellen/02-09-3.ltx + RELOC/doc/latex/latex-tabellen/02-10-1.ltx + RELOC/doc/latex/latex-tabellen/02-11-1.ltx + RELOC/doc/latex/latex-tabellen/02-11-10.ltx + RELOC/doc/latex/latex-tabellen/02-11-11.ltx + RELOC/doc/latex/latex-tabellen/02-11-12.ltx + RELOC/doc/latex/latex-tabellen/02-11-13.ltx + RELOC/doc/latex/latex-tabellen/02-11-2.ltx + RELOC/doc/latex/latex-tabellen/02-11-3.ltx + RELOC/doc/latex/latex-tabellen/02-11-4.ltx + RELOC/doc/latex/latex-tabellen/02-11-5.ltx + RELOC/doc/latex/latex-tabellen/02-11-6.ltx + RELOC/doc/latex/latex-tabellen/02-11-7.ltx + RELOC/doc/latex/latex-tabellen/02-11-8.ltx + RELOC/doc/latex/latex-tabellen/02-11-9.ltx + RELOC/doc/latex/latex-tabellen/02-12-1.ltx + RELOC/doc/latex/latex-tabellen/02-12-2.ltx + RELOC/doc/latex/latex-tabellen/02-13-1.ltx + RELOC/doc/latex/latex-tabellen/02-13-2.ltx + RELOC/doc/latex/latex-tabellen/02-13-3.ltx + RELOC/doc/latex/latex-tabellen/02-13-4.ltx + RELOC/doc/latex/latex-tabellen/02-14-1.ltx + RELOC/doc/latex/latex-tabellen/02-14-10.ltx + RELOC/doc/latex/latex-tabellen/02-14-11.ltx + RELOC/doc/latex/latex-tabellen/02-14-12.ltx + RELOC/doc/latex/latex-tabellen/02-14-13.ltx + RELOC/doc/latex/latex-tabellen/02-14-14.ltx + RELOC/doc/latex/latex-tabellen/02-14-15.ltx + RELOC/doc/latex/latex-tabellen/02-14-2.ltx + RELOC/doc/latex/latex-tabellen/02-14-3.ltx + RELOC/doc/latex/latex-tabellen/02-14-4.ltx + RELOC/doc/latex/latex-tabellen/02-14-5.ltx + RELOC/doc/latex/latex-tabellen/02-14-6.ltx + RELOC/doc/latex/latex-tabellen/02-14-7.ltx + RELOC/doc/latex/latex-tabellen/02-14-8.ltx + RELOC/doc/latex/latex-tabellen/02-14-9.ltx + RELOC/doc/latex/latex-tabellen/02-15-1.ltx + RELOC/doc/latex/latex-tabellen/02-15-2.ltx + RELOC/doc/latex/latex-tabellen/02-15-3.ltx + RELOC/doc/latex/latex-tabellen/02-16-1.ltx + RELOC/doc/latex/latex-tabellen/02-16-2.ltx + RELOC/doc/latex/latex-tabellen/02-16-3.ltx + RELOC/doc/latex/latex-tabellen/02-17-1.ltx + RELOC/doc/latex/latex-tabellen/02-18-1.ltx + RELOC/doc/latex/latex-tabellen/02-18-2.ltx + RELOC/doc/latex/latex-tabellen/02-18-3.ltx + RELOC/doc/latex/latex-tabellen/02-18-4.ltx + RELOC/doc/latex/latex-tabellen/02-18-5.ltx + RELOC/doc/latex/latex-tabellen/02-19-1.ltx + RELOC/doc/latex/latex-tabellen/02-19-2.ltx + RELOC/doc/latex/latex-tabellen/02-20-1.ltx + RELOC/doc/latex/latex-tabellen/02-20-2.ltx + RELOC/doc/latex/latex-tabellen/02-21-1.ltx2 + RELOC/doc/latex/latex-tabellen/02-21-2.ltx2 + RELOC/doc/latex/latex-tabellen/02-22-1.ltx + RELOC/doc/latex/latex-tabellen/02-22-2.ltx + RELOC/doc/latex/latex-tabellen/02-22-3.ltx + RELOC/doc/latex/latex-tabellen/02-22-4.ltx + RELOC/doc/latex/latex-tabellen/02-23-1.ltx + RELOC/doc/latex/latex-tabellen/02-24-1.ltx + RELOC/doc/latex/latex-tabellen/02-24-2.ltx + RELOC/doc/latex/latex-tabellen/02-24-3.ltx + RELOC/doc/latex/latex-tabellen/02-24-4.ltx + RELOC/doc/latex/latex-tabellen/02-25-1.ltx + RELOC/doc/latex/latex-tabellen/02-25-2.ltx + RELOC/doc/latex/latex-tabellen/02-26-1.ltx + RELOC/doc/latex/latex-tabellen/02-26-10.ltx + RELOC/doc/latex/latex-tabellen/02-26-2.ltx + RELOC/doc/latex/latex-tabellen/02-26-3.ltx + RELOC/doc/latex/latex-tabellen/02-26-4.ltx + RELOC/doc/latex/latex-tabellen/02-26-5.ltx + RELOC/doc/latex/latex-tabellen/02-26-6.ltx + RELOC/doc/latex/latex-tabellen/02-26-7.ltx + RELOC/doc/latex/latex-tabellen/02-26-8.ltx + RELOC/doc/latex/latex-tabellen/02-26-9.ltx + RELOC/doc/latex/latex-tabellen/02-27-1.ltx + RELOC/doc/latex/latex-tabellen/02-28-1.ltx + RELOC/doc/latex/latex-tabellen/02-28-2.ltx + RELOC/doc/latex/latex-tabellen/02-28-3.ltx + RELOC/doc/latex/latex-tabellen/02-28-4.ltx + RELOC/doc/latex/latex-tabellen/02-29-1.ltx + RELOC/doc/latex/latex-tabellen/02-29-2.ltx + RELOC/doc/latex/latex-tabellen/03-01-1.ltx + RELOC/doc/latex/latex-tabellen/03-01-10.ltx + RELOC/doc/latex/latex-tabellen/03-01-11.ltx + RELOC/doc/latex/latex-tabellen/03-01-12.ltx + RELOC/doc/latex/latex-tabellen/03-01-2.ltx + RELOC/doc/latex/latex-tabellen/03-01-3.ltx + RELOC/doc/latex/latex-tabellen/03-01-4.ltx + RELOC/doc/latex/latex-tabellen/03-01-5.ltx + RELOC/doc/latex/latex-tabellen/03-01-6.ltx + RELOC/doc/latex/latex-tabellen/03-01-7.ltx + RELOC/doc/latex/latex-tabellen/03-01-8.ltx + RELOC/doc/latex/latex-tabellen/03-01-9.ltx + RELOC/doc/latex/latex-tabellen/03-02-1.ltx + RELOC/doc/latex/latex-tabellen/03-02-2.ltx + RELOC/doc/latex/latex-tabellen/03-02-3.ltx + RELOC/doc/latex/latex-tabellen/03-02-4.ltx + RELOC/doc/latex/latex-tabellen/03-02-5.ltx + RELOC/doc/latex/latex-tabellen/03-02-6.ltx + RELOC/doc/latex/latex-tabellen/03-02-7.ltx + RELOC/doc/latex/latex-tabellen/03-03-1.ltx + RELOC/doc/latex/latex-tabellen/03-03-2.ltx + RELOC/doc/latex/latex-tabellen/03-03-3.ltxb + RELOC/doc/latex/latex-tabellen/03-03-4.ltx + RELOC/doc/latex/latex-tabellen/03-03-5.ltx + RELOC/doc/latex/latex-tabellen/03-03-6.ltx + RELOC/doc/latex/latex-tabellen/04-01-1.ltx + RELOC/doc/latex/latex-tabellen/04-01-10.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-11.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-12.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-13.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-14.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-15.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-2.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-3.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-4.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-5.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-6.ltx + RELOC/doc/latex/latex-tabellen/04-01-7.ltx + RELOC/doc/latex/latex-tabellen/04-01-8.ltx2 + RELOC/doc/latex/latex-tabellen/04-01-9.ltx2 + RELOC/doc/latex/latex-tabellen/04-02-1.ltx2 + RELOC/doc/latex/latex-tabellen/04-02-2.ltx2 + RELOC/doc/latex/latex-tabellen/04-03-1.ltx + RELOC/doc/latex/latex-tabellen/04-03-2.ltx2 + RELOC/doc/latex/latex-tabellen/04-03-3.ltx2 + RELOC/doc/latex/latex-tabellen/04-04-1.ltx + RELOC/doc/latex/latex-tabellen/04-04-2.ltx2 + RELOC/doc/latex/latex-tabellen/04-04-3.ltx2 + RELOC/doc/latex/latex-tabellen/04-04-4.ltx2 + RELOC/doc/latex/latex-tabellen/04-04-5.ltx2 + RELOC/doc/latex/latex-tabellen/04-05-1.ltx2 + RELOC/doc/latex/latex-tabellen/04-05-2.ltx2 + RELOC/doc/latex/latex-tabellen/04-05-3.ltx2 + RELOC/doc/latex/latex-tabellen/04-05-4.ltx2 + RELOC/doc/latex/latex-tabellen/04-05-5.ltx2 + RELOC/doc/latex/latex-tabellen/04-05-6.ltx2 + RELOC/doc/latex/latex-tabellen/04-05-7.ltx2 + RELOC/doc/latex/latex-tabellen/04-05-8.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-1.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-2.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-3.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-4.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-5.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-6.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-7.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-8.ltx2 + RELOC/doc/latex/latex-tabellen/04-06-9.ltx2 + RELOC/doc/latex/latex-tabellen/05-01-1.ltx + RELOC/doc/latex/latex-tabellen/05-01-2.ltx + RELOC/doc/latex/latex-tabellen/05-01-3.ltx + RELOC/doc/latex/latex-tabellen/05-01-4.ltx + RELOC/doc/latex/latex-tabellen/05-01-5.ltx + RELOC/doc/latex/latex-tabellen/05-02-1.ltx + RELOC/doc/latex/latex-tabellen/05-03-1.ltx + RELOC/doc/latex/latex-tabellen/05-03-2.ltx + RELOC/doc/latex/latex-tabellen/05-03-3.ltx + RELOC/doc/latex/latex-tabellen/05-04-1.ltx2 + RELOC/doc/latex/latex-tabellen/05-04-2.ltx2 + RELOC/doc/latex/latex-tabellen/05-05-1.ltx + RELOC/doc/latex/latex-tabellen/05-05-2.ltx + RELOC/doc/latex/latex-tabellen/05-06-1.ltxE + RELOC/doc/latex/latex-tabellen/05-06-2.ltxE + RELOC/doc/latex/latex-tabellen/05-06-3.ltxE + RELOC/doc/latex/latex-tabellen/06-00-1.ltx + RELOC/doc/latex/latex-tabellen/06-00-10.ltx + RELOC/doc/latex/latex-tabellen/06-00-11.ltx + RELOC/doc/latex/latex-tabellen/06-00-12.ltx + RELOC/doc/latex/latex-tabellen/06-00-13.ltx + RELOC/doc/latex/latex-tabellen/06-00-14.ltx + RELOC/doc/latex/latex-tabellen/06-00-15.ltx + RELOC/doc/latex/latex-tabellen/06-00-16.ltx + RELOC/doc/latex/latex-tabellen/06-00-17.ltx + RELOC/doc/latex/latex-tabellen/06-00-18.ltx + RELOC/doc/latex/latex-tabellen/06-00-19.ltx + RELOC/doc/latex/latex-tabellen/06-00-2.ltx + RELOC/doc/latex/latex-tabellen/06-00-20.ltx + RELOC/doc/latex/latex-tabellen/06-00-21.ltx + RELOC/doc/latex/latex-tabellen/06-00-22.ltx + RELOC/doc/latex/latex-tabellen/06-00-23.ltx + RELOC/doc/latex/latex-tabellen/06-00-24.ltx + RELOC/doc/latex/latex-tabellen/06-00-25.ltx + RELOC/doc/latex/latex-tabellen/06-00-26.ltx2 + RELOC/doc/latex/latex-tabellen/06-00-27.ltx + RELOC/doc/latex/latex-tabellen/06-00-28.ltx + RELOC/doc/latex/latex-tabellen/06-00-29.ltx + RELOC/doc/latex/latex-tabellen/06-00-3.ltx + RELOC/doc/latex/latex-tabellen/06-00-30.ltx + RELOC/doc/latex/latex-tabellen/06-00-31.ltx + RELOC/doc/latex/latex-tabellen/06-00-32.ltx2 + RELOC/doc/latex/latex-tabellen/06-00-33.ltx + RELOC/doc/latex/latex-tabellen/06-00-34.ltx + RELOC/doc/latex/latex-tabellen/06-00-35.ltx + RELOC/doc/latex/latex-tabellen/06-00-36.ltx2 + RELOC/doc/latex/latex-tabellen/06-00-37.ltx2 + RELOC/doc/latex/latex-tabellen/06-00-38.ltxps + RELOC/doc/latex/latex-tabellen/06-00-39.ltx + RELOC/doc/latex/latex-tabellen/06-00-4.ltxps + RELOC/doc/latex/latex-tabellen/06-00-40.ltx + RELOC/doc/latex/latex-tabellen/06-00-41.ltx + RELOC/doc/latex/latex-tabellen/06-00-42.ltx + RELOC/doc/latex/latex-tabellen/06-00-43.ltx2 + RELOC/doc/latex/latex-tabellen/06-00-44.ltx + RELOC/doc/latex/latex-tabellen/06-00-45.ltx + RELOC/doc/latex/latex-tabellen/06-00-46.ltx + RELOC/doc/latex/latex-tabellen/06-00-5.ltxps + RELOC/doc/latex/latex-tabellen/06-00-6.ltxps + RELOC/doc/latex/latex-tabellen/06-00-7.ltxps + RELOC/doc/latex/latex-tabellen/06-00-8.ltx + RELOC/doc/latex/latex-tabellen/06-00-9.ltx + RELOC/doc/latex/latex-tabellen/07-03-1.ltx2 + 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-license lppl + +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. +docfiles size=50 + RELOC/doc/latex/latex-tds/README + RELOC/doc/latex/latex-tds/README.html + RELOC/doc/latex/latex-tds/README.pdf +srcfiles size=112 + RELOC/source/latex/latex-tds/README-docinfo.html + RELOC/source/latex/latex-tds/README.asciidoc + RELOC/source/latex/latex-tds/build.pl + RELOC/source/latex/latex-tds/lib/adjust_checksum.pl + RELOC/source/latex/latex-tds/lib/ziptimetree.pl + RELOC/source/latex/latex-tds/license/adjust_checksum/lppl.txt + RELOC/source/latex/latex-tds/license/latex-tds/lppl.txt + RELOC/source/latex/latex-tds/license/ziptimetree/lgpl.txt + RELOC/source/latex/latex-tds/patch/amsbooka.zip + RELOC/source/latex/latex-tds/patch/amsclass.dtx.diff + RELOC/source/latex/latex-tds/patch/amsfndoc.def.diff + RELOC/source/latex/latex-tds/patch/amsfndoc.tex.diff + RELOC/source/latex/latex-tds/patch/amsldoc.tex.diff + RELOC/source/latex/latex-tds/patch/changes.tex.diff + RELOC/source/latex/latex-tds/patch/encguide.tex.diff + RELOC/source/latex/latex-tds/patch/errorlog.tex.diff + RELOC/source/latex/latex-tds/patch/logmac.tex.diff + RELOC/source/latex/latex-tds/patch/source2e.tex.diff + RELOC/source/latex/latex-tds/patch/tlc2.err.diff + RELOC/source/latex/latex-tds/patch/trapman.tex.diff + RELOC/source/latex/latex-tds/patch/tripman.tex.diff + RELOC/source/latex/latex-tds/patch/utf8ienc.dtx.diff + RELOC/source/latex/latex-tds/patch/webman.tex.diff + RELOC/source/latex/latex-tds/tex/ams.drv + RELOC/source/latex/latex-tds/tex/doc_lppl.tex + RELOC/source/latex/latex-tds/tex/docstrip.cfg + RELOC/source/latex/latex-tds/tex/errata.all + RELOC/source/latex/latex-tds/tex/errata.cfg + RELOC/source/latex/latex-tds/tex/errata.drv + RELOC/source/latex/latex-tds/tex/errorlog.drv + RELOC/source/latex/latex-tds/tex/etex_man.drv + RELOC/source/latex/latex-tds/tex/fix-expl3-lua.ini + RELOC/source/latex/latex-tds/tex/hyperref.cfg + RELOC/source/latex/latex-tds/tex/knuth-outline.tex + RELOC/source/latex/latex-tds/tex/knuth.drv + RELOC/source/latex/latex-tds/tex/ltnews.cfg + RELOC/source/latex/latex-tds/tex/ltnews.tex + RELOC/source/latex/latex-tds/tex/ltugboat.cfg + RELOC/source/latex/latex-tds/tex/ltxcheck.drv + RELOC/source/latex/latex-tds/tex/ltxdoc.cfg + RELOC/source/latex/latex-tds/tex/ltxguide.cfg + RELOC/source/latex/latex-tds/tex/lualatex-tds.ini + RELOC/source/latex/latex-tds/tex/lualatex-tds2.ini + RELOC/source/latex/latex-tds/tex/manual.cfg + RELOC/source/latex/latex-tds/tex/pdflatex-tds.ini + RELOC/source/latex/latex-tds/tex/psnfss2e.drv + RELOC/source/latex/latex-tds/tex/tdsguide.cfg + 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-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 + +name latex-veryshortguide +category Package +revision 29803 +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 + 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 +catalogue-ctan /info/latex-veryshortguide +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name latex-web-companion +category Package +revision 29349 +catalogue lwc-examples +shortdesc Examples from The LaTeX Web Companion. +relocated 1 +longdesc The source of the examples printed in the book, together with +longdesc necessary supporting files. +docfiles size=372 + RELOC/doc/latex/latex-web-companion/apa/README.apa + RELOC/doc/latex/latex-web-companion/apa/latexexa-raw.xml + RELOC/doc/latex/latex-web-companion/apa/latexexa.dtd + RELOC/doc/latex/latex-web-companion/apa/latexexa.tex + RELOC/doc/latex/latex-web-companion/apa/latexexa.xml + RELOC/doc/latex/latex-web-companion/apa/phys332-1.eps + RELOC/doc/latex/latex-web-companion/apa/phys332-2.eps + RELOC/doc/latex/latex-web-companion/apa/teched.html + RELOC/doc/latex/latex-web-companion/apa/teched.java + RELOC/doc/latex/latex-web-companion/apb/InvitationSAX.class + RELOC/doc/latex/latex-web-companion/apb/InvitationSAX.java + RELOC/doc/latex/latex-web-companion/apb/MySAXApp.class + RELOC/doc/latex/latex-web-companion/apb/MySAXApp.java + RELOC/doc/latex/latex-web-companion/apb/README.apb + RELOC/doc/latex/latex-web-companion/apb/bibliotest1.xml + RELOC/doc/latex/latex-web-companion/apb/bibliotest2.xml + RELOC/doc/latex/latex-web-companion/apb/biblioxml1.dtd + RELOC/doc/latex/latex-web-companion/apb/biblioxml2.dtd + RELOC/doc/latex/latex-web-companion/apb/colorcir.eps + RELOC/doc/latex/latex-web-companion/apb/inv2.tex + RELOC/doc/latex/latex-web-companion/apb/invitation.sty + RELOC/doc/latex/latex-web-companion/apb/invitation2.dtd + RELOC/doc/latex/latex-web-companion/apb/invitation2.xml + RELOC/doc/latex/latex-web-companion/apb/latexmath.dtd + RELOC/doc/latex/latex-web-companion/apb/latexmml.dtd + RELOC/doc/latex/latex-web-companion/apb/makelatex.sh + RELOC/doc/latex/latex-web-companion/apb/minilatex.dtd + RELOC/doc/latex/latex-web-companion/apb/minilatex.xsl + RELOC/doc/latex/latex-web-companion/apb/minilatexexa.tex + RELOC/doc/latex/latex-web-companion/apb/minilatexexa.xml + RELOC/doc/latex/latex-web-companion/apb/mybiblio.dtd + RELOC/doc/latex/latex-web-companion/apb/utf82latin1.sh + RELOC/doc/latex/latex-web-companion/apc/ISOcyr1.pen + RELOC/doc/latex/latex-web-companion/apc/README.apc + RELOC/doc/latex/latex-web-companion/apc/invitation.sty + RELOC/doc/latex/latex-web-companion/apc/invitationfr.dtd + RELOC/doc/latex/latex-web-companion/apc/invitationfr.tex + RELOC/doc/latex/latex-web-companion/apc/invitationfr.xml + RELOC/doc/latex/latex-web-companion/apc/invitationfrraw.tex + RELOC/doc/latex/latex-web-companion/apc/invlat1fr.xsl + RELOC/doc/latex/latex-web-companion/apc/utf8.html + RELOC/doc/latex/latex-web-companion/apc/utf8.xml + RELOC/doc/latex/latex-web-companion/apc/utf8.xsl + RELOC/doc/latex/latex-web-companion/apc/utf8raw.html + RELOC/doc/latex/latex-web-companion/ch2/latexexa.aux + RELOC/doc/latex/latex-web-companion/ch2/latexexa.brf + RELOC/doc/latex/latex-web-companion/ch2/latexexa.log + RELOC/doc/latex/latex-web-companion/ch2/latexexa.out + RELOC/doc/latex/latex-web-companion/ch2/latexexa.pdf + RELOC/doc/latex/latex-web-companion/ch2/latexexa.tex + RELOC/doc/latex/latex-web-companion/ch2/phys332-1.pdf + RELOC/doc/latex/latex-web-companion/ch2/phys332-2.pdf + RELOC/doc/latex/latex-web-companion/ch3/Makefile.ex2 + RELOC/doc/latex/latex-web-companion/ch3/Makefile.ex3 + RELOC/doc/latex/latex-web-companion/ch3/README.ch3 + RELOC/doc/latex/latex-web-companion/ch3/colorcir.eps + RELOC/doc/latex/latex-web-companion/ch3/ex20.tex + RELOC/doc/latex/latex-web-companion/ch3/ex21.tex + RELOC/doc/latex/latex-web-companion/ch3/ex22.tex + RELOC/doc/latex/latex-web-companion/ch3/ex2bib.tex + RELOC/doc/latex/latex-web-companion/ch3/ex30.tex + RELOC/doc/latex/latex-web-companion/ch3/ex31.tex + RELOC/doc/latex/latex-web-companion/ch3/ex32.tex + RELOC/doc/latex/latex-web-companion/ch3/ex3bib.tex + RELOC/doc/latex/latex-web-companion/ch3/l2hexa.tex + RELOC/doc/latex/latex-web-companion/ch3/myinit.pl + RELOC/doc/latex/latex-web-companion/ch3/sampleAMS.css + RELOC/doc/latex/latex-web-companion/ch3/sampleAMS.tex + RELOC/doc/latex/latex-web-companion/ch3/sampleMath.tex + RELOC/doc/latex/latex-web-companion/ch3/sampleMathImages.tex + RELOC/doc/latex/latex-web-companion/ch3/sampleMathThumb.tex + RELOC/doc/latex/latex-web-companion/ch3/tac2dim.eps + RELOC/doc/latex/latex-web-companion/ch4/latexexa.aux + RELOC/doc/latex/latex-web-companion/ch4/latexexa.css + RELOC/doc/latex/latex-web-companion/ch4/latexexa.dvi + RELOC/doc/latex/latex-web-companion/ch4/latexexa.html + RELOC/doc/latex/latex-web-companion/ch4/latexexa.idv + RELOC/doc/latex/latex-web-companion/ch4/latexexa.lg + RELOC/doc/latex/latex-web-companion/ch4/latexexa.log + RELOC/doc/latex/latex-web-companion/ch4/latexexa.otc + RELOC/doc/latex/latex-web-companion/ch4/latexexa.tex + RELOC/doc/latex/latex-web-companion/ch4/latexexa.toc + RELOC/doc/latex/latex-web-companion/ch4/latexexa.xref + RELOC/doc/latex/latex-web-companion/ch4/phys332-1.eps + RELOC/doc/latex/latex-web-companion/ch4/phys332-2.eps + RELOC/doc/latex/latex-web-companion/ch4/tex4ht.env + RELOC/doc/latex/latex-web-companion/ch4/tex4ht.tmp + RELOC/doc/latex/latex-web-companion/ch4/tmp.ps + RELOC/doc/latex/latex-web-companion/ch6/README.ch6 + RELOC/doc/latex/latex-web-companion/ch6/catalog + RELOC/doc/latex/latex-web-companion/ch6/emptyexample.xml + RELOC/doc/latex/latex-web-companion/ch6/invitation.dtd + RELOC/doc/latex/latex-web-companion/ch6/invitation.xml + RELOC/doc/latex/latex-web-companion/ch6/wrong.xml + RELOC/doc/latex/latex-web-companion/ch6/xml.dcl + RELOC/doc/latex/latex-web-companion/ch7/README.ch7 + RELOC/doc/latex/latex-web-companion/ch7/SGMLS.pm + RELOC/doc/latex/latex-web-companion/ch7/SGMLS/Output.pm + RELOC/doc/latex/latex-web-companion/ch7/SGMLS/Refs.pm + RELOC/doc/latex/latex-web-companion/ch7/SGMLS/SGMLS.pm + RELOC/doc/latex/latex-web-companion/ch7/any.xml + RELOC/doc/latex/latex-web-companion/ch7/any.xsl + RELOC/doc/latex/latex-web-companion/ch7/catalog + RELOC/doc/latex/latex-web-companion/ch7/catalog.dsssl + RELOC/doc/latex/latex-web-companion/ch7/catalog.xml + RELOC/doc/latex/latex-web-companion/ch7/debug.txt + RELOC/doc/latex/latex-web-companion/ch7/dsssl.cat + RELOC/doc/latex/latex-web-companion/ch7/dsssl.dtd + RELOC/doc/latex/latex-web-companion/ch7/empty.dsl + RELOC/doc/latex/latex-web-companion/ch7/empty.xsl + RELOC/doc/latex/latex-web-companion/ch7/emptyexample.xml + RELOC/doc/latex/latex-web-companion/ch7/fot.dtd + RELOC/doc/latex/latex-web-companion/ch7/inv1html.pl + RELOC/doc/latex/latex-web-companion/ch7/inv2css.html.save + RELOC/doc/latex/latex-web-companion/ch7/inv2html.pl + RELOC/doc/latex/latex-web-companion/ch7/inv2lat.pl + RELOC/doc/latex/latex-web-companion/ch7/inv3.xml + RELOC/doc/latex/latex-web-companion/ch7/invcss.html.save + RELOC/doc/latex/latex-web-companion/ch7/invfo1.fop + RELOC/doc/latex/latex-web-companion/ch7/invfo1.out + RELOC/doc/latex/latex-web-companion/ch7/invfo1.pdf + RELOC/doc/latex/latex-web-companion/ch7/invfo1.xsl + RELOC/doc/latex/latex-web-companion/ch7/invhtml.dsl + RELOC/doc/latex/latex-web-companion/ch7/invhtml2.xsl + RELOC/doc/latex/latex-web-companion/ch7/invit.css + RELOC/doc/latex/latex-web-companion/ch7/invitation.dsl + RELOC/doc/latex/latex-web-companion/ch7/invitation.dtd + RELOC/doc/latex/latex-web-companion/ch7/invitation.fot + RELOC/doc/latex/latex-web-companion/ch7/invitation.sty + RELOC/doc/latex/latex-web-companion/ch7/invitation.tex.save + RELOC/doc/latex/latex-web-companion/ch7/invitation.xml + RELOC/doc/latex/latex-web-companion/ch7/invitation2.dtd + RELOC/doc/latex/latex-web-companion/ch7/invitation2.xml + RELOC/doc/latex/latex-web-companion/ch7/invitationfr.sty + RELOC/doc/latex/latex-web-companion/ch7/invlat1.xsl + RELOC/doc/latex/latex-web-companion/ch7/invtab1.dsl + RELOC/doc/latex/latex-web-companion/ch7/invtab2.dsl + RELOC/doc/latex/latex-web-companion/ch7/makesum.xml + RELOC/doc/latex/latex-web-companion/ch7/makesum.xsl + RELOC/doc/latex/latex-web-companion/ch7/sectionexa.xml + RELOC/doc/latex/latex-web-companion/ch7/sectionexa.xsl + RELOC/doc/latex/latex-web-companion/ch7/sgmlspl.pl + RELOC/doc/latex/latex-web-companion/ch7/skel.pl + RELOC/doc/latex/latex-web-companion/ch7/style-sheet.dtd + RELOC/doc/latex/latex-web-companion/ch7/templatest.xml + RELOC/doc/latex/latex-web-companion/ch7/templatest.xsl + RELOC/doc/latex/latex-web-companion/ch7/templatestnok.xsl + RELOC/doc/latex/latex-web-companion/ch7/templatestok.xsl + RELOC/doc/latex/latex-web-companion/ch7/test-SGMLS.pl + RELOC/doc/latex/latex-web-companion/ch7/writefile.xsl + RELOC/doc/latex/latex-web-companion/ch7/writefiles.xml + RELOC/doc/latex/latex-web-companion/ch7/wrong.xml + RELOC/doc/latex/latex-web-companion/ch7/xml.dcl + RELOC/doc/latex/latex-web-companion/ch7/xsl.xml + RELOC/doc/latex/latex-web-companion/ch7/xslexa1.xsl +catalogue-ctan /info/examples/lwc +catalogue-date 2012-07-10 08:38:43 +0200 +catalogue-license lppl + +name lato +category Package +revision 24986 +shortdesc Lato font family and LaTeX support. +relocated 1 +longdesc Lato is a sanserif typeface family designed in the Summer 2010 +longdesc by Warsaw-based designer Lukasz Dziedzic for the tyPoland +longdesc foundry. This font, which includes five weights (hairline, +longdesc light, regular, bold and black), is available from the Google +longdesc Font Directory as TrueType files under the Open Font License +longdesc version 1.1. The package provides support for this font in +longdesc LaTeX. It includes the original TrueType fonts, as well as Type +longdesc 1 versions, converted for this package using FontForge for full +longdesc support with Dvips. +execute addMap lato.map +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 + RELOC/doc/fonts/lato/CHANGES + RELOC/doc/fonts/lato/README + RELOC/doc/fonts/lato/lato-samples.pdf + RELOC/doc/fonts/lato/lato-samples.tex + RELOC/doc/fonts/lato/lato.pdf + 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 +catalogue-ctan /fonts/lato +catalogue-date 2014-05-07 18:10:38 +0200 +catalogue-license lppl1.3 +catalogue-version 2.2 + +name layaureo +category Package +revision 19087 +shortdesc A package to improve the A4 page layout. +relocated 1 +longdesc This package produces a wide page layout for documents that use +longdesc A4 paper size. Moreover, LayAureo provides both a simple hook +longdesc for leaving an empty space which is required if pages are +longdesc bundled by a press binding (use option binding=length), and an +longdesc option called big which it forces typearea to become maximum. +runfiles size=1 + RELOC/tex/latex/layaureo/layaureo.sty +docfiles size=37 + RELOC/doc/latex/layaureo/README + RELOC/doc/latex/layaureo/layaureo.pdf +srcfiles size=7 + RELOC/source/latex/layaureo/layaureo.dtx + RELOC/source/latex/layaureo/layaureo.ins +catalogue-ctan /macros/latex/contrib/layaureo +catalogue-date 2012-07-05 12:56:27 +0200 +catalogue-license lppl +catalogue-version 0.2 + +name layouts +category Package +revision 15878 +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 +docfiles size=143 + RELOC/doc/latex/layouts/README + RELOC/doc/latex/layouts/layman.pdf + RELOC/doc/latex/layouts/layouts.pdf +srcfiles size=63 + RELOC/source/latex/layouts/layman.tex + RELOC/source/latex/layouts/layouts.dtx + RELOC/source/latex/layouts/layouts.ins +catalogue-ctan /macros/latex/contrib/layouts +catalogue-date 2012-04-27 12:45:13 +0200 +catalogue-license lppl1.3 +catalogue-version 2.6d + +name lazylist +category Package +revision 17691 +shortdesc Lists in TeX's "mouth". +relocated 1 +longdesc The package was developed to provide flexible lists, whose +longdesc ordering can be altered on the fly. The implementation involves +longdesc a pile of lambda-calculus and list-handling macros of an +longdesc incredibly obtuse nature. The TUGboat paper serves as a manual +longdesc for the macros. Having said all of which, confidence is +longdesc enhanced by the knowledge that the TeX code was formally +longdesc verified. +runfiles size=1 + RELOC/tex/latex/lazylist/lazylist.sty +docfiles size=43 + RELOC/doc/latex/lazylist/lazylist.pdf + RELOC/doc/latex/lazylist/lazylist.tex +catalogue-ctan /macros/latex/contrib/lazylist +catalogue-date 2012-05-10 17:39:23 +0200 +catalogue-license lppl1.2 +catalogue-version 1.0a + +name lcdftypetools +category TLCore +revision 37078 +catalogue lcdf-typetools +shortdesc A bundle of outline font manipulation tools. +longdesc This bundle of tools comprises: Cfftot1, which translates a +longdesc Compact Font Format (CFF) font, or a PostScript-flavored +longdesc OpenType font, into PostScript Type 1 format. It correctly +longdesc handles subroutines and hints; Mmafm and mmpfb, which create +longdesc instances of multiple-master fonts (mmafm and mmpfb were +longdesc previously distributed in their own package, mminstance); +longdesc Otfinfo, which reports information about OpenType fonts, such +longdesc as the features they support and the contents of their 'size' +longdesc optical size features; Otftotfm, which creates TeX font metrics +longdesc and encodings that correspond to a PostScript-flavored OpenType +longdesc font. It will interpret glyph positionings, substitutions, and +longdesc ligatures as far as it is able. You can say which OpenType +longdesc features should be activated; T1dotlessj, creates a Type 1 font +longdesc whose only character is a dotless j matching the input font's +longdesc design; T1lint, which checks a Type 1 font for correctness; +longdesc T1reencode, which replaces a font's internal encoding with one +longdesc you specify; and T1testpage, which creates a PostScript proof +longdesc for a Type 1 font. It is preliminary software. +depend glyphlist +depend lcdftypetools.ARCH +docfiles size=65 + texmf-dist/doc/man/man1/cfftot1.1 + texmf-dist/doc/man/man1/cfftot1.man1.pdf + texmf-dist/doc/man/man1/mmafm.1 + texmf-dist/doc/man/man1/mmafm.man1.pdf + texmf-dist/doc/man/man1/mmpfb.1 + texmf-dist/doc/man/man1/mmpfb.man1.pdf + texmf-dist/doc/man/man1/otfinfo.1 + texmf-dist/doc/man/man1/otfinfo.man1.pdf + texmf-dist/doc/man/man1/otftotfm.1 + texmf-dist/doc/man/man1/otftotfm.man1.pdf + texmf-dist/doc/man/man1/t1dotlessj.1 + texmf-dist/doc/man/man1/t1dotlessj.man1.pdf + texmf-dist/doc/man/man1/t1lint.1 + texmf-dist/doc/man/man1/t1lint.man1.pdf + texmf-dist/doc/man/man1/t1rawafm.1 + texmf-dist/doc/man/man1/t1rawafm.man1.pdf + texmf-dist/doc/man/man1/t1reencode.1 + texmf-dist/doc/man/man1/t1reencode.man1.pdf + texmf-dist/doc/man/man1/t1testpage.1 + texmf-dist/doc/man/man1/t1testpage.man1.pdf + texmf-dist/doc/man/man1/ttftotype42.1 + texmf-dist/doc/man/man1/ttftotype42.man1.pdf +catalogue-ctan /fonts/utilities/lcdf-typetools +catalogue-date 2015-03-27 19:31:19 +0100 +catalogue-license gpl + +name lcdftypetools.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of lcdftypetools +binfiles arch=i386-linux size=1298 + bin/i386-linux/cfftot1 + bin/i386-linux/mmafm + bin/i386-linux/mmpfb + bin/i386-linux/otfinfo + bin/i386-linux/otftotfm + bin/i386-linux/t1dotlessj + bin/i386-linux/t1lint + bin/i386-linux/t1rawafm + bin/i386-linux/t1reencode + bin/i386-linux/t1testpage + bin/i386-linux/ttftotype42 + +name 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 lcg +category Package +revision 31474 +shortdesc Generate random integers. +relocated 1 +longdesc The lcg package generates random numbers (integers) via a +longdesc linear congruential generator (Schrage's method). The random +longdesc numbers are written to a counter. The keyval package is used +longdesc for the user to provide values for the range and a seed, and +longdesc for the name of the counter to be used. +runfiles size=2 + RELOC/tex/latex/lcg/lcg.sty +docfiles size=65 + RELOC/doc/latex/lcg/lcg.pdf +srcfiles size=7 + RELOC/source/latex/lcg/lcg.dtx + RELOC/source/latex/lcg/lcg.ins +catalogue-ctan /macros/latex/contrib/lcg +catalogue-date 2014-01-04 14:18:29 +0100 +catalogue-license lppl +catalogue-version 1.3 + +name lcyw +category Package +revision 15878 +shortdesc Make Classic Cyrillic CM fonts accessible in LaTeX. +relocated 1 +longdesc The package makes the classic CM Cyrillic fonts accessible for +longdesc use with LaTeX. +runfiles size=10 + RELOC/tex/latex/lcyw/cmap-cyr-vf.sty + RELOC/tex/latex/lcyw/koi7a.cmap + RELOC/tex/latex/lcyw/lcywcmr.fd + RELOC/tex/latex/lcyw/lcywcmss.fd + RELOC/tex/latex/lcyw/lcywcmssq.fd + RELOC/tex/latex/lcyw/lcywcmtt.fd + RELOC/tex/latex/lcyw/lcywenc.def +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-license lppl1.3 +catalogue-version v1.1 + +name leading +category Package +revision 15878 +shortdesc Define leading with a length. +relocated 1 +longdesc The package defines a command \leading, whose argument is a +longdesc <length> that specifies the nominal distance between +longdesc consecutive baselines of typeset text. The command replaces the +longdesc rather more difficult LaTeX command \linespread{<ratio>}, where +longdesc the leading is specified by reference to the font size. +runfiles size=1 + RELOC/tex/latex/leading/leading.sty +docfiles size=24 + RELOC/doc/latex/leading/README + RELOC/doc/latex/leading/leading.pdf +srcfiles size=4 + RELOC/source/latex/leading/leading.dtx + RELOC/source/latex/leading/leading.ins +catalogue-ctan /macros/latex/contrib/leading +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.3 + +name leadsheets +category Package +revision 37982 +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 + RELOC/tex/latex/leadsheets/leadsheets.library.chordnames.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.chords.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.musejazz.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.musicsymbols.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.properties.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.shorthands.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.songs.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.templates.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.translations.code.tex + RELOC/tex/latex/leadsheets/leadsheets.library.transposing.code.tex + RELOC/tex/latex/leadsheets/leadsheets.sty +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-ctan /macros/latex/contrib/leadsheets +catalogue-date 2015-07-28 14:20:08 +0200 +catalogue-license lppl1.3 +catalogue-topics music chords +catalogue-version 0.3 + +name leaflet +category Package +revision 32093 +shortdesc Create small handouts (flyers). +relocated 1 +longdesc A document class to create small hand-outs (flyers) that fit on +longdesc a single sheet of paper which is then folded twice. Pages are +longdesc rearranged by LaTeX so that they print correctly on a single +longdesc sheet -- no external script is necessary. (Works with +longdesc PostScript and PDF.) This is a complete reimplementation with +longdesc permission of the original author Jurgen Schlegelmilch. +runfiles size=5 + RELOC/tex/latex/leaflet/leaflet.cls +docfiles size=86 + RELOC/doc/latex/leaflet/README + RELOC/doc/latex/leaflet/leaflet-manual.pdf + RELOC/doc/latex/leaflet/leaflet-manual.tex + RELOC/doc/latex/leaflet/leaflet.pdf +srcfiles size=13 + RELOC/source/latex/leaflet/leaflet.dtx + RELOC/source/latex/leaflet/leaflet.ins +catalogue-ctan /macros/latex/contrib/leaflet +catalogue-date 2014-10-10 23:56:29 +0200 +catalogue-license lppl +catalogue-version 1.0e + +name lecturer +category Package +revision 23916 +shortdesc On-screen presentations for (almost) all formats. +relocated 1 +longdesc The package creates slides for on-screen presentations based on +longdesc PDF features without manipulating TeX's typesetting process. +longdesc The presentation flow relies on PDF's abilities to display +longdesc content step by step. Features include: Free positioning of +longdesc anything anywhere in painted areas on the slide, as well as in +longdesc the main textblock; Numerous attributes to control the layout +longdesc and the presentation flow, from TeX's primitive dimensions to +longdesc the visibility of steps; Feature inheritance from global to +longdesc local settings, with intermediate types; Basic drawing +longdesc facilities to produce symbols, e.g., for list items or buttons; +longdesc Colours, transparency, shades, and pictures; Navigation with +longdesc links, pop-up menus, and customizable bookmarks; Easy switch +longdesc between presentation and handout; and PDF transitions. Besides +longdesc the traditional documentation, the distribution includes visual +longdesc documentation and six demo presentations ranging from geometric +longdesc abstraction to classic style to silly video game. Lecturer is +longdesc designed to work with all formats, but presently fails with +longdesc ConTeXt MkIV (because of clashes in management of PDF objects, +longdesc probably), works only with pdfTeX and LuaTeX for the time +longdesc being, and requires texapi and yax, both v.1.02. +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 +docfiles size=1022 + RELOC/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.pdf + RELOC/doc/generic/lecturer/LecturerDemo-BeamerCambridgeUS.tex + RELOC/doc/generic/lecturer/LecturerDemo-KitschScienceFiction.pdf + RELOC/doc/generic/lecturer/LecturerDemo-KitschScienceFiction.tex + RELOC/doc/generic/lecturer/LecturerDemo-Mondrian.pdf + RELOC/doc/generic/lecturer/LecturerDemo-Mondrian.tex + RELOC/doc/generic/lecturer/LecturerDemo-SimplePresentation.pdf + RELOC/doc/generic/lecturer/LecturerDemo-SimplePresentation.tex + RELOC/doc/generic/lecturer/LecturerDemo-SquaresOfAs.pdf + RELOC/doc/generic/lecturer/LecturerDemo-SquaresOfAs.tex + RELOC/doc/generic/lecturer/LecturerDemo-ThePoodleLectures.pdf + RELOC/doc/generic/lecturer/LecturerDemo-ThePoodleLectures.tex + RELOC/doc/generic/lecturer/LecturerDemo-VisualDoc.pdf + RELOC/doc/generic/lecturer/LecturerDemo-VisualDoc.tex + RELOC/doc/generic/lecturer/README + RELOC/doc/generic/lecturer/lecturer-doc.pdf + RELOC/doc/generic/lecturer/lecturer-doc.tex + RELOC/doc/generic/lecturer/universe.jpg +catalogue-ctan /macros/generic/lecturer +catalogue-date 2014-10-10 18:20:36 +0200 +catalogue-license lppl + +name ledmac +category Package +revision 37908 +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 +docfiles size=822 + RELOC/doc/latex/ledmac/Makefile + RELOC/doc/latex/ledmac/README + RELOC/doc/latex/ledmac/djd17nov.tex + RELOC/doc/latex/ledmac/djd17novL.eps + RELOC/doc/latex/ledmac/djd17novR.eps + RELOC/doc/latex/ledmac/djdpoems.tex + RELOC/doc/latex/ledmac/djdpoems1.eps + RELOC/doc/latex/ledmac/djdpoems2.eps + RELOC/doc/latex/ledmac/djdpoems3.eps + RELOC/doc/latex/ledmac/djdpoems4.eps + RELOC/doc/latex/ledmac/egarab.eps + RELOC/doc/latex/ledmac/egarab.tex + RELOC/doc/latex/ledmac/egarabpar.eps + RELOC/doc/latex/ledmac/egarabpar.tex + RELOC/doc/latex/ledmac/ledarab.pdf + RELOC/doc/latex/ledmac/ledarden.eps + RELOC/doc/latex/ledmac/ledarden.tex + RELOC/doc/latex/ledmac/ledbraonain.eps + RELOC/doc/latex/ledmac/ledbraonain.tex + RELOC/doc/latex/ledmac/ledeasy.eps + RELOC/doc/latex/ledmac/ledeasy.tex + RELOC/doc/latex/ledmac/ledekker.eps + RELOC/doc/latex/ledmac/ledekker.tex + RELOC/doc/latex/ledmac/ledfeat.eps + RELOC/doc/latex/ledmac/ledfeat.tex + RELOC/doc/latex/ledmac/ledioc.eps + RELOC/doc/latex/ledmac/ledioc.tex + RELOC/doc/latex/ledmac/ledmac.pdf + 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 +srcfiles size=176 + RELOC/source/latex/ledmac/ledarab.dtx + RELOC/source/latex/ledmac/ledarab.ins + RELOC/source/latex/ledmac/ledmac.dtx + RELOC/source/latex/ledmac/ledmac.ins + RELOC/source/latex/ledmac/ledpar.dtx + RELOC/source/latex/ledmac/ledpar.ins +catalogue-also ednotes poemscol +catalogue-ctan /macros/latex/contrib/ledmac +catalogue-date 2015-07-19 23:14:58 +0200 +catalogue-license lppl1.3 +catalogue-topics crit-ed +catalogue-version 0.19.2a + +name leftidx +category Package +revision 15878 +shortdesc Left and right subscripts and superscripts in math mode. +relocated 1 +longdesc Left and right subscripts and superscripts are automatically +longdesc raised for better fitting to the symbol they belong to. +runfiles size=1 + RELOC/tex/latex/leftidx/leftidx.sty +docfiles size=18 + RELOC/doc/latex/leftidx/README + RELOC/doc/latex/leftidx/leftidx.pdf +srcfiles size=4 + RELOC/source/latex/leftidx/Makefile + RELOC/source/latex/leftidx/leftidx.dtx + RELOC/source/latex/leftidx/leftidx.ins +catalogue-ctan /macros/latex/contrib/leftidx +catalogue-date 2012-06-01 21:24:39 +0200 +catalogue-license lppl + +name leipzig +category Package +revision 34902 +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 + RELOC/source/latex/leipzig/leipzig.dtx + RELOC/source/latex/leipzig/leipzig.ins +catalogue-ctan /macros/latex/contrib/leipzig +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name lengthconvert +category Package +revision 30867 +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 +docfiles size=109 + RELOC/doc/latex/lengthconvert/lengthconvert.pdf +srcfiles size=5 + RELOC/source/latex/lengthconvert/lengthconvert.dtx + RELOC/source/latex/lengthconvert/lengthconvert.ins +catalogue-ctan /macros/latex/contrib/lengthconvert +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0a + +name lettre +category Package +revision 35145 +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 + 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 +catalogue-ctan /macros/latex/contrib/lettre +catalogue-date 2014-09-10 15:48:52 +0200 +catalogue-license lppl1.3 +catalogue-version 2.353 + +name lettrine +category Package +revision 38268 +shortdesc Typeset dropped capitals +relocated 1 +longdesc The lettrine package supports various dropped capitals styles, +longdesc typically those described in the French typographic books. In +longdesc particular, it has facilities for the paragraph text's left +longdesc edge to follow the outline of capitals that have a regular +longdesc shape (such as "A" and "V"). +runfiles size=11 + RELOC/tex/latex/lettrine/lettrine.cfg + RELOC/tex/latex/lettrine/lettrine.sty + RELOC/tex/latex/lettrine/optfile.cfl + RELOC/tex/latex/lettrine/pacl.cfl + RELOC/tex/latex/lettrine/padl.cfl + RELOC/tex/latex/lettrine/pzc2.cfl + RELOC/tex/latex/lettrine/pzc3.cfl +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-ctan /macros/latex/contrib/lettrine +catalogue-date 2015-09-01 14:20:07 +0200 +catalogue-license lppl1.3 +catalogue-topics lettrine +catalogue-version 1.9 + +name levy +category Package +revision 21750 +catalogue levy-font +shortdesc Fonts for typesetting classical greek. +relocated 1 +longdesc These fonts are derivatives of Kunth's CM fonts. Macros for use +longdesc with Plain TeX are included in the package; for use with LaTeX, +longdesc see lgreek (with English documentation) or levy (with German +longdesc documentation). +runfiles size=82 + RELOC/fonts/source/public/levy/a.mf + RELOC/fonts/source/public/levy/b.mf + RELOC/fonts/source/public/levy/d.mf + RELOC/fonts/source/public/levy/digits.mf + RELOC/fonts/source/public/levy/e.mf + RELOC/fonts/source/public/levy/f.mf + RELOC/fonts/source/public/levy/g.mf + RELOC/fonts/source/public/levy/gen_acc.mf + RELOC/fonts/source/public/levy/gen_sigma.mf + RELOC/fonts/source/public/levy/graccent.mf + RELOC/fonts/source/public/levy/grbase.mf + RELOC/fonts/source/public/levy/grbld10.mf + RELOC/fonts/source/public/levy/grbld8.mf + RELOC/fonts/source/public/levy/grbld9.mf + RELOC/fonts/source/public/levy/greek.mf + RELOC/fonts/source/public/levy/grpunct.mf + RELOC/fonts/source/public/levy/grreg10.mf + RELOC/fonts/source/public/levy/grreg8.mf + RELOC/fonts/source/public/levy/grreg9.mf + RELOC/fonts/source/public/levy/grtt10.mf + RELOC/fonts/source/public/levy/h.mf + RELOC/fonts/source/public/levy/i.mf + RELOC/fonts/source/public/levy/j.mf + RELOC/fonts/source/public/levy/k.mf + RELOC/fonts/source/public/levy/l.mf + RELOC/fonts/source/public/levy/lig.mf + RELOC/fonts/source/public/levy/lower.mf + RELOC/fonts/source/public/levy/m.mf + RELOC/fonts/source/public/levy/n.mf + RELOC/fonts/source/public/levy/o.mf + RELOC/fonts/source/public/levy/p.mf + RELOC/fonts/source/public/levy/q.mf + RELOC/fonts/source/public/levy/r.mf + RELOC/fonts/source/public/levy/s.mf + RELOC/fonts/source/public/levy/t.mf + RELOC/fonts/source/public/levy/u.mf + RELOC/fonts/source/public/levy/upper.mf + RELOC/fonts/source/public/levy/w.mf + RELOC/fonts/source/public/levy/x.mf + RELOC/fonts/source/public/levy/y.mf + RELOC/fonts/source/public/levy/z.mf + RELOC/fonts/tfm/public/levy/grbld10.tfm + RELOC/fonts/tfm/public/levy/grbld8.tfm + RELOC/fonts/tfm/public/levy/grbld9.tfm + RELOC/fonts/tfm/public/levy/grreg10.tfm + RELOC/fonts/tfm/public/levy/grreg8.tfm + RELOC/fonts/tfm/public/levy/grreg9.tfm + RELOC/tex/generic/levy/greekmacros.tex + RELOC/tex/generic/levy/slgreek.sty +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-license gpl2 + +name lewis +category Package +revision 15878 +shortdesc Draw Lewis structures. +relocated 1 +longdesc The package provides rudimentary support for drawing Lewis +longdesc Structures. Support is limited to elements that support the +longdesc octet rule. +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-license pd +catalogue-version 0.1 + +name lexikon +category Package +revision 17364 +shortdesc Macros for a two language dictionary. +relocated 1 +runfiles size=2 + RELOC/tex/latex/lexikon/lexikon.sty +docfiles size=48 + RELOC/doc/latex/lexikon/lexikon-doc.pdf + RELOC/doc/latex/lexikon/lexikon-doc.tex + RELOC/doc/latex/lexikon/lexikon.tex + RELOC/doc/latex/lexikon/lexikon.upl +catalogue-ctan /macros/latex/contrib/lexikon +catalogue-date 2012-08-30 22:39:52 +0200 +catalogue-license lppl +catalogue-version 1.0c + +name lexref +category Package +revision 36026 +shortdesc Convenient and uniform references to legal provisions. +relocated 1 +longdesc The package is aimed at continental lawyers (especially those +longdesc in Switzerland and Germany), allowing the user to make +longdesc references to legal provisions conveniently and uniformly. The +longdesc package also allows the user to add cited Acts to a +longdesc nomenclature list (automatically), and to build specific +longdesc indexes for each cited Act. The package is still under +longdesc development, and should be treated as an 'alpha'-release. +runfiles size=5 + RELOC/tex/latex/lexref/lexref.sty +docfiles size=101 + RELOC/doc/latex/lexref/README + RELOC/doc/latex/lexref/lexref.pdf + RELOC/doc/latex/lexref/lexref.tex +catalogue-ctan /macros/latex/contrib/lexref +catalogue-date 2015-01-11 13:56:16 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1a + +name lfb +category Package +revision 15878 +shortdesc A Greek font with normal and bold variants. +relocated 1 +longdesc This is a Greek font written in Metafont, with inspiration from +longdesc the Bodoni typefaces in old books. It is stylistically a little +longdesc more exotic than the standard textbook Greek fonts, +longdesc particularly in glyphs like the lowercase rho and kappa. It +longdesc aims for a rather calligraphic feel, but seems to blend well +longdesc with Computer Modern. There is a ligature scheme which +longdesc automatically inserts the breathings required for ancient +longdesc texts, making the input text more readable than in some +longdesc schemes. +runfiles size=83 + RELOC/fonts/source/public/lfb/accents.mf + RELOC/fonts/source/public/lfb/alpha.mf + RELOC/fonts/source/public/lfb/beta.mf + RELOC/fonts/source/public/lfb/capitals.mf + RELOC/fonts/source/public/lfb/charmap.mf + RELOC/fonts/source/public/lfb/delta.mf + RELOC/fonts/source/public/lfb/epsilon.mf + RELOC/fonts/source/public/lfb/eta.mf + RELOC/fonts/source/public/lfb/gamma.mf + RELOC/fonts/source/public/lfb/iota.mf + RELOC/fonts/source/public/lfb/kappa.mf + RELOC/fonts/source/public/lfb/khi.mf + RELOC/fonts/source/public/lfb/lambda.mf + RELOC/fonts/source/public/lfb/lfb.mf + RELOC/fonts/source/public/lfb/lfb10.mf + RELOC/fonts/source/public/lfb/lfb11.mf + RELOC/fonts/source/public/lfb/lfb12.mf + RELOC/fonts/source/public/lfb/lfb5.mf + RELOC/fonts/source/public/lfb/lfb6.mf + RELOC/fonts/source/public/lfb/lfb7.mf + RELOC/fonts/source/public/lfb/lfb8.mf + RELOC/fonts/source/public/lfb/lfb9.mf + RELOC/fonts/source/public/lfb/lfbb10.mf + RELOC/fonts/source/public/lfb/lfbb11.mf + RELOC/fonts/source/public/lfb/lfbb12.mf + RELOC/fonts/source/public/lfb/lfbb5.mf + RELOC/fonts/source/public/lfb/lfbb6.mf + RELOC/fonts/source/public/lfb/lfbb7.mf + RELOC/fonts/source/public/lfb/lfbb8.mf + RELOC/fonts/source/public/lfb/lfbb9.mf + RELOC/fonts/source/public/lfb/ligature.mf + RELOC/fonts/source/public/lfb/mu.mf + RELOC/fonts/source/public/lfb/nu.mf + RELOC/fonts/source/public/lfb/omega.mf + RELOC/fonts/source/public/lfb/omikron.mf + RELOC/fonts/source/public/lfb/others.mf + RELOC/fonts/source/public/lfb/phi.mf + RELOC/fonts/source/public/lfb/pi.mf + RELOC/fonts/source/public/lfb/psi.mf + RELOC/fonts/source/public/lfb/rho.mf + RELOC/fonts/source/public/lfb/serifs.mf + RELOC/fonts/source/public/lfb/sigma.mf + RELOC/fonts/source/public/lfb/sigmafin.mf + RELOC/fonts/source/public/lfb/tau.mf + RELOC/fonts/source/public/lfb/theta.mf + RELOC/fonts/source/public/lfb/upsilon.mf + RELOC/fonts/source/public/lfb/xi.mf + RELOC/fonts/source/public/lfb/zeta.mf + RELOC/fonts/tfm/public/lfb/lfb10.tfm + RELOC/fonts/tfm/public/lfb/lfb11.tfm + RELOC/fonts/tfm/public/lfb/lfb12.tfm + RELOC/fonts/tfm/public/lfb/lfb5.tfm + RELOC/fonts/tfm/public/lfb/lfb6.tfm + RELOC/fonts/tfm/public/lfb/lfb7.tfm + RELOC/fonts/tfm/public/lfb/lfb8.tfm + RELOC/fonts/tfm/public/lfb/lfb9.tfm + RELOC/fonts/tfm/public/lfb/lfbb10.tfm + RELOC/fonts/tfm/public/lfb/lfbb11.tfm + RELOC/fonts/tfm/public/lfb/lfbb12.tfm + RELOC/fonts/tfm/public/lfb/lfbb5.tfm + RELOC/fonts/tfm/public/lfb/lfbb6.tfm + RELOC/fonts/tfm/public/lfb/lfbb7.tfm + RELOC/fonts/tfm/public/lfb/lfbb8.tfm + RELOC/fonts/tfm/public/lfb/lfbb9.tfm +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-license lppl +catalogue-version 1.0 + +name lgreek +category Package +revision 21818 +shortdesc LaTeX macros for using Silvio Levy's Greek fonts. +relocated 1 +longdesc A conversion of Silvio Levy's Plain TeX macros for use with +longdesc LaTeX. +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-ctan /macros/latex/contrib/lgreek +catalogue-date 2012-04-27 17:19:37 +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 + +name lh +category Package +revision 15878 +shortdesc Cyrillic fonts that support LaTeX standard encodings. +relocated 1 +longdesc The LH fonts address the problem of the wide variety of +longdesc alphabets that are written with Cyrillic-style characters. The +longdesc fonts are the original basis of the set of T2* and X2 encodings +longdesc that are now used when LaTeX users need to write in Cyrillic +longdesc languages. Macro support in standard LaTeX encodings is offered +longdesc through the 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 package also offers its own LaTeX support for OT2 encoded +longdesc fonts, CM bright shaped fonts and Concrete shaped fonts. +depend ec +runfiles size=1023 + RELOC/fonts/source/lh/base/fikparm.mf + RELOC/fonts/source/lh/base/lcyrbeg.mf + RELOC/fonts/source/lh/base/lcyrdefs.mf + RELOC/fonts/source/lh/base/ldbroman.mf + RELOC/fonts/source/lh/base/ldcsc.mf + RELOC/fonts/source/lh/base/ldroman.mf + RELOC/fonts/source/lh/base/ldtexset.mf + RELOC/fonts/source/lh/base/ldtextit.mf + RELOC/fonts/source/lh/base/ldtitle.mf + RELOC/fonts/source/lh/base/lebroman.mf + RELOC/fonts/source/lh/base/lecsc.mf + RELOC/fonts/source/lh/base/leroman.mf + RELOC/fonts/source/lh/base/letextit.mf + RELOC/fonts/source/lh/base/lgcspl.mf + RELOC/fonts/source/lh/base/lgcyracc.mf + RELOC/fonts/source/lh/base/lgcyri.mf + RELOC/fonts/source/lh/base/lgcyrl.mf + RELOC/fonts/source/lh/base/lgcyrsp.mf + RELOC/fonts/source/lh/base/lgcyrsym.mf + RELOC/fonts/source/lh/base/lgcyru.mf + RELOC/fonts/source/lh/base/lgengsym.mf + RELOC/fonts/source/lh/base/lgidigit.mf + RELOC/fonts/source/lh/base/lgilig.mf + RELOC/fonts/source/lh/base/lgitalp.mf + RELOC/fonts/source/lh/base/lgocyrac.mf + RELOC/fonts/source/lh/base/lgpunct.mf + RELOC/fonts/source/lh/base/lgrdigit.mf + RELOC/fonts/source/lh/base/lgrlig.mf + RELOC/fonts/source/lh/base/lgromp.mf + RELOC/fonts/source/lh/base/lgrusi.mf + RELOC/fonts/source/lh/base/lgrusl.mf + RELOC/fonts/source/lh/base/lgrusu.mf + RELOC/fonts/source/lh/base/lgt2comi.mf + RELOC/fonts/source/lh/base/lgt2coml.mf + RELOC/fonts/source/lh/base/lgt2comu.mf + RELOC/fonts/source/lh/base/lgt2loi.mf + RELOC/fonts/source/lh/base/lgt2lol.mf + RELOC/fonts/source/lh/base/lgt2lou.mf + RELOC/fonts/source/lh/base/lgt2slvi.mf + RELOC/fonts/source/lh/base/lgt2slvl.mf + RELOC/fonts/source/lh/base/lgt2slvu.mf + RELOC/fonts/source/lh/base/lgt2upi.mf + RELOC/fonts/source/lh/base/lgt2upl.mf + RELOC/fonts/source/lh/base/lgt2upu.mf + RELOC/fonts/source/lh/base/lkligtbl.mf + RELOC/fonts/source/lh/base/llbligtb.mf + RELOC/fonts/source/lh/base/llcligtb.mf + RELOC/fonts/source/lh/base/lliligtb.mf + RELOC/fonts/source/lh/base/llmligtb.mf + RELOC/fonts/source/lh/base/llrligtb.mf + RELOC/fonts/source/lh/base/llvligtb.mf + RELOC/fonts/source/lh/base/lwnligs.mf + RELOC/fonts/source/lh/base/lxpseudo.mf + RELOC/fonts/source/lh/base/lycyracc.mf + RELOC/fonts/source/lh/base/lypseudo.mf + RELOC/fonts/source/lh/base/nodraw.mf + RELOC/fonts/source/lh/lh-XSlav/irslb8.mf + RELOC/fonts/source/lh/lh-XSlav/irsli8.mf + RELOC/fonts/source/lh/lh-XSlav/irslo8.mf + RELOC/fonts/source/lh/lh-XSlav/irslq8.mf + RELOC/fonts/source/lh/lh-XSlav/irsltt8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbbx10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbegin.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmo10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmo17.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmo8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmo9.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmr10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmr17.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmr8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbmr9.mf + RELOC/fonts/source/lh/lh-XSlav/rsbso10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbso17.mf + RELOC/fonts/source/lh/lh-XSlav/rsbso8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbso9.mf + RELOC/fonts/source/lh/lh-XSlav/rsbsr10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbsr17.mf + RELOC/fonts/source/lh/lh-XSlav/rsbsr8.mf + RELOC/fonts/source/lh/lh-XSlav/rsbsr9.mf + RELOC/fonts/source/lh/lh-XSlav/rsbtl10.mf + RELOC/fonts/source/lh/lh-XSlav/rsbto10.mf + RELOC/fonts/source/lh/lh-XSlav/rscodes.mf + RELOC/fonts/source/lh/lh-XSlav/rslb8.mf + RELOC/fonts/source/lh/lh-XSlav/rsli8.mf + RELOC/fonts/source/lh/lh-XSlav/rsliker.mf + RELOC/fonts/source/lh/lh-XSlav/rslo8.mf + RELOC/fonts/source/lh/lh-XSlav/rslq8.mf + RELOC/fonts/source/lh/lh-XSlav/rsltt8.mf + RELOC/fonts/source/lh/lh-XSlav/rsob10.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx10.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx5.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx6.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx7.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx8.mf + RELOC/fonts/source/lh/lh-XSlav/rsobx9.mf + RELOC/fonts/source/lh/lh-XSlav/rsobxsl10.mf + RELOC/fonts/source/lh/lh-XSlav/rsobxti10.mf + RELOC/fonts/source/lh/lh-XSlav/rsocc10.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm10.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm5.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm6.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm7.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm8.mf + RELOC/fonts/source/lh/lh-XSlav/rsorm9.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl10.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl5.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl6.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl7.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl8.mf + RELOC/fonts/source/lh/lh-XSlav/rsosl9.mf + RELOC/fonts/source/lh/lh-XSlav/rsoslc9.mf + RELOC/fonts/source/lh/lh-XSlav/rsoti10.mf + RELOC/fonts/source/lh/lh-XSlav/rsqi8.mf + RELOC/fonts/source/lh/lh-XSlav/rssq8.mf + RELOC/fonts/source/lh/lh-XSlav/rsssdc10.mf + RELOC/fonts/source/lh/lh-conc/00readme.txt + RELOC/fonts/source/lh/lh-conc/ccb10.mf + RELOC/fonts/source/lh/lh-conc/ccbx10.mf + RELOC/fonts/source/lh/lh-conc/ccbx5.mf + RELOC/fonts/source/lh/lh-conc/ccbx6.mf + RELOC/fonts/source/lh/lh-conc/ccbx7.mf + RELOC/fonts/source/lh/lh-conc/ccbx8.mf + RELOC/fonts/source/lh/lh-conc/ccbx9.mf + RELOC/fonts/source/lh/lh-conc/ccbxsl10.mf + RELOC/fonts/source/lh/lh-conc/ccbxti10.mf + RELOC/fonts/source/lh/lh-conc/concb10pt.mf + RELOC/fonts/source/lh/lh-conc/concbx10pt.mf + RELOC/fonts/source/lh/lh-conc/concbx12pt.mf + RELOC/fonts/source/lh/lh-conc/concbx5pt.mf + RELOC/fonts/source/lh/lh-conc/concbx6pt.mf + RELOC/fonts/source/lh/lh-conc/concbx7pt.mf + RELOC/fonts/source/lh/lh-conc/concbx8pt.mf + RELOC/fonts/source/lh/lh-conc/concbx9pt.mf + RELOC/fonts/source/lh/lh-conc/concbxti10.mf + RELOC/fonts/source/lh/lh-conc/concc9pt.mf + RELOC/fonts/source/lh/lh-conc/eob10.mf + RELOC/fonts/source/lh/lh-conc/eobx10.mf + RELOC/fonts/source/lh/lh-conc/eobx5.mf + RELOC/fonts/source/lh/lh-conc/eobx6.mf + RELOC/fonts/source/lh/lh-conc/eobx7.mf + RELOC/fonts/source/lh/lh-conc/eobx8.mf + RELOC/fonts/source/lh/lh-conc/eobx9.mf + RELOC/fonts/source/lh/lh-conc/eobxsl10.mf + RELOC/fonts/source/lh/lh-conc/eobxti10.mf + RELOC/fonts/source/lh/lh-conc/eoslc9.mf + RELOC/fonts/source/lh/lh-lcy/ilhcsc10.mf + RELOC/fonts/source/lh/lh-lcy/ilhtt8.mf + RELOC/fonts/source/lh/lh-lcy/illhss8.mf + RELOC/fonts/source/lh/lh-lcy/illhssb8.mf + RELOC/fonts/source/lh/lh-lcy/illhssi8.mf + RELOC/fonts/source/lh/lh-lcy/lhbr10.mf + RELOC/fonts/source/lh/lh-lcy/lhbr17.mf + RELOC/fonts/source/lh/lh-lcy/lhbr8.mf + RELOC/fonts/source/lh/lh-lcy/lhbr9.mf + RELOC/fonts/source/lh/lh-lcy/lhbrbx10.mf + RELOC/fonts/source/lh/lh-lcy/lhbrsl10.mf + RELOC/fonts/source/lh/lh-lcy/lhbrsl17.mf + RELOC/fonts/source/lh/lh-lcy/lhbrsl8.mf + RELOC/fonts/source/lh/lh-lcy/lhbrsl9.mf + RELOC/fonts/source/lh/lh-lcy/lhcb10.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx10.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx5.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx6.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx7.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx8.mf + RELOC/fonts/source/lh/lh-lcy/lhcbx9.mf + RELOC/fonts/source/lh/lh-lcy/lhcbxsl10.mf + RELOC/fonts/source/lh/lh-lcy/lhcbxti10.mf + RELOC/fonts/source/lh/lh-lcy/lhccsc10.mf + RELOC/fonts/source/lh/lh-lcy/lhcodes.mf + RELOC/fonts/source/lh/lh-lcy/lhcr10.mf + RELOC/fonts/source/lh/lh-lcy/lhcr5.mf + RELOC/fonts/source/lh/lh-lcy/lhcr6.mf + RELOC/fonts/source/lh/lh-lcy/lhcr7.mf + RELOC/fonts/source/lh/lh-lcy/lhcr8.mf + RELOC/fonts/source/lh/lh-lcy/lhcr9.mf + RELOC/fonts/source/lh/lh-lcy/lhcsl10.mf + RELOC/fonts/source/lh/lh-lcy/lhcsl9.mf + RELOC/fonts/source/lh/lh-lcy/lhcslc9.mf + RELOC/fonts/source/lh/lh-lcy/lhcti10.mf + RELOC/fonts/source/lh/lh-lcy/lhliker.mf + RELOC/fonts/source/lh/lh-lcy/lhsltl10.mf + RELOC/fonts/source/lh/lh-lcy/lhtl10.mf + RELOC/fonts/source/lh/lh-lcy/llhss8.mf + RELOC/fonts/source/lh/lh-lcy/llhssb8.mf + RELOC/fonts/source/lh/lh-lcy/llhssi8.mf + RELOC/fonts/source/lh/lh-ot2/ilwnss8.mf + RELOC/fonts/source/lh/lh-ot2/ilwnssb8.mf + RELOC/fonts/source/lh/lh-ot2/ilwnssi8.mf + RELOC/fonts/source/lh/lh-ot2/iwncsc10.mf + RELOC/fonts/source/lh/lh-ot2/iwntt8.mf + RELOC/fonts/source/lh/lh-ot2/lwnss8.mf + RELOC/fonts/source/lh/lh-ot2/lwnssb8.mf + RELOC/fonts/source/lh/lh-ot2/lwnssi8.mf + RELOC/fonts/source/lh/lh-ot2/wnbr10.mf + RELOC/fonts/source/lh/lh-ot2/wnbr17.mf + RELOC/fonts/source/lh/lh-ot2/wnbr8.mf + RELOC/fonts/source/lh/lh-ot2/wnbr9.mf + RELOC/fonts/source/lh/lh-ot2/wnbrbx10.mf + RELOC/fonts/source/lh/lh-ot2/wnbrsl10.mf + RELOC/fonts/source/lh/lh-ot2/wnbrsl17.mf + RELOC/fonts/source/lh/lh-ot2/wnbrsl8.mf + RELOC/fonts/source/lh/lh-ot2/wnbrsl9.mf + RELOC/fonts/source/lh/lh-ot2/wncb10.mf + RELOC/fonts/source/lh/lh-ot2/wncbx10.mf + RELOC/fonts/source/lh/lh-ot2/wncbx5.mf + RELOC/fonts/source/lh/lh-ot2/wncbx6.mf + RELOC/fonts/source/lh/lh-ot2/wncbx7.mf + RELOC/fonts/source/lh/lh-ot2/wncbx8.mf + RELOC/fonts/source/lh/lh-ot2/wncbx9.mf + RELOC/fonts/source/lh/lh-ot2/wncbxsl10.mf + RELOC/fonts/source/lh/lh-ot2/wncbxti10.mf + RELOC/fonts/source/lh/lh-ot2/wnccsc10.mf + RELOC/fonts/source/lh/lh-ot2/wncodes.mf + RELOC/fonts/source/lh/lh-ot2/wncr10.mf + RELOC/fonts/source/lh/lh-ot2/wncr5.mf + RELOC/fonts/source/lh/lh-ot2/wncr6.mf + RELOC/fonts/source/lh/lh-ot2/wncr7.mf + RELOC/fonts/source/lh/lh-ot2/wncr8.mf + RELOC/fonts/source/lh/lh-ot2/wncr9.mf + RELOC/fonts/source/lh/lh-ot2/wncsl10.mf + RELOC/fonts/source/lh/lh-ot2/wncsl9.mf + RELOC/fonts/source/lh/lh-ot2/wncslc9.mf + RELOC/fonts/source/lh/lh-ot2/wncti10.mf + RELOC/fonts/source/lh/lh-ot2/wnliker.mf + RELOC/fonts/source/lh/lh-ot2/wnsltl10.mf + RELOC/fonts/source/lh/lh-ot2/wntl10.mf + RELOC/fonts/source/lh/lh-t2a/ilalb8.mf + RELOC/fonts/source/lh/lh-t2a/ilali8.mf + RELOC/fonts/source/lh/lh-t2a/ilalo8.mf + RELOC/fonts/source/lh/lh-t2a/ilalq8.mf + RELOC/fonts/source/lh/lh-t2a/ilaltt8.mf + RELOC/fonts/source/lh/lh-t2a/labbx10.mf + RELOC/fonts/source/lh/lh-t2a/labmo10.mf + RELOC/fonts/source/lh/lh-t2a/labmo17.mf + RELOC/fonts/source/lh/lh-t2a/labmo8.mf + RELOC/fonts/source/lh/lh-t2a/labmo9.mf + RELOC/fonts/source/lh/lh-t2a/labmr10.mf + RELOC/fonts/source/lh/lh-t2a/labmr17.mf + RELOC/fonts/source/lh/lh-t2a/labmr8.mf + RELOC/fonts/source/lh/lh-t2a/labmr9.mf + RELOC/fonts/source/lh/lh-t2a/labso10.mf + RELOC/fonts/source/lh/lh-t2a/labso17.mf + RELOC/fonts/source/lh/lh-t2a/labso8.mf + RELOC/fonts/source/lh/lh-t2a/labso9.mf + RELOC/fonts/source/lh/lh-t2a/labsr10.mf + RELOC/fonts/source/lh/lh-t2a/labsr17.mf + RELOC/fonts/source/lh/lh-t2a/labsr8.mf + RELOC/fonts/source/lh/lh-t2a/labsr9.mf + RELOC/fonts/source/lh/lh-t2a/labtl10.mf + RELOC/fonts/source/lh/lh-t2a/labto10.mf + RELOC/fonts/source/lh/lh-t2a/lacodes.mf + RELOC/fonts/source/lh/lh-t2a/lalb8.mf + RELOC/fonts/source/lh/lh-t2a/lali8.mf + RELOC/fonts/source/lh/lh-t2a/laliker.mf + RELOC/fonts/source/lh/lh-t2a/lalo8.mf + RELOC/fonts/source/lh/lh-t2a/lalq8.mf + RELOC/fonts/source/lh/lh-t2a/laltt8.mf + RELOC/fonts/source/lh/lh-t2a/laob10.mf + RELOC/fonts/source/lh/lh-t2a/laobx10.mf + RELOC/fonts/source/lh/lh-t2a/laobx5.mf + RELOC/fonts/source/lh/lh-t2a/laobx6.mf + RELOC/fonts/source/lh/lh-t2a/laobx7.mf + RELOC/fonts/source/lh/lh-t2a/laobx8.mf + RELOC/fonts/source/lh/lh-t2a/laobx9.mf + RELOC/fonts/source/lh/lh-t2a/laobxsl10.mf + RELOC/fonts/source/lh/lh-t2a/laobxti10.mf + RELOC/fonts/source/lh/lh-t2a/laocc10.mf + RELOC/fonts/source/lh/lh-t2a/laorm10.mf + RELOC/fonts/source/lh/lh-t2a/laorm5.mf + RELOC/fonts/source/lh/lh-t2a/laorm6.mf + RELOC/fonts/source/lh/lh-t2a/laorm7.mf + RELOC/fonts/source/lh/lh-t2a/laorm8.mf + RELOC/fonts/source/lh/lh-t2a/laorm9.mf + RELOC/fonts/source/lh/lh-t2a/laosl10.mf + RELOC/fonts/source/lh/lh-t2a/laosl5.mf + RELOC/fonts/source/lh/lh-t2a/laosl6.mf + RELOC/fonts/source/lh/lh-t2a/laosl7.mf + RELOC/fonts/source/lh/lh-t2a/laosl8.mf + RELOC/fonts/source/lh/lh-t2a/laosl9.mf + RELOC/fonts/source/lh/lh-t2a/laoslc9.mf + RELOC/fonts/source/lh/lh-t2a/laoti10.mf + RELOC/fonts/source/lh/lh-t2a/laqi8.mf + RELOC/fonts/source/lh/lh-t2a/lasq8.mf + RELOC/fonts/source/lh/lh-t2a/lassdc10.mf + RELOC/fonts/source/lh/lh-t2b/ilblb8.mf + RELOC/fonts/source/lh/lh-t2b/ilbli8.mf + RELOC/fonts/source/lh/lh-t2b/ilblo8.mf + RELOC/fonts/source/lh/lh-t2b/ilblq8.mf + RELOC/fonts/source/lh/lh-t2b/ilbltt8.mf + RELOC/fonts/source/lh/lh-t2b/lbbbx10.mf + RELOC/fonts/source/lh/lh-t2b/lbbmo10.mf + RELOC/fonts/source/lh/lh-t2b/lbbmo17.mf + RELOC/fonts/source/lh/lh-t2b/lbbmo8.mf + RELOC/fonts/source/lh/lh-t2b/lbbmo9.mf + RELOC/fonts/source/lh/lh-t2b/lbbmr10.mf + RELOC/fonts/source/lh/lh-t2b/lbbmr17.mf + RELOC/fonts/source/lh/lh-t2b/lbbmr8.mf + RELOC/fonts/source/lh/lh-t2b/lbbmr9.mf + RELOC/fonts/source/lh/lh-t2b/lbbso10.mf + RELOC/fonts/source/lh/lh-t2b/lbbso17.mf + RELOC/fonts/source/lh/lh-t2b/lbbso8.mf + RELOC/fonts/source/lh/lh-t2b/lbbso9.mf + RELOC/fonts/source/lh/lh-t2b/lbbsr10.mf + RELOC/fonts/source/lh/lh-t2b/lbbsr17.mf + RELOC/fonts/source/lh/lh-t2b/lbbsr8.mf + RELOC/fonts/source/lh/lh-t2b/lbbsr9.mf + RELOC/fonts/source/lh/lh-t2b/lbbtl10.mf + RELOC/fonts/source/lh/lh-t2b/lbbto10.mf + RELOC/fonts/source/lh/lh-t2b/lbcodes.mf + RELOC/fonts/source/lh/lh-t2b/lblb8.mf + RELOC/fonts/source/lh/lh-t2b/lbli8.mf + RELOC/fonts/source/lh/lh-t2b/lbliker.mf + RELOC/fonts/source/lh/lh-t2b/lblo8.mf + RELOC/fonts/source/lh/lh-t2b/lblq8.mf + RELOC/fonts/source/lh/lh-t2b/lbltt8.mf + RELOC/fonts/source/lh/lh-t2b/lbob10.mf + RELOC/fonts/source/lh/lh-t2b/lbobx10.mf + RELOC/fonts/source/lh/lh-t2b/lbobx5.mf + RELOC/fonts/source/lh/lh-t2b/lbobx6.mf + RELOC/fonts/source/lh/lh-t2b/lbobx7.mf + RELOC/fonts/source/lh/lh-t2b/lbobx8.mf + RELOC/fonts/source/lh/lh-t2b/lbobx9.mf + RELOC/fonts/source/lh/lh-t2b/lbobxsl10.mf + RELOC/fonts/source/lh/lh-t2b/lbobxti10.mf + RELOC/fonts/source/lh/lh-t2b/lbocc10.mf + RELOC/fonts/source/lh/lh-t2b/lborm10.mf + RELOC/fonts/source/lh/lh-t2b/lborm5.mf + RELOC/fonts/source/lh/lh-t2b/lborm6.mf + RELOC/fonts/source/lh/lh-t2b/lborm7.mf + RELOC/fonts/source/lh/lh-t2b/lborm8.mf + RELOC/fonts/source/lh/lh-t2b/lborm9.mf + RELOC/fonts/source/lh/lh-t2b/lbosl10.mf + RELOC/fonts/source/lh/lh-t2b/lbosl5.mf + RELOC/fonts/source/lh/lh-t2b/lbosl6.mf + RELOC/fonts/source/lh/lh-t2b/lbosl7.mf + RELOC/fonts/source/lh/lh-t2b/lbosl8.mf + RELOC/fonts/source/lh/lh-t2b/lbosl9.mf + RELOC/fonts/source/lh/lh-t2b/lboslc9.mf + RELOC/fonts/source/lh/lh-t2b/lboti10.mf + RELOC/fonts/source/lh/lh-t2b/lbqi8.mf + RELOC/fonts/source/lh/lh-t2b/lbsq8.mf + RELOC/fonts/source/lh/lh-t2b/lbssdc10.mf + RELOC/fonts/source/lh/lh-t2c/ilclb8.mf + RELOC/fonts/source/lh/lh-t2c/ilcli8.mf + RELOC/fonts/source/lh/lh-t2c/ilclo8.mf + RELOC/fonts/source/lh/lh-t2c/ilclq8.mf + RELOC/fonts/source/lh/lh-t2c/ilcltt8.mf + RELOC/fonts/source/lh/lh-t2c/lcbbx10.mf + RELOC/fonts/source/lh/lh-t2c/lcbmo10.mf + RELOC/fonts/source/lh/lh-t2c/lcbmo17.mf + RELOC/fonts/source/lh/lh-t2c/lcbmo8.mf + RELOC/fonts/source/lh/lh-t2c/lcbmo9.mf + RELOC/fonts/source/lh/lh-t2c/lcbmr10.mf + RELOC/fonts/source/lh/lh-t2c/lcbmr17.mf + RELOC/fonts/source/lh/lh-t2c/lcbmr8.mf + RELOC/fonts/source/lh/lh-t2c/lcbmr9.mf + RELOC/fonts/source/lh/lh-t2c/lcbso10.mf + RELOC/fonts/source/lh/lh-t2c/lcbso17.mf + RELOC/fonts/source/lh/lh-t2c/lcbso8.mf + RELOC/fonts/source/lh/lh-t2c/lcbso9.mf + RELOC/fonts/source/lh/lh-t2c/lcbsr10.mf + RELOC/fonts/source/lh/lh-t2c/lcbsr17.mf + RELOC/fonts/source/lh/lh-t2c/lcbsr8.mf + RELOC/fonts/source/lh/lh-t2c/lcbsr9.mf + RELOC/fonts/source/lh/lh-t2c/lcbtl10.mf + RELOC/fonts/source/lh/lh-t2c/lcbto10.mf + RELOC/fonts/source/lh/lh-t2c/lccodes.mf + RELOC/fonts/source/lh/lh-t2c/lclb8.mf + RELOC/fonts/source/lh/lh-t2c/lcli8.mf + RELOC/fonts/source/lh/lh-t2c/lcliker.mf + RELOC/fonts/source/lh/lh-t2c/lclo8.mf + RELOC/fonts/source/lh/lh-t2c/lclq8.mf + RELOC/fonts/source/lh/lh-t2c/lcltt8.mf + RELOC/fonts/source/lh/lh-t2c/lcob10.mf + RELOC/fonts/source/lh/lh-t2c/lcobx10.mf + RELOC/fonts/source/lh/lh-t2c/lcobx5.mf + RELOC/fonts/source/lh/lh-t2c/lcobx6.mf + RELOC/fonts/source/lh/lh-t2c/lcobx7.mf + RELOC/fonts/source/lh/lh-t2c/lcobx8.mf + RELOC/fonts/source/lh/lh-t2c/lcobx9.mf + RELOC/fonts/source/lh/lh-t2c/lcobxsl10.mf + RELOC/fonts/source/lh/lh-t2c/lcobxti10.mf + RELOC/fonts/source/lh/lh-t2c/lcocc10.mf + RELOC/fonts/source/lh/lh-t2c/lcorm10.mf + RELOC/fonts/source/lh/lh-t2c/lcorm5.mf + RELOC/fonts/source/lh/lh-t2c/lcorm6.mf + RELOC/fonts/source/lh/lh-t2c/lcorm7.mf + RELOC/fonts/source/lh/lh-t2c/lcorm8.mf + RELOC/fonts/source/lh/lh-t2c/lcorm9.mf + RELOC/fonts/source/lh/lh-t2c/lcosl10.mf + RELOC/fonts/source/lh/lh-t2c/lcosl5.mf + RELOC/fonts/source/lh/lh-t2c/lcosl6.mf + RELOC/fonts/source/lh/lh-t2c/lcosl7.mf + RELOC/fonts/source/lh/lh-t2c/lcosl8.mf + RELOC/fonts/source/lh/lh-t2c/lcosl9.mf + RELOC/fonts/source/lh/lh-t2c/lcoslc9.mf + RELOC/fonts/source/lh/lh-t2c/lcoti10.mf + RELOC/fonts/source/lh/lh-t2c/lcqi8.mf + RELOC/fonts/source/lh/lh-t2c/lcsq8.mf + RELOC/fonts/source/lh/lh-t2c/lcssdc10.mf + RELOC/fonts/source/lh/lh-t2d/ildlb8.mf + RELOC/fonts/source/lh/lh-t2d/ildli8.mf + RELOC/fonts/source/lh/lh-t2d/ildlo8.mf + RELOC/fonts/source/lh/lh-t2d/ildlq8.mf + RELOC/fonts/source/lh/lh-t2d/ildltt8.mf + RELOC/fonts/source/lh/lh-t2d/ldbbx10.mf + RELOC/fonts/source/lh/lh-t2d/ldbmo10.mf + RELOC/fonts/source/lh/lh-t2d/ldbmo17.mf + RELOC/fonts/source/lh/lh-t2d/ldbmo8.mf + RELOC/fonts/source/lh/lh-t2d/ldbmo9.mf + RELOC/fonts/source/lh/lh-t2d/ldbmr10.mf + RELOC/fonts/source/lh/lh-t2d/ldbmr17.mf + RELOC/fonts/source/lh/lh-t2d/ldbmr8.mf + RELOC/fonts/source/lh/lh-t2d/ldbmr9.mf + RELOC/fonts/source/lh/lh-t2d/ldbso10.mf + RELOC/fonts/source/lh/lh-t2d/ldbso17.mf + RELOC/fonts/source/lh/lh-t2d/ldbso8.mf + RELOC/fonts/source/lh/lh-t2d/ldbso9.mf + RELOC/fonts/source/lh/lh-t2d/ldbsr10.mf + RELOC/fonts/source/lh/lh-t2d/ldbsr17.mf + RELOC/fonts/source/lh/lh-t2d/ldbsr8.mf + RELOC/fonts/source/lh/lh-t2d/ldbsr9.mf + RELOC/fonts/source/lh/lh-t2d/ldbtl10.mf + RELOC/fonts/source/lh/lh-t2d/ldbto10.mf + RELOC/fonts/source/lh/lh-t2d/ldcodes.mf + RELOC/fonts/source/lh/lh-t2d/ldlb8.mf + RELOC/fonts/source/lh/lh-t2d/ldli8.mf + RELOC/fonts/source/lh/lh-t2d/ldliker.mf + RELOC/fonts/source/lh/lh-t2d/ldlo8.mf + RELOC/fonts/source/lh/lh-t2d/ldlq8.mf + RELOC/fonts/source/lh/lh-t2d/ldltt8.mf + RELOC/fonts/source/lh/lh-t2d/ldob10.mf + RELOC/fonts/source/lh/lh-t2d/ldobx10.mf + RELOC/fonts/source/lh/lh-t2d/ldobx5.mf + RELOC/fonts/source/lh/lh-t2d/ldobx6.mf + RELOC/fonts/source/lh/lh-t2d/ldobx7.mf + RELOC/fonts/source/lh/lh-t2d/ldobx8.mf + RELOC/fonts/source/lh/lh-t2d/ldobx9.mf + RELOC/fonts/source/lh/lh-t2d/ldobxsl10.mf + RELOC/fonts/source/lh/lh-t2d/ldobxti10.mf + RELOC/fonts/source/lh/lh-t2d/ldocc10.mf + RELOC/fonts/source/lh/lh-t2d/ldorm10.mf + RELOC/fonts/source/lh/lh-t2d/ldorm5.mf + RELOC/fonts/source/lh/lh-t2d/ldorm6.mf + RELOC/fonts/source/lh/lh-t2d/ldorm7.mf + RELOC/fonts/source/lh/lh-t2d/ldorm8.mf + RELOC/fonts/source/lh/lh-t2d/ldorm9.mf + RELOC/fonts/source/lh/lh-t2d/ldosl10.mf + RELOC/fonts/source/lh/lh-t2d/ldosl5.mf + RELOC/fonts/source/lh/lh-t2d/ldosl6.mf + RELOC/fonts/source/lh/lh-t2d/ldosl7.mf + RELOC/fonts/source/lh/lh-t2d/ldosl8.mf + RELOC/fonts/source/lh/lh-t2d/ldosl9.mf + RELOC/fonts/source/lh/lh-t2d/ldoslc9.mf + RELOC/fonts/source/lh/lh-t2d/ldoti10.mf + RELOC/fonts/source/lh/lh-t2d/ldqi8.mf + RELOC/fonts/source/lh/lh-t2d/ldsq8.mf + RELOC/fonts/source/lh/lh-t2d/ldssdc10.mf + RELOC/fonts/source/lh/lh-x2/irxlb8.mf + RELOC/fonts/source/lh/lh-x2/irxli8.mf + RELOC/fonts/source/lh/lh-x2/irxlo8.mf + RELOC/fonts/source/lh/lh-x2/irxlq8.mf + RELOC/fonts/source/lh/lh-x2/irxltt8.mf + RELOC/fonts/source/lh/lh-x2/rxbbx10.mf + RELOC/fonts/source/lh/lh-x2/rxbmo10.mf + RELOC/fonts/source/lh/lh-x2/rxbmo17.mf + RELOC/fonts/source/lh/lh-x2/rxbmo8.mf + RELOC/fonts/source/lh/lh-x2/rxbmo9.mf + RELOC/fonts/source/lh/lh-x2/rxbmr10.mf + RELOC/fonts/source/lh/lh-x2/rxbmr17.mf + RELOC/fonts/source/lh/lh-x2/rxbmr8.mf + RELOC/fonts/source/lh/lh-x2/rxbmr9.mf + RELOC/fonts/source/lh/lh-x2/rxbso10.mf + RELOC/fonts/source/lh/lh-x2/rxbso17.mf + RELOC/fonts/source/lh/lh-x2/rxbso8.mf + RELOC/fonts/source/lh/lh-x2/rxbso9.mf + RELOC/fonts/source/lh/lh-x2/rxbsr10.mf + RELOC/fonts/source/lh/lh-x2/rxbsr17.mf + RELOC/fonts/source/lh/lh-x2/rxbsr8.mf + RELOC/fonts/source/lh/lh-x2/rxbsr9.mf + RELOC/fonts/source/lh/lh-x2/rxbtl10.mf + RELOC/fonts/source/lh/lh-x2/rxbto10.mf + RELOC/fonts/source/lh/lh-x2/rxcodes.mf + RELOC/fonts/source/lh/lh-x2/rxlb8.mf + RELOC/fonts/source/lh/lh-x2/rxli8.mf + RELOC/fonts/source/lh/lh-x2/rxliker.mf + RELOC/fonts/source/lh/lh-x2/rxlo8.mf + RELOC/fonts/source/lh/lh-x2/rxlq8.mf + RELOC/fonts/source/lh/lh-x2/rxltt8.mf + RELOC/fonts/source/lh/lh-x2/rxob10.mf + RELOC/fonts/source/lh/lh-x2/rxobx10.mf + RELOC/fonts/source/lh/lh-x2/rxobx5.mf + RELOC/fonts/source/lh/lh-x2/rxobx6.mf + RELOC/fonts/source/lh/lh-x2/rxobx7.mf + RELOC/fonts/source/lh/lh-x2/rxobx8.mf + RELOC/fonts/source/lh/lh-x2/rxobx9.mf + RELOC/fonts/source/lh/lh-x2/rxobxsl10.mf + RELOC/fonts/source/lh/lh-x2/rxobxti10.mf + RELOC/fonts/source/lh/lh-x2/rxocc10.mf + RELOC/fonts/source/lh/lh-x2/rxorm10.mf + RELOC/fonts/source/lh/lh-x2/rxorm5.mf + RELOC/fonts/source/lh/lh-x2/rxorm6.mf + RELOC/fonts/source/lh/lh-x2/rxorm7.mf + RELOC/fonts/source/lh/lh-x2/rxorm8.mf + RELOC/fonts/source/lh/lh-x2/rxorm9.mf + RELOC/fonts/source/lh/lh-x2/rxosl10.mf + RELOC/fonts/source/lh/lh-x2/rxosl5.mf + RELOC/fonts/source/lh/lh-x2/rxosl6.mf + RELOC/fonts/source/lh/lh-x2/rxosl7.mf + RELOC/fonts/source/lh/lh-x2/rxosl8.mf + RELOC/fonts/source/lh/lh-x2/rxosl9.mf + RELOC/fonts/source/lh/lh-x2/rxoslc9.mf + RELOC/fonts/source/lh/lh-x2/rxoti10.mf + RELOC/fonts/source/lh/lh-x2/rxqi8.mf + RELOC/fonts/source/lh/lh-x2/rxsq8.mf + RELOC/fonts/source/lh/lh-x2/rxssdc10.mf + RELOC/fonts/source/lh/nont2/lgbersta.mf + RELOC/fonts/source/lh/nont2/lgberstb.mf + RELOC/fonts/source/lh/nont2/lgberstc.mf + RELOC/fonts/source/lh/nont2/lgcacci.mf + RELOC/fonts/source/lh/nont2/lgcaccl.mf + RELOC/fonts/source/lh/nont2/lgcaccu.mf + RELOC/fonts/source/lh/nont2/lgcmodi.mf + RELOC/fonts/source/lh/nont2/lgcmodl.mf + RELOC/fonts/source/lh/nont2/lgcmodu.mf + RELOC/fonts/source/lh/nont2/lgcvaci.mf + RELOC/fonts/source/lh/nont2/lgcvacl.mf + RELOC/fonts/source/lh/nont2/lgcvacu.mf + RELOC/fonts/source/lh/nont2/lgt2slxi.mf + RELOC/fonts/source/lh/nont2/lgt2slxl.mf + RELOC/fonts/source/lh/nont2/lgt2slxu.mf + RELOC/fonts/source/lh/nont2/lgunici.mf + RELOC/fonts/source/lh/nont2/lgunicl.mf + RELOC/fonts/source/lh/nont2/lgunicu.mf + RELOC/fonts/source/lh/nont2/lhberest.mf + RELOC/fonts/source/lh/specific/lgcrusl.mf + RELOC/fonts/source/lh/specific/lgcyrcl.mf + RELOC/fonts/source/lh/specific/lgcyrcu.mf + RELOC/fonts/source/lh/specific/lgnoncl.mf + RELOC/fonts/source/lh/specific/lgnoncu.mf + RELOC/fonts/source/lh/specific/lgrucl.mf + RELOC/fonts/source/lh/specific/lgrucu.mf + RELOC/tex/latex/lh/lh-lcy.sty + RELOC/tex/latex/lh/lh-lcyccr.sty + RELOC/tex/latex/lh/lh-lcyxccr.sty + RELOC/tex/latex/lh/lh-ot2.sty + RELOC/tex/latex/lh/lh-ot2ccr.sty + RELOC/tex/latex/lh/lh-ot2xccr.sty + RELOC/tex/latex/lh/lh-t2accr.sty + RELOC/tex/latex/lh/lh-t2axccr.sty + RELOC/tex/latex/lh/lh-t2bccr.sty + RELOC/tex/latex/lh/lh-t2bxccr.sty + RELOC/tex/latex/lh/lh-t2cccr.sty + RELOC/tex/latex/lh/lh-t2cxccr.sty + RELOC/tex/latex/lh/lh-x2ccr.sty + RELOC/tex/latex/lh/lh-x2xccr.sty + RELOC/tex/latex/lh/nfssfox.tex + RELOC/tex/plain/lh/testfox.tex + RELOC/tex/plain/lh/testkern.tex +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-ctan /fonts/cyrillic/lh +catalogue-date 2014-05-11 22:11:06 +0200 +catalogue-license lppl +catalogue-version 3.5g + +name libertine +category Package +revision 36815 +shortdesc Use of Linux Libertine and Biolinum fonts with LaTeX. +relocated 1 +longdesc The package provides the Libertine and Biolinum fonts in both +longdesc Type 1 and OTF styles, together with support macros for their +longdesc use. Monospaced and display fonts, and the "keyboard" set are +longdesc also included, in OTF style, only. The mweights package is used +longdesc to manage the selection of font weights. The package supersedes +longdesc both the libertineotf and the libertine-legacy packages. +execute addMap libertine.map +runfiles size=5858 + 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_2or2lf.enc + RELOC/fonts/enc/dvips/libertine/lbtn_2xw2fz.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_3gqkkc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_3r2fe2.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_4p7cpr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4pa5s6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4qdwcl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4wvzw4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4xgrig.enc + RELOC/fonts/enc/dvips/libertine/lbtn_4zgdm7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_5t7yy5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_5yotx4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_64fcpm.enc + RELOC/fonts/enc/dvips/libertine/lbtn_67ud6q.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6fbtzc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6icwtb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6koeqx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6mhf45.enc + RELOC/fonts/enc/dvips/libertine/lbtn_6p6dn5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_75c3wo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_76gpa5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_77vsbz.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7aljsl.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7f4ce4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7fko2h.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7gfcac.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7grukw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7ukmos.enc + RELOC/fonts/enc/dvips/libertine/lbtn_7yry24.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_azutla.enc + RELOC/fonts/enc/dvips/libertine/lbtn_b7buxp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_b7tf5m.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bgokdj.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bgqvqi.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bkwvsw.enc + RELOC/fonts/enc/dvips/libertine/lbtn_bvtjwh.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c3m4uk.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c4mbat.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c6xmqr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_c6yh3y.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_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_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_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_dylq3g.enc + RELOC/fonts/enc/dvips/libertine/lbtn_e2nnp6.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_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_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_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_gj2vz5.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gppru4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_gw5dl2.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_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_i5uqjc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_igd6cx.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ilz2ox.enc + RELOC/fonts/enc/dvips/libertine/lbtn_imzna7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_indkeb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_io54zc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ip3srb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_iqbcqn.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ism4pi.enc + RELOC/fonts/enc/dvips/libertine/lbtn_itwafr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_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_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_ka7zfp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ki75ao.enc + RELOC/fonts/enc/dvips/libertine/lbtn_kozgsn.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_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_m4ul6s.enc + RELOC/fonts/enc/dvips/libertine/lbtn_m7vdvu.enc + RELOC/fonts/enc/dvips/libertine/lbtn_mdetlm.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_n3xw57.enc + RELOC/fonts/enc/dvips/libertine/lbtn_n7uljd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_naooyc.enc + RELOC/fonts/enc/dvips/libertine/lbtn_ncsllp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_nh77jq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_nifh3d.enc + RELOC/fonts/enc/dvips/libertine/lbtn_o3jfbt.enc + RELOC/fonts/enc/dvips/libertine/lbtn_o3v7gd.enc + RELOC/fonts/enc/dvips/libertine/lbtn_oie7e6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_omcwp2.enc + RELOC/fonts/enc/dvips/libertine/lbtn_otwoau.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_pagsao.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pjjyzv.enc + RELOC/fonts/enc/dvips/libertine/lbtn_pjxd67.enc + RELOC/fonts/enc/dvips/libertine/lbtn_prxh5x.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_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_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_t62t6h.enc + RELOC/fonts/enc/dvips/libertine/lbtn_tctjin.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_txfk5t.enc + RELOC/fonts/enc/dvips/libertine/lbtn_u442ab.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_urpt4g.enc + RELOC/fonts/enc/dvips/libertine/lbtn_utckyy.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_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_vsrqlo.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_wzgokb.enc + RELOC/fonts/enc/dvips/libertine/lbtn_x4bvel.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xc6c72.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xeech7.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xogrpz.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xpavo4.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xsgxhq.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xz74p6.enc + RELOC/fonts/enc/dvips/libertine/lbtn_xzlo5e.enc + RELOC/fonts/enc/dvips/libertine/lbtn_y6cxei.enc + RELOC/fonts/enc/dvips/libertine/lbtn_y6gumo.enc + RELOC/fonts/enc/dvips/libertine/lbtn_yea32d.enc + RELOC/fonts/enc/dvips/libertine/lbtn_yruotg.enc + RELOC/fonts/enc/dvips/libertine/lbtn_yvenhr.enc + RELOC/fonts/enc/dvips/libertine/lbtn_z254vq.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_zoexom.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zp73k3.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zq22hj.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zxvhqu.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zycpkp.enc + RELOC/fonts/enc/dvips/libertine/lbtn_zyymej.enc + RELOC/fonts/map/dvips/libertine/libertine.map + RELOC/fonts/opentype/public/libertine/LinBiolinum_K.otf + RELOC/fonts/opentype/public/libertine/LinBiolinum_R.otf + RELOC/fonts/opentype/public/libertine/LinBiolinum_RB.otf + RELOC/fonts/opentype/public/libertine/LinBiolinum_RBO.otf + RELOC/fonts/opentype/public/libertine/LinBiolinum_RI.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_DR.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_I.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_M.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_MB.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_MBO.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_MO.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_R.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RB.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RBI.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RI.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RZ.otf + RELOC/fonts/opentype/public/libertine/LinLibertine_RZI.otf + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumT-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTB-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTBO-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinBiolinumTI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineDisplayT-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-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 + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineIT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTBO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineMTO-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineT-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTB-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTBI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTI-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZ-tosf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-lf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-osf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-sup-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-sup-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-sup-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-sup-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tlf-ts1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-t1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-t1.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ts1--base.tfm + RELOC/fonts/tfm/public/libertine/LinLibertineTZI-tosf-ts1.tfm + RELOC/fonts/type1/public/libertine/LinBiolinumT.pfb + RELOC/fonts/type1/public/libertine/LinBiolinumTB.pfb + RELOC/fonts/type1/public/libertine/LinBiolinumTBO.pfb + RELOC/fonts/type1/public/libertine/LinBiolinumTI.pfb + RELOC/fonts/type1/public/libertine/LinLibertineDisplayT.pfb + RELOC/fonts/type1/public/libertine/LinLibertineIT.pfb + RELOC/fonts/type1/public/libertine/LinLibertineMT.pfb + RELOC/fonts/type1/public/libertine/LinLibertineMTB.pfb + RELOC/fonts/type1/public/libertine/LinLibertineMTBO.pfb + RELOC/fonts/type1/public/libertine/LinLibertineMTO.pfb + RELOC/fonts/type1/public/libertine/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/LinBiolinumT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumT-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTB-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTBO-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinBiolinumTI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineDisplayT-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineIT-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-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-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-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-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/LinLibertineT-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineT-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTB-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTBI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTI-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-sup-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZ-tosf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-lf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-osf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-sup-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tlf-ts1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-sc-ly1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-sc-ot1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-sc-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-t1.vf + RELOC/fonts/vf/public/libertine/LinLibertineTZI-tosf-ts1.vf + RELOC/tex/latex/libertine/LKey.tex + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-Sup.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxBiolinumT-TOsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-Sup.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineDisplayT-TOsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineMonoT-Sup.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineMonoT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-LF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-OsF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-Sup.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-TLF.fd + RELOC/tex/latex/libertine/LY1LinuxLibertineT-TOsF.fd + RELOC/tex/latex/libertine/LinBiolinum_K.tex + RELOC/tex/latex/libertine/LinBiolinum_R.tex + RELOC/tex/latex/libertine/LinLibertine_I.tex + RELOC/tex/latex/libertine/LinLibertine_R.tex + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-LF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-Sup.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxBiolinumT-TOsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-LF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-Sup.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineDisplayT-TOsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-LF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-OsF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineMonoT-Sup.fd + RELOC/tex/latex/libertine/OT1LinuxLibertineMonoT-TLF.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/T1LinuxBiolinumT-LF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-OsF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-Sup.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxBiolinumT-TOsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-LF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-OsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-Sup.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineDisplayT-TOsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-LF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-OsF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/T1LinuxLibertineMonoT-Sup.fd + RELOC/tex/latex/libertine/T1LinuxLibertineMonoT-TLF.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/TS1LinuxBiolinumT-LF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumT-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxBiolinumT-TOsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineDisplayT-LF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineDisplayT-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineDisplayT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineDisplayT-TOsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-LF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-OsF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineInitialsT-TLF.fd + RELOC/tex/latex/libertine/TS1LinuxLibertineMonoT-TLF.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-type1.sty + RELOC/tex/latex/libertine/biolinum.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-version 5.3.0 + +name libgreek +category Package +revision 27789 +shortdesc Use Libertine or Biolinum Greek glyphs in mathematics. +relocated 1 +longdesc The package is for LaTeX users who wish to use the Libertine or +longdesc Biolinum font for the Greek letters in math mode. It is not +longdesc necessary to load the libertine package itself, but of course +longdesc the Linux-Libertine/Biolinum fonts and LaTeX support files must +longdesc have been installed. +runfiles size=3 + RELOC/tex/latex/libgreek/libgreek.sty +docfiles size=16 + RELOC/doc/latex/libgreek/README + RELOC/doc/latex/libgreek/libgreek.pdf + RELOC/doc/latex/libgreek/libgreekcheck.tex +srcfiles size=5 + RELOC/source/latex/libgreek/libgreek.dtx + RELOC/source/latex/libgreek/libgreek.ins +catalogue-ctan /macros/latex/contrib/libgreek +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name librarian +category Package +revision 19880 +shortdesc Tools to create bibliographies in TeX. +relocated 1 +longdesc The package extracts information in bib files, makes it +longdesc available in the current document, and sorts lists of entries +longdesc according to that information and the user's specifications. +longdesc Citation and bibliography styles can then be written directly +longdesc in TeX, without any use of BibTeX. Creating references thus +longdesc depends entirely on the user's skill in TeX. The package works +longdesc with all formats that use plain TeX's basic syntactic sugar; +longdesc the distribution includes a third-party file for ConTeXt and a +longdesc style file for LaTeX. As an example of use, an Author (Year) +longdesc style is given in a separate file and explained in the +longdesc documentation. +runfiles size=10 + RELOC/tex/generic/librarian/librarian.sty + RELOC/tex/generic/librarian/librarian.tex + RELOC/tex/generic/librarian/t-librarian.tex +docfiles size=54 + RELOC/doc/generic/librarian/README + RELOC/doc/generic/librarian/authoryear.tex + RELOC/doc/generic/librarian/librarian-doc.pdf + RELOC/doc/generic/librarian/librarian-doc.tex + RELOC/doc/generic/librarian/librarian.bib +catalogue-ctan /macros/generic/librarian +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name librebaskerville +category Package +revision 31741 +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 +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 +runfiles size=397 + RELOC/fonts/enc/dvips/librebaskerville/lbsk_5rmxhc.enc + RELOC/fonts/enc/dvips/librebaskerville/lbsk_7c5ufm.enc + RELOC/fonts/enc/dvips/librebaskerville/lbsk_aprite.enc + RELOC/fonts/enc/dvips/librebaskerville/lbsk_hguso3.enc + RELOC/fonts/enc/dvips/librebaskerville/lbsk_ktbdpq.enc + RELOC/fonts/enc/dvips/librebaskerville/lbsk_lbmt7s.enc + RELOC/fonts/enc/dvips/librebaskerville/lbsk_mr5ybw.enc + RELOC/fonts/enc/dvips/librebaskerville/lbsk_rpuqof.enc + RELOC/fonts/enc/dvips/librebaskerville/lbsk_yeotsr.enc + RELOC/fonts/map/dvips/librebaskerville/LibreBaskerville.map + RELOC/fonts/opentype/impallari/librebaskerville/LibreBaskerville-Bold.otf + RELOC/fonts/opentype/impallari/librebaskerville/LibreBaskerville-BoldItalic.otf + RELOC/fonts/opentype/impallari/librebaskerville/LibreBaskerville-Italic.otf + RELOC/fonts/opentype/impallari/librebaskerville/LibreBaskerville-Regular.otf + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librebaskerville/LibreBaskerville-Regular-tlf-ts1.tfm + RELOC/fonts/type1/impallari/librebaskerville/LibreBaskerville-Bold.pfb + RELOC/fonts/type1/impallari/librebaskerville/LibreBaskerville-BoldItalic.pfb + RELOC/fonts/type1/impallari/librebaskerville/LibreBaskerville-Italic.pfb + RELOC/fonts/type1/impallari/librebaskerville/LibreBaskerville-Regular.pfb + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/librebaskerville/LibreBaskerville-Regular-tlf-ts1.vf + RELOC/tex/latex/librebaskerville/LY1LibreBaskerville-Sup.fd + RELOC/tex/latex/librebaskerville/LY1LibreBaskerville-TLF.fd + RELOC/tex/latex/librebaskerville/OT1LibreBaskerville-Sup.fd + RELOC/tex/latex/librebaskerville/OT1LibreBaskerville-TLF.fd + RELOC/tex/latex/librebaskerville/T1LibreBaskerville-Sup.fd + 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-license lppl + +name librecaslon +category Package +revision 31929 +shortdesc Libre Caslon fonts, with LaTeX support. +relocated 1 +longdesc The Libre Caslon fonts are designed by Pablo Impallari. +longdesc Although they have been designed for use as web fonts, they +longdesc work well as conventional text fonts. 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 +runfiles size=731 + RELOC/fonts/enc/dvips/librecaslon/lcsl_3cl4ql.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_4g75lz.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_5rmxhc.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_aprite.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_bpmadw.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_cw7ruh.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_hb5o6t.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_klp7zn.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_l5dh3w.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_q5us2t.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_rpuqof.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_wesofd.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_yeotsr.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_ytsyqt.enc + RELOC/fonts/enc/dvips/librecaslon/lcsl_z4mu2b.enc + RELOC/fonts/map/dvips/librecaslon/LibreCaslon.map + RELOC/fonts/opentype/impallari/librecaslon/LibreCaslonText-Bold.otf + RELOC/fonts/opentype/impallari/librecaslon/LibreCaslonText-BoldItalic.otf + RELOC/fonts/opentype/impallari/librecaslon/LibreCaslonText-Italic.otf + RELOC/fonts/opentype/impallari/librecaslon/LibreCaslonText-Regular.otf + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-osf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-sup-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Bold-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-osf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-sup-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Italic-tlf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-osf-ts1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-sup-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ly1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ly1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ot1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-t1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-t1.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ts1--base.tfm + RELOC/fonts/tfm/impallari/librecaslon/LibreCaslonText-Regular-tlf-ts1.tfm + RELOC/fonts/type1/impallari/librecaslon/LibreCaslonText-Bold.pfb + RELOC/fonts/type1/impallari/librecaslon/LibreCaslonText-BoldItalic.pfb + RELOC/fonts/type1/impallari/librecaslon/LibreCaslonText-Italic.pfb + RELOC/fonts/type1/impallari/librecaslon/LibreCaslonText-Regular.pfb + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-osf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-osf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-osf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-sup-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-sup-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-tlf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-tlf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Bold-tlf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-osf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-sup-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-BoldItalic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-osf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-osf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-osf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-sup-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-sup-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-tlf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-tlf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Italic-tlf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-osf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-osf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-osf-ts1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-sup-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-sup-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-tlf-ly1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-tlf-t1.vf + RELOC/fonts/vf/impallari/librecaslon/LibreCaslonText-Regular-tlf-ts1.vf + RELOC/tex/latex/librecaslon/LY1LibreCaslonText-OsF.fd + RELOC/tex/latex/librecaslon/LY1LibreCaslonText-Sup.fd + RELOC/tex/latex/librecaslon/LY1LibreCaslonText-TLF.fd + RELOC/tex/latex/librecaslon/OT1LibreCaslonText-OsF.fd + RELOC/tex/latex/librecaslon/OT1LibreCaslonText-Sup.fd + RELOC/tex/latex/librecaslon/OT1LibreCaslonText-TLF.fd + RELOC/tex/latex/librecaslon/T1LibreCaslonText-OsF.fd + RELOC/tex/latex/librecaslon/T1LibreCaslonText-Sup.fd + RELOC/tex/latex/librecaslon/T1LibreCaslonText-TLF.fd + 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-ctan /fonts/librecaslon +catalogue-date 2014-05-11 22:01:43 +0200 +catalogue-license ofl + +name libris +category Package +revision 19409 +shortdesc Libris ADF fonts, with LaTeX support. +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. +execute addMap yly.map +runfiles size=169 + RELOC/fonts/afm/arkandis/libris/ylyb8a.afm + RELOC/fonts/afm/arkandis/libris/ylybi8a.afm + RELOC/fonts/afm/arkandis/libris/ylyr8a.afm + RELOC/fonts/afm/arkandis/libris/ylyri8a.afm + RELOC/fonts/enc/dvips/libris/libris-supp.enc + RELOC/fonts/enc/dvips/libris/t1-cfr-yly.enc + RELOC/fonts/enc/dvips/libris/ts1-euro-yly.enc + RELOC/fonts/map/dvips/libris/yly.map + RELOC/fonts/tfm/arkandis/libris/ylyb-t1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyb-ts1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyb8c.tfm + RELOC/fonts/tfm/arkandis/libris/ylyb8s.tfm + RELOC/fonts/tfm/arkandis/libris/ylyb8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi-t1.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi-ts1.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi8c.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi8s.tfm + RELOC/fonts/tfm/arkandis/libris/ylybi8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylybiw8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylybw8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr-t1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr-ts1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr8c.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr8s.tfm + RELOC/fonts/tfm/arkandis/libris/ylyr8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri-t1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri-ts1.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri8c.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri8s.tfm + RELOC/fonts/tfm/arkandis/libris/ylyri8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylyriw8t.tfm + RELOC/fonts/tfm/arkandis/libris/ylyrw8t.tfm + RELOC/fonts/type1/arkandis/libris/ylyb8a.pfb + RELOC/fonts/type1/arkandis/libris/ylyb8a.pfm + RELOC/fonts/type1/arkandis/libris/ylybi8a.pfb + RELOC/fonts/type1/arkandis/libris/ylybi8a.pfm + RELOC/fonts/type1/arkandis/libris/ylyr8a.pfb + RELOC/fonts/type1/arkandis/libris/ylyr8a.pfm + RELOC/fonts/type1/arkandis/libris/ylyri8a.pfb + RELOC/fonts/type1/arkandis/libris/ylyri8a.pfm + RELOC/fonts/vf/arkandis/libris/ylyb8c.vf + RELOC/fonts/vf/arkandis/libris/ylyb8t.vf + RELOC/fonts/vf/arkandis/libris/ylybi8c.vf + RELOC/fonts/vf/arkandis/libris/ylybi8t.vf + RELOC/fonts/vf/arkandis/libris/ylybiw8t.vf + RELOC/fonts/vf/arkandis/libris/ylybw8t.vf + RELOC/fonts/vf/arkandis/libris/ylyr8c.vf + RELOC/fonts/vf/arkandis/libris/ylyr8t.vf + RELOC/fonts/vf/arkandis/libris/ylyri8c.vf + RELOC/fonts/vf/arkandis/libris/ylyri8t.vf + RELOC/fonts/vf/arkandis/libris/ylyriw8t.vf + RELOC/fonts/vf/arkandis/libris/ylyrw8t.vf + RELOC/tex/latex/libris/libris.sty + RELOC/tex/latex/libris/t1yly.fd + RELOC/tex/latex/libris/t1ylyw.fd + RELOC/tex/latex/libris/ts1yly.fd + RELOC/tex/latex/libris/ts1ylyw.fd +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-ctan /fonts/libris +catalogue-date 2015-01-20 20:54:34 +0100 +catalogue-license gpl +catalogue-version 1.007 + +name lilyglyphs +category Package +revision 33164 +shortdesc Access lilypond fragments and glyphs, in LaTeX. +longdesc The package provides the means to include arbitrary elements of +longdesc Lilypond notation, including symbols from Lilypond's Emmentaler +longdesc font, in a LaTeX document. The package uses OpenType fonts, and +longdesc as a result must be compiled with LuaLaTeX or XeLaTeX. +depend lilyglyphs.ARCH +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 +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-scripts + texmf-dist/doc/lualatex/lilyglyphs/VERSION + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-400.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-600.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-de.pdf + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example-de.tex + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.pdf + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs-example.tex + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs.pdf + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs.tex + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.pdf + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_logo/lilyglyphs_logo.tex + texmf-dist/doc/lualatex/lilyglyphs/documentation/lilyglyphs_private.zip + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-088c978c.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-1981c3c7.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-20e8632d.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-2abb8a04.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-2be182be.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-3b47d3fe.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-3f4afecc.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-40869867.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-5b13ce04.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-5c91a201.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-707477b7.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-76dbcd67.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-7fd84ff8.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-8155deab.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-8b332c94.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-8d82df0c.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-8d8bb8a3.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-907bc72d.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-a2bf82dd.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-ae3fd948.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-b3dc0958.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-b69af986.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-d9988a2c.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-dffaecd2.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lily-f4d0afc9.png + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lilyglyphsManualFonts.sty + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lilyglyphsStyle.sty + texmf-dist/doc/lualatex/lilyglyphs/documentation/resources/lilypond-manuals.css + texmf-dist/doc/lualatex/lilyglyphs/documentation/the-feta-font-2-18-0.html + texmf-dist/doc/lualatex/lilyglyphs/license/COPYING.LPPL + texmf-dist/doc/lualatex/lilyglyphs/license/MANIFEST + texmf-dist/doc/lualatex/lilyglyphs/license/license-preamble.inp +srcfiles size=91 + texmf-dist/source/luatex/lilyglyphs/fonts/README-emmentaler + texmf-dist/source/luatex/lilyglyphs/fonts/emmentaler-2-18-0.zip + texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/_template.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/beamednotes.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/dynamicsigns.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/fancyexamples.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/score.ily + texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/definitions/singlenotes.pdf + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crescHairpin.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchet.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDotted.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDouble.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDoubleDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDottedDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-crotchetDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-decrescHairpin.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaver.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDotted.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDouble.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDoubleDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDottedDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-demisemiquaverDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-fancyExample.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNote.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDotted.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDouble.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDoubleDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDottedDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-halfNoteDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaver.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDotted.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDouble.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDdown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDoubleDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDottedDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-quaverDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaver.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDotted.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDouble.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDoubleDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDottedDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-semiquaverDown.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuavers.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversI.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversII.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-threeBeamedQuaversIII.ly + texmf-dist/source/luatex/lilyglyphs/glyphimages/generated_src/lily-twoBeamedQuavers.ly +catalogue-ctan /macros/luatex/latex/lilyglyphs +catalogue-date 2014-05-11 22:01:43 +0200 +catalogue-license lppl1.3 +catalogue-version 0.2.3 + +name lilyglyphs.i386-linux +category Package +revision 31696 +shortdesc i386-linux files of lilyglyphs +binfiles arch=i386-linux size=3 + bin/i386-linux/lily-glyph-commands + bin/i386-linux/lily-image-commands + bin/i386-linux/lily-rebuild-pdfs + +name limap +category Package +revision 15878 +shortdesc Typeset maps and blocks according to the Information Mapping method. +relocated 1 +longdesc The Information Mapping 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 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 + RELOC/source/latex/limap/limap.dtx + RELOC/source/latex/limap/limap.ins +catalogue-ctan /macros/latex/contrib/gene/limap +catalogue-date 2012-04-03 18:09:05 +0200 +catalogue-license lppl + +name lineara +category Package +revision 15878 +shortdesc Linear A script fonts. +relocated 1 +longdesc The linearA package provides a simple interface to two fonts +longdesc which include all known symbols, simple and complex, of the +longdesc Linear A script. This way one can easily replicate Linear A +longdesc "texts" using modern typographic technology. Note that the +longdesc Linear A script has not been deciphered yet and probably never +longdesc will be deciphered. +execute addMap linearA.map +runfiles size=53 + RELOC/fonts/afm/public/linearA/LinearA.afm + RELOC/fonts/afm/public/linearA/LinearACmplxSigns.afm + RELOC/fonts/map/dvips/linearA/linearA.map + RELOC/fonts/tfm/public/linearA/LinearA.tfm + RELOC/fonts/tfm/public/linearA/LinearACmplxSigns.tfm + RELOC/fonts/type1/public/linearA/LinearA.pfb + RELOC/fonts/type1/public/linearA/LinearACmplxSigns.pfb + RELOC/tex/latex/linearA/linearA.sty +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-license lppl + +name linegoal +category Package +revision 21523 +shortdesc A "dimen" that returns the space left on the line. +relocated 1 +longdesc The linegoal package provides a macro \linegoal to be used with +longdesc \setlength: \setlength<some dimen>\linegoal will set <some +longdesc dimen> to the horizontal length of the remainder of the line. +longdesc This is achieved using the \pdfsavepos primitive of pdftex, +longdesc through the zref-savepos package. Example: Some text: +longdesc \begin{tabularx}\linegoal{|l|X|} \hline one & two \\ three & +longdesc four \\\hline \end{tabularx} will position the table after the +longdesc initial text, and make the table fill the rest of the line. +runfiles size=1 + RELOC/tex/latex/linegoal/linegoal.sty +docfiles size=48 + RELOC/doc/latex/linegoal/README + RELOC/doc/latex/linegoal/linegoal.pdf +srcfiles size=11 + RELOC/source/latex/linegoal/linegoal.drv + RELOC/source/latex/linegoal/linegoal.dtx + RELOC/source/latex/linegoal/linegoal.ins +catalogue-ctan /macros/latex/contrib/linegoal +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 2.9 + +name lineno +category Package +revision 21442 +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 +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/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 +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 +catalogue-ctan /macros/latex/contrib/lineno +catalogue-date 2012-04-21 20:14:11 +0200 +catalogue-license lppl +catalogue-version 4.41 + +name linguex +category Package +revision 30815 +shortdesc Format linguists' examples. +relocated 1 +longdesc This bundle comprises two packages: The linguex package +longdesc facilitates the formatting of linguist examples, automatically +longdesc taking care of example numbering, indentations, indexed +longdesc brackets, and the '*' in grammaticality judgments. The ps-trees +longdesc package provides linguistic trees, building on the macros of +longdesc tree-dvips, but overcoming some of the older package's +longdesc shortcomings. +runfiles size=8 + RELOC/tex/latex/linguex/linguex.sty + RELOC/tex/latex/linguex/linguho.sty + RELOC/tex/latex/linguex/ps-trees.sty +docfiles size=77 + RELOC/doc/latex/linguex/README + RELOC/doc/latex/linguex/linguex-doc.pdf + RELOC/doc/latex/linguex/linguex-doc.tex + RELOC/doc/latex/linguex/ps-trees-doc.pdf + RELOC/doc/latex/linguex/ps-trees-doc.tex +catalogue-ctan /macros/latex/contrib/linguex +catalogue-date 2014-10-10 23:56:29 +0200 +catalogue-license lppl +catalogue-version 4.3 + +name lipsum +category Package +revision 34800 +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 + RELOC/source/latex/lipsum/lipsum.dtx + RELOC/source/latex/lipsum/lipsum.ins +catalogue-ctan /macros/latex/contrib/lipsum +catalogue-date 2014-07-29 10:30:46 +0200 +catalogue-license lppl +catalogue-version v1.3 + +name lisp-on-tex +category Package +revision 34578 +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 + RELOC/doc/latex/lisp-on-tex/LICENSE + RELOC/doc/latex/lisp-on-tex/README + RELOC/doc/latex/lisp-on-tex/examples/fact.pdf + RELOC/doc/latex/lisp-on-tex/examples/fact.tex + RELOC/doc/latex/lisp-on-tex/examples/fpnummodule-mandelbrot.pdf + RELOC/doc/latex/lisp-on-tex/examples/fpnummodule-mandelbrot.tex + RELOC/doc/latex/lisp-on-tex/examples/nqueen.pdf + RELOC/doc/latex/lisp-on-tex/examples/nqueen.tex + RELOC/doc/latex/lisp-on-tex/examples/repl.tex + RELOC/doc/latex/lisp-on-tex/examples/rocket.pdf + RELOC/doc/latex/lisp-on-tex/examples/rocket.tex + RELOC/doc/latex/lisp-on-tex/examples/showfont.pdf + RELOC/doc/latex/lisp-on-tex/examples/showfont.tex + 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 +catalogue-ctan /macros/latex/contrib/lisp-on-tex +catalogue-date 2014-07-12 15:52:58 +0200 +catalogue-license bsd +catalogue-version 1.3 + +name listbib +category Package +revision 29349 +shortdesc Lists contents of BibTeX files. +longdesc Generates listings of bibliographic data bases in BibTeX format +longdesc -- for example for archival purposes. Included is a listbib.bst +longdesc which is better suited for this purpose than the standard +longdesc styles. +depend listbib.ARCH +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 +docfiles size=87 + texmf-dist/doc/latex/listbib/listbib-doc.pdf +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 +catalogue-ctan /macros/latex/contrib/listbib +catalogue-date 2012-04-21 20:14:11 +0200 +catalogue-license gpl +catalogue-version 2.2 + +name listbib.i386-linux +category Package +revision 26126 +shortdesc i386-linux files of listbib +binfiles arch=i386-linux size=1 + bin/i386-linux/listbib + +name listings-ext +category Package +revision 29349 +shortdesc Automated input of source. +longdesc The package provides a means of marking a source, so that +longdesc samples of it may be included in a document (by means of the +longdesc listings package) in a stable fashion, regardless of any change +longdesc to the source. The markup in the source text defines tags for +longdesc blocks of source. These tags are processed by a shell script to +longdesc make a steering file that is used by the package when LaTeX is +longdesc being run.y +depend listings-ext.ARCH +runfiles size=5 + texmf-dist/scripts/listings-ext/listings-ext.sh + texmf-dist/tex/latex/listings-ext/listings-ext.sty +docfiles size=48 + texmf-dist/doc/latex/listings-ext/README + texmf-dist/doc/latex/listings-ext/THIS_IS_VERSION_v67 + texmf-dist/doc/latex/listings-ext/getversion.tex + texmf-dist/doc/latex/listings-ext/hyperref.cfg + texmf-dist/doc/latex/listings-ext/listings-ext.bib + texmf-dist/doc/latex/listings-ext/listings-ext.el + texmf-dist/doc/latex/listings-ext/listings-ext.makemake + texmf-dist/doc/latex/listings-ext/listings-ext.mk + texmf-dist/doc/latex/listings-ext/listings-ext.pdf + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_a.java + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_b.java + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_c.java + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_d.java + texmf-dist/doc/latex/listings-ext/listings-ext_exmpl_e.java + texmf-dist/doc/latex/listings-ext/listings-ext_test_a.tex + texmf-dist/doc/latex/listings-ext/listings-ext_test_d.tex + texmf-dist/doc/latex/listings-ext/listings.cfg +srcfiles size=21 + texmf-dist/source/latex/listings-ext/listings-ext.dtx + texmf-dist/source/latex/listings-ext/listings-ext.ins +catalogue-ctan /macros/latex/contrib/listings-ext +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 67 + +name listings-ext.i386-linux +category Package +revision 15093 +shortdesc i386-linux files of listings-ext +binfiles arch=i386-linux size=1 + bin/i386-linux/listings-ext.sh + +name listings +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 + +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. +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 + +name listlbls +category Package +revision 34893 +shortdesc Creates a list of all labels used throughout a document +relocated 1 +longdesc The package aims to help a LaTeX author to keep track of all +longdesc defined labels by typesetting a complete list of labels +longdesc wherever the author requests it. (Of course, the user may need +longdesc to have additional LaTeX runs to get the references right. ) +longdesc This package is based on an answer David Carlisle gave on +longdesc TeX/Stackexchange in the thread 'List of all labels with +longdesc hyperlinks'. +runfiles size=1 + RELOC/tex/latex/listlbls/listlbls.sty +docfiles size=23 + RELOC/doc/latex/listlbls/Makefile + RELOC/doc/latex/listlbls/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 +srcfiles size=5 + RELOC/source/latex/listlbls/listlbls.dtx + RELOC/source/latex/listlbls/listlbls.ins +catalogue-ctan /macros/latex/contrib/listlbls +catalogue-date 2014-08-04 17:20:17 +0200 +catalogue-license lppl1.3 +catalogue-version 1.03 + +name listliketab +category Package +revision 15878 +shortdesc Typeset lists as tables. +relocated 1 +longdesc The listliketab package helps the user make list-like tabulars, +longdesc i.e., a tabular that is indistinguishable from an itemize or +longdesc enumerate environment. The advantage of using a tabular is that +longdesc the user can add additional columns to each entry in the list. +runfiles size=1 + RELOC/tex/latex/listliketab/listliketab.sty +docfiles size=36 + RELOC/doc/latex/listliketab/README + RELOC/doc/latex/listliketab/listliketab.pdf +srcfiles size=6 + RELOC/source/latex/listliketab/listliketab.dtx + RELOC/source/latex/listliketab/listliketab.ins +catalogue-ctan /macros/latex/contrib/listliketab +catalogue-date 2014-08-04 17:04:41 +0200 +catalogue-license lppl + +name listofsymbols +category Package +revision 16134 +shortdesc Create and manipulate lists of symbols +relocated 1 +longdesc Listofsymbols provides commands to automatically create a list +longdesc of symbols (also called notation or nomenclature), and to +longdesc handle symbols logically, i.e. define a macro that is expanded +longdesc to the desired output and use the macro in the text rather than +longdesc `hardcoding' the output into the text. This helps to ensure +longdesc consistency throughout the text, especially if there is a +longdesc chance that symbols will be changed at some stage. The package +longdesc is more or less a combination of what the packages nomencl and +longdesc formula do. The concept of creating the list of symbols, +longdesc though, is different from the way nomencl.sty does it. +runfiles size=2 + RELOC/tex/latex/listofsymbols/listofsymbols.sty +docfiles size=16 + RELOC/doc/latex/listofsymbols/README + RELOC/doc/latex/listofsymbols/listofsymbols.pdf +srcfiles size=7 + RELOC/source/latex/listofsymbols/listofsymbols.dtx + RELOC/source/latex/listofsymbols/listofsymbols.ins +catalogue-ctan /macros/latex/contrib/listofsymbols +catalogue-date 2012-07-07 16:18:52 +0200 +catalogue-license lppl +catalogue-version 0.2 + +name lithuanian +category Package +revision 22722 +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. +execute addMap l7x-urwvn.map +runfiles size=99 + RELOC/fonts/enc/dvips/lithuanian/latin7x.enc + RELOC/fonts/map/dvips/lithuanian/l7x-urwvn.map + RELOC/fonts/tfm/public/lithuanian/l7x-uagd.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uagdo.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uagk.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uagko.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ubkd.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ubkdi.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ubkl.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ubkli.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ucrb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ucrbo.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ucrr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-ucrro.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvbc.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvbo.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvboc.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvrc.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvro.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uhvroc.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uncb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uncbi.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uncr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uncri.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uplb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uplbi.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uplr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uplri.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-utmb.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-utmbi.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-utmr.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-utmri.tfm + RELOC/fonts/tfm/public/lithuanian/l7x-uzcmi.tfm + RELOC/tex/latex/lithuanian/cp772.def + RELOC/tex/latex/lithuanian/cp774.def + RELOC/tex/latex/lithuanian/cp775.def + RELOC/tex/latex/lithuanian/cpKBL.def + RELOC/tex/latex/lithuanian/cpRIM.def + RELOC/tex/latex/lithuanian/l7xenc.def + RELOC/tex/latex/lithuanian/l7xenc.dfu + RELOC/tex/latex/lithuanian/l7xenc.sty + RELOC/tex/latex/lithuanian/l7xuag.fd + RELOC/tex/latex/lithuanian/l7xubk.fd + RELOC/tex/latex/lithuanian/l7xucr.fd + RELOC/tex/latex/lithuanian/l7xuhv.fd + RELOC/tex/latex/lithuanian/l7xunc.fd + RELOC/tex/latex/lithuanian/l7xupl.fd + RELOC/tex/latex/lithuanian/l7xutm.fd + RELOC/tex/latex/lithuanian/l7xuzc.fd + RELOC/tex/latex/lithuanian/latin7.def + RELOC/tex/latex/lithuanian/lithuanian.ldf + RELOC/tex/latex/lithuanian/lithuanian.sty +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 + +name liturg +category Package +revision 15878 +shortdesc Support for typesetting Catholic liturgical texts. +relocated 1 +longdesc The packages offers simple macros for typesetting Catholic +longdesc liturgical texts, particularly Missal and Breviary texts. The +longdesc package assumes availability of Latin typesetting packages. +runfiles size=5 + RELOC/tex/latex/liturg/liturg.sty +docfiles size=34 + RELOC/doc/latex/liturg/README + RELOC/doc/latex/liturg/liturg.pdf + RELOC/doc/latex/liturg/test.tex +srcfiles size=1 + RELOC/source/latex/liturg/liturg.ins +catalogue-ctan /macros/latex/contrib/liturg +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name lkproof +category Package +revision 20021 +shortdesc LK Proof figure macros. +relocated 1 +longdesc The package defines a pair of commands \infer and \deduce, that +longdesc are used in constructing LK proof diagrams. +runfiles size=2 + RELOC/tex/latex/lkproof/proof.sty +docfiles size=65 + RELOC/doc/latex/lkproof/lkproof-doc.pdf + RELOC/doc/latex/lkproof/lkproof-doc.tex + RELOC/doc/latex/lkproof/proofeg.tex +catalogue-ctan /macros/latex/contrib/lkproof +catalogue-date 2014-05-12 06:57:13 +0200 +catalogue-license gpl +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. +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 + +name lm +category Package +revision 28119 +shortdesc Latin modern fonts in outline formats. +relocated 1 +longdesc The Latin Modern family of fonts consists of 72 text fonts and +longdesc 20 mathematics fonts, and is based on the Computer Modern fonts +longdesc released into public domain by AMS (copyright (c) 1997 AMS). +longdesc The lm font set contains a lot of additional characters, mainly +longdesc accented ones, but not exclusively. There is one set of fonts, +longdesc available both in Adobe Type 1 format (*.pfb) and in OpenType +longdesc format (*.otf). There are five sets of TeX Font Metric files, +longdesc corresponding to: Cork encoding (cork-*.tfm); QX encoding (qx- +longdesc *.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 +runfiles size=10645 + RELOC/fonts/afm/public/lm/lmb10.afm + RELOC/fonts/afm/public/lm/lmbo10.afm + RELOC/fonts/afm/public/lm/lmbsy10.afm + RELOC/fonts/afm/public/lm/lmbsy10.aft + RELOC/fonts/afm/public/lm/lmbsy5.afm + RELOC/fonts/afm/public/lm/lmbsy5.aft + RELOC/fonts/afm/public/lm/lmbsy7.afm + RELOC/fonts/afm/public/lm/lmbsy7.aft + RELOC/fonts/afm/public/lm/lmbx10.afm + RELOC/fonts/afm/public/lm/lmbx12.afm + RELOC/fonts/afm/public/lm/lmbx5.afm + RELOC/fonts/afm/public/lm/lmbx6.afm + RELOC/fonts/afm/public/lm/lmbx7.afm + RELOC/fonts/afm/public/lm/lmbx8.afm + RELOC/fonts/afm/public/lm/lmbx9.afm + RELOC/fonts/afm/public/lm/lmbxi10.afm + RELOC/fonts/afm/public/lm/lmbxo10.afm + RELOC/fonts/afm/public/lm/lmcsc10.afm + RELOC/fonts/afm/public/lm/lmcsco10.afm + RELOC/fonts/afm/public/lm/lmdunh10.afm + RELOC/fonts/afm/public/lm/lmduno10.afm + RELOC/fonts/afm/public/lm/lmex10.afm + RELOC/fonts/afm/public/lm/lmex10.aft + RELOC/fonts/afm/public/lm/lmmi10.afm + RELOC/fonts/afm/public/lm/lmmi10.aft + RELOC/fonts/afm/public/lm/lmmi12.afm + RELOC/fonts/afm/public/lm/lmmi12.aft + RELOC/fonts/afm/public/lm/lmmi5.afm + RELOC/fonts/afm/public/lm/lmmi5.aft + RELOC/fonts/afm/public/lm/lmmi6.afm + RELOC/fonts/afm/public/lm/lmmi6.aft + RELOC/fonts/afm/public/lm/lmmi7.afm + RELOC/fonts/afm/public/lm/lmmi7.aft + RELOC/fonts/afm/public/lm/lmmi8.afm + RELOC/fonts/afm/public/lm/lmmi8.aft + RELOC/fonts/afm/public/lm/lmmi9.afm + RELOC/fonts/afm/public/lm/lmmi9.aft + RELOC/fonts/afm/public/lm/lmmib10.afm + RELOC/fonts/afm/public/lm/lmmib10.aft + RELOC/fonts/afm/public/lm/lmmib5.afm + RELOC/fonts/afm/public/lm/lmmib5.aft + RELOC/fonts/afm/public/lm/lmmib7.afm + RELOC/fonts/afm/public/lm/lmmib7.aft + RELOC/fonts/afm/public/lm/lmr10.afm + RELOC/fonts/afm/public/lm/lmr12.afm + RELOC/fonts/afm/public/lm/lmr17.afm + RELOC/fonts/afm/public/lm/lmr5.afm + RELOC/fonts/afm/public/lm/lmr6.afm + RELOC/fonts/afm/public/lm/lmr7.afm + RELOC/fonts/afm/public/lm/lmr8.afm + RELOC/fonts/afm/public/lm/lmr9.afm + RELOC/fonts/afm/public/lm/lmri10.afm + RELOC/fonts/afm/public/lm/lmri12.afm + RELOC/fonts/afm/public/lm/lmri7.afm + RELOC/fonts/afm/public/lm/lmri8.afm + RELOC/fonts/afm/public/lm/lmri9.afm + RELOC/fonts/afm/public/lm/lmro10.afm + RELOC/fonts/afm/public/lm/lmro12.afm + RELOC/fonts/afm/public/lm/lmro17.afm + RELOC/fonts/afm/public/lm/lmro8.afm + RELOC/fonts/afm/public/lm/lmro9.afm + RELOC/fonts/afm/public/lm/lmss10.afm + RELOC/fonts/afm/public/lm/lmss12.afm + RELOC/fonts/afm/public/lm/lmss17.afm + RELOC/fonts/afm/public/lm/lmss8.afm + RELOC/fonts/afm/public/lm/lmss9.afm + RELOC/fonts/afm/public/lm/lmssbo10.afm + RELOC/fonts/afm/public/lm/lmssbx10.afm + RELOC/fonts/afm/public/lm/lmssdc10.afm + RELOC/fonts/afm/public/lm/lmssdo10.afm + RELOC/fonts/afm/public/lm/lmsso10.afm + RELOC/fonts/afm/public/lm/lmsso12.afm + RELOC/fonts/afm/public/lm/lmsso17.afm + RELOC/fonts/afm/public/lm/lmsso8.afm + RELOC/fonts/afm/public/lm/lmsso9.afm + RELOC/fonts/afm/public/lm/lmssq8.afm + RELOC/fonts/afm/public/lm/lmssqbo8.afm + RELOC/fonts/afm/public/lm/lmssqbx8.afm + RELOC/fonts/afm/public/lm/lmssqo8.afm + RELOC/fonts/afm/public/lm/lmsy10.afm + RELOC/fonts/afm/public/lm/lmsy10.aft + RELOC/fonts/afm/public/lm/lmsy5.afm + RELOC/fonts/afm/public/lm/lmsy5.aft + RELOC/fonts/afm/public/lm/lmsy6.afm + RELOC/fonts/afm/public/lm/lmsy6.aft + RELOC/fonts/afm/public/lm/lmsy7.afm + RELOC/fonts/afm/public/lm/lmsy7.aft + RELOC/fonts/afm/public/lm/lmsy8.afm + RELOC/fonts/afm/public/lm/lmsy8.aft + RELOC/fonts/afm/public/lm/lmsy9.afm + RELOC/fonts/afm/public/lm/lmsy9.aft + RELOC/fonts/afm/public/lm/lmtcsc10.afm + RELOC/fonts/afm/public/lm/lmtcso10.afm + RELOC/fonts/afm/public/lm/lmtk10.afm + RELOC/fonts/afm/public/lm/lmtko10.afm + RELOC/fonts/afm/public/lm/lmtl10.afm + RELOC/fonts/afm/public/lm/lmtlc10.afm + RELOC/fonts/afm/public/lm/lmtlco10.afm + RELOC/fonts/afm/public/lm/lmtlo10.afm + RELOC/fonts/afm/public/lm/lmtt10.afm + RELOC/fonts/afm/public/lm/lmtt12.afm + RELOC/fonts/afm/public/lm/lmtt8.afm + RELOC/fonts/afm/public/lm/lmtt9.afm + RELOC/fonts/afm/public/lm/lmtti10.afm + RELOC/fonts/afm/public/lm/lmtto10.afm + RELOC/fonts/afm/public/lm/lmu10.afm + RELOC/fonts/afm/public/lm/lmvtk10.afm + RELOC/fonts/afm/public/lm/lmvtko10.afm + RELOC/fonts/afm/public/lm/lmvtl10.afm + RELOC/fonts/afm/public/lm/lmvtlo10.afm + RELOC/fonts/afm/public/lm/lmvtt10.afm + RELOC/fonts/afm/public/lm/lmvtto10.afm + RELOC/fonts/enc/dvips/lm/lm-cs.enc + RELOC/fonts/enc/dvips/lm/lm-cssc.enc + RELOC/fonts/enc/dvips/lm/lm-cstt.enc + RELOC/fonts/enc/dvips/lm/lm-ec.enc + RELOC/fonts/enc/dvips/lm/lm-l7x.enc + RELOC/fonts/enc/dvips/lm/lm-mathex.enc + RELOC/fonts/enc/dvips/lm/lm-mathit.enc + RELOC/fonts/enc/dvips/lm/lm-mathsy.enc + RELOC/fonts/enc/dvips/lm/lm-qx.enc + RELOC/fonts/enc/dvips/lm/lm-qxsc.enc + RELOC/fonts/enc/dvips/lm/lm-qxtt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmin.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmit.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmitt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmrm.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmsc.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cmtt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-csin.enc + RELOC/fonts/enc/dvips/lm/lm-rep-csrm.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cssc.enc + RELOC/fonts/enc/dvips/lm/lm-rep-cstt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plin.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plit.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plitt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plrm.enc + RELOC/fonts/enc/dvips/lm/lm-rep-plsc.enc + RELOC/fonts/enc/dvips/lm/lm-rep-pltt.enc + RELOC/fonts/enc/dvips/lm/lm-rep-t5psn.enc + RELOC/fonts/enc/dvips/lm/lm-rm.enc + RELOC/fonts/enc/dvips/lm/lm-rmsc.enc + RELOC/fonts/enc/dvips/lm/lm-rmtt.enc + RELOC/fonts/enc/dvips/lm/lm-t5.enc + RELOC/fonts/enc/dvips/lm/lm-texnansi.enc + RELOC/fonts/enc/dvips/lm/lm-ts1.enc + RELOC/fonts/map/dvipdfm/lm/lm-ec.map + RELOC/fonts/map/dvipdfm/lm/lm-math.map + RELOC/fonts/map/dvipdfm/lm/lm-rm.map + RELOC/fonts/map/dvipdfm/lm/lm-texnansi.map + RELOC/fonts/map/dvips/lm/lm-cs.map + RELOC/fonts/map/dvips/lm/lm-ec.map + RELOC/fonts/map/dvips/lm/lm-l7x.map + RELOC/fonts/map/dvips/lm/lm-math.map + RELOC/fonts/map/dvips/lm/lm-qx.map + RELOC/fonts/map/dvips/lm/lm-rep-cmother.map + RELOC/fonts/map/dvips/lm/lm-rep-cmtext-interpolated.map + RELOC/fonts/map/dvips/lm/lm-rep-cmtext.map + RELOC/fonts/map/dvips/lm/lm-rep-cstext.map + RELOC/fonts/map/dvips/lm/lm-rep-pltext.map + RELOC/fonts/map/dvips/lm/lm-rep-vntext.map + RELOC/fonts/map/dvips/lm/lm-rm.map + RELOC/fonts/map/dvips/lm/lm-t5.map + RELOC/fonts/map/dvips/lm/lm-texnansi.map + RELOC/fonts/map/dvips/lm/lm-ts1.map + RELOC/fonts/map/dvips/lm/lm.map + RELOC/fonts/opentype/public/lm/lmmono10-italic.otf + RELOC/fonts/opentype/public/lm/lmmono10-regular.otf + RELOC/fonts/opentype/public/lm/lmmono12-regular.otf + RELOC/fonts/opentype/public/lm/lmmono8-regular.otf + RELOC/fonts/opentype/public/lm/lmmono9-regular.otf + RELOC/fonts/opentype/public/lm/lmmonocaps10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonocaps10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonolt10-bold.otf + RELOC/fonts/opentype/public/lm/lmmonolt10-boldoblique.otf + RELOC/fonts/opentype/public/lm/lmmonolt10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonolt10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonoltcond10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonoltcond10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonoprop10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonoprop10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonoproplt10-bold.otf + RELOC/fonts/opentype/public/lm/lmmonoproplt10-boldoblique.otf + RELOC/fonts/opentype/public/lm/lmmonoproplt10-oblique.otf + RELOC/fonts/opentype/public/lm/lmmonoproplt10-regular.otf + RELOC/fonts/opentype/public/lm/lmmonoslant10-regular.otf + RELOC/fonts/opentype/public/lm/lmroman10-bold.otf + RELOC/fonts/opentype/public/lm/lmroman10-bolditalic.otf + RELOC/fonts/opentype/public/lm/lmroman10-italic.otf + RELOC/fonts/opentype/public/lm/lmroman10-regular.otf + RELOC/fonts/opentype/public/lm/lmroman12-bold.otf + RELOC/fonts/opentype/public/lm/lmroman12-italic.otf + RELOC/fonts/opentype/public/lm/lmroman12-regular.otf + RELOC/fonts/opentype/public/lm/lmroman17-regular.otf + RELOC/fonts/opentype/public/lm/lmroman5-bold.otf + RELOC/fonts/opentype/public/lm/lmroman5-regular.otf + RELOC/fonts/opentype/public/lm/lmroman6-bold.otf + RELOC/fonts/opentype/public/lm/lmroman6-regular.otf + RELOC/fonts/opentype/public/lm/lmroman7-bold.otf + RELOC/fonts/opentype/public/lm/lmroman7-italic.otf + RELOC/fonts/opentype/public/lm/lmroman7-regular.otf + RELOC/fonts/opentype/public/lm/lmroman8-bold.otf + RELOC/fonts/opentype/public/lm/lmroman8-italic.otf + RELOC/fonts/opentype/public/lm/lmroman8-regular.otf + RELOC/fonts/opentype/public/lm/lmroman9-bold.otf + RELOC/fonts/opentype/public/lm/lmroman9-italic.otf + RELOC/fonts/opentype/public/lm/lmroman9-regular.otf + RELOC/fonts/opentype/public/lm/lmromancaps10-oblique.otf + RELOC/fonts/opentype/public/lm/lmromancaps10-regular.otf + RELOC/fonts/opentype/public/lm/lmromandemi10-oblique.otf + RELOC/fonts/opentype/public/lm/lmromandemi10-regular.otf + RELOC/fonts/opentype/public/lm/lmromandunh10-oblique.otf + RELOC/fonts/opentype/public/lm/lmromandunh10-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant10-bold.otf + RELOC/fonts/opentype/public/lm/lmromanslant10-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant12-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant17-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant8-regular.otf + RELOC/fonts/opentype/public/lm/lmromanslant9-regular.otf + RELOC/fonts/opentype/public/lm/lmromanunsl10-regular.otf + RELOC/fonts/opentype/public/lm/lmsans10-bold.otf + RELOC/fonts/opentype/public/lm/lmsans10-boldoblique.otf + RELOC/fonts/opentype/public/lm/lmsans10-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans10-regular.otf + RELOC/fonts/opentype/public/lm/lmsans12-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans12-regular.otf + RELOC/fonts/opentype/public/lm/lmsans17-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans17-regular.otf + RELOC/fonts/opentype/public/lm/lmsans8-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans8-regular.otf + RELOC/fonts/opentype/public/lm/lmsans9-oblique.otf + RELOC/fonts/opentype/public/lm/lmsans9-regular.otf + RELOC/fonts/opentype/public/lm/lmsansdemicond10-oblique.otf + RELOC/fonts/opentype/public/lm/lmsansdemicond10-regular.otf + RELOC/fonts/opentype/public/lm/lmsansquot8-bold.otf + RELOC/fonts/opentype/public/lm/lmsansquot8-boldoblique.otf + RELOC/fonts/opentype/public/lm/lmsansquot8-oblique.otf + RELOC/fonts/opentype/public/lm/lmsansquot8-regular.otf + RELOC/fonts/tfm/public/lm/cs-lmb10.tfm + RELOC/fonts/tfm/public/lm/cs-lmbo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx10.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx12.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx5.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx6.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx7.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx8.tfm + RELOC/fonts/tfm/public/lm/cs-lmbx9.tfm + RELOC/fonts/tfm/public/lm/cs-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/cs-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/cs-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/cs-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/cs-lmduno10.tfm + RELOC/fonts/tfm/public/lm/cs-lmr10.tfm + RELOC/fonts/tfm/public/lm/cs-lmr12.tfm + RELOC/fonts/tfm/public/lm/cs-lmr17.tfm + RELOC/fonts/tfm/public/lm/cs-lmr5.tfm + RELOC/fonts/tfm/public/lm/cs-lmr6.tfm + RELOC/fonts/tfm/public/lm/cs-lmr7.tfm + RELOC/fonts/tfm/public/lm/cs-lmr8.tfm + RELOC/fonts/tfm/public/lm/cs-lmr9.tfm + RELOC/fonts/tfm/public/lm/cs-lmri10.tfm + RELOC/fonts/tfm/public/lm/cs-lmri12.tfm + RELOC/fonts/tfm/public/lm/cs-lmri7.tfm + RELOC/fonts/tfm/public/lm/cs-lmri8.tfm + RELOC/fonts/tfm/public/lm/cs-lmri9.tfm + RELOC/fonts/tfm/public/lm/cs-lmro10.tfm + RELOC/fonts/tfm/public/lm/cs-lmro12.tfm + RELOC/fonts/tfm/public/lm/cs-lmro17.tfm + RELOC/fonts/tfm/public/lm/cs-lmro8.tfm + RELOC/fonts/tfm/public/lm/cs-lmro9.tfm + RELOC/fonts/tfm/public/lm/cs-lmss10.tfm + RELOC/fonts/tfm/public/lm/cs-lmss12.tfm + RELOC/fonts/tfm/public/lm/cs-lmss17.tfm + RELOC/fonts/tfm/public/lm/cs-lmss8.tfm + RELOC/fonts/tfm/public/lm/cs-lmss9.tfm + RELOC/fonts/tfm/public/lm/cs-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/cs-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/cs-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso10.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso12.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso17.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso8.tfm + RELOC/fonts/tfm/public/lm/cs-lmsso9.tfm + RELOC/fonts/tfm/public/lm/cs-lmssq8.tfm + RELOC/fonts/tfm/public/lm/cs-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/cs-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/cs-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/cs-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtk10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtko10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtl10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtt10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtt12.tfm + RELOC/fonts/tfm/public/lm/cs-lmtt8.tfm + RELOC/fonts/tfm/public/lm/cs-lmtt9.tfm + RELOC/fonts/tfm/public/lm/cs-lmtti10.tfm + RELOC/fonts/tfm/public/lm/cs-lmtto10.tfm + RELOC/fonts/tfm/public/lm/cs-lmu10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/cs-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/ec-lmb10.tfm + RELOC/fonts/tfm/public/lm/ec-lmbo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx10.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx12.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx5.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx6.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx7.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx8.tfm + RELOC/fonts/tfm/public/lm/ec-lmbx9.tfm + RELOC/fonts/tfm/public/lm/ec-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/ec-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/ec-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/ec-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/ec-lmduno10.tfm + RELOC/fonts/tfm/public/lm/ec-lmr10.tfm + RELOC/fonts/tfm/public/lm/ec-lmr12.tfm + RELOC/fonts/tfm/public/lm/ec-lmr17.tfm + RELOC/fonts/tfm/public/lm/ec-lmr5.tfm + RELOC/fonts/tfm/public/lm/ec-lmr6.tfm + RELOC/fonts/tfm/public/lm/ec-lmr7.tfm + RELOC/fonts/tfm/public/lm/ec-lmr8.tfm + RELOC/fonts/tfm/public/lm/ec-lmr9.tfm + RELOC/fonts/tfm/public/lm/ec-lmri10.tfm + RELOC/fonts/tfm/public/lm/ec-lmri12.tfm + RELOC/fonts/tfm/public/lm/ec-lmri7.tfm + RELOC/fonts/tfm/public/lm/ec-lmri8.tfm + RELOC/fonts/tfm/public/lm/ec-lmri9.tfm + RELOC/fonts/tfm/public/lm/ec-lmro10.tfm + RELOC/fonts/tfm/public/lm/ec-lmro12.tfm + RELOC/fonts/tfm/public/lm/ec-lmro17.tfm + RELOC/fonts/tfm/public/lm/ec-lmro8.tfm + RELOC/fonts/tfm/public/lm/ec-lmro9.tfm + RELOC/fonts/tfm/public/lm/ec-lmss10.tfm + RELOC/fonts/tfm/public/lm/ec-lmss12.tfm + RELOC/fonts/tfm/public/lm/ec-lmss17.tfm + RELOC/fonts/tfm/public/lm/ec-lmss8.tfm + RELOC/fonts/tfm/public/lm/ec-lmss9.tfm + RELOC/fonts/tfm/public/lm/ec-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/ec-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/ec-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso10.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso12.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso17.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso8.tfm + RELOC/fonts/tfm/public/lm/ec-lmsso9.tfm + RELOC/fonts/tfm/public/lm/ec-lmssq8.tfm + RELOC/fonts/tfm/public/lm/ec-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/ec-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/ec-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/ec-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtk10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtko10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtl10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtt10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtt12.tfm + RELOC/fonts/tfm/public/lm/ec-lmtt8.tfm + RELOC/fonts/tfm/public/lm/ec-lmtt9.tfm + RELOC/fonts/tfm/public/lm/ec-lmtti10.tfm + RELOC/fonts/tfm/public/lm/ec-lmtto10.tfm + RELOC/fonts/tfm/public/lm/ec-lmu10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/ec-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmb10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx5.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx6.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx7.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbx9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmduno10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr17.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr5.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr6.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr7.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmr9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri7.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmri9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro17.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmro9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss17.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmss9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso17.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmsso9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssq8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtk10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtko10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtl10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtt10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtt12.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtt8.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtt9.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtti10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmtto10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmu10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/l7x-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/lmbsy10.tfm + RELOC/fonts/tfm/public/lm/lmbsy5.tfm + RELOC/fonts/tfm/public/lm/lmbsy7.tfm + RELOC/fonts/tfm/public/lm/lmex10.tfm + RELOC/fonts/tfm/public/lm/lmmi10.tfm + RELOC/fonts/tfm/public/lm/lmmi12.tfm + RELOC/fonts/tfm/public/lm/lmmi5.tfm + RELOC/fonts/tfm/public/lm/lmmi6.tfm + RELOC/fonts/tfm/public/lm/lmmi7.tfm + RELOC/fonts/tfm/public/lm/lmmi8.tfm + RELOC/fonts/tfm/public/lm/lmmi9.tfm + RELOC/fonts/tfm/public/lm/lmmib10.tfm + RELOC/fonts/tfm/public/lm/lmmib5.tfm + RELOC/fonts/tfm/public/lm/lmmib7.tfm + RELOC/fonts/tfm/public/lm/lmsy10.tfm + RELOC/fonts/tfm/public/lm/lmsy5.tfm + RELOC/fonts/tfm/public/lm/lmsy6.tfm + RELOC/fonts/tfm/public/lm/lmsy7.tfm + RELOC/fonts/tfm/public/lm/lmsy8.tfm + RELOC/fonts/tfm/public/lm/lmsy9.tfm + RELOC/fonts/tfm/public/lm/qx-lmb10.tfm + RELOC/fonts/tfm/public/lm/qx-lmbo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx10.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx12.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx5.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx6.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx7.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx8.tfm + RELOC/fonts/tfm/public/lm/qx-lmbx9.tfm + RELOC/fonts/tfm/public/lm/qx-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/qx-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/qx-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/qx-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/qx-lmduno10.tfm + RELOC/fonts/tfm/public/lm/qx-lmr10.tfm + RELOC/fonts/tfm/public/lm/qx-lmr12.tfm + RELOC/fonts/tfm/public/lm/qx-lmr17.tfm + RELOC/fonts/tfm/public/lm/qx-lmr5.tfm + RELOC/fonts/tfm/public/lm/qx-lmr6.tfm + RELOC/fonts/tfm/public/lm/qx-lmr7.tfm + RELOC/fonts/tfm/public/lm/qx-lmr8.tfm + RELOC/fonts/tfm/public/lm/qx-lmr9.tfm + RELOC/fonts/tfm/public/lm/qx-lmri10.tfm + RELOC/fonts/tfm/public/lm/qx-lmri12.tfm + RELOC/fonts/tfm/public/lm/qx-lmri7.tfm + RELOC/fonts/tfm/public/lm/qx-lmri8.tfm + RELOC/fonts/tfm/public/lm/qx-lmri9.tfm + RELOC/fonts/tfm/public/lm/qx-lmro10.tfm + RELOC/fonts/tfm/public/lm/qx-lmro12.tfm + RELOC/fonts/tfm/public/lm/qx-lmro17.tfm + RELOC/fonts/tfm/public/lm/qx-lmro8.tfm + RELOC/fonts/tfm/public/lm/qx-lmro9.tfm + RELOC/fonts/tfm/public/lm/qx-lmss10.tfm + RELOC/fonts/tfm/public/lm/qx-lmss12.tfm + RELOC/fonts/tfm/public/lm/qx-lmss17.tfm + RELOC/fonts/tfm/public/lm/qx-lmss8.tfm + RELOC/fonts/tfm/public/lm/qx-lmss9.tfm + RELOC/fonts/tfm/public/lm/qx-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/qx-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/qx-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso10.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso12.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso17.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso8.tfm + RELOC/fonts/tfm/public/lm/qx-lmsso9.tfm + RELOC/fonts/tfm/public/lm/qx-lmssq8.tfm + RELOC/fonts/tfm/public/lm/qx-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/qx-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/qx-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/qx-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtk10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtko10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtl10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtt10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtt12.tfm + RELOC/fonts/tfm/public/lm/qx-lmtt8.tfm + RELOC/fonts/tfm/public/lm/qx-lmtt9.tfm + RELOC/fonts/tfm/public/lm/qx-lmtti10.tfm + RELOC/fonts/tfm/public/lm/qx-lmtto10.tfm + RELOC/fonts/tfm/public/lm/qx-lmu10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/qx-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/rm-lmb10.tfm + RELOC/fonts/tfm/public/lm/rm-lmbo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx10.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx12.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx5.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx6.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx7.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx8.tfm + RELOC/fonts/tfm/public/lm/rm-lmbx9.tfm + RELOC/fonts/tfm/public/lm/rm-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/rm-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/rm-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/rm-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/rm-lmduno10.tfm + RELOC/fonts/tfm/public/lm/rm-lmr10.tfm + RELOC/fonts/tfm/public/lm/rm-lmr12.tfm + RELOC/fonts/tfm/public/lm/rm-lmr17.tfm + RELOC/fonts/tfm/public/lm/rm-lmr5.tfm + RELOC/fonts/tfm/public/lm/rm-lmr6.tfm + RELOC/fonts/tfm/public/lm/rm-lmr7.tfm + RELOC/fonts/tfm/public/lm/rm-lmr8.tfm + RELOC/fonts/tfm/public/lm/rm-lmr9.tfm + RELOC/fonts/tfm/public/lm/rm-lmri10.tfm + RELOC/fonts/tfm/public/lm/rm-lmri12.tfm + RELOC/fonts/tfm/public/lm/rm-lmri7.tfm + RELOC/fonts/tfm/public/lm/rm-lmri8.tfm + RELOC/fonts/tfm/public/lm/rm-lmri9.tfm + RELOC/fonts/tfm/public/lm/rm-lmro10.tfm + RELOC/fonts/tfm/public/lm/rm-lmro12.tfm + RELOC/fonts/tfm/public/lm/rm-lmro17.tfm + RELOC/fonts/tfm/public/lm/rm-lmro8.tfm + RELOC/fonts/tfm/public/lm/rm-lmro9.tfm + RELOC/fonts/tfm/public/lm/rm-lmss10.tfm + RELOC/fonts/tfm/public/lm/rm-lmss12.tfm + RELOC/fonts/tfm/public/lm/rm-lmss17.tfm + RELOC/fonts/tfm/public/lm/rm-lmss8.tfm + RELOC/fonts/tfm/public/lm/rm-lmss9.tfm + RELOC/fonts/tfm/public/lm/rm-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/rm-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/rm-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso10.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso12.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso17.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso8.tfm + RELOC/fonts/tfm/public/lm/rm-lmsso9.tfm + RELOC/fonts/tfm/public/lm/rm-lmssq8.tfm + RELOC/fonts/tfm/public/lm/rm-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/rm-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/rm-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/rm-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtk10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtko10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtl10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtt10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtt12.tfm + RELOC/fonts/tfm/public/lm/rm-lmtt8.tfm + RELOC/fonts/tfm/public/lm/rm-lmtt9.tfm + RELOC/fonts/tfm/public/lm/rm-lmtti10.tfm + RELOC/fonts/tfm/public/lm/rm-lmtto10.tfm + RELOC/fonts/tfm/public/lm/rm-lmu10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/rm-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/t5-lmb10.tfm + RELOC/fonts/tfm/public/lm/t5-lmbo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx10.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx12.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx5.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx6.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx7.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx8.tfm + RELOC/fonts/tfm/public/lm/t5-lmbx9.tfm + RELOC/fonts/tfm/public/lm/t5-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/t5-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/t5-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/t5-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/t5-lmduno10.tfm + RELOC/fonts/tfm/public/lm/t5-lmr10.tfm + RELOC/fonts/tfm/public/lm/t5-lmr12.tfm + RELOC/fonts/tfm/public/lm/t5-lmr17.tfm + RELOC/fonts/tfm/public/lm/t5-lmr5.tfm + RELOC/fonts/tfm/public/lm/t5-lmr6.tfm + RELOC/fonts/tfm/public/lm/t5-lmr7.tfm + RELOC/fonts/tfm/public/lm/t5-lmr8.tfm + RELOC/fonts/tfm/public/lm/t5-lmr9.tfm + RELOC/fonts/tfm/public/lm/t5-lmri10.tfm + RELOC/fonts/tfm/public/lm/t5-lmri12.tfm + RELOC/fonts/tfm/public/lm/t5-lmri7.tfm + RELOC/fonts/tfm/public/lm/t5-lmri8.tfm + RELOC/fonts/tfm/public/lm/t5-lmri9.tfm + RELOC/fonts/tfm/public/lm/t5-lmro10.tfm + RELOC/fonts/tfm/public/lm/t5-lmro12.tfm + RELOC/fonts/tfm/public/lm/t5-lmro17.tfm + RELOC/fonts/tfm/public/lm/t5-lmro8.tfm + RELOC/fonts/tfm/public/lm/t5-lmro9.tfm + RELOC/fonts/tfm/public/lm/t5-lmss10.tfm + RELOC/fonts/tfm/public/lm/t5-lmss12.tfm + RELOC/fonts/tfm/public/lm/t5-lmss17.tfm + RELOC/fonts/tfm/public/lm/t5-lmss8.tfm + RELOC/fonts/tfm/public/lm/t5-lmss9.tfm + RELOC/fonts/tfm/public/lm/t5-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/t5-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/t5-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso10.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso12.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso17.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso8.tfm + RELOC/fonts/tfm/public/lm/t5-lmsso9.tfm + RELOC/fonts/tfm/public/lm/t5-lmssq8.tfm + RELOC/fonts/tfm/public/lm/t5-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/t5-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/t5-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/t5-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtk10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtko10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtl10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtt10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtt12.tfm + RELOC/fonts/tfm/public/lm/t5-lmtt8.tfm + RELOC/fonts/tfm/public/lm/t5-lmtt9.tfm + RELOC/fonts/tfm/public/lm/t5-lmtti10.tfm + RELOC/fonts/tfm/public/lm/t5-lmtto10.tfm + RELOC/fonts/tfm/public/lm/t5-lmu10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/t5-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmb10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx5.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx6.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx7.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbx9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmduno10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr17.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr5.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr6.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr7.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmr9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri7.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmri9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro17.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmro9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss17.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmss9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso17.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmsso9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssq8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtk10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtko10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtl10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtt10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtt12.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtt8.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtt9.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtti10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmtto10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmu10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/texnansi-lmvtto10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmb10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx5.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx6.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx7.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbx9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbxi10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmbxo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmcsc10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmcsco10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmdunh10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmduno10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr17.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr5.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr6.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr7.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmr9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri7.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmri9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro17.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmro9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss17.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmss9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssbo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssbx10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssdc10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssdo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso17.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmsso9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssq8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssqbo8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssqbx8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmssqo8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtcsc10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtcso10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtk10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtko10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtl10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtlc10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtlco10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtlo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtt10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtt12.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtt8.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtt9.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtti10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmtto10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmu10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtk10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtko10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtl10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtlo10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtt10.tfm + RELOC/fonts/tfm/public/lm/ts1-lmvtto10.tfm + RELOC/fonts/type1/public/lm/lmb10.pfb + RELOC/fonts/type1/public/lm/lmb10.pfm + RELOC/fonts/type1/public/lm/lmbo10.pfb + RELOC/fonts/type1/public/lm/lmbo10.pfm + RELOC/fonts/type1/public/lm/lmbsy10.pfb + RELOC/fonts/type1/public/lm/lmbsy10.pfm + RELOC/fonts/type1/public/lm/lmbsy5.pfb + RELOC/fonts/type1/public/lm/lmbsy5.pfm + RELOC/fonts/type1/public/lm/lmbsy7.pfb + RELOC/fonts/type1/public/lm/lmbsy7.pfm + RELOC/fonts/type1/public/lm/lmbx10.pfb + RELOC/fonts/type1/public/lm/lmbx10.pfm + RELOC/fonts/type1/public/lm/lmbx12.pfb + RELOC/fonts/type1/public/lm/lmbx12.pfm + RELOC/fonts/type1/public/lm/lmbx5.pfb + RELOC/fonts/type1/public/lm/lmbx5.pfm + RELOC/fonts/type1/public/lm/lmbx6.pfb + RELOC/fonts/type1/public/lm/lmbx6.pfm + RELOC/fonts/type1/public/lm/lmbx7.pfb + RELOC/fonts/type1/public/lm/lmbx7.pfm + RELOC/fonts/type1/public/lm/lmbx8.pfb + RELOC/fonts/type1/public/lm/lmbx8.pfm + RELOC/fonts/type1/public/lm/lmbx9.pfb + RELOC/fonts/type1/public/lm/lmbx9.pfm + RELOC/fonts/type1/public/lm/lmbxi10.pfb + RELOC/fonts/type1/public/lm/lmbxi10.pfm + RELOC/fonts/type1/public/lm/lmbxo10.pfb + RELOC/fonts/type1/public/lm/lmbxo10.pfm + RELOC/fonts/type1/public/lm/lmcsc10.pfb + RELOC/fonts/type1/public/lm/lmcsc10.pfm + RELOC/fonts/type1/public/lm/lmcsco10.pfb + RELOC/fonts/type1/public/lm/lmcsco10.pfm + RELOC/fonts/type1/public/lm/lmdunh10.pfb + RELOC/fonts/type1/public/lm/lmdunh10.pfm + RELOC/fonts/type1/public/lm/lmduno10.pfb + RELOC/fonts/type1/public/lm/lmduno10.pfm + RELOC/fonts/type1/public/lm/lmex10.pfb + RELOC/fonts/type1/public/lm/lmex10.pfm + RELOC/fonts/type1/public/lm/lmmi10.pfb + RELOC/fonts/type1/public/lm/lmmi10.pfm + RELOC/fonts/type1/public/lm/lmmi12.pfb + RELOC/fonts/type1/public/lm/lmmi12.pfm + RELOC/fonts/type1/public/lm/lmmi5.pfb + RELOC/fonts/type1/public/lm/lmmi5.pfm + RELOC/fonts/type1/public/lm/lmmi6.pfb + RELOC/fonts/type1/public/lm/lmmi6.pfm + RELOC/fonts/type1/public/lm/lmmi7.pfb + RELOC/fonts/type1/public/lm/lmmi7.pfm + RELOC/fonts/type1/public/lm/lmmi8.pfb + RELOC/fonts/type1/public/lm/lmmi8.pfm + RELOC/fonts/type1/public/lm/lmmi9.pfb + RELOC/fonts/type1/public/lm/lmmi9.pfm + RELOC/fonts/type1/public/lm/lmmib10.pfb + RELOC/fonts/type1/public/lm/lmmib10.pfm + RELOC/fonts/type1/public/lm/lmmib5.pfb + RELOC/fonts/type1/public/lm/lmmib5.pfm + RELOC/fonts/type1/public/lm/lmmib7.pfb + RELOC/fonts/type1/public/lm/lmmib7.pfm + RELOC/fonts/type1/public/lm/lmr10.pfb + RELOC/fonts/type1/public/lm/lmr10.pfm + RELOC/fonts/type1/public/lm/lmr12.pfb + RELOC/fonts/type1/public/lm/lmr12.pfm + RELOC/fonts/type1/public/lm/lmr17.pfb + RELOC/fonts/type1/public/lm/lmr17.pfm + RELOC/fonts/type1/public/lm/lmr5.pfb + RELOC/fonts/type1/public/lm/lmr5.pfm + RELOC/fonts/type1/public/lm/lmr6.pfb + RELOC/fonts/type1/public/lm/lmr6.pfm + RELOC/fonts/type1/public/lm/lmr7.pfb + RELOC/fonts/type1/public/lm/lmr7.pfm + RELOC/fonts/type1/public/lm/lmr8.pfb + RELOC/fonts/type1/public/lm/lmr8.pfm + RELOC/fonts/type1/public/lm/lmr9.pfb + RELOC/fonts/type1/public/lm/lmr9.pfm + RELOC/fonts/type1/public/lm/lmri10.pfb + RELOC/fonts/type1/public/lm/lmri10.pfm + RELOC/fonts/type1/public/lm/lmri12.pfb + RELOC/fonts/type1/public/lm/lmri12.pfm + RELOC/fonts/type1/public/lm/lmri7.pfb + RELOC/fonts/type1/public/lm/lmri7.pfm + RELOC/fonts/type1/public/lm/lmri8.pfb + RELOC/fonts/type1/public/lm/lmri8.pfm + RELOC/fonts/type1/public/lm/lmri9.pfb + RELOC/fonts/type1/public/lm/lmri9.pfm + RELOC/fonts/type1/public/lm/lmro10.pfb + RELOC/fonts/type1/public/lm/lmro10.pfm + RELOC/fonts/type1/public/lm/lmro12.pfb + RELOC/fonts/type1/public/lm/lmro12.pfm + RELOC/fonts/type1/public/lm/lmro17.pfb + RELOC/fonts/type1/public/lm/lmro17.pfm + RELOC/fonts/type1/public/lm/lmro8.pfb + RELOC/fonts/type1/public/lm/lmro8.pfm + RELOC/fonts/type1/public/lm/lmro9.pfb + RELOC/fonts/type1/public/lm/lmro9.pfm + RELOC/fonts/type1/public/lm/lmss10.pfb + RELOC/fonts/type1/public/lm/lmss10.pfm + RELOC/fonts/type1/public/lm/lmss12.pfb + RELOC/fonts/type1/public/lm/lmss12.pfm + RELOC/fonts/type1/public/lm/lmss17.pfb + RELOC/fonts/type1/public/lm/lmss17.pfm + RELOC/fonts/type1/public/lm/lmss8.pfb + RELOC/fonts/type1/public/lm/lmss8.pfm + RELOC/fonts/type1/public/lm/lmss9.pfb + RELOC/fonts/type1/public/lm/lmss9.pfm + RELOC/fonts/type1/public/lm/lmssbo10.pfb + RELOC/fonts/type1/public/lm/lmssbo10.pfm + RELOC/fonts/type1/public/lm/lmssbx10.pfb + RELOC/fonts/type1/public/lm/lmssbx10.pfm + RELOC/fonts/type1/public/lm/lmssdc10.pfb + RELOC/fonts/type1/public/lm/lmssdc10.pfm + RELOC/fonts/type1/public/lm/lmssdo10.pfb + RELOC/fonts/type1/public/lm/lmssdo10.pfm + RELOC/fonts/type1/public/lm/lmsso10.pfb + RELOC/fonts/type1/public/lm/lmsso10.pfm + RELOC/fonts/type1/public/lm/lmsso12.pfb + RELOC/fonts/type1/public/lm/lmsso12.pfm + RELOC/fonts/type1/public/lm/lmsso17.pfb + RELOC/fonts/type1/public/lm/lmsso17.pfm + RELOC/fonts/type1/public/lm/lmsso8.pfb + RELOC/fonts/type1/public/lm/lmsso8.pfm + RELOC/fonts/type1/public/lm/lmsso9.pfb + RELOC/fonts/type1/public/lm/lmsso9.pfm + RELOC/fonts/type1/public/lm/lmssq8.pfb + RELOC/fonts/type1/public/lm/lmssq8.pfm + RELOC/fonts/type1/public/lm/lmssqbo8.pfb + RELOC/fonts/type1/public/lm/lmssqbo8.pfm + RELOC/fonts/type1/public/lm/lmssqbx8.pfb + RELOC/fonts/type1/public/lm/lmssqbx8.pfm + RELOC/fonts/type1/public/lm/lmssqo8.pfb + RELOC/fonts/type1/public/lm/lmssqo8.pfm + RELOC/fonts/type1/public/lm/lmsy10.pfb + RELOC/fonts/type1/public/lm/lmsy10.pfm + RELOC/fonts/type1/public/lm/lmsy5.pfb + RELOC/fonts/type1/public/lm/lmsy5.pfm + RELOC/fonts/type1/public/lm/lmsy6.pfb + RELOC/fonts/type1/public/lm/lmsy6.pfm + RELOC/fonts/type1/public/lm/lmsy7.pfb + RELOC/fonts/type1/public/lm/lmsy7.pfm + RELOC/fonts/type1/public/lm/lmsy8.pfb + RELOC/fonts/type1/public/lm/lmsy8.pfm + RELOC/fonts/type1/public/lm/lmsy9.pfb + RELOC/fonts/type1/public/lm/lmsy9.pfm + RELOC/fonts/type1/public/lm/lmtcsc10.pfb + RELOC/fonts/type1/public/lm/lmtcsc10.pfm + RELOC/fonts/type1/public/lm/lmtcso10.pfb + RELOC/fonts/type1/public/lm/lmtcso10.pfm + RELOC/fonts/type1/public/lm/lmtk10.pfb + RELOC/fonts/type1/public/lm/lmtk10.pfm + RELOC/fonts/type1/public/lm/lmtko10.pfb + RELOC/fonts/type1/public/lm/lmtko10.pfm + RELOC/fonts/type1/public/lm/lmtl10.pfb + RELOC/fonts/type1/public/lm/lmtl10.pfm + RELOC/fonts/type1/public/lm/lmtlc10.pfb + RELOC/fonts/type1/public/lm/lmtlc10.pfm + RELOC/fonts/type1/public/lm/lmtlco10.pfb + RELOC/fonts/type1/public/lm/lmtlco10.pfm + RELOC/fonts/type1/public/lm/lmtlo10.pfb + RELOC/fonts/type1/public/lm/lmtlo10.pfm + RELOC/fonts/type1/public/lm/lmtt10.pfb + RELOC/fonts/type1/public/lm/lmtt10.pfm + RELOC/fonts/type1/public/lm/lmtt12.pfb + RELOC/fonts/type1/public/lm/lmtt12.pfm + RELOC/fonts/type1/public/lm/lmtt8.pfb + RELOC/fonts/type1/public/lm/lmtt8.pfm + RELOC/fonts/type1/public/lm/lmtt9.pfb + RELOC/fonts/type1/public/lm/lmtt9.pfm + RELOC/fonts/type1/public/lm/lmtti10.pfb + RELOC/fonts/type1/public/lm/lmtti10.pfm + RELOC/fonts/type1/public/lm/lmtto10.pfb + RELOC/fonts/type1/public/lm/lmtto10.pfm + RELOC/fonts/type1/public/lm/lmu10.pfb + RELOC/fonts/type1/public/lm/lmu10.pfm + RELOC/fonts/type1/public/lm/lmvtk10.pfb + RELOC/fonts/type1/public/lm/lmvtk10.pfm + RELOC/fonts/type1/public/lm/lmvtko10.pfb + RELOC/fonts/type1/public/lm/lmvtko10.pfm + RELOC/fonts/type1/public/lm/lmvtl10.pfb + RELOC/fonts/type1/public/lm/lmvtl10.pfm + RELOC/fonts/type1/public/lm/lmvtlo10.pfb + RELOC/fonts/type1/public/lm/lmvtlo10.pfm + RELOC/fonts/type1/public/lm/lmvtt10.pfb + RELOC/fonts/type1/public/lm/lmvtt10.pfm + RELOC/fonts/type1/public/lm/lmvtto10.pfb + RELOC/fonts/type1/public/lm/lmvtto10.pfm + RELOC/tex/latex/lm/il2lmdh.fd + RELOC/tex/latex/lm/il2lmr.fd + RELOC/tex/latex/lm/il2lmss.fd + RELOC/tex/latex/lm/il2lmssq.fd + RELOC/tex/latex/lm/il2lmtt.fd + RELOC/tex/latex/lm/il2lmvtt.fd + RELOC/tex/latex/lm/l7xlmdh.fd + RELOC/tex/latex/lm/l7xlmr.fd + RELOC/tex/latex/lm/l7xlmss.fd + RELOC/tex/latex/lm/l7xlmssq.fd + RELOC/tex/latex/lm/l7xlmtt.fd + RELOC/tex/latex/lm/l7xlmvtt.fd + RELOC/tex/latex/lm/lmodern.sty + RELOC/tex/latex/lm/ly1lmdh.fd + RELOC/tex/latex/lm/ly1lmr.fd + RELOC/tex/latex/lm/ly1lmss.fd + RELOC/tex/latex/lm/ly1lmssq.fd + RELOC/tex/latex/lm/ly1lmtt.fd + RELOC/tex/latex/lm/ly1lmvtt.fd + RELOC/tex/latex/lm/omllmm.fd + RELOC/tex/latex/lm/omllmr.fd + RELOC/tex/latex/lm/omslmr.fd + RELOC/tex/latex/lm/omslmsy.fd + RELOC/tex/latex/lm/omxlmex.fd + RELOC/tex/latex/lm/ot1lmdh.fd + RELOC/tex/latex/lm/ot1lmr.fd + RELOC/tex/latex/lm/ot1lmss.fd + RELOC/tex/latex/lm/ot1lmssq.fd + RELOC/tex/latex/lm/ot1lmtt.fd + RELOC/tex/latex/lm/ot1lmvtt.fd + RELOC/tex/latex/lm/ot4lmdh.fd + RELOC/tex/latex/lm/ot4lmr.fd + RELOC/tex/latex/lm/ot4lmss.fd + RELOC/tex/latex/lm/ot4lmssq.fd + RELOC/tex/latex/lm/ot4lmtt.fd + RELOC/tex/latex/lm/ot4lmvtt.fd + RELOC/tex/latex/lm/qxlmdh.fd + RELOC/tex/latex/lm/qxlmr.fd + RELOC/tex/latex/lm/qxlmss.fd + RELOC/tex/latex/lm/qxlmssq.fd + RELOC/tex/latex/lm/qxlmtt.fd + RELOC/tex/latex/lm/qxlmvtt.fd + RELOC/tex/latex/lm/t1lmdh.fd + RELOC/tex/latex/lm/t1lmr.fd + RELOC/tex/latex/lm/t1lmss.fd + RELOC/tex/latex/lm/t1lmssq.fd + RELOC/tex/latex/lm/t1lmtt.fd + RELOC/tex/latex/lm/t1lmvtt.fd + RELOC/tex/latex/lm/t5lmdh.fd + RELOC/tex/latex/lm/t5lmr.fd + RELOC/tex/latex/lm/t5lmss.fd + RELOC/tex/latex/lm/t5lmssq.fd + RELOC/tex/latex/lm/t5lmtt.fd + RELOC/tex/latex/lm/t5lmvtt.fd + RELOC/tex/latex/lm/ts1lmdh.fd + RELOC/tex/latex/lm/ts1lmr.fd + RELOC/tex/latex/lm/ts1lmss.fd + RELOC/tex/latex/lm/ts1lmssq.fd + RELOC/tex/latex/lm/ts1lmtt.fd + RELOC/tex/latex/lm/ts1lmvtt.fd +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-ctan /fonts/lm +catalogue-date 2014-07-11 15:31:42 +0200 +catalogue-license gfsl +catalogue-version 2.004 + +name lobster2 +category Package +revision 32617 +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 +runfiles size=577 + RELOC/fonts/enc/dvips/lobster2/lbst2_2vl4dw.enc + RELOC/fonts/enc/dvips/lobster2/lbst2_5uiiua.enc + RELOC/fonts/enc/dvips/lobster2/lbst2_lyobxw.enc + RELOC/fonts/enc/dvips/lobster2/lbst2_xn7u5r.enc + RELOC/fonts/map/dvips/lobster2/LobsterTwo.map + RELOC/fonts/opentype/impallari/lobster2/LobsterTwo-Bold.otf + RELOC/fonts/opentype/impallari/lobster2/LobsterTwo-BoldItalic.otf + RELOC/fonts/opentype/impallari/lobster2/LobsterTwo-Italic.otf + RELOC/fonts/opentype/impallari/lobster2/LobsterTwo-Regular.otf + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ly1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ot1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-t1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Bold-lf-ts1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ly1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ot1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-t1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-Italic-lf-ts1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ly1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ly1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ot1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ot1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-t1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-t1.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ts1--base.tfm + RELOC/fonts/tfm/impallari/lobster2/LobsterTwo-lf-ts1.tfm + RELOC/fonts/truetype/impallari/lobster2/LobsterTwo-Bold.ttf + RELOC/fonts/truetype/impallari/lobster2/LobsterTwo-BoldItalic.ttf + RELOC/fonts/truetype/impallari/lobster2/LobsterTwo-Italic.ttf + RELOC/fonts/truetype/impallari/lobster2/LobsterTwo-Regular.ttf + RELOC/fonts/type1/impallari/lobster2/LobsterTwo-Bold.pfb + RELOC/fonts/type1/impallari/lobster2/LobsterTwo-BoldItalic.pfb + RELOC/fonts/type1/impallari/lobster2/LobsterTwo-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/impallari/lobster2/LobsterTwo-BoldLCDFJ.pfb + RELOC/fonts/type1/impallari/lobster2/LobsterTwo-Italic.pfb + RELOC/fonts/type1/impallari/lobster2/LobsterTwo-ItalicLCDFJ.pfb + RELOC/fonts/type1/impallari/lobster2/LobsterTwo.pfb + RELOC/fonts/type1/impallari/lobster2/LobsterTwoLCDFJ.pfb + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-Bold-lf-ly1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-Bold-lf-ot1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-Bold-lf-t1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-Bold-lf-ts1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-BoldItalic-lf-t1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-Italic-lf-ly1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-Italic-lf-ot1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-Italic-lf-t1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-Italic-lf-ts1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-lf-ly1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-lf-ot1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-lf-t1.vf + RELOC/fonts/vf/impallari/lobster2/LobsterTwo-lf-ts1.vf + RELOC/tex/latex/lobster2/LY1LobsterTwo-LF.fd + RELOC/tex/latex/lobster2/LobsterTwo.sty + 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-ctan /fonts/lobster2 +catalogue-date 2015-01-20 20:56:28 +0100 +catalogue-license ofl + +name locality +category Package +revision 20422 +shortdesc Various macros for keeping things local. +relocated 1 +longdesc A toolbox of macros designed to allow the LaTeX programmer to +longdesc work around some of the restrictions of the TeX grouping +longdesc mechanisms. The present release offers a preliminary view of +longdesc the package; not all of its facilities are working optimally +runfiles size=3 + RELOC/tex/latex/locality/locality.sty +docfiles size=48 + RELOC/doc/latex/locality/README + RELOC/doc/latex/locality/changes.txt + RELOC/doc/latex/locality/locality.pdf +srcfiles size=8 + RELOC/source/latex/locality/locality.dtx + RELOC/source/latex/locality/locality.ins +catalogue-ctan /macros/latex/contrib/locality +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name localloc +category Package +revision 21934 +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 +docfiles size=66 + RELOC/doc/latex/localloc/localloc.README + RELOC/doc/latex/localloc/localloc.pdf + RELOC/doc/latex/localloc/localtst.tex +srcfiles size=11 + RELOC/source/latex/localloc/localloc.drv + RELOC/source/latex/localloc/localloc.dtx +catalogue-ctan /macros/latex/contrib/localloc +catalogue-date 2012-07-16 18:45:50 +0200 +catalogue-license other-free + +name logbox +category Package +revision 24499 +shortdesc e-TeX showbox facilities for exploration purposes. +relocated 1 +longdesc The command \logbox does \showbox without stopping the +longdesc compilation. The package's main command is \viewbox*: the box +longdesc is typeset (copied) with its dimensions, and its contents are +longdesc logged in the .log file. +runfiles size=1 + RELOC/tex/latex/logbox/logbox.sty +docfiles size=160 + RELOC/doc/latex/logbox/README + RELOC/doc/latex/logbox/logbox.pdf + RELOC/doc/latex/logbox/logbox.png +srcfiles size=8 + RELOC/source/latex/logbox/logbox.drv + RELOC/source/latex/logbox/logbox.dtx + RELOC/source/latex/logbox/logbox.ins +catalogue-ctan /macros/latex/contrib/logbox +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name logical-markup-utils +category Package +revision 15878 +shortdesc Packages for language-dependent inline quotes and dashes. +relocated 1 +longdesc The bundle contains two packages: quoted, for inserting +longdesc quotation marks; and onedash, for inserting dashes. Each +longdesc package takes a language name as an option; accepted language +longdesc options are american, british, german and polish. +runfiles size=2 + RELOC/tex/latex/logical-markup-utils/onedash.sty + RELOC/tex/latex/logical-markup-utils/quoted.sty +docfiles size=11 + RELOC/doc/latex/logical-markup-utils/COPYING + RELOC/doc/latex/logical-markup-utils/README + RELOC/doc/latex/logical-markup-utils/TODO +catalogue-ctan /macros/latex/contrib/logical-markup-utils +catalogue-date 2014-10-19 22:42:06 +0200 +catalogue-license gpl3 + +name logicproof +category Package +revision 33254 +shortdesc Box proofs for propositional and predicate logic. +relocated 1 +longdesc A common style of proof used in propositional and predicate +longdesc logic is Fitch proofs, in which each line of the proof has a +longdesc statement and a justification, and subproofs within a larger +longdesc proof have boxes around them. The package provides environments +longdesc for typesetting such proofs and boxes. It creates proofs in a +longdesc style similar to that used in "Logic in Computer Science" by +longdesc Huth and Ryan. +runfiles size=2 + RELOC/tex/latex/logicproof/logicproof.sty +docfiles size=15 + RELOC/doc/latex/logicproof/README + RELOC/doc/latex/logicproof/logicproof.pdf +srcfiles size=8 + RELOC/source/latex/logicproof/logicproof.dtx + RELOC/source/latex/logicproof/logicproof.ins +catalogue-ctan /macros/latex/contrib/logicproof +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl1.3 + +name logicpuzzle +category Package +revision 34491 +shortdesc Typeset (grid-based) logic puzzles. +relocated 1 +longdesc The package allows the user to typeset various logic puzzles. +longdesc At the moment the following puzzles are supported: 2D-Sudoku +longdesc (aka Magiequadrat, Diagon, ...), Battleship (aka Bimaru, +longdesc Marinespiel, Batalla Naval, ...), Bokkusu (aka Kakurasu, +longdesc Feldersummenratsel, ...), Bridges (akak Bruckenbau, Hashi, +longdesc ...), Chaos Sudoku, Four Winds (aka Eminent Domain, +longdesc Lichtstrahl, ...), Hakyuu (aka Seismic, Ripple Effect, ...), +longdesc Hitori, Kakuro, Kendoku (aka Mathdoku, Calcudoku, Basic, +longdesc MiniPlu, Ken Ken, Square Wisdom, Sukendo, Caldoku, ..., Killer +longdesc Sudoku (aka Samunapure, Sum Number Place, Sumdoku, +longdesc Gebietssummen, ...), Laser Beam (aka Laserstrahl, ...), Magic +longdesc Labyrinth (aka Magic Spiral, Magisches Labyrinth, ...), Magnets +longdesc (aka Magnetplatte, Magnetfeld, ...), Masyu (aka Mashi, +longdesc {White|Black} Pearls, ...), Minesweeper (aka Minensuche, ...), +longdesc Nonogram (aka Griddlers, Hanjie, Tsunami, Logic Art, Logimage, +longdesc ...), Number Link (aka Alphabet Link, Arukone, Buchstabenbund, +longdesc ...), Resuko, Schatzsuche, Skyline (aka Skycrapers, +longdesc Wolkenkratzer, Hochhauser, ...), including Skyline Sudoku and +longdesc Skyline Sudoku (N*N) variants, Slitherlink (aka Fences, Number +longdesc Line, Dotty Dilemma, Sli-Lin, Takegaki, Great Wall of China, +longdesc Loop the Loop, Rundweg, Gartenzaun, ...), Star Battle (aka +longdesc Sternenschlacht, ...), Stars and Arrows (aka Sternenhimmel, +longdesc ...), Sudoku, Sun and Moon (aka Sternenhaufen, Munraito, ...), +longdesc Tents and Trees (aka Zeltlager, Zeltplatz, Camping, ...), and +longdesc Tunnel. +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-ctan /graphics/pgf/contrib/logicpuzzle +catalogue-date 2014-06-16 07:11:42 +0200 +catalogue-license lppl1.3 +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 +docfiles size=23 + RELOC/doc/latex/logpap/README + RELOC/doc/latex/logpap/example.pdf + RELOC/doc/latex/logpap/example.tex +srcfiles size=28 + RELOC/source/latex/logpap/logpap.dtx + RELOC/source/latex/logpap/logpap.ins +catalogue-ctan /macros/latex/contrib/logpap +catalogue-date 2012-07-17 13:06:42 +0200 +catalogue-license lppl +catalogue-version 0.6 + +name logreq +category Package +revision 19640 +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 +docfiles size=12 + RELOC/doc/latex/logreq/README + RELOC/doc/latex/logreq/examples/01-basic.run.xml + RELOC/doc/latex/logreq/examples/01-basic.tex + RELOC/doc/latex/logreq/examples/02-index.run.xml + RELOC/doc/latex/logreq/examples/02-index.tex + RELOC/doc/latex/logreq/examples/03-biblatex+bibtex8.run.xml + RELOC/doc/latex/logreq/examples/03-biblatex+bibtex8.tex + RELOC/doc/latex/logreq/examples/04-biblatex+bibtex+refsections.run.xml + RELOC/doc/latex/logreq/examples/04-biblatex+bibtex+refsections.tex + RELOC/doc/latex/logreq/examples/05-biblatex+biber.run.xml + RELOC/doc/latex/logreq/examples/05-biblatex+biber.tex +catalogue-ctan /macros/latex/contrib/logreq +catalogue-date 2014-10-17 21:54:02 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name lollipop +category Package +revision 33676 +shortdesc TeX made easy. +longdesc Lollipop is "TeX made easy" -- it is a macro package that +longdesc functions as a toolbox for writing TeX macros. Its main aim is +longdesc to make macro writing so easy that implementing a fully new +longdesc layout in TeX would become a matter of less than an hour for an +longdesc average document. The aim is that such a task could be +longdesc accomplished by someone with only a very basic training in TeX +longdesc programming. Thus, Lollipop aims to make structured text +longdesc formatting available in environments where typical users would +longdesc switch to WYSIWYG packages for the freedom that such a +longdesc mechanism offers. In addition, development of support for +longdesc Lollipop documents written in RTL languages (such as Persian) +longdesc is underway. +depend lollipop.ARCH +execute AddFormat name=lollipop engine=pdftex options="-translate-file=cp227.tcx *lollipop.ini" +execute AddFormat name=lualollipop engine=luatex options="lualollipop.ini" +execute AddFormat name=xelollipop engine=xetex options="-etex xelollipop.ini" +execute AddFormat name=dvilollipop mode=disabled engine=pdftex options="-translate-file=cp227.tcx *lollipop.ini" +execute AddFormat name=dvilualollipop mode=disabled engine=luatex options="-translate-file=cp227.tcx lualollipop.ini" +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 + texmf-dist/doc/otherformats/lollipop/manual/address.tex + texmf-dist/doc/otherformats/lollipop/manual/appendix.tex + texmf-dist/doc/otherformats/lollipop/manual/btxmac.tex + texmf-dist/doc/otherformats/lollipop/manual/comm.tex + texmf-dist/doc/otherformats/lollipop/manual/comment.tex + texmf-dist/doc/otherformats/lollipop/manual/example.tex + texmf-dist/doc/otherformats/lollipop/manual/extern.tex + texmf-dist/doc/otherformats/lollipop/manual/head.tex + texmf-dist/doc/otherformats/lollipop/manual/list.tex + texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.bib + texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.pdf + texmf-dist/doc/otherformats/lollipop/manual/lollipop-manual.tex + texmf-dist/doc/otherformats/lollipop/manual/mandefs.tex + texmf-dist/doc/otherformats/lollipop/manual/opt.tex + texmf-dist/doc/otherformats/lollipop/manual/out.tex + texmf-dist/doc/otherformats/lollipop/manual/prelim.tex + texmf-dist/doc/otherformats/lollipop/manual/struct.tex + texmf-dist/doc/otherformats/lollipop/manual/titlepag.tex + texmf-dist/doc/otherformats/lollipop/manual/trace.tex + texmf-dist/doc/otherformats/lollipop/tex-inde.xen +catalogue-ctan /macros/lollipop +catalogue-date 2014-09-06 10:36:15 +0200 +catalogue-license gpl3 +catalogue-version 1.03 + +name lollipop.i386-linux +category Package +revision 33658 +shortdesc i386-linux files of lollipop +binfiles arch=i386-linux size=3 + bin/i386-linux/lollipop + bin/i386-linux/lualollipop + bin/i386-linux/xelollipop + +name 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 +docfiles size=111 + RELOC/doc/latex/longfigure/README + RELOC/doc/latex/longfigure/longfigure.pdf +srcfiles size=8 + RELOC/source/latex/longfigure/longfigure.dtx + RELOC/source/latex/longfigure/longfigure.ins +catalogue-ctan /macros/latex/contrib/longfigure +catalogue-date 2014-06-26 11:21:29 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name longnamefilelist +category Package +revision 27889 +shortdesc Tidy \listfiles with long file names. +relocated 1 +longdesc The package equips LaTeX's \listfiles command with an optional +longdesc argument for the number of characters in the longest base +longdesc filename. This way you get a neatly aligned file list even when +longdesc it contains files whose base names have more than 8 characters. +longdesc The package can be combined with the myfilist package as +longdesc explained in the documentation. +runfiles size=2 + RELOC/tex/latex/longnamefilelist/longnamefilelist.sty +docfiles size=85 + RELOC/doc/latex/longnamefilelist/README + RELOC/doc/latex/longnamefilelist/SrcFILEs.txt + RELOC/doc/latex/longnamefilelist/longnamefilelist.pdf +srcfiles size=2 + RELOC/source/latex/longnamefilelist/longnamefilelist.tex + RELOC/source/latex/longnamefilelist/srcfiles.tex +catalogue-ctan /macros/latex/contrib/longnamefilelist +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name loops +category Package +revision 30704 +shortdesc General looping macros for use with LaTeX. +relocated 1 +longdesc The package provides efficient looping macros for processing +longdesc both csv (separated-values) and nsv/tsv (non-separated values) +longdesc lists. CSV lists which have associated parsers may be processed +longdesc with the tools of the package. +runfiles size=13 + RELOC/tex/latex/loops/loops.sty +docfiles size=8 + RELOC/doc/latex/loops/README + RELOC/doc/latex/loops/loops-pokayoke1.tex +catalogue-ctan /macros/latex/contrib/loops +catalogue-date 2014-09-23 18:36:08 +0200 +catalogue-license lppl1.3 +catalogue-version 1.3 + +name lpform +category Package +revision 36918 +shortdesc Typesetting linear programming formulations and sets of equations +relocated 1 +longdesc The package is designed to aid the author writing linear +longdesc programming formulations, one restriction at a time. With the +longdesc package, one can easily label equations, formulations can span +longdesc multiple pages and several elements of the layout (such as +longdesc spacing, texts and equation tags) are also customizable. +longdesc Besides linear programming formulations, this package can also +longdesc be used to display any series of aligned equations with easy +longdesc labeling/referencing and other customization options. +runfiles size=2 + RELOC/tex/generic/lpform/lpform.sty +docfiles size=74 + RELOC/doc/generic/lpform/README + RELOC/doc/generic/lpform/lpform-doc.pdf + RELOC/doc/generic/lpform/lpform-doc.tex +catalogue-ctan /macros/generic/lpform +catalogue-date 2015-04-18 17:41:05 +0200 +catalogue-license lppl + +name lpic +category Package +revision 20843 +shortdesc Put LaTeX material over included graphics. +relocated 1 +longdesc The package defines a convenient interface to put any LaTeX +longdesc material on top of included graphics. The LaTeX material may +longdesc also be rotated and typeset on top of a white box overshadowing +longdesc the graphics. The coordinates of the LaTeX boxes are given +longdesc relative to the original, unscaled graphics; when the graphics +longdesc is rescaled, the LaTeX annotations stay at their right places +longdesc (unless you do something extreme). In a draft mode, the package +longdesc enables you to draw a coordinate grid over the picture for easy +longdesc adjustment of positions of the annotations. +runfiles size=6 + RELOC/tex/latex/lpic/lpic.sty +docfiles size=36 + RELOC/doc/latex/lpic/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.tex +catalogue-ctan /macros/latex/contrib/lpic +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.8 + +name lplfitch +category Package +revision 31077 +shortdesc Fitch-style natural deduction proofs. +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 +docfiles size=57 + RELOC/doc/latex/lplfitch/README + RELOC/doc/latex/lplfitch/lplfitch.pdf +srcfiles size=8 + RELOC/source/latex/lplfitch/lplfitch.dtx + RELOC/source/latex/lplfitch/lplfitch.ins +catalogue-ctan /macros/latex/contrib/lplfitch +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.9 + +name lps +category Package +revision 21322 +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 +docfiles size=66 + RELOC/doc/latex/lps/README + RELOC/doc/latex/lps/lps.pdf + RELOC/doc/latex/lps/lpstemplate.tex +srcfiles size=7 + RELOC/source/latex/lps/lps.dtx + RELOC/source/latex/lps/lps.ins +catalogue-ctan /macros/latex/contrib/lps +catalogue-date 2014-10-11 08:59:27 +0200 +catalogue-license lppl +catalogue-version 0.7 + +name lsc +category Package +revision 15878 +shortdesc Typesetting Live Sequence Charts. +relocated 1 +longdesc This package is similar to the msc package in that it provides +longdesc macros for typesetting a variant of sequence diagrams, in this +longdesc case the Live Sequence Charts of Damm and Harel. The package +longdesc supports the full LSC language of the original LSC paper, the +longdesc Klose-extensions for formal verification and some of the Harel- +longdesc extensions for the Play-In/Play-Out approach (cf. the manual). +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-license lppl + +name lshort-bulgarian +category Package +revision 15878 +shortdesc Bulgarian translation of the "Short Introduction to LaTeX2e". +relocated 1 +longdesc The source files, PostScript and PDF files of the Bulgarian +longdesc translation of the "Short Introduction to LaTeX 2e". +docfiles size=639 + RELOC/doc/latex/lshort-bulgarian/README + RELOC/doc/latex/lshort-bulgarian/lshort-bg.pdf + 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-license pd + +name lshort-chinese +category Package +revision 15878 +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 + 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 +catalogue-ctan /info/lshort/chinese +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 4.20 + +name lshort-czech +category Package +revision 29803 +shortdesc Czech translation of the "Short Introduction to LaTeX2e". +relocated 1 +longdesc This is the Czech translation of "A Short Introduction to +longdesc LaTeX2e". +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/src/appendix.tex + RELOC/doc/latex/lshort-czech/src/biblio.tex + RELOC/doc/latex/lshort-czech/src/contrib.tex + RELOC/doc/latex/lshort-czech/src/custom.tex + RELOC/doc/latex/lshort-czech/src/fancyhea.sty + RELOC/doc/latex/lshort-czech/src/graphic.tex + RELOC/doc/latex/lshort-czech/src/lshort-base.tex + RELOC/doc/latex/lshort-czech/src/lshort-cs-a5.tex + RELOC/doc/latex/lshort-czech/src/lshort-cs.ind + RELOC/doc/latex/lshort-czech/src/lshort-cs.tex + RELOC/doc/latex/lshort-czech/src/lshort.ist + RELOC/doc/latex/lshort-czech/src/lshort.sty + RELOC/doc/latex/lshort-czech/src/lssym.tex + RELOC/doc/latex/lshort-czech/src/math.tex + RELOC/doc/latex/lshort-czech/src/mylayout.sty + RELOC/doc/latex/lshort-czech/src/overview.tex + RELOC/doc/latex/lshort-czech/src/spec.tex + RELOC/doc/latex/lshort-czech/src/things.tex + RELOC/doc/latex/lshort-czech/src/title.tex + RELOC/doc/latex/lshort-czech/src/typeset.tex +catalogue-ctan /info/lshort/czech +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 4.27 + +name lshort-dutch +category Package +revision 15878 +shortdesc Introduction to LaTeX in Dutch. +relocated 1 +longdesc This is the Dutch (Nederlands) translation of the Short +longdesc Introduction to LaTeX2e. +docfiles size=272 + RELOC/doc/latex/lshort-dutch/LEESMIJ + 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.src.zip +catalogue-ctan /info/lshort/dutch +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 1.3 + +name lshort-english +category Package +revision 37892 +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 + 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 +catalogue-ctan /info/lshort/english +catalogue-date 2015-07-18 13:32:39 +0200 +catalogue-license gpl2 +catalogue-topics tut-latex documentation +catalogue-version 5.0.5 + +name lshort-finnish +category Package +revision 15878 +shortdesc Finnish introduction to LaTeX. +relocated 1 +longdesc This is the Finnish translation of Short Introduction to +longdesc LaTeX2e, with added coverage of Finnish typesetting rules. +docfiles size=601 + RELOC/doc/latex/lshort-finnish/README + RELOC/doc/latex/lshort-finnish/lyhyt2e.pdf + RELOC/doc/latex/lshort-finnish/src/asiat.tex + RELOC/doc/latex/lshort-finnish/src/erikois.tex + RELOC/doc/latex/lshort-finnish/src/esipuhe.tex + RELOC/doc/latex/lshort-finnish/src/grafiikka.tex + RELOC/doc/latex/lshort-finnish/src/kiitokset.tex + RELOC/doc/latex/lshort-finnish/src/kirjallisuus.tex + RELOC/doc/latex/lshort-finnish/src/ladonta.tex + RELOC/doc/latex/lshort-finnish/src/llyhyt2e.sty + RELOC/doc/latex/lshort-finnish/src/lyhyt2e.ind + RELOC/doc/latex/lshort-finnish/src/lyhyt2e.tex + RELOC/doc/latex/lshort-finnish/src/matikka.tex + RELOC/doc/latex/lshort-finnish/src/mylayout.sty + RELOC/doc/latex/lshort-finnish/src/otsikko.tex + RELOC/doc/latex/lshort-finnish/src/symbolit.tex + RELOC/doc/latex/lshort-finnish/src/typeset.tex + RELOC/doc/latex/lshort-finnish/src/viritys.tex +catalogue-ctan /info/lshort/finnish +catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-license pd + +name lshort-french +category Package +revision 23332 +shortdesc Short introduction to LaTeX, French translation. +relocated 1 +longdesc French version of A Short Introduction to LaTeX2e. +docfiles size=690 + RELOC/doc/latex/lshort-french/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 +catalogue-ctan /info/lshort/french +catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-license gpl +catalogue-version 5.01fr-0 + +name lshort-german +category Package +revision 37499 +shortdesc German version of A Short Introduction to LaTeX2e: LaTeX2e-Kurzbeschreibung. +relocated 1 +docfiles size=320 + RELOC/doc/latex/lshort-german/CHANGES + RELOC/doc/latex/lshort-german/README.l2kurz + RELOC/doc/latex/lshort-german/allgemeines.tex + RELOC/doc/latex/lshort-german/anhang.tex + RELOC/doc/latex/lshort-german/bilder.tex + RELOC/doc/latex/lshort-german/eingabefile.tex + RELOC/doc/latex/lshort-german/einleitung.tex + RELOC/doc/latex/lshort-german/fontspec.pdf + RELOC/doc/latex/lshort-german/fontspecbeispiel.tex + RELOC/doc/latex/lshort-german/l2ksym.tex + RELOC/doc/latex/lshort-german/l2kurz.bib + RELOC/doc/latex/lshort-german/l2kurz.pdf + RELOC/doc/latex/lshort-german/l2kurz.tex + RELOC/doc/latex/lshort-german/latexmkrc + RELOC/doc/latex/lshort-german/mathematik.tex + RELOC/doc/latex/lshort-german/ozean.pdf + RELOC/doc/latex/lshort-german/ozean.svg + RELOC/doc/latex/lshort-german/schriften.tex + RELOC/doc/latex/lshort-german/seitenaufbau.tex + RELOC/doc/latex/lshort-german/spezialitaeten.tex + RELOC/doc/latex/lshort-german/textsatz.tex +catalogue-ctan /info/lshort/german +catalogue-date 2015-06-10 19:06:14 +0200 +catalogue-license opl +catalogue-version 3.0a + +name lshort-italian +category Package +revision 15878 +shortdesc Introduction to LaTeX in Italian. +relocated 1 +longdesc This is the Italian translation of the Short Introduction to +longdesc LaTeX2e. +docfiles size=282 + RELOC/doc/latex/lshort-italian/CHANGES + RELOC/doc/latex/lshort-italian/MANIFEST + RELOC/doc/latex/lshort-italian/Makefile + 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/src.zip +catalogue-ctan /info/lshort/italian +catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-license gpl + +name lshort-japanese +category Package +revision 36207 +shortdesc Japanese version of A Short Introduction to LaTeX2e +relocated 1 +docfiles size=132 + RELOC/doc/latex/lshort-japanese/00README + RELOC/doc/latex/lshort-japanese/CHANGES.jp + RELOC/doc/latex/lshort-japanese/READ.ME + RELOC/doc/latex/lshort-japanese/jlshort-1.00.src.tar.gz + RELOC/doc/latex/lshort-japanese/jlshort.pdf +catalogue-ctan /info/lshort/japanese +catalogue-date 2012-07-16 17:38:59 +0200 +catalogue-license gpl + +name lshort-korean +category Package +revision 15878 +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 +catalogue-ctan /info/lshort/korean +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license fdl +catalogue-version 4.17 + +name lshort-mongol +category Package +revision 15878 +shortdesc Short introduction to LaTeX, in Mongolian. +relocated 1 +longdesc A translation of Oetiker's Not so short introduction. +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/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/src/appendix.tex + RELOC/doc/latex/lshort-mongol/src/biblio.tex + RELOC/doc/latex/lshort-mongol/src/contrib.tex + RELOC/doc/latex/lshort-mongol/src/custom.tex + RELOC/doc/latex/lshort-mongol/src/fancyhea.sty + RELOC/doc/latex/lshort-mongol/src/graphic.tex + RELOC/doc/latex/lshort-mongol/src/lshort-a5.tex + RELOC/doc/latex/lshort-mongol/src/lshort-base.tex + RELOC/doc/latex/lshort-mongol/src/lshort-mn.tex + RELOC/doc/latex/lshort-mongol/src/lshort.sty + RELOC/doc/latex/lshort-mongol/src/lssym.tex + RELOC/doc/latex/lshort-mongol/src/math.tex + RELOC/doc/latex/lshort-mongol/src/mylayout.sty + RELOC/doc/latex/lshort-mongol/src/overview.tex + RELOC/doc/latex/lshort-mongol/src/spec.tex + RELOC/doc/latex/lshort-mongol/src/things.tex + RELOC/doc/latex/lshort-mongol/src/title.tex + RELOC/doc/latex/lshort-mongol/src/typeset.tex +catalogue-ctan /info/lshort/mongolian/lshort-mongol +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 4.26 + +name lshort-persian +category Package +revision 31296 +shortdesc Persian (Farsi) introduction to LaTeX. +relocated 1 +longdesc A Persian (Farsi) translation of Oetiker's (not so) short +longdesc introduction. +docfiles size=288 + RELOC/doc/latex/lshort-persian/README + RELOC/doc/latex/lshort-persian/appendix.tex + RELOC/doc/latex/lshort-persian/biblio.tex + RELOC/doc/latex/lshort-persian/contrib.tex + RELOC/doc/latex/lshort-persian/custom.tex + RELOC/doc/latex/lshort-persian/graphic.tex + RELOC/doc/latex/lshort-persian/lshort-a5.tex + RELOC/doc/latex/lshort-persian/lshort-base.tex + RELOC/doc/latex/lshort-persian/lshort.pdf + RELOC/doc/latex/lshort-persian/lshort.sty + RELOC/doc/latex/lshort-persian/lshort.tex + RELOC/doc/latex/lshort-persian/lssym.tex + RELOC/doc/latex/lshort-persian/math.tex + RELOC/doc/latex/lshort-persian/mylayout.sty + RELOC/doc/latex/lshort-persian/overview.tex + RELOC/doc/latex/lshort-persian/preface.tex + RELOC/doc/latex/lshort-persian/spec.tex + RELOC/doc/latex/lshort-persian/things.tex + RELOC/doc/latex/lshort-persian/title.tex + RELOC/doc/latex/lshort-persian/transpreface.tex + RELOC/doc/latex/lshort-persian/typeset.tex +catalogue-ctan /info/lshort/persian +catalogue-date 2013-07-28 14:28:30 +0200 +catalogue-license pd +catalogue-version 5.01 + +name lshort-polish +category Package +revision 15878 +shortdesc Introduction to LaTeX in Polish. +relocated 1 +longdesc This is the Polish translation of A Short Introduction to +longdesc LaTeX2e. +docfiles size=372 + RELOC/doc/latex/lshort-polish/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-license pd + +name lshort-portuguese +category Package +revision 22569 +shortdesc Introduction to LaTeX in Portuguese. +relocated 1 +longdesc This is the Portuguese translation of A Short Introduction to +longdesc LaTeX2e. +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-license pd +catalogue-version 5.01.0 + +name lshort-russian +category Package +revision 18906 +shortdesc Russian introduction to LaTeX. +relocated 1 +longdesc Russian version of A Short Introduction to LaTeX2e. +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-license gpl + +name lshort-slovak +category Package +revision 15878 +shortdesc Slovak introduction to LaTeX. +relocated 1 +longdesc A Slovak translation of Oetiker's (not so) short introduction. +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-license lppl + +name lshort-slovenian +category Package +revision 15878 +shortdesc Slovenian translation of lshort. +relocated 1 +longdesc A Slovenian translation of the Not So Short Introduction to +longdesc LaTeX 2e. +docfiles size=500 + RELOC/doc/latex/lshort-slovenian/README + RELOC/doc/latex/lshort-slovenian/lshort-slovenian.pdf + RELOC/doc/latex/lshort-slovenian/src/biblio.tex + RELOC/doc/latex/lshort-slovenian/src/contrib.tex + RELOC/doc/latex/lshort-slovenian/src/custom.tex + RELOC/doc/latex/lshort-slovenian/src/fancyhea.sty + RELOC/doc/latex/lshort-slovenian/src/graphic.tex + RELOC/doc/latex/lshort-slovenian/src/lshort-a5.tex + RELOC/doc/latex/lshort-slovenian/src/lshort-base.tex + RELOC/doc/latex/lshort-slovenian/src/lshort-slovenian.sty + RELOC/doc/latex/lshort-slovenian/src/lshort-slovenian.tex + RELOC/doc/latex/lshort-slovenian/src/lssym.tex + RELOC/doc/latex/lshort-slovenian/src/math.tex + RELOC/doc/latex/lshort-slovenian/src/mylayout.sty + RELOC/doc/latex/lshort-slovenian/src/overview.tex + RELOC/doc/latex/lshort-slovenian/src/spec.tex + RELOC/doc/latex/lshort-slovenian/src/things.tex + RELOC/doc/latex/lshort-slovenian/src/title.tex + RELOC/doc/latex/lshort-slovenian/src/typeset.tex +catalogue-ctan /info/lshort/slovenian +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 4.20 + +name lshort-spanish +category Package +revision 35050 +shortdesc Short introduction to LaTeX, Spanish translation. +relocated 1 +longdesc A Spanish translation of the Short Introduction to LaTeX2e, +longdesc version 20. +docfiles size=583 + RELOC/doc/latex/lshort-spanish/fuente/CAMBIOS + RELOC/doc/latex/lshort-spanish/fuente/LEAME.utf8 + RELOC/doc/latex/lshort-spanish/fuente/MANIFEST + RELOC/doc/latex/lshort-spanish/fuente/src/IEEEtrantools.sty + RELOC/doc/latex/lshort-spanish/fuente/src/biblio.tex + RELOC/doc/latex/lshort-spanish/fuente/src/contrib.tex + RELOC/doc/latex/lshort-spanish/fuente/src/custom.tex + RELOC/doc/latex/lshort-spanish/fuente/src/fancyhea.sty + RELOC/doc/latex/lshort-spanish/fuente/src/graphic.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort-a4.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort-a5.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort-base.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort-letter.tex + RELOC/doc/latex/lshort-spanish/fuente/src/lshort.ist + RELOC/doc/latex/lshort-spanish/fuente/src/lshort.sty + RELOC/doc/latex/lshort-spanish/fuente/src/lssym.tex + RELOC/doc/latex/lshort-spanish/fuente/src/math.tex + RELOC/doc/latex/lshort-spanish/fuente/src/mylayout.sty + RELOC/doc/latex/lshort-spanish/fuente/src/overview.tex + RELOC/doc/latex/lshort-spanish/fuente/src/spec.tex + RELOC/doc/latex/lshort-spanish/fuente/src/things.tex + RELOC/doc/latex/lshort-spanish/fuente/src/title.tex + RELOC/doc/latex/lshort-spanish/fuente/src/typeset.tex + RELOC/doc/latex/lshort-spanish/lshort-a4.pdf +catalogue-ctan /info/lshort/spanish +catalogue-date 2014-08-27 19:21:34 +0200 +catalogue-license other-free +catalogue-version 0.5 + +name lshort-thai +category Package +revision 15878 +shortdesc Introduction to LaTeX in Thai. +relocated 1 +longdesc This is the Thai translation of the Short Introduction to +longdesc LaTeX2e. +docfiles size=135 + RELOC/doc/latex/lshort-thai/lsh132.pdf + RELOC/doc/latex/lshort-thai/lsh132.zip + RELOC/doc/latex/lshort-thai/readme +catalogue-ctan /info/lshort/thai +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd +catalogue-version 1.32 + +name lshort-turkish +category Package +revision 15878 +shortdesc Turkish introduction to LaTeX. +relocated 1 +longdesc A Turkish translation of Oetiker's (not so) short introduction. +docfiles size=447 + RELOC/doc/latex/lshort-turkish/README + RELOC/doc/latex/lshort-turkish/lshort-tr.pdf + RELOC/doc/latex/lshort-turkish/trlshort-src.zip +catalogue-ctan /info/lshort/turkish +catalogue-date 2012-08-17 13:10:56 +0200 +catalogue-license pd +catalogue-version 4.20 + +name lshort-ukr +category Package +revision 15878 +shortdesc Ukrainian version of the LaTeX introduction. +relocated 1 +longdesc Ukrainian version of A Short Introduction to LaTeX2e. +docfiles size=639 + RELOC/doc/latex/lshort-ukr/lshort-ukr-4.12.src.tar.gz + RELOC/doc/latex/lshort-ukr/lshort-ukr.pdf +catalogue-ctan /info/lshort/ukrainian +catalogue-date 2012-01-22 15:56:38 +0100 +catalogue-license other-free +catalogue-version 4.00 + +name lshort-vietnamese +category Package +revision 15878 +shortdesc Vietnamese version of the LaTeX introduction. +relocated 1 +longdesc Vietnamese version of A Short Introduction to LaTeX2e. +docfiles size=599 + RELOC/doc/latex/lshort-vietnamese/README + RELOC/doc/latex/lshort-vietnamese/lshort-vi.pdf + RELOC/doc/latex/lshort-vietnamese/src/LocalVariables + RELOC/doc/latex/lshort-vietnamese/src/Makefile + RELOC/doc/latex/lshort-vietnamese/src/README.txt + RELOC/doc/latex/lshort-vietnamese/src/abbr.tex + RELOC/doc/latex/lshort-vietnamese/src/biblio.tex + RELOC/doc/latex/lshort-vietnamese/src/contrib.tex + RELOC/doc/latex/lshort-vietnamese/src/custom.tex + RELOC/doc/latex/lshort-vietnamese/src/fancyhea.sty + RELOC/doc/latex/lshort-vietnamese/src/graphic.tex + RELOC/doc/latex/lshort-vietnamese/src/lshort-print-vi.tex + RELOC/doc/latex/lshort-vietnamese/src/lshort-vi.sty + RELOC/doc/latex/lshort-vietnamese/src/lshort-vi.tex + RELOC/doc/latex/lshort-vietnamese/src/lssym.tex + RELOC/doc/latex/lshort-vietnamese/src/math.tex + RELOC/doc/latex/lshort-vietnamese/src/mylayout.sty + RELOC/doc/latex/lshort-vietnamese/src/overview.tex + RELOC/doc/latex/lshort-vietnamese/src/spec.tex + RELOC/doc/latex/lshort-vietnamese/src/things.tex + RELOC/doc/latex/lshort-vietnamese/src/tiengviet.tex + RELOC/doc/latex/lshort-vietnamese/src/title.tex + RELOC/doc/latex/lshort-vietnamese/src/typeset.tex +catalogue-ctan /info/lshort/vietnamese +catalogue-date 2012-07-24 16:30:52 +0200 +catalogue-license lppl +catalogue-version 4.00 + +name lstaddons +category Package +revision 26196 +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 +docfiles size=99 + RELOC/doc/latex/lstaddons/README + RELOC/doc/latex/lstaddons/lstautogobble.pdf + RELOC/doc/latex/lstaddons/lstlinebgrd.pdf +srcfiles size=7 + RELOC/source/latex/lstaddons/lstaddons.ins + RELOC/source/latex/lstaddons/lstautogobble.dtx + RELOC/source/latex/lstaddons/lstlinebgrd.dtx +catalogue-ctan /macros/latex/contrib/lstaddons +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name lt3graph +category Package +revision 35085 +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. +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-ctan /macros/latex/contrib/lt3graph +catalogue-date 2014-09-01 06:05:44 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1.4 + +name ltablex +category Package +revision 34923 +shortdesc Table package extensions. +relocated 1 +longdesc Modifies the tabularx environment to combine the features of +longdesc the tabularx package (auto-sized columns in a fixed width +longdesc table) with those of the longtable package (multi-page tables). +runfiles size=2 + RELOC/tex/latex/ltablex/ltablex.sty +docfiles size=60 + RELOC/doc/latex/ltablex/README + RELOC/doc/latex/ltablex/ltablex.pdf + RELOC/doc/latex/ltablex/ltablex.tex +catalogue-ctan /macros/latex/contrib/ltablex +catalogue-date 2014-08-13 20:58:38 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name ltabptch +category Package +revision 17533 +shortdesc Bug fix for longtable. +relocated 1 +longdesc A patch for LaTeX bugs tools/3180 and tools/3480. The patch +longdesc applies to version 4.11 of longtable. +runfiles size=3 + RELOC/tex/latex/ltabptch/ltabptch.sty +docfiles size=73 + RELOC/doc/latex/ltabptch/README + RELOC/doc/latex/ltabptch/ltabptch.pdf + RELOC/doc/latex/ltabptch/ltabptch.tex + RELOC/doc/latex/ltabptch/ltabtest.tex +catalogue-ctan /macros/latex/contrib/ltabptch +catalogue-date 2012-07-10 11:52:24 +0200 +catalogue-license lppl +catalogue-version 1.74d + +name ltxdockit +category Package +revision 21869 +shortdesc Documentation support. +relocated 1 +longdesc This bundle, consisting of a simple wrapper class and some +longdesc packages, forms a small LaTeX/BibTeX documentation kit; the +longdesc author uses it for some of his own packages. The package is not +longdesc supported: users should not attempt its use unless they are +longdesc capable of dealing with problems unaided. (The actual purpose +longdesc of releasing the package is to make it possible for third +longdesc parties to compile the documentation of other packages, should +longdesc that be necessary.) +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-license lppl +catalogue-version 1.2d + +name ltxfileinfo +category Package +revision 36121 +shortdesc Print version information for a LaTeX file. +longdesc ltxfileinfo displays version information for LaTeX files. If no +longdesc path information is given, the file is searched using +longdesc kpsewhich. As an extra, for developers, the script will (use +longdesc the --star or --color options) check the valididity of the +longdesc \Provides... statements in the files. The script uses code from +longdesc Uwe Luck's readprov.sty. +depend ltxfileinfo.ARCH +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-license gpl +catalogue-version 2.02 + +name ltxfileinfo.i386-linux +category Package +revision 29005 +shortdesc i386-linux files of ltxfileinfo +binfiles arch=i386-linux size=1 + bin/i386-linux/ltxfileinfo + +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. +depend ltximg.ARCH +runfiles size=9 + 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-ctan /support/ltximg +catalogue-date 2015-04-22 19:16:32 +0200 +catalogue-license gpl2 +catalogue-version 1.2 + +name ltximg.i386-linux +category Package +revision 32346 +shortdesc i386-linux files of ltximg +binfiles arch=i386-linux size=1 + bin/i386-linux/ltximg + +name ltxindex +category Package +revision 15878 +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 +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 +docfiles size=26 + RELOC/doc/latex/ltxindex/README + RELOC/doc/latex/ltxindex/copying.txt + RELOC/doc/latex/ltxindex/ltxindex.pdf +srcfiles size=5 + RELOC/source/latex/ltxindex/ltxindex.dtx +catalogue-ctan /macros/latex/contrib/ltxindex +catalogue-date 2014-06-05 22:40:19 +0200 +catalogue-license gpl +catalogue-version 0.1c + +name ltxkeys +category Package +revision 28332 +shortdesc A robust key parser for LaTeX. +relocated 1 +longdesc The package provides facilities for creating and managing keys +longdesc in the sense of the keyval and xkeyval packages, but it is +longdesc intended to be more robust and faster. Its robustness comes +longdesc from its ability to preserve braces in key values throughout +longdesc parsing. The need to preserve braces in key values arises often +longdesc in parsing keys (for example, in the xwatermark package). The +longdesc package is faster than xkeyval package because (among other +longdesc things) it avoids character-wise parsing of key values (called +longdesc "selective sanitization" by the xkeyval package). The package +longdesc also provides functions for defining and managing keys. +runfiles size=34 + RELOC/tex/latex/ltxkeys/ltxkeys.sty +docfiles size=351 + RELOC/doc/latex/ltxkeys/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.tex + RELOC/doc/latex/ltxkeys/ltxkeys-test-20121122.tex +catalogue-ctan /macros/latex/contrib/ltxkeys +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.0.3c + +name ltxmisc +category Package +revision 21927 +shortdesc Miscellaneous LaTeX packages, etc. +relocated 1 +runfiles size=17 + RELOC/tex/latex/ltxmisc/abstbook.cls + RELOC/tex/latex/ltxmisc/beletter.cls + RELOC/tex/latex/ltxmisc/bibcheck.sty + RELOC/tex/latex/ltxmisc/concrete.sty + RELOC/tex/latex/ltxmisc/flashcard.cls + RELOC/tex/latex/ltxmisc/iagproc.cls + RELOC/tex/latex/ltxmisc/linsys.sty + RELOC/tex/latex/ltxmisc/mitpress.sty + RELOC/tex/latex/ltxmisc/thrmappendix.sty + RELOC/tex/latex/ltxmisc/topcapt.sty + RELOC/tex/latex/ltxmisc/vrbexin.sty +catalogue-ctan /macros/latex/contrib/misc +catalogue-date 2012-07-10 13:36:48 +0200 +catalogue-license collection + +name ltxnew +category Package +revision 21586 +shortdesc A simple means of creating commands. +relocated 1 +longdesc The package ltxnew provides \new, \renew and \provide prefixes +longdesc for checking definitions. It is designed to work with e-TeX +longdesc distributions of LaTeX and relies on the LaTeX internal macro +longdesc \@ifdefinable. Local allocation of counters, dimensions, skips, +longdesc muskips, boxes, tokens and marks are provided by the etex +longdesc package. \new and \renew as well as \provide may be used for +longdesc all kind of control sequences. Please refer to the section +longdesc "Using \new" of the PDF documentation. +runfiles size=3 + RELOC/tex/latex/ltxnew/ltxnew.sty +docfiles size=63 + RELOC/doc/latex/ltxnew/README + RELOC/doc/latex/ltxnew/ltxnew.pdf +srcfiles size=10 + RELOC/source/latex/ltxnew/ltxnew.dtx + RELOC/source/latex/ltxnew/ltxnew.ins +catalogue-ctan /macros/latex/contrib/ltxnew +catalogue-date 2012-07-10 13:36:48 +0200 +catalogue-license lppl1.3 +catalogue-version 1.3 + +name ltxtools +category Package +revision 24897 +shortdesc A collection of LaTeX API macros. +relocated 1 +longdesc This is a bundle of macros that the author uses in the coding +longdesc of others of his macro files. +runfiles size=73 + RELOC/tex/latex/ltxtools/ltxtools-base.sty + RELOC/tex/latex/ltxtools/ltxtools-doc.sty + RELOC/tex/latex/ltxtools/ltxtools-environ.sty + RELOC/tex/latex/ltxtools/ltxtools-incluput.sty + RELOC/tex/latex/ltxtools/ltxtools-index.sty + RELOC/tex/latex/ltxtools/ltxtools-review.sty + RELOC/tex/latex/ltxtools/ltxtools-trace.sty + RELOC/tex/latex/ltxtools/ltxtools.sty +docfiles size=1 + RELOC/doc/latex/ltxtools/README +catalogue-ctan /macros/latex/contrib/ltxtools +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.0.1a + +name lua2dox +category Package +revision 29349 +shortdesc Auto-documentation of lua code. +longdesc The package extends the well-known C-like language autodoc +longdesc tool, doxygen, to read and document lua code. In use, you edit +longdesc and test your code and periodically run the autodoc tool to +longdesc update the documentation, which may be viewed via an html +longdesc browser. Autodoc tools can read the code well enough to find +longdesc function/... declarations and document them. If the code also +longdesc contains appropriatly formatted "magic comments", the tool can +longdesc use them to supplement the documentation. The package is a +longdesc first prototype of a planned TeX2DoX tool (in development), +longdesc which will process joint (La)TeX/lua documents. +depend lua2dox.ARCH +runfiles size=7 + texmf-dist/scripts/lua2dox/lua.def + texmf-dist/scripts/lua2dox/lua2dox.lua + texmf-dist/scripts/lua2dox/lua2dox_filter +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/docs/html/annotated.html + texmf-dist/doc/support/lua2dox/docs/html/bc_s.png + texmf-dist/doc/support/lua2dox/docs/html/bdwn.png + texmf-dist/doc/support/lua2dox/docs/html/classTApp-members.html + texmf-dist/doc/support/lua2dox/docs/html/classTApp.html + texmf-dist/doc/support/lua2dox/docs/html/classTCore__Clock-members.html + texmf-dist/doc/support/lua2dox/docs/html/classTCore__Clock.html + texmf-dist/doc/support/lua2dox/docs/html/classTCore__Commandline-members.html + texmf-dist/doc/support/lua2dox/docs/html/classTCore__Commandline.html + texmf-dist/doc/support/lua2dox/docs/html/classTCore__IO.html + texmf-dist/doc/support/lua2dox/docs/html/classTLua2DoX__filter-members.html + texmf-dist/doc/support/lua2dox/docs/html/classTLua2DoX__filter.html + texmf-dist/doc/support/lua2dox/docs/html/classTStream__Read-members.html + texmf-dist/doc/support/lua2dox/docs/html/classTStream__Read.html + texmf-dist/doc/support/lua2dox/docs/html/classTStream__Write-members.html + texmf-dist/doc/support/lua2dox/docs/html/classTStream__Write.html + texmf-dist/doc/support/lua2dox/docs/html/classes.html + texmf-dist/doc/support/lua2dox/docs/html/closed.png + texmf-dist/doc/support/lua2dox/docs/html/doxygen.css + texmf-dist/doc/support/lua2dox/docs/html/doxygen.png + texmf-dist/doc/support/lua2dox/docs/html/dynsections.js + texmf-dist/doc/support/lua2dox/docs/html/files.html + texmf-dist/doc/support/lua2dox/docs/html/ftv2blank.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2cl.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2doc.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2folderclosed.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2folderopen.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2lastnode.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2link.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2mlastnode.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2mnode.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2mo.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2node.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2ns.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2plastnode.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2pnode.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2splitbar.png + texmf-dist/doc/support/lua2dox/docs/html/ftv2vertline.png + texmf-dist/doc/support/lua2dox/docs/html/functions.html + texmf-dist/doc/support/lua2dox/docs/html/functions_func.html + texmf-dist/doc/support/lua2dox/docs/html/globals.html + texmf-dist/doc/support/lua2dox/docs/html/globals_func.html + texmf-dist/doc/support/lua2dox/docs/html/index.html + texmf-dist/doc/support/lua2dox/docs/html/jquery.js + texmf-dist/doc/support/lua2dox/docs/html/lua2dox_8lua.html + texmf-dist/doc/support/lua2dox/docs/html/lua2dox_8lua_source.html + texmf-dist/doc/support/lua2dox/docs/html/nav_f.png + texmf-dist/doc/support/lua2dox/docs/html/nav_g.png + texmf-dist/doc/support/lua2dox/docs/html/nav_h.png + texmf-dist/doc/support/lua2dox/docs/html/open.png + texmf-dist/doc/support/lua2dox/docs/html/sync_off.png + texmf-dist/doc/support/lua2dox/docs/html/sync_on.png + texmf-dist/doc/support/lua2dox/docs/html/tab_a.png + texmf-dist/doc/support/lua2dox/docs/html/tab_b.png + texmf-dist/doc/support/lua2dox/docs/html/tab_h.png + texmf-dist/doc/support/lua2dox/docs/html/tab_s.png + texmf-dist/doc/support/lua2dox/docs/html/tabs.css + texmf-dist/doc/support/lua2dox/examples/lua/Doxyfile + texmf-dist/doc/support/lua2dox/examples/lua/animals.lua + texmf-dist/doc/support/lua2dox/examples/lua/class.lua + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/animals_8lua.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/animals_8lua_source.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/annotated.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/bc_s.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/bdwn.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classAnimal-members.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classAnimal.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classAnimal.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classBird-members.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classBird.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classBird.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classCat-members.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classCat.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classCat.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classDog-members.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classDog.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classDog.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classMammal-members.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classMammal.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classMammal.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classPigeon-members.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classPigeon.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classPigeon.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classRedKite-members.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classRedKite.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classRedKite.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/class_8lua.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/class_8lua_source.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/classes.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/closed.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/doxygen.css + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/doxygen.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/dynsections.js + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/files.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2blank.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2cl.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2doc.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2folderclosed.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2folderopen.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2lastnode.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2link.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2mlastnode.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2mnode.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2mo.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2node.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2ns.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2plastnode.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2pnode.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2splitbar.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/ftv2vertline.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/functions.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/functions_func.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/globals.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/globals_func.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/hierarchy.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/index.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/jquery.js + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/main_8lua.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/main_8lua_source.html + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/nav_f.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/nav_g.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/nav_h.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/open.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/sync_off.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/sync_on.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_a.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_b.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_h.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tab_s.png + texmf-dist/doc/support/lua2dox/examples/lua/docs/html/tabs.css + texmf-dist/doc/support/lua2dox/examples/lua/main.lua + texmf-dist/doc/support/lua2dox/examples/php/Doxyfile + texmf-dist/doc/support/lua2dox/examples/php/animals.php + texmf-dist/doc/support/lua2dox/examples/php/docs/html/animals_8php.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/animals_8php_source.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/annotated.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/bc_s.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/bdwn.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classAnimal-members.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classAnimal.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classAnimal.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classBird-members.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classBird.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classBird.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classCat-members.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classCat.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classCat.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classDog-members.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classDog.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classDog.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classMammal-members.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classMammal.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classMammal.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classPigeon-members.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classPigeon.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classPigeon.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classRedKite-members.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classRedKite.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classRedKite.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/classes.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/closed.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/doxygen.css + texmf-dist/doc/support/lua2dox/examples/php/docs/html/doxygen.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/dynsections.js + texmf-dist/doc/support/lua2dox/examples/php/docs/html/files.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2blank.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2cl.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2doc.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2folderclosed.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2folderopen.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2lastnode.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2link.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2mlastnode.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2mnode.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2mo.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2node.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2ns.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2plastnode.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2pnode.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2splitbar.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/ftv2vertline.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/functions.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/functions_func.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/globals.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/globals_func.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/globals_vars.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/hierarchy.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/index.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/jquery.js + texmf-dist/doc/support/lua2dox/examples/php/docs/html/main_8php.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/main_8php_source.html + texmf-dist/doc/support/lua2dox/examples/php/docs/html/nav_f.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/nav_g.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/nav_h.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/open.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/sync_off.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/sync_on.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_a.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_b.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_h.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/tab_s.png + texmf-dist/doc/support/lua2dox/examples/php/docs/html/tabs.css + 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.tex +catalogue-ctan /web/lua2dox +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name lua2dox.i386-linux +category Package +revision 29053 +shortdesc i386-linux files of lua2dox +binfiles arch=i386-linux size=1 + bin/i386-linux/lua2dox_filter + +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. +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 + +name luabibentry +category Package +revision 31783 +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 +docfiles size=41 + RELOC/doc/lualatex/luabibentry/News + RELOC/doc/lualatex/luabibentry/README + RELOC/doc/lualatex/luabibentry/luabibentry.pdf +srcfiles size=4 + RELOC/source/lualatex/luabibentry/Makefile + RELOC/source/lualatex/luabibentry/luabibentry.dtx +catalogue-ctan /macros/luatex/latex/luabibentry +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1a + +name luabidi +category Package +revision 30790 +shortdesc Bidirectional typesetting with LuaLaTeX. +relocated 1 +longdesc The package attempts to emulate the XeTeX bidi package, in teh +longdesc context of LuaTeX. +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-ctan /macros/luatex/latex/luabidi +catalogue-date 2014-09-06 10:41:29 +0200 +catalogue-license lppl1.3 +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. +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 +docfiles size=103 + RELOC/doc/lualatex/luacode/News + RELOC/doc/lualatex/luacode/README + RELOC/doc/lualatex/luacode/luacode.pdf +srcfiles size=7 + RELOC/source/lualatex/luacode/Makefile + RELOC/source/lualatex/luacode/luacode.dtx +catalogue-ctan /macros/luatex/latex/luacode +catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2a + +name luaindex +category Package +revision 25882 +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 +docfiles size=45 + RELOC/doc/lualatex/luaindex/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 +srcfiles size=15 + RELOC/source/lualatex/luaindex/luaindex.dtx +catalogue-ctan /macros/luatex/latex/luaindex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1b + +name luainputenc +category Package +revision 20491 +shortdesc Replacing inputenc for use in LuaTeX. +relocated 1 +longdesc LuaTeX operates by default in UTF-8 input; thus LaTeX documents +longdesc that need 8-bit character-sets need special treatment. (In +longdesc fact, LaTeX documents using UTF-8 with "traditional" -- 256- +longdesc glyph -- fonts also need support from this package.) The +longdesc package, therefore, replaces the LaTeX standard inputenc for +longdesc use under LuaTeX. With a current LuaTeX,the package has the +longdesc same behaviour with LuaTeX as inputenc has under pdfTeX. +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 +docfiles size=103 + RELOC/doc/lualatex/luainputenc/NEWS + RELOC/doc/lualatex/luainputenc/README + RELOC/doc/lualatex/luainputenc/inputenc.sty.diff + RELOC/doc/lualatex/luainputenc/luainputenc.pdf + RELOC/doc/lualatex/luainputenc/test.tex +srcfiles size=12 + RELOC/source/lualatex/luainputenc/Makefile + RELOC/source/lualatex/luainputenc/luainputenc.dtx +catalogue-ctan /macros/luatex/latex/luainputenc +catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-license pd +catalogue-version 0.973 + +name luaintro +category Package +revision 35490 +shortdesc Examples from the book "Einfuhrung in LuaTeX und LuaLaTeX". +relocated 1 +longdesc The bundle provides source of all the examples published in the +longdesc German book "Einfuhrung in LuaTeX und LuaLaTeX", published by +longdesc Lehmans Media and DANTE, Berlin. +docfiles size=211 + RELOC/doc/luatex/luaintro/01-01-1.lua + RELOC/doc/luatex/luaintro/01-02-1.lualtx + RELOC/doc/luatex/luaintro/01-02-10.ltx2 + RELOC/doc/luatex/luaintro/01-02-11.ltx2 + RELOC/doc/luatex/luaintro/01-02-12.lualtx + RELOC/doc/luatex/luaintro/01-02-13.lualtx3 + RELOC/doc/luatex/luaintro/01-02-14.lualtx3 + RELOC/doc/luatex/luaintro/01-02-15.lualtx3 + RELOC/doc/luatex/luaintro/01-02-16.lualtx3 + RELOC/doc/luatex/luaintro/01-02-17.lualtx3 + RELOC/doc/luatex/luaintro/01-02-18.lualtx3 + RELOC/doc/luatex/luaintro/01-02-19.lualtx + RELOC/doc/luatex/luaintro/01-02-2.lualtx + RELOC/doc/luatex/luaintro/01-02-20.lualtx + RELOC/doc/luatex/luaintro/01-02-21.lualtx + RELOC/doc/luatex/luaintro/01-02-22.lualtx + RELOC/doc/luatex/luaintro/01-02-3.lualtx + RELOC/doc/luatex/luaintro/01-02-4.lualtx + RELOC/doc/luatex/luaintro/01-02-5.lualtx + RELOC/doc/luatex/luaintro/01-02-6.lualtx + RELOC/doc/luatex/luaintro/01-02-7.sh + RELOC/doc/luatex/luaintro/01-02-8.lualtx3 + RELOC/doc/luatex/luaintro/01-02-9.lualtx3 + RELOC/doc/luatex/luaintro/01-03-1.lualtx3 + RELOC/doc/luatex/luaintro/01-03-2.lualtx3 + RELOC/doc/luatex/luaintro/01-03-3.lualtx3 + RELOC/doc/luatex/luaintro/01-03-4.lualtx3 + RELOC/doc/luatex/luaintro/01-03-5.lualtx3 + RELOC/doc/luatex/luaintro/01-03-6.lualtx3 + RELOC/doc/luatex/luaintro/01-04-1.lualtx + RELOC/doc/luatex/luaintro/01-04-2.lualtx + RELOC/doc/luatex/luaintro/01-04-3.lualtx + RELOC/doc/luatex/luaintro/01-04-4.lualtx + RELOC/doc/luatex/luaintro/01-04-5.ctx1crop + RELOC/doc/luatex/luaintro/02-01-1.lualtx + RELOC/doc/luatex/luaintro/02-01-2.lualtx + RELOC/doc/luatex/luaintro/02-01-3.lualtx + RELOC/doc/luatex/luaintro/02-01-4.sh + RELOC/doc/luatex/luaintro/02-01-5.sh + RELOC/doc/luatex/luaintro/02-02-1.lualtx + RELOC/doc/luatex/luaintro/02-02-10.lualtx + RELOC/doc/luatex/luaintro/02-02-11.lualtx2 + RELOC/doc/luatex/luaintro/02-02-12.lualtx3 + RELOC/doc/luatex/luaintro/02-02-13.lualtx3 + RELOC/doc/luatex/luaintro/02-02-14.lualtx3 + RELOC/doc/luatex/luaintro/02-02-15.lualtx3 + RELOC/doc/luatex/luaintro/02-02-16.lualtx3 + RELOC/doc/luatex/luaintro/02-02-2.lualtx + RELOC/doc/luatex/luaintro/02-02-3.lualtx + RELOC/doc/luatex/luaintro/02-02-4.lualtx + RELOC/doc/luatex/luaintro/02-02-5.lualtx + RELOC/doc/luatex/luaintro/02-02-6.sh + RELOC/doc/luatex/luaintro/02-02-7.lualtx2 + RELOC/doc/luatex/luaintro/02-02-8.lualtx2 + RELOC/doc/luatex/luaintro/02-02-9.lualtx + RELOC/doc/luatex/luaintro/03-01-1.lualtx + RELOC/doc/luatex/luaintro/03-03-1.lualtx + RELOC/doc/luatex/luaintro/03-04-1.lualtx3 + RELOC/doc/luatex/luaintro/03-06-1.lualtx3 + RELOC/doc/luatex/luaintro/03-06-2.lualtx3 + RELOC/doc/luatex/luaintro/03-06-3.lualtx3 + RELOC/doc/luatex/luaintro/03-07-1.lualtx + RELOC/doc/luatex/luaintro/03-07-2.lualtx + RELOC/doc/luatex/luaintro/03-08-1.lualtx + RELOC/doc/luatex/luaintro/03-08-2.lualtx3 + RELOC/doc/luatex/luaintro/03-08-3.sh + RELOC/doc/luatex/luaintro/03-10-1.lualtx + RELOC/doc/luatex/luaintro/03-10-2.lualtx + RELOC/doc/luatex/luaintro/03-10-3.lualtx + RELOC/doc/luatex/luaintro/03-11-1.sh + RELOC/doc/luatex/luaintro/03-11-1.tex + RELOC/doc/luatex/luaintro/03-11-2.lualtx + RELOC/doc/luatex/luaintro/03-11-3.lualtx + RELOC/doc/luatex/luaintro/03-11-4.lualtx + RELOC/doc/luatex/luaintro/03-11-5.lualtx + RELOC/doc/luatex/luaintro/03-11-6.lualtx + RELOC/doc/luatex/luaintro/03-11-7.lualtx + RELOC/doc/luatex/luaintro/04-01-1.lualtx3 + RELOC/doc/luatex/luaintro/04-01-2.lualtx3 + RELOC/doc/luatex/luaintro/04-01-3.lualtx + RELOC/doc/luatex/luaintro/04-04-1.lualtx + RELOC/doc/luatex/luaintro/04-04-10.lualtx + RELOC/doc/luatex/luaintro/04-04-11.lualtx + RELOC/doc/luatex/luaintro/04-04-12.lualtx + RELOC/doc/luatex/luaintro/04-04-13.lualtx + RELOC/doc/luatex/luaintro/04-04-14.lualtx + RELOC/doc/luatex/luaintro/04-04-15.lualtx + RELOC/doc/luatex/luaintro/04-04-16.lualtx + RELOC/doc/luatex/luaintro/04-04-17.lualtx + RELOC/doc/luatex/luaintro/04-04-2.lualtx + RELOC/doc/luatex/luaintro/04-04-3.lualtx + RELOC/doc/luatex/luaintro/04-04-4.lualtx + RELOC/doc/luatex/luaintro/04-04-5.lualtx2 + RELOC/doc/luatex/luaintro/04-04-6.lualtx + RELOC/doc/luatex/luaintro/04-04-7.lualtx + RELOC/doc/luatex/luaintro/04-04-8.lualtx + RELOC/doc/luatex/luaintro/04-04-9.lualtx + RELOC/doc/luatex/luaintro/05-01-1.lualtx + RELOC/doc/luatex/luaintro/05-01-2.lualtx + RELOC/doc/luatex/luaintro/05-02-1.lualtx3 + RELOC/doc/luatex/luaintro/06-02-1.lualtx + RELOC/doc/luatex/luaintro/06-03-1.lualtx3 + RELOC/doc/luatex/luaintro/06-04-1.lualtx3 + RELOC/doc/luatex/luaintro/06-05-1.lualtx3 + RELOC/doc/luatex/luaintro/06-05-2.lualtx + RELOC/doc/luatex/luaintro/06-06-1.lualtx + RELOC/doc/luatex/luaintro/06-07-1.lualtx + RELOC/doc/luatex/luaintro/06-07-2.lualtx + RELOC/doc/luatex/luaintro/06-07-3.lualtx + RELOC/doc/luatex/luaintro/06-07-4.lualtx + RELOC/doc/luatex/luaintro/06-07-5.lualtx + RELOC/doc/luatex/luaintro/06-09-1.lualtx + RELOC/doc/luatex/luaintro/06-10-1.lualtx + RELOC/doc/luatex/luaintro/06-11-1.sh + RELOC/doc/luatex/luaintro/06-11-10.lualtx + RELOC/doc/luatex/luaintro/06-11-11.lualtx + RELOC/doc/luatex/luaintro/06-11-12.lualtx + RELOC/doc/luatex/luaintro/06-11-13.lualtx + RELOC/doc/luatex/luaintro/06-11-14.lualtx + RELOC/doc/luatex/luaintro/06-11-15.lualtx + RELOC/doc/luatex/luaintro/06-11-16.lualtx + RELOC/doc/luatex/luaintro/06-11-17.lualtx + RELOC/doc/luatex/luaintro/06-11-18.lualtx + RELOC/doc/luatex/luaintro/06-11-2.sh + RELOC/doc/luatex/luaintro/06-11-3.lualtx + RELOC/doc/luatex/luaintro/06-11-4.lualtx + RELOC/doc/luatex/luaintro/06-11-5.lualtx + RELOC/doc/luatex/luaintro/06-11-6.lualtx + RELOC/doc/luatex/luaintro/06-11-7.sh + RELOC/doc/luatex/luaintro/06-11-8.sh + RELOC/doc/luatex/luaintro/06-11-9.sh + RELOC/doc/luatex/luaintro/06-12-1.lualtx + RELOC/doc/luatex/luaintro/06-12-10.lualtx + RELOC/doc/luatex/luaintro/06-12-11.lualtx + RELOC/doc/luatex/luaintro/06-12-12.lualtx + RELOC/doc/luatex/luaintro/06-12-13.lualtx + RELOC/doc/luatex/luaintro/06-12-14.lualtx + RELOC/doc/luatex/luaintro/06-12-2.lualtx + RELOC/doc/luatex/luaintro/06-12-3.lualtx + RELOC/doc/luatex/luaintro/06-12-4.lualtx + RELOC/doc/luatex/luaintro/06-12-5.lualtx + RELOC/doc/luatex/luaintro/06-12-6.lualtx + RELOC/doc/luatex/luaintro/06-12-7.lualtx + RELOC/doc/luatex/luaintro/06-12-8.lualtx + RELOC/doc/luatex/luaintro/06-12-9.lualtx + RELOC/doc/luatex/luaintro/06-13-1.lualtx + RELOC/doc/luatex/luaintro/07-02-1.lualtx + RELOC/doc/luatex/luaintro/07-02-2.lualtx + RELOC/doc/luatex/luaintro/07-02-3.lualtx + RELOC/doc/luatex/luaintro/08-01-1.lua + RELOC/doc/luatex/luaintro/08-01-10.lua + RELOC/doc/luatex/luaintro/08-01-11.lua + RELOC/doc/luatex/luaintro/08-01-2.lua + RELOC/doc/luatex/luaintro/08-01-3.lua + RELOC/doc/luatex/luaintro/08-01-4.lua + RELOC/doc/luatex/luaintro/08-01-5.lua + RELOC/doc/luatex/luaintro/08-01-6.lua + RELOC/doc/luatex/luaintro/08-01-7.lua + RELOC/doc/luatex/luaintro/08-01-8.lua + RELOC/doc/luatex/luaintro/08-01-9.lua + RELOC/doc/luatex/luaintro/08-02-1.lua + RELOC/doc/luatex/luaintro/09-01-1.lualtx + RELOC/doc/luatex/luaintro/09-01-2.lualtx + RELOC/doc/luatex/luaintro/09-01-3.lualtx3 + RELOC/doc/luatex/luaintro/09-01-4.lualtx + RELOC/doc/luatex/luaintro/09-01-5.lualtx + RELOC/doc/luatex/luaintro/09-01-6.lualtx + RELOC/doc/luatex/luaintro/09-03-1.lualtx + RELOC/doc/luatex/luaintro/09-03-2.lualtx + RELOC/doc/luatex/luaintro/09-03-3.lualtx + RELOC/doc/luatex/luaintro/09-03-4.lualtx + RELOC/doc/luatex/luaintro/09-03-5.lualtx + RELOC/doc/luatex/luaintro/09-03-6.lualtx + RELOC/doc/luatex/luaintro/CTdefault.tex + RELOC/doc/luatex/luaintro/DEexa.sty + RELOC/doc/luatex/luaintro/DEoptions.sty + RELOC/doc/luatex/luaintro/Letter.ist + RELOC/doc/luatex/luaintro/LetterC.ist + RELOC/doc/luatex/luaintro/LoadFonts.tex + RELOC/doc/luatex/luaintro/README + RELOC/doc/luatex/luaintro/beispiel.cls + RELOC/doc/luatex/luaintro/bspcalweekly.cls + RELOC/doc/luatex/luaintro/bspdvdcoll.cls + RELOC/doc/luatex/luaintro/bspfont.cls + RELOC/doc/luatex/luaintro/bsppstricks.cls + RELOC/doc/luatex/luaintro/exa-fontconfig.tex + RELOC/doc/luatex/luaintro/exaarticle.cls + RELOC/doc/luatex/luaintro/exaarticle2.cls + RELOC/doc/luatex/luaintro/exaartplain.cls + RELOC/doc/luatex/luaintro/exabeamer.cls + RELOC/doc/luatex/luaintro/exabook.cls + RELOC/doc/luatex/luaintro/exabook2.cls + RELOC/doc/luatex/luaintro/exadante.cls + RELOC/doc/luatex/luaintro/exafoils.cls + RELOC/doc/luatex/luaintro/exafubeamer.cls + RELOC/doc/luatex/luaintro/exafupd.cls + RELOC/doc/luatex/luaintro/examargin.cls + RELOC/doc/luatex/luaintro/examemoir.cls + RELOC/doc/luatex/luaintro/examinimal-mathsymbols.cls + RELOC/doc/luatex/luaintro/examinimal.cls + RELOC/doc/luatex/luaintro/exapd.cls + RELOC/doc/luatex/luaintro/exaprosper.cls + RELOC/doc/luatex/luaintro/exareport.cls + RELOC/doc/luatex/luaintro/exaseminar.cls + RELOC/doc/luatex/luaintro/exaslidenotes.cls + RELOC/doc/luatex/luaintro/exasymbol.cls + RELOC/doc/luatex/luaintro/exaxetex.cls + RELOC/doc/luatex/luaintro/screxa.cls + RELOC/doc/luatex/luaintro/screxabook.cls + RELOC/doc/luatex/luaintro/screxareport.cls +catalogue-ctan /info/examples/luaintro +catalogue-date 2014-10-30 20:45:40 +0100 +catalogue-license lppl1.3 +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. +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. +docfiles size=41 + RELOC/doc/lualatex/lualatex-doc/News + RELOC/doc/lualatex/lualatex-doc/README + RELOC/doc/lualatex/lualatex-doc/lualatex-doc.pdf +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-license fdl + +name lualatex-math +category Package +revision 34982 +shortdesc Fixes for mathematics-related LuaLaTeX issues. +relocated 1 +longdesc The package patches a few commands of the LaTeX2e kernel and +longdesc the amsmath and mathtools packages to be more compatible with +longdesc the LuaTeX engine. It is only meaningful for LuaLaTeX documents +longdesc containing mathematical formulas, and does not exhibit any new +longdesc functionality. The fixes are mostly moved from the unicode-math +longdesc package to this package since they are not directly related to +longdesc Unicode mathematics typesetting. +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 + RELOC/source/lualatex/lualatex-math/lualatex-math.dtx + RELOC/source/lualatex/lualatex-math/lualatex-math.ins +catalogue-ctan /macros/luatex/latex/lualatex-math +catalogue-date 2014-08-19 18:28:08 +0200 +catalogue-license lppl1.3 +catalogue-version 1.4 + +name lualibs +category Package +revision 34736 +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 + 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.lua + RELOC/tex/luatex/lualibs/lualibs-file.lua + RELOC/tex/luatex/lualibs/lualibs-function.lua + RELOC/tex/luatex/lualibs/lualibs-gzip.lua + RELOC/tex/luatex/lualibs/lualibs-io.lua + RELOC/tex/luatex/lualibs/lualibs-lpeg.lua + RELOC/tex/luatex/lualibs/lualibs-lua.lua + RELOC/tex/luatex/lualibs/lualibs-math.lua + RELOC/tex/luatex/lualibs/lualibs-md5.lua + RELOC/tex/luatex/lualibs/lualibs-number.lua + RELOC/tex/luatex/lualibs/lualibs-os.lua + RELOC/tex/luatex/lualibs/lualibs-package.lua + RELOC/tex/luatex/lualibs/lualibs-set.lua + RELOC/tex/luatex/lualibs/lualibs-string.lua + RELOC/tex/luatex/lualibs/lualibs-table.lua + RELOC/tex/luatex/lualibs/lualibs-trac-inf.lua + RELOC/tex/luatex/lualibs/lualibs-unicode.lua + RELOC/tex/luatex/lualibs/lualibs-url.lua + RELOC/tex/luatex/lualibs/lualibs-util-deb.lua + RELOC/tex/luatex/lualibs/lualibs-util-dim.lua + RELOC/tex/luatex/lualibs/lualibs-util-fmt.lua + RELOC/tex/luatex/lualibs/lualibs-util-jsn.lua + RELOC/tex/luatex/lualibs/lualibs-util-lua.lua + RELOC/tex/luatex/lualibs/lualibs-util-prs.lua + RELOC/tex/luatex/lualibs/lualibs-util-sta.lua + RELOC/tex/luatex/lualibs/lualibs-util-sto.lua + RELOC/tex/luatex/lualibs/lualibs-util-str.lua + RELOC/tex/luatex/lualibs/lualibs-util-tab.lua + RELOC/tex/luatex/lualibs/lualibs-util-tpl.lua + RELOC/tex/luatex/lualibs/lualibs.lua +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-ctan /macros/luatex/generic/lualibs +catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-license gpl2 +catalogue-version 2.2 + +name luamplib +category Package +revision 38019 +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 + RELOC/doc/luatex/luamplib/NEWS + RELOC/doc/luatex/luamplib/README + RELOC/doc/luatex/luamplib/luamplib.pdf + RELOC/doc/luatex/luamplib/test-luamplib-latex.tex + RELOC/doc/luatex/luamplib/test-luamplib-plain.tex +srcfiles size=22 + RELOC/source/luatex/luamplib/Makefile + RELOC/source/luatex/luamplib/luamplib.dtx +catalogue-ctan /macros/luatex/generic/luamplib +catalogue-date 2015-08-01 16:12:44 +0200 +catalogue-license gpl2 +catalogue-topics mp-use graphics-in-tex luatex +catalogue-version 2.11.0 + +name luaotfload +category Package +revision 35328 +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 luaotfload.ARCH +runfiles size=619 + texmf-dist/scripts/luaotfload/luaotfload-tool.lua + texmf-dist/scripts/luaotfload/mkcharacters + texmf-dist/scripts/luaotfload/mkglyphlist + texmf-dist/scripts/luaotfload/mkstatus + texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-basics-gen.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-basics-nod.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-blacklist.cnf + texmf-dist/tex/luatex/luaotfload/luaotfload-characters.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-colors.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-configuration.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-diagnostics.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-features.lua + texmf-dist/tex/luatex/luaotfload/luaotfload-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-glyphlist.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-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-ctan /macros/luatex/generic/luaotfload +catalogue-date 2015-01-14 14:32:11 +0100 +catalogue-license gpl2 +catalogue-version 2.5-4 + +name luaotfload.i386-linux +category Package +revision 34647 +shortdesc i386-linux files of luaotfload +binfiles arch=i386-linux size=1 + bin/i386-linux/luaotfload-tool + +name luasseq +category Package +revision 37877 +shortdesc Drawing spectral sequences in LuaLaTeX. +relocated 1 +longdesc The package is an update of the author's sseq package, for use +longdesc with LuaLaTeX. This version uses less memory, and operates +longdesc faster than the original; it also offers several enhancements. +runfiles size=11 + RELOC/scripts/luasseq/luasseq.lua + RELOC/tex/lualatex/luasseq/luasseq.sty +docfiles size=56 + RELOC/doc/lualatex/luasseq/README + RELOC/doc/lualatex/luasseq/luasseq.pdf +srcfiles size=11 + RELOC/source/lualatex/luasseq/luasseq.dtx + RELOC/source/lualatex/luasseq/luasseq.ins +catalogue-ctan /macros/luatex/latex/luasseq +catalogue-date 2015-07-16 14:41:10 +0200 +catalogue-license lppl +catalogue-topics maths luatex + +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 + RELOC/tex/luatex/luatexbase/luatexbase-attr.sty + RELOC/tex/luatex/luatexbase/luatexbase-cctb.sty + RELOC/tex/luatex/luatexbase/luatexbase-compat.sty + RELOC/tex/luatex/luatexbase/luatexbase-loader.sty + RELOC/tex/luatex/luatexbase/luatexbase-mcb.sty + RELOC/tex/luatex/luatexbase/luatexbase-modutils.sty + RELOC/tex/luatex/luatexbase/luatexbase-regs.sty + RELOC/tex/luatex/luatexbase/luatexbase.loader.lua + RELOC/tex/luatex/luatexbase/luatexbase.sty + 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 + +name luatexja +category Package +revision 38309 +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 + 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.sty + RELOC/tex/luatex/luatexja/addons/luatexja-otf.sty + RELOC/tex/luatex/luatexja/addons/luatexja-preset.sty + RELOC/tex/luatex/luatexja/addons/luatexja-ruby.sty + RELOC/tex/luatex/luatexja/addons/luatexja-zhfonts.sty + RELOC/tex/luatex/luatexja/jfm-CCT.lua + RELOC/tex/luatex/luatexja/jfm-banjiao.lua + RELOC/tex/luatex/luatexja/jfm-jis.lua + RELOC/tex/luatex/luatexja/jfm-kaiming.lua + RELOC/tex/luatex/luatexja/jfm-min.lua + RELOC/tex/luatex/luatexja/jfm-mono.lua + RELOC/tex/luatex/luatexja/jfm-prop.lua + RELOC/tex/luatex/luatexja/jfm-propv.lua + RELOC/tex/luatex/luatexja/jfm-quanjiao.lua + RELOC/tex/luatex/luatexja/jfm-tmin.lua + RELOC/tex/luatex/luatexja/jfm-ujis.lua + RELOC/tex/luatex/luatexja/jfm-ujisv.lua + RELOC/tex/luatex/luatexja/lltjext.sty + RELOC/tex/luatex/luatexja/ltj-adjust.lua + RELOC/tex/luatex/luatexja/ltj-base.lua + RELOC/tex/luatex/luatexja/ltj-base.sty + RELOC/tex/luatex/luatexja/ltj-charrange.lua + RELOC/tex/luatex/luatexja/ltj-compat-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-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-math.lua + RELOC/tex/luatex/luatexja/ltj-otf.lua + RELOC/tex/luatex/luatexja/ltj-plain.sty + RELOC/tex/luatex/luatexja/ltj-pretreat.lua + RELOC/tex/luatex/luatexja/ltj-rmlgbm.lua + RELOC/tex/luatex/luatexja/ltj-ruby.lua + RELOC/tex/luatex/luatexja/ltj-setwidth.lua + RELOC/tex/luatex/luatexja/ltj-stack.lua + RELOC/tex/luatex/luatexja/ltj-tangle.lua + RELOC/tex/luatex/luatexja/ltj-unicode-ccfix.lua + RELOC/tex/luatex/luatexja/ltjarticle.cls + RELOC/tex/luatex/luatexja/ltjbk10.clo + RELOC/tex/luatex/luatexja/ltjbk11.clo + RELOC/tex/luatex/luatexja/ltjbk12.clo + RELOC/tex/luatex/luatexja/ltjbook.cls + RELOC/tex/luatex/luatexja/ltjltxdoc.cls + RELOC/tex/luatex/luatexja/ltjreport.cls + RELOC/tex/luatex/luatexja/ltjsarticle.cls + RELOC/tex/luatex/luatexja/ltjsbook.cls + RELOC/tex/luatex/luatexja/ltjsize10.clo + RELOC/tex/luatex/luatexja/ltjsize11.clo + RELOC/tex/luatex/luatexja/ltjsize12.clo + RELOC/tex/luatex/luatexja/ltjskiyou.cls + RELOC/tex/luatex/luatexja/ltjspf.cls + RELOC/tex/luatex/luatexja/ltjtarticle.cls + RELOC/tex/luatex/luatexja/ltjtbk10.clo + RELOC/tex/luatex/luatexja/ltjtbk11.clo + RELOC/tex/luatex/luatexja/ltjtbk12.clo + RELOC/tex/luatex/luatexja/ltjtbook.cls + RELOC/tex/luatex/luatexja/ltjtreport.cls + RELOC/tex/luatex/luatexja/ltjtsize10.clo + RELOC/tex/luatex/luatexja/ltjtsize11.clo + RELOC/tex/luatex/luatexja/ltjtsize12.clo + RELOC/tex/luatex/luatexja/luatexja-compat.sty + RELOC/tex/luatex/luatexja/luatexja-core.sty + RELOC/tex/luatex/luatexja/luatexja.lua + RELOC/tex/luatex/luatexja/luatexja.sty + RELOC/tex/luatex/luatexja/patches/lltjcore.sty + RELOC/tex/luatex/luatexja/patches/lltjdefs.sty + RELOC/tex/luatex/luatexja/patches/lltjfont.sty + RELOC/tex/luatex/luatexja/patches/lltjp-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-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-ctan /macros/luatex/generic/luatexja +catalogue-date 2015-09-06 09:23:59 +0200 +catalogue-license bsd +catalogue-topics japanese luatex class +catalogue-version 20150906.0 + +name luatexko +category Package +revision 37775 +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 + 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-ctan /macros/luatex/generic/luatexko +catalogue-date 2015-07-02 20:51:48 +0200 +catalogue-license lppl1.3 +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 + +name luatextra +category Package +revision 20747 +shortdesc Additional macros for Plain TeX and LaTeX in LuaTeX. +relocated 1 +longdesc The package provides a coherent extended programming +longdesc environment for use with luaTeX. It loads packages fontspec, +longdesc luatexbase and lualibs, and provides additional user-level +longdesc features and goodies. The package is under development, and its +longdesc specification may be expected to change. +runfiles size=1 + RELOC/tex/lualatex/luatextra/luatextra.sty +docfiles size=80 + RELOC/doc/lualatex/luatextra/News + RELOC/doc/lualatex/luatextra/README + RELOC/doc/lualatex/luatextra/luatextra.pdf + RELOC/doc/lualatex/luatextra/test.tex +srcfiles size=3 + RELOC/source/lualatex/luatextra/Makefile + RELOC/source/lualatex/luatextra/luatextra.dtx +catalogue-ctan /macros/luatex/latex/luatextra +catalogue-date 2014-04-30 15:31:14 +0200 +catalogue-license pd +catalogue-version 1.0.1 + +name luatodonotes +category Package +revision 36505 +shortdesc Add editing annotations in a LuaLaTeX document. +relocated 1 +longdesc The package allows the user to insert comments into a document +longdesc that suggest (for example) further editing that may be needed. +longdesc The comments are shown in the margins alongside the text; +longdesc different styles for the comments may be used; the styles are +longdesc selected using package options. The package is based on the +longdesc package todonotes, and depends heavily on Lua, so it can only +longdesc be used with LuaLaTeX. +runfiles size=33 + 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-ctan /macros/luatex/latex/luatodonotes +catalogue-date 2015-03-13 17:59:28 +0100 +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-version 0.4 + +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 + RELOC/tex/luatex/luaxml/luaxml-mod-handler.lua + RELOC/tex/luatex/luaxml/luaxml-mod-xml.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-ctan /macros/luatex/generic/luaxml +catalogue-date 2015-01-05 20:19:10 +0100 +catalogue-license other-free +catalogue-version 0.0.2 + +name lxfonts +category Package +revision 32354 +shortdesc Set of slide fonts based on CM. +relocated 1 +longdesc The bundle contains the traditional slides fonts revised to be +longdesc completely usable both as text fonts and mathematics fonts; +longdesc they are fully integrate with the new operators, letters, +longdesc symbols and extensible delimiter fonts, as well as with the AMS +longdesc fonts, all redone with the same stylistic parameters. +execute addMixedMap lxfonts.map +runfiles size=397 + RELOC/fonts/map/dvips/lxfonts/lxfonts.map + RELOC/fonts/source/public/lxfonts/lamsya.mf + RELOC/fonts/source/public/lxfonts/lamsyb.mf + RELOC/fonts/source/public/lxfonts/lasymbols.mf + RELOC/fonts/source/public/lxfonts/lbigacc.mf + RELOC/fonts/source/public/lxfonts/lbigdel.mf + RELOC/fonts/source/public/lxfonts/lbigop.mf + RELOC/fonts/source/public/lxfonts/lbsymbols.mf + RELOC/fonts/source/public/lxfonts/lcmbsy8.mf + RELOC/fonts/source/public/lxfonts/lcmex8.mf + RELOC/fonts/source/public/lxfonts/lcmmi8.mf + RELOC/fonts/source/public/lxfonts/lcmmib8.mf + RELOC/fonts/source/public/lxfonts/lcmsy8.mf + RELOC/fonts/source/public/lxfonts/leclb8.mf + RELOC/fonts/source/public/lxfonts/lecli8.mf + RELOC/fonts/source/public/lxfonts/leclo8.mf + RELOC/fonts/source/public/lxfonts/leclq8.mf + RELOC/fonts/source/public/lxfonts/lexroman.mf + RELOC/fonts/source/public/lxfonts/lexslides.mf + RELOC/fonts/source/public/lxfonts/llasy.mf + RELOC/fonts/source/public/lxfonts/llasy8.mf + RELOC/fonts/source/public/lxfonts/llasyb8.mf + RELOC/fonts/source/public/lxfonts/llcmss8.mf + RELOC/fonts/source/public/lxfonts/llcmssb8.mf + RELOC/fonts/source/public/lxfonts/llcmssi8.mf + RELOC/fonts/source/public/lxfonts/llcmsso8.mf + RELOC/fonts/source/public/lxfonts/lmathex.mf + RELOC/fonts/source/public/lxfonts/lmathit.mf + RELOC/fonts/source/public/lxfonts/lmathsy.mf + RELOC/fonts/source/public/lxfonts/lmsam8.mf + RELOC/fonts/source/public/lxfonts/lmsbm8.mf + RELOC/fonts/source/public/lxfonts/lroman.mf + RELOC/fonts/source/public/lxfonts/ltclb8.mf + RELOC/fonts/source/public/lxfonts/ltcli8.mf + RELOC/fonts/source/public/lxfonts/ltclo8.mf + RELOC/fonts/source/public/lxfonts/ltclq8.mf + RELOC/fonts/source/public/lxfonts/ltxsymb.mf + RELOC/fonts/source/public/lxfonts/lxbbase.mf + RELOC/fonts/source/public/lxfonts/lxbbold.mf + RELOC/fonts/source/public/lxfonts/lxbcaps.mf + RELOC/fonts/tfm/public/lxfonts/lcmbsy8.tfm + RELOC/fonts/tfm/public/lxfonts/lcmex8.tfm + RELOC/fonts/tfm/public/lxfonts/lcmmi8.tfm + RELOC/fonts/tfm/public/lxfonts/lcmmib8.tfm + RELOC/fonts/tfm/public/lxfonts/lcmsy8.tfm + RELOC/fonts/tfm/public/lxfonts/leclb8.tfm + RELOC/fonts/tfm/public/lxfonts/lecli8.tfm + RELOC/fonts/tfm/public/lxfonts/leclo8.tfm + RELOC/fonts/tfm/public/lxfonts/leclq8.tfm + RELOC/fonts/tfm/public/lxfonts/llasy8.tfm + RELOC/fonts/tfm/public/lxfonts/llasyb8.tfm + RELOC/fonts/tfm/public/lxfonts/llcmss8.tfm + RELOC/fonts/tfm/public/lxfonts/llcmssb8.tfm + RELOC/fonts/tfm/public/lxfonts/llcmssi8.tfm + RELOC/fonts/tfm/public/lxfonts/llcmsso8.tfm + RELOC/fonts/tfm/public/lxfonts/lmsam8.tfm + RELOC/fonts/tfm/public/lxfonts/lmsbm8.tfm + RELOC/fonts/tfm/public/lxfonts/ltclb8.tfm + RELOC/fonts/tfm/public/lxfonts/ltcli8.tfm + RELOC/fonts/tfm/public/lxfonts/ltclo8.tfm + RELOC/fonts/tfm/public/lxfonts/ltclq8.tfm + RELOC/fonts/type1/public/lxfonts/lcmbsy8.pfb + RELOC/fonts/type1/public/lxfonts/lcmex8.pfb + RELOC/fonts/type1/public/lxfonts/lcmmi8.pfb + RELOC/fonts/type1/public/lxfonts/lcmmib8.pfb + RELOC/fonts/type1/public/lxfonts/lcmsy8.pfb + RELOC/fonts/type1/public/lxfonts/leclb8.pfb + RELOC/fonts/type1/public/lxfonts/lecli8.pfb + RELOC/fonts/type1/public/lxfonts/leclo8.pfb + RELOC/fonts/type1/public/lxfonts/leclq8.pfb + RELOC/fonts/type1/public/lxfonts/llasy8.pfb + RELOC/fonts/type1/public/lxfonts/llasyb8.pfb + RELOC/fonts/type1/public/lxfonts/llcmss8.pfb + RELOC/fonts/type1/public/lxfonts/llcmssb8.pfb + RELOC/fonts/type1/public/lxfonts/llcmssi8.pfb + RELOC/fonts/type1/public/lxfonts/llcmsso8.pfb + RELOC/fonts/type1/public/lxfonts/lmsam8.pfb + RELOC/fonts/type1/public/lxfonts/lmsbm8.pfb + RELOC/fonts/type1/public/lxfonts/ltclb8.pfb + RELOC/fonts/type1/public/lxfonts/ltcli8.pfb + RELOC/fonts/type1/public/lxfonts/ltclo8.pfb + RELOC/fonts/type1/public/lxfonts/ltclq8.pfb + RELOC/tex/latex/lxfonts/lgrllcmss.fd + RELOC/tex/latex/lxfonts/lgrllcmtt.fd + RELOC/tex/latex/lxfonts/lxfonts.sty + RELOC/tex/latex/lxfonts/omlllcmm.fd + RELOC/tex/latex/lxfonts/omsllcmsy.fd + RELOC/tex/latex/lxfonts/omxllcmex.fd + RELOC/tex/latex/lxfonts/ot1llcmss.fd + RELOC/tex/latex/lxfonts/ot1llcmtt.fd + RELOC/tex/latex/lxfonts/t1llcmss.fd + RELOC/tex/latex/lxfonts/t1llcmtt.fd + RELOC/tex/latex/lxfonts/ts1llcmss.fd + RELOC/tex/latex/lxfonts/ulllasy.fd + RELOC/tex/latex/lxfonts/ulmsa.fd + RELOC/tex/latex/lxfonts/ulmsb.fd +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-license lppl +catalogue-version 2.0b + +name ly1 +category Package +revision 21086 +shortdesc Support for LY1 LaTeX encoding. +relocated 1 +longdesc The Y&Y 'texnansi' (TeX and ANSI, for Microsoft interpretations +longdesc of ANSI standards) encoding lives on, even after the decease of +longdesc the company; it is known in the LaTeX scheme of things as LY1 +longdesc encoding. This bundle includes metrics and LaTeX macros to use +longdesc the basic three (Times, Helvetica and Courier) Adobe Type 1 +longdesc fonts in LaTeX using LY1 encoding. +runfiles size=104 + RELOC/fonts/enc/dvips/ly1/texnansi.enc + RELOC/fonts/map/dvips/ly1/pag8y.map + RELOC/fonts/map/dvips/ly1/pbk8y.map + RELOC/fonts/map/dvips/ly1/pcr8y.map + RELOC/fonts/map/dvips/ly1/phv8y.map + RELOC/fonts/map/dvips/ly1/pnc8y.map + RELOC/fonts/map/dvips/ly1/ppl8y.map + RELOC/fonts/map/dvips/ly1/ptm8y.map + RELOC/fonts/map/dvips/ly1/pzc8y.map + RELOC/fonts/tfm/adobe/ly1/pagd8y.tfm + RELOC/fonts/tfm/adobe/ly1/pagdo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pagk8y.tfm + RELOC/fonts/tfm/adobe/ly1/pagko8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkd8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkdi8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkdo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkl8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbkli8y.tfm + RELOC/fonts/tfm/adobe/ly1/pbklo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pcrb8y.tfm + RELOC/fonts/tfm/adobe/ly1/pcrbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pcrr8y.tfm + RELOC/fonts/tfm/adobe/ly1/pcrro8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvb8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvb8yn.tfm + RELOC/fonts/tfm/adobe/ly1/phvbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvbo8yn.tfm + RELOC/fonts/tfm/adobe/ly1/phvr8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvr8yn.tfm + RELOC/fonts/tfm/adobe/ly1/phvro8y.tfm + RELOC/fonts/tfm/adobe/ly1/phvro8yn.tfm + RELOC/fonts/tfm/adobe/ly1/pncb8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncbi8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncr8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncri8y.tfm + RELOC/fonts/tfm/adobe/ly1/pncro8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplb8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplbi8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplbu8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplr8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplr8yn.tfm + RELOC/fonts/tfm/adobe/ly1/pplri8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplro8y.tfm + RELOC/fonts/tfm/adobe/ly1/pplrr8ye.tfm + RELOC/fonts/tfm/adobe/ly1/pplru8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmb8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmbc8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmbi8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmbo8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmr8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmr8yn.tfm + RELOC/fonts/tfm/adobe/ly1/ptmrc8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmri8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmro8y.tfm + RELOC/fonts/tfm/adobe/ly1/ptmrr8ye.tfm + RELOC/fonts/tfm/adobe/ly1/pzcmi8y.tfm + RELOC/fonts/vf/adobe/ly1/ptmbc8y.vf + RELOC/fonts/vf/adobe/ly1/ptmrc8y.vf + RELOC/tex/latex/ly1/ly1enc.def + RELOC/tex/latex/ly1/ly1pag.fd + RELOC/tex/latex/ly1/ly1pbk.fd + RELOC/tex/latex/ly1/ly1pcr.fd + RELOC/tex/latex/ly1/ly1phv.fd + RELOC/tex/latex/ly1/ly1pnc.fd + RELOC/tex/latex/ly1/ly1ppl.fd + RELOC/tex/latex/ly1/ly1ptm.fd + RELOC/tex/latex/ly1/ly1pzc.fd + RELOC/tex/latex/ly1/texnansi.sty + RELOC/tex/plain/ly1/texnansi.tex +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 + +name macros2e +category Package +revision 23236 +shortdesc A list of internal LaTeX2e macros. +relocated 1 +longdesc This document lists the internal macros defined by the LaTeX2e +longdesc base files which can also be useful to package authors. The +longdesc macros are hyper-linked to their description in source2e. For +longdesc this to work both PDFs must be inside the same directory. This +longdesc document is not yet complete in content and format and may miss +longdesc some macros. +docfiles size=53 + RELOC/doc/latex/macros2e/macros2e.pdf + RELOC/doc/latex/macros2e/macros2e.tex +catalogue-ctan /info/macros2e +catalogue-date 2015-03-22 20:18:57 +0100 +catalogue-license lppl +catalogue-version v0.4 + +name macroswap +category Package +revision 31498 +shortdesc Swap the definitions of two LaTeX macros. +relocated 1 +longdesc The package provides simple utility methods to swap the meaning +longdesc (token expansion) of two macros by name. +runfiles size=1 + RELOC/tex/latex/macroswap/macroswap.sty +docfiles size=42 + RELOC/doc/latex/macroswap/Makefile + RELOC/doc/latex/macroswap/README + RELOC/doc/latex/macroswap/macroswap.pdf +srcfiles size=3 + RELOC/source/latex/macroswap/macroswap.dtx + RELOC/source/latex/macroswap/macroswap.ins +catalogue-ctan /macros/latex/contrib/macroswap +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.1 + +name mafr +category Package +revision 15878 +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 +docfiles size=26 + RELOC/doc/latex/mafr/ALIRE + RELOC/doc/latex/mafr/COPYING + RELOC/doc/latex/mafr/README + RELOC/doc/latex/mafr/docmafr.pdf + RELOC/doc/latex/mafr/docmafr.tex + RELOC/doc/latex/mafr/triangle.eps +catalogue-ctan /macros/latex/contrib/mafr +catalogue-date 2012-05-21 14:42:12 +0200 +catalogue-license gpl +catalogue-version 1.0 + +name magaz +category Package +revision 24694 +shortdesc Magazine layout. +relocated 1 +longdesc The current version does special formatting for the first line +longdesc of text in a paragraph. The package is part of a larger body of +longdesc tools which remain in preparation. +runfiles size=3 + RELOC/tex/latex/magaz/magaz.sty +docfiles size=62 + RELOC/doc/latex/magaz/magaz.pdf + RELOC/doc/latex/magaz/magaz.tex +catalogue-ctan /macros/latex/contrib/magaz +catalogue-date 2013-11-21 21:33:57 +0100 +catalogue-license other-free +catalogue-version 0.4 + +name mailing +category Package +revision 15878 +shortdesc Macros for mail merging. +relocated 1 +longdesc This package is for use when sending a large number of letters, +longdesc all with the same body text. The package's \addressfile command +longdesc is used to specify who the letter is to be sent to; the body of +longdesc the \mailingtext command specifies the text of the letters, +longdesc possibly using macros defined in the \addressfile. +runfiles size=1 + RELOC/tex/latex/mailing/mailing.sty +docfiles size=18 + RELOC/doc/latex/mailing/mailing.pdf + RELOC/doc/latex/mailing/manifest.txt +srcfiles size=4 + RELOC/source/latex/mailing/mailing.dtx + RELOC/source/latex/mailing/mailing.ins +catalogue-ctan /macros/latex/contrib/mailing +catalogue-date 2012-05-25 22:58:30 +0200 +catalogue-license lppl + +name mailmerge +category Package +revision 15878 +shortdesc Repeating text field substitution. +relocated 1 +longdesc The package mailmerge provides an interface to produce text +longdesc from a template, where fields are replaced by actual data, as +longdesc in a database. The package may be used to produce several +longdesc letters from a template, certificates or other such documents. +longdesc It allows access to the entry number, number of entries and so +longdesc on. +runfiles size=1 + RELOC/tex/latex/mailmerge/mailmerge.sty +docfiles size=27 + RELOC/doc/latex/mailmerge/README + RELOC/doc/latex/mailmerge/mailmerge.pdf +srcfiles size=4 + RELOC/source/latex/mailmerge/mailmerge.dtx + RELOC/source/latex/mailmerge/mailmerge.ins +catalogue-ctan /macros/latex/contrib/mailmerge +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +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. +depend make4ht.ARCH +runfiles size=16 + texmf-dist/scripts/make4ht/filters/make4ht-cleanspan-nat.lua + texmf-dist/scripts/make4ht/filters/make4ht-cleanspan.lua + texmf-dist/scripts/make4ht/filters/make4ht-entities.lua + texmf-dist/scripts/make4ht/filters/make4ht-filter.lua + texmf-dist/scripts/make4ht/filters/make4ht-fixligatures.lua + texmf-dist/scripts/make4ht/filters/make4ht-hruletohr.lua + texmf-dist/scripts/make4ht/lapp-mk4.lua + texmf-dist/scripts/make4ht/make4ht + texmf-dist/scripts/make4ht/make4ht-lib.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-ctan /support/make4ht +catalogue-date 2015-07-02 05:28:32 +0200 +catalogue-license lppl1.3 +catalogue-topics cvt-html +catalogue-version 0.1 + +name make4ht.i386-linux +category Package +revision 37750 +shortdesc i386-linux files of make4ht +binfiles arch=i386-linux size=1 + bin/i386-linux/make4ht + +name makebarcode +category Package +revision 15878 +shortdesc Print various kinds 2/5 and Code 39 bar codes. +relocated 1 +longdesc The package contains macros for printing various 2/5 bar codes +longdesc and Code 39 bar codes. The macros do not use fonts but create +longdesc the bar codes directly using vertical rules. It is therefore +longdesc possible to vary width to height ratio, ratio of thin and thick +longdesc bars. The package is therefore convenient for printing ITF bar +longdesc codes as well as bar codes for identification labels for HP +longdesc storage media. +runfiles size=5 + RELOC/tex/latex/makebarcode/makebarcode.sty +docfiles size=79 + RELOC/doc/latex/makebarcode/License.txt + RELOC/doc/latex/makebarcode/README + RELOC/doc/latex/makebarcode/makebarcode.pdf + RELOC/doc/latex/makebarcode/makebarcode.tex +catalogue-ctan /macros/latex/contrib/makebarcode +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name makebox +category Package +revision 15878 +shortdesc Defines a \makebox* command. +relocated 1 +longdesc Define a \makebox* command that does the same as a \makebox +longdesc command, except that the width is given by a sample text +longdesc instead of an explicit length measure. +runfiles size=1 + RELOC/tex/latex/makebox/makebox.sty +docfiles size=74 + RELOC/doc/latex/makebox/ChangeLog + RELOC/doc/latex/makebox/README + RELOC/doc/latex/makebox/getversion.tex + RELOC/doc/latex/makebox/makebox.pdf + RELOC/doc/latex/makebox/makebox.xml + RELOC/doc/latex/makebox/testmakebox.tex +srcfiles size=4 + RELOC/source/latex/makebox/Makefile + RELOC/source/latex/makebox/makebox.dtx + RELOC/source/latex/makebox/makebox.ins +catalogue-ctan /macros/latex/contrib/makebox +catalogue-date 2012-04-03 18:09:05 +0200 +catalogue-license lppl +catalogue-version 0.1 + +name makecell +category Package +revision 15878 +shortdesc Tabular column heads and multilined cells. +relocated 1 +longdesc This package supports common layouts for tabular column heads +longdesc in whole documents, based on one-column tabular environment. In +longdesc addition, it can create multi-lined tabular cells. The Package +longdesc also offers: a macro which changes the vertical space around +longdesc all the cells in a tabular environment (similar to the function +longdesc of the tabls package, but using the facilities of the array) +longdesc macros for multirow cells, which use the facilities of the +longdesc multirow package; macros to number rows in tables, or to skip +longdesc cells; diagonally divided cells; horizontal lines in tabular +longdesc environments with defined thickness. +runfiles size=4 + RELOC/tex/latex/makecell/makecell.sty +docfiles size=209 + RELOC/doc/latex/makecell/README + RELOC/doc/latex/makecell/makecell-rus.pdf + RELOC/doc/latex/makecell/makecell-rus.tex + RELOC/doc/latex/makecell/makecell.pdf +srcfiles size=17 + RELOC/source/latex/makecell/makecell.dtx +catalogue-ctan /macros/latex/contrib/makecell +catalogue-date 2014-10-15 23:41:14 +0200 +catalogue-license lppl +catalogue-version 0.1e + +name makecirc +category Package +revision 15878 +shortdesc A MetaPost library for drawing electrical circuit diagrams. +relocated 1 +longdesc MakeCirc is a MetaPost library that contains diverse symbols +longdesc for use in circuit diagrams. MakeCirc offers a high quality +longdesc tool, with a simple syntax. MakeCirc is completely integrated +longdesc with LaTeX documents and with other MetaPost drawing/graphic. +longdesc Its output is a PostScript file. MakeCirc only requires (La)TeX +longdesc and MetaPost to work. +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-license lppl + +name makecmds +category Package +revision 15878 +shortdesc The new \makecommand command always (re)defines a command. +relocated 1 +longdesc The package provides a \makecommand command, which is like +longdesc \(re)newcommand except it always (re)defines a command. There +longdesc is also \makeenvironment and \provideenvironment for +longdesc environments. +runfiles size=1 + RELOC/tex/latex/makecmds/makecmds.sty +docfiles size=34 + RELOC/doc/latex/makecmds/README + RELOC/doc/latex/makecmds/makecmds.pdf +srcfiles size=5 + RELOC/source/latex/makecmds/makecmds.dtx + RELOC/source/latex/makecmds/makecmds.ins +catalogue-ctan /macros/latex/contrib/makecmds +catalogue-date 2012-05-25 22:58:30 +0200 +catalogue-license lppl + +name makedtx +category Package +revision 15878 +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 +catalogue-ctan /support/makedtx +catalogue-date 2012-05-21 14:42:12 +0200 +catalogue-license lppl +catalogue-version 0.94b + +name makeglos +category Package +revision 15878 +shortdesc Include a glossary into a document. +relocated 1 +longdesc The package provides the means to include a glossary into a +longdesc document. The glossary is prepared by an external program, such +longdesc as xindy or makeindex, in the same way that an index is made. +runfiles size=1 + RELOC/tex/latex/makeglos/makeglos.sty +docfiles size=18 + RELOC/doc/latex/makeglos/README + RELOC/doc/latex/makeglos/makeglos.pdf + RELOC/doc/latex/makeglos/makeglos.tex + RELOC/doc/latex/makeglos/makeglos.xdy +catalogue-ctan /macros/latex/contrib/makeglos +catalogue-date 2012-07-06 13:09:55 +0200 +catalogue-license gpl + +name makeindex +category Package +revision 37078 +catalogue makeindexk +shortdesc Makeindex development sources. +longdesc The package contains the development sources of makeindex, as +longdesc derived from the texlive subversion repository. +depend makeindex.ARCH +runfiles size=9 + texmf-dist/makeindex/base/din.ist + texmf-dist/makeindex/base/icase.ist + texmf-dist/makeindex/base/latex.ist + texmf-dist/makeindex/base/math.ist + texmf-dist/makeindex/base/mkind.ist + texmf-dist/makeindex/base/puncts.ist + texmf-dist/makeindex/base/tex.ist + texmf-dist/tex/plain/makeindex/idxmac.tex +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-license other-free + +name makeindex.i386-linux +category Package +revision 36790 +shortdesc i386-linux files of makeindex +binfiles arch=i386-linux size=46 + bin/i386-linux/makeindex + bin/i386-linux/mkindex + +name makeplot +category Package +revision 15878 +shortdesc Easy plots from Matlab in LaTeX. +relocated 1 +longdesc Existing approaches to create EPS files from Matlab (laprint, +longdesc mma2ltx, print -eps, etc.) aren't satisfactory; makeplot aims +longdesc to resolve this problem. Makeplot is a LaTeX package that uses +longdesc the pstricks pst-plot functions to plot data that it takes from +longdesc Matlab output files. +runfiles size=5 + RELOC/tex/latex/makeplot/makeplot.sty +docfiles size=40 + RELOC/doc/latex/makeplot/README + RELOC/doc/latex/makeplot/data1.mat + RELOC/doc/latex/makeplot/data2.mat + RELOC/doc/latex/makeplot/makeplot.pdf + RELOC/doc/latex/makeplot/mptest.tex +srcfiles size=12 + RELOC/source/latex/makeplot/makeplot.dtx + RELOC/source/latex/makeplot/makeplot.ins +catalogue-ctan /graphics/pstricks/contrib/makeplot +catalogue-date 2013-07-15 20:25:07 +0200 +catalogue-license lppl +catalogue-version 1.0.6 + +name makeshape +category Package +revision 28973 +shortdesc Declare new PGF shapes. +relocated 1 +longdesc The package simplifies production of custom shapes with correct +longdesc anchor borders, in PGF/TikZ; the only requirement is a PGF path +longdesc describing the anchor border. The package also provides macros +longdesc that help with the management of shape parameters, and the +longdesc definition of anchor points. +runfiles size=2 + RELOC/tex/latex/makeshape/makeshape.sty +docfiles size=220 + RELOC/doc/latex/makeshape/README + RELOC/doc/latex/makeshape/makeshape.pdf + RELOC/doc/latex/makeshape/ontesting.pdf + RELOC/doc/latex/makeshape/sampleshape.tex + RELOC/doc/latex/makeshape/testsample.pdf + RELOC/doc/latex/makeshape/testsample.tex +srcfiles size=27 + RELOC/source/latex/makeshape/makeshape.dtx + RELOC/source/latex/makeshape/makeshape.ins + RELOC/source/latex/makeshape/ontesting.dtx +catalogue-ctan /graphics/pgf/contrib/makeshape +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 2.1 + +name mandi +category Package +revision 35931 +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 + RELOC/doc/latex/mandi/vdemo.py +srcfiles size=66 + RELOC/source/latex/mandi/mandi.dtx + RELOC/source/latex/mandi/mandi.ins +catalogue-ctan /macros/latex/contrib/mandi +catalogue-date 2015-01-05 12:59:16 +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 + +name manfnt +category Package +revision 35799 +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 +srcfiles size=7 + RELOC/source/latex/manfnt/manfnt.dtx + RELOC/source/latex/manfnt/manfnt.ins +catalogue-ctan /macros/latex/contrib/manfnt +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name manuscript +category Package +revision 36110 +shortdesc Emulate look of a document typed on a typewriter. +relocated 1 +longdesc This package is designed for those who have to submit +longdesc dissertations, etc., to institutions that still maintain the +longdesc typewriter is the summit of non-professional printing. +runfiles size=1 + RELOC/tex/latex/manuscript/manuscript.sty +docfiles size=15 + RELOC/doc/latex/manuscript/Makefile + RELOC/doc/latex/manuscript/README + RELOC/doc/latex/manuscript/manuscript.pdf +srcfiles size=6 + RELOC/source/latex/manuscript/manuscript.drv + RELOC/source/latex/manuscript/manuscript.dtx + RELOC/source/latex/manuscript/manuscript.ins +catalogue-ctan /macros/latex/contrib/manuscript +catalogue-date 2015-01-23 06:27:26 +0100 +catalogue-license lppl +catalogue-version 1.7 + +name margbib +category Package +revision 15878 +shortdesc Display bibitem tags in the margins. +relocated 1 +longdesc The package redefines the 'thebibliography' environment to +longdesc place the citation key into the margin. +runfiles size=1 + RELOC/tex/latex/margbib/margbib.sty +docfiles size=49 + RELOC/doc/latex/margbib/margbib.pdf +srcfiles size=3 + RELOC/source/latex/margbib/margbib.dtx + RELOC/source/latex/margbib/margbib.ins +catalogue-ctan /macros/latex/contrib/margbib +catalogue-date 2012-04-30 16:16:20 +0200 +catalogue-license gpl +catalogue-version 1.0c + +name marginfix +category Package +revision 31598 +shortdesc Patch \marginpar to avoid overfull margins. +relocated 1 +longdesc Authors using LaTeX to typeset books with significant margin +longdesc material often run into the problem of long notes running off +longdesc the bottom of the page. A typical workaround is to insert +longdesc \vshift commands by hand, but this is a tedious process that is +longdesc invalidated when pagination changes. Another workaround is +longdesc memoir's \sidebar function, but this can be unsatisfying for +longdesc short textual notes, and standard marginpars cannot be mixed +longdesc with sidebars. This package implements a solution to make +longdesc marginpars "just work" by keeping a list of floating inserts +longdesc and arranging them intelligently in the output routine. +runfiles size=4 + RELOC/tex/latex/marginfix/marginfix.sty +docfiles size=66 + RELOC/doc/latex/marginfix/README + RELOC/doc/latex/marginfix/marginfix.pdf +srcfiles size=17 + RELOC/source/latex/marginfix/marginfix.dtx + RELOC/source/latex/marginfix/marginfix.ins +catalogue-ctan /macros/latex/contrib/marginfix +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name marginnote +category Package +revision 25880 +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 +srcfiles size=10 + RELOC/source/latex/marginnote/README + RELOC/source/latex/marginnote/marginnote.dtx + RELOC/source/latex/marginnote/marginnote.ins +catalogue-ctan /macros/latex/contrib/marginnote +catalogue-date 2012-04-10 20:26:14 +0200 +catalogue-license lppl +catalogue-version v1.1i + +name marvosym +category Package +revision 29349 +shortdesc Martin Vogel's Symbols (marvosym) font. +relocated 1 +longdesc Martin Vogel's Symbol font (marvosym) contains the Euro +longdesc currency symbol as defined by the European commission, along +longdesc with symbols for structural engineering; symbols for steel +longdesc cross-sections; astronomy signs (sun, moon, planets); the 12 +longdesc signs of the zodiac; scissor symbols; CE sign and others. The +longdesc package contains both the original TrueType font and the +longdesc derived Type 1 font, together with support files for TeX +longdesc (LaTeX). +execute addMap marvosym.map +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 +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/marvodoc.tex + RELOC/doc/fonts/marvosym/marvosym-doc.pdf + RELOC/doc/fonts/marvosym/marvosym-doc.tex +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 +catalogue-ctan /fonts/marvosym +catalogue-date 2014-05-14 00:24:01 +0200 +catalogue-license ofl +catalogue-version 2.2a + +name matc3mem +category Package +revision 35773 +shortdesc Class for MatematicaC3 textbooks. +relocated 1 +longdesc The class is a development of memoir, with additions +longdesc (specifically, mathematical extensions) that provide support +longdesc for writing the books for the Matematica C3 project to produce +longdesc free mathematical textbooks for use in Italian high schools. +runfiles size=2 + RELOC/tex/latex/matc3mem/matc3mem.cls +docfiles size=98 + RELOC/doc/latex/matc3mem/Makefile + RELOC/doc/latex/matc3mem/README + RELOC/doc/latex/matc3mem/matc3mem.pdf +srcfiles size=7 + RELOC/source/latex/matc3mem/matc3mem.dtx + RELOC/source/latex/matc3mem/matc3mem.ins +catalogue-ctan /macros/latex/contrib/matc3mem +catalogue-date 2014-12-09 15:59:41 +0100 +catalogue-license lppl1.3 +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. +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 mismatches. +depend match_parens.ARCH +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-license gpl +catalogue-version 1.43 + +name match_parens.i386-linux +category Package +revision 23500 +shortdesc i386-linux files of match_parens +binfiles arch=i386-linux size=1 + bin/i386-linux/match_parens + +name mathabx +category Package +revision 15878 +shortdesc Three series of mathematical symbols. +relocated 1 +longdesc Mathabx is a set of 3 mathematical symbols font series: matha, +longdesc mathb and mathx. They are defined by Metafont code and should +longdesc be of reasonable quality (bitmap output). Things change from +longdesc time to time, so there is no claim of stability (encoding, +longdesc metrics, design). The package includes Plain TeX and LaTeX +longdesc support macros. A version of the fonts, in Adobe Type 1 format, +longdesc is also available. +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 + +name mathabx-type1 +category Package +revision 21129 +shortdesc Outline version of the mathabx fonts. +relocated 1 +longdesc This is an Adobe Type 1 outline version of the mathabx fonts. +depend mathabx +execute addMap mathabx.map +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 + +name mathalfa +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 + +name mathastext +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 + +name mathcomp +category Package +revision 15878 +shortdesc Text symbols in maths mode. +relocated 1 +longdesc A package which provides access to some interesting characters +longdesc of the Text Companion fonts (TS1 encoding) in maths mode. +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 + +name mathdesign +category Package +revision 31639 +shortdesc Mathematical fonts to fit with particular text fonts. +relocated 1 +longdesc The Math Design project offers free mathematical fonts that +longdesc match with existing text fonts. To date, three free font +longdesc families are available: Adobe Utopia, URW Garamond and +longdesc Bitstream Charter. Three commercial fonts are also supported: +longdesc Adobe Garamond Pro, Adobe UtopiaStd and ITC Charter. Mathdesign +longdesc covers the whole LaTeX glyph set, including AMS symbols and +longdesc some extra. Both roman and bold versions of these symbols can +longdesc be used. Moreover you can choose between three greek fonts (two +longdesc of them created by the Greek Font Society). +execute addMap mdbch.map +execute addMap mdgreek.map +execute addMap mdici.map +execute addMap mdpgd.map +execute addMap mdpus.map +execute addMap mdput.map +execute addMap mdugm.map +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. +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. +docfiles size=515 + RELOC/doc/latex/math-e/01-00-1.ltx + RELOC/doc/latex/math-e/01-00-2.ltx + RELOC/doc/latex/math-e/01-00-3.ltx + RELOC/doc/latex/math-e/02-02-1.ltx + RELOC/doc/latex/math-e/02-02-10.ltx + RELOC/doc/latex/math-e/02-02-11.ltx + RELOC/doc/latex/math-e/02-02-12.ltx + RELOC/doc/latex/math-e/02-02-2.ltx + RELOC/doc/latex/math-e/02-02-3.ltx + RELOC/doc/latex/math-e/02-02-4.ltx + RELOC/doc/latex/math-e/02-02-5.ltx + RELOC/doc/latex/math-e/02-02-6.ltx + RELOC/doc/latex/math-e/02-02-7.ltx + RELOC/doc/latex/math-e/02-02-8.ltx + RELOC/doc/latex/math-e/02-02-9.ltx + RELOC/doc/latex/math-e/03-02-1.ltx + RELOC/doc/latex/math-e/03-02-10.ltx + RELOC/doc/latex/math-e/03-02-11.ltx + RELOC/doc/latex/math-e/03-02-2.ltx + RELOC/doc/latex/math-e/03-02-3.ltx + RELOC/doc/latex/math-e/03-02-4.ltx + RELOC/doc/latex/math-e/03-02-5.ltx + RELOC/doc/latex/math-e/03-02-6.ltx + RELOC/doc/latex/math-e/03-02-7.ltx + RELOC/doc/latex/math-e/03-02-8.ltx + RELOC/doc/latex/math-e/03-02-9.ltx + RELOC/doc/latex/math-e/03-03-1.ltx + RELOC/doc/latex/math-e/03-04-1.ltx + RELOC/doc/latex/math-e/03-04-2.ltx + RELOC/doc/latex/math-e/03-04-5.ltx + RELOC/doc/latex/math-e/03-04-6.ltx + RELOC/doc/latex/math-e/03-05-1.ltx + RELOC/doc/latex/math-e/03-05-2.ltx + RELOC/doc/latex/math-e/03-05-3.ltx + RELOC/doc/latex/math-e/03-06-1.ltx + RELOC/doc/latex/math-e/03-06-2.ltx + RELOC/doc/latex/math-e/03-06-3.ltx + RELOC/doc/latex/math-e/03-06-4.ltx + RELOC/doc/latex/math-e/03-07-1.ltx + RELOC/doc/latex/math-e/03-07-2.ltx + RELOC/doc/latex/math-e/03-07-3.ltx + RELOC/doc/latex/math-e/04-01-1.ltx + RELOC/doc/latex/math-e/04-01-2.ltx + RELOC/doc/latex/math-e/04-01-3.ltx + RELOC/doc/latex/math-e/04-01-4.ltx + RELOC/doc/latex/math-e/04-01-5.ltx + RELOC/doc/latex/math-e/04-01-6.ltx + RELOC/doc/latex/math-e/04-02-1.ltx + RELOC/doc/latex/math-e/04-02-2.ltx + RELOC/doc/latex/math-e/04-03-1.ltx + RELOC/doc/latex/math-e/04-03-2.ltx + RELOC/doc/latex/math-e/04-03-3.ltx + RELOC/doc/latex/math-e/04-03-4.ltx + RELOC/doc/latex/math-e/04-03-5.ltx + RELOC/doc/latex/math-e/04-04-1.ltx + RELOC/doc/latex/math-e/04-04-2.ltx + RELOC/doc/latex/math-e/04-04-3.ltx + RELOC/doc/latex/math-e/04-04-4.ltx + RELOC/doc/latex/math-e/04-05-1.ltx + RELOC/doc/latex/math-e/04-05-10.ltx + RELOC/doc/latex/math-e/04-05-11.ltx + RELOC/doc/latex/math-e/04-05-12.ltx + RELOC/doc/latex/math-e/04-05-13.ltx + RELOC/doc/latex/math-e/04-05-14.ltx + RELOC/doc/latex/math-e/04-05-15.ltx + RELOC/doc/latex/math-e/04-05-16.ltx + RELOC/doc/latex/math-e/04-05-17.ltx + RELOC/doc/latex/math-e/04-05-18.ltx + RELOC/doc/latex/math-e/04-05-19.ltx + RELOC/doc/latex/math-e/04-05-2.ltx + RELOC/doc/latex/math-e/04-05-20.ltx + RELOC/doc/latex/math-e/04-05-21.ltx + RELOC/doc/latex/math-e/04-05-22.ltx + RELOC/doc/latex/math-e/04-05-3.ltx + RELOC/doc/latex/math-e/04-05-4.ltx + RELOC/doc/latex/math-e/04-05-5.ltx + RELOC/doc/latex/math-e/04-05-6.ltx + RELOC/doc/latex/math-e/04-05-7.ltx + RELOC/doc/latex/math-e/04-05-8.ltx + RELOC/doc/latex/math-e/04-05-9.ltx + RELOC/doc/latex/math-e/04-06-1.ltx + RELOC/doc/latex/math-e/04-06-2.ltx + RELOC/doc/latex/math-e/04-07-1.ltx + RELOC/doc/latex/math-e/04-07-2.ltx + RELOC/doc/latex/math-e/04-08-1.ltx + RELOC/doc/latex/math-e/04-08-10.ltx + RELOC/doc/latex/math-e/04-08-11.ltx + RELOC/doc/latex/math-e/04-08-2.ltx + RELOC/doc/latex/math-e/04-08-3.ltx + RELOC/doc/latex/math-e/04-08-4.ltx + RELOC/doc/latex/math-e/04-08-5.ltx + RELOC/doc/latex/math-e/04-08-6.ltx + RELOC/doc/latex/math-e/04-08-7.ltx + RELOC/doc/latex/math-e/04-08-8.ltx + RELOC/doc/latex/math-e/04-08-9.ltx + RELOC/doc/latex/math-e/04-09-1.ltx + RELOC/doc/latex/math-e/04-09-2.ltx + RELOC/doc/latex/math-e/04-09-3.ltx + RELOC/doc/latex/math-e/04-09-4.ltx + RELOC/doc/latex/math-e/04-09-5.ltx + RELOC/doc/latex/math-e/04-10-1.ltx + RELOC/doc/latex/math-e/04-10-2.ltx + RELOC/doc/latex/math-e/04-11-1.ltx + RELOC/doc/latex/math-e/04-11-2.ltx + RELOC/doc/latex/math-e/04-11-3.ltx + RELOC/doc/latex/math-e/04-11-4.ltx + RELOC/doc/latex/math-e/04-11-5.ltx + RELOC/doc/latex/math-e/04-11-6.ltx + RELOC/doc/latex/math-e/04-12-1.ltx + RELOC/doc/latex/math-e/04-13-1.ltx + RELOC/doc/latex/math-e/04-13-2.ltx + RELOC/doc/latex/math-e/04-16-1.ltx + RELOC/doc/latex/math-e/04-17-1.ltx + RELOC/doc/latex/math-e/04-18-1.ltx + RELOC/doc/latex/math-e/04-18-10.ltx + RELOC/doc/latex/math-e/04-18-11.ltx + RELOC/doc/latex/math-e/04-18-2.ltx + RELOC/doc/latex/math-e/04-18-3.ltx + RELOC/doc/latex/math-e/04-18-4.ltx + RELOC/doc/latex/math-e/04-18-5.ltx + RELOC/doc/latex/math-e/04-18-6.ltx + RELOC/doc/latex/math-e/04-18-7.ltx + RELOC/doc/latex/math-e/04-18-8.ltx + RELOC/doc/latex/math-e/04-18-9.ltx + RELOC/doc/latex/math-e/04-20-1.ltx + RELOC/doc/latex/math-e/04-20-2.ltx + RELOC/doc/latex/math-e/04-20-3.ltx + RELOC/doc/latex/math-e/04-20-4.ltx + RELOC/doc/latex/math-e/04-20-5.ltx + RELOC/doc/latex/math-e/04-20-6.ltx + RELOC/doc/latex/math-e/04-20-7.ltx + RELOC/doc/latex/math-e/05-00-1.ltx + RELOC/doc/latex/math-e/05-01-1.ltx + RELOC/doc/latex/math-e/05-01-2.ltx + RELOC/doc/latex/math-e/05-02-1.ltx + RELOC/doc/latex/math-e/05-03-1.ltx + RELOC/doc/latex/math-e/05-03-2.ltx + RELOC/doc/latex/math-e/05-03-3.ltx + RELOC/doc/latex/math-e/05-03-4.ltx + RELOC/doc/latex/math-e/05-03-5.ltx + RELOC/doc/latex/math-e/05-04-1.ltx + RELOC/doc/latex/math-e/05-04-2.ltx + RELOC/doc/latex/math-e/06-02-1.ltx + RELOC/doc/latex/math-e/06-02-10.ltx + RELOC/doc/latex/math-e/06-02-11.ltx + RELOC/doc/latex/math-e/06-02-12.ltx + RELOC/doc/latex/math-e/06-02-13.ltx + RELOC/doc/latex/math-e/06-02-14.ltx + RELOC/doc/latex/math-e/06-02-15.ltx + RELOC/doc/latex/math-e/06-02-16.ltx + RELOC/doc/latex/math-e/06-02-17.ltx + RELOC/doc/latex/math-e/06-02-18.ltx + RELOC/doc/latex/math-e/06-02-19.ltx + RELOC/doc/latex/math-e/06-02-2.ltx + RELOC/doc/latex/math-e/06-02-20.ltx + RELOC/doc/latex/math-e/06-02-21.ltx + RELOC/doc/latex/math-e/06-02-3.ltx + RELOC/doc/latex/math-e/06-02-4.ltx + RELOC/doc/latex/math-e/06-02-5.ltx + RELOC/doc/latex/math-e/06-02-6.ltx + RELOC/doc/latex/math-e/06-02-7.ltx + RELOC/doc/latex/math-e/06-02-8.ltx + RELOC/doc/latex/math-e/06-02-9.ltx + RELOC/doc/latex/math-e/06-03-1.ltx + RELOC/doc/latex/math-e/06-03-10.ltx + RELOC/doc/latex/math-e/06-03-11.ltx + RELOC/doc/latex/math-e/06-03-12.ltx + RELOC/doc/latex/math-e/06-03-13.ltx + RELOC/doc/latex/math-e/06-03-14.ltx + RELOC/doc/latex/math-e/06-03-15.ltx + RELOC/doc/latex/math-e/06-03-16.ltx + RELOC/doc/latex/math-e/06-03-17.ltx + RELOC/doc/latex/math-e/06-03-18.ltx + RELOC/doc/latex/math-e/06-03-19.ltx + RELOC/doc/latex/math-e/06-03-2.ltx + RELOC/doc/latex/math-e/06-03-20.ltx + RELOC/doc/latex/math-e/06-03-21.ltx + RELOC/doc/latex/math-e/06-03-22.ltx + RELOC/doc/latex/math-e/06-03-3.ltx + RELOC/doc/latex/math-e/06-03-4.ltx + RELOC/doc/latex/math-e/06-03-5.ltx + RELOC/doc/latex/math-e/06-03-6.ltx + RELOC/doc/latex/math-e/06-03-7.ltx + RELOC/doc/latex/math-e/06-03-8.ltx + RELOC/doc/latex/math-e/06-03-9.ltx + RELOC/doc/latex/math-e/06-06-1.ltx + RELOC/doc/latex/math-e/06-06-2.ltx + RELOC/doc/latex/math-e/06-07-1.ltx + RELOC/doc/latex/math-e/06-07-2.ltx + RELOC/doc/latex/math-e/06-07-3.ltx + RELOC/doc/latex/math-e/06-07-4.ltx + RELOC/doc/latex/math-e/06-07-5.ltx + RELOC/doc/latex/math-e/06-08-1.ltx + RELOC/doc/latex/math-e/06-08-2.ltx + RELOC/doc/latex/math-e/06-09-1.ltx + RELOC/doc/latex/math-e/06-09-2.ltx + RELOC/doc/latex/math-e/06-10-1.ltx + RELOC/doc/latex/math-e/06-11-1.ltx + RELOC/doc/latex/math-e/06-11-2.ltx + RELOC/doc/latex/math-e/06-11-3.ltx + RELOC/doc/latex/math-e/06-11-4.ltx + RELOC/doc/latex/math-e/06-11-5.ltx + RELOC/doc/latex/math-e/06-11-6.ltx + RELOC/doc/latex/math-e/06-11-7.ltx + RELOC/doc/latex/math-e/06-11-8.ltx + RELOC/doc/latex/math-e/06-11-9.ltx + RELOC/doc/latex/math-e/06-12-1.ltx + RELOC/doc/latex/math-e/06-12-10.ltx + RELOC/doc/latex/math-e/06-12-11.ltx + RELOC/doc/latex/math-e/06-12-12.ltx + RELOC/doc/latex/math-e/06-12-13.ltx + RELOC/doc/latex/math-e/06-12-14.ltx + RELOC/doc/latex/math-e/06-12-15.ltx + RELOC/doc/latex/math-e/06-12-2.ltx + RELOC/doc/latex/math-e/06-12-3.ltx + RELOC/doc/latex/math-e/06-12-4.ltx + RELOC/doc/latex/math-e/06-12-5.ltx + RELOC/doc/latex/math-e/06-12-6.ltx + RELOC/doc/latex/math-e/06-12-7.ltx + RELOC/doc/latex/math-e/06-12-8.ltx + RELOC/doc/latex/math-e/06-12-9.ltx + RELOC/doc/latex/math-e/06-13-1.ltx + RELOC/doc/latex/math-e/06-13-2.ltx + RELOC/doc/latex/math-e/06-13-3.ltx + RELOC/doc/latex/math-e/06-14-1.ltx + RELOC/doc/latex/math-e/06-14-2.ltx + RELOC/doc/latex/math-e/06-14-3.ltx + RELOC/doc/latex/math-e/06-15-1.ltx + RELOC/doc/latex/math-e/06-15-2.ltx + RELOC/doc/latex/math-e/06-15-3.ltx + RELOC/doc/latex/math-e/06-16-1.ltx + RELOC/doc/latex/math-e/06-16-2.ltx + RELOC/doc/latex/math-e/06-17-1.ltx + RELOC/doc/latex/math-e/06-18-1.ltx + RELOC/doc/latex/math-e/06-19-1.ltx + RELOC/doc/latex/math-e/06-19-2.ltx + RELOC/doc/latex/math-e/06-19-3.ltx + RELOC/doc/latex/math-e/06-19-4.ltx + RELOC/doc/latex/math-e/06-20-1.ltx + RELOC/doc/latex/math-e/06-20-2.ltx + RELOC/doc/latex/math-e/06-20-3.ltx + RELOC/doc/latex/math-e/06-20-4.ltx + RELOC/doc/latex/math-e/07-01-1.ltx + RELOC/doc/latex/math-e/07-01-10.ltx + RELOC/doc/latex/math-e/07-01-11.ltx + RELOC/doc/latex/math-e/07-01-12.ltx + RELOC/doc/latex/math-e/07-01-2.ltx + RELOC/doc/latex/math-e/07-01-3.ltx + RELOC/doc/latex/math-e/07-01-4.ltx + RELOC/doc/latex/math-e/07-01-5.ltx + RELOC/doc/latex/math-e/07-01-6.ltx + RELOC/doc/latex/math-e/07-01-7.ltx + RELOC/doc/latex/math-e/07-01-8.ltx + RELOC/doc/latex/math-e/07-01-9.ltx + RELOC/doc/latex/math-e/07-02-1.ltx + RELOC/doc/latex/math-e/07-02-2.ltx + RELOC/doc/latex/math-e/07-02-3.ltx + RELOC/doc/latex/math-e/07-02-4.ltx + RELOC/doc/latex/math-e/07-03-1.ltx + RELOC/doc/latex/math-e/07-03-2.ltx + RELOC/doc/latex/math-e/07-04-1.ltx + RELOC/doc/latex/math-e/07-05-1.ltx + RELOC/doc/latex/math-e/07-05-10.ltx + RELOC/doc/latex/math-e/07-05-11.ltx + RELOC/doc/latex/math-e/07-05-12.ltx + RELOC/doc/latex/math-e/07-05-13.ltx + RELOC/doc/latex/math-e/07-05-14.ltx + RELOC/doc/latex/math-e/07-05-2.ltx + RELOC/doc/latex/math-e/07-05-3.ltx + RELOC/doc/latex/math-e/07-05-4.ltx + RELOC/doc/latex/math-e/07-05-5.ltx + RELOC/doc/latex/math-e/07-05-6.ltx + RELOC/doc/latex/math-e/07-05-7.ltx + RELOC/doc/latex/math-e/07-05-8.ltx + RELOC/doc/latex/math-e/07-05-9.ltx + RELOC/doc/latex/math-e/07-06-1.ltx + RELOC/doc/latex/math-e/07-06-2.ltx + RELOC/doc/latex/math-e/07-06-3.ltx + RELOC/doc/latex/math-e/07-06-4.ltx + RELOC/doc/latex/math-e/07-06-5.ltx + RELOC/doc/latex/math-e/07-06-6.ltx + RELOC/doc/latex/math-e/07-07-1.ltx + RELOC/doc/latex/math-e/07-08-1.ltx + RELOC/doc/latex/math-e/07-08-2.ltx + RELOC/doc/latex/math-e/07-08-3.ltx + RELOC/doc/latex/math-e/07-09-1.ltx + RELOC/doc/latex/math-e/07-09-2.ltx + RELOC/doc/latex/math-e/07-10-1.ltx + RELOC/doc/latex/math-e/07-10-2.ltx + RELOC/doc/latex/math-e/07-10-3.ltx + RELOC/doc/latex/math-e/07-10-4.ltx + RELOC/doc/latex/math-e/07-11-1.ltx + RELOC/doc/latex/math-e/07-12-1.ltx + RELOC/doc/latex/math-e/07-12-2.ltx + RELOC/doc/latex/math-e/07-12-3.ltx + RELOC/doc/latex/math-e/07-13-1.ltx + RELOC/doc/latex/math-e/07-14-1.ltx + RELOC/doc/latex/math-e/07-14-10.ltx + RELOC/doc/latex/math-e/07-14-2.ltx + RELOC/doc/latex/math-e/07-14-3.ltx + RELOC/doc/latex/math-e/07-14-4.ltx + RELOC/doc/latex/math-e/07-14-5.ltx + RELOC/doc/latex/math-e/07-14-6.ltx + RELOC/doc/latex/math-e/07-14-7.ltx + RELOC/doc/latex/math-e/07-14-8.ltx + RELOC/doc/latex/math-e/07-14-9.ltx + RELOC/doc/latex/math-e/07-15-1.ltx + RELOC/doc/latex/math-e/07-15-2.ltx + RELOC/doc/latex/math-e/07-16-1.ltx + RELOC/doc/latex/math-e/07-16-2.ltx + RELOC/doc/latex/math-e/08-01-1.ltx + RELOC/doc/latex/math-e/08-01-10.ltx + RELOC/doc/latex/math-e/08-01-11.ltx + RELOC/doc/latex/math-e/08-01-12.ltx + RELOC/doc/latex/math-e/08-01-13.ltx + RELOC/doc/latex/math-e/08-01-14.ltx + RELOC/doc/latex/math-e/08-01-15.ltx + RELOC/doc/latex/math-e/08-01-16.ltx + RELOC/doc/latex/math-e/08-01-2.ltx + RELOC/doc/latex/math-e/08-01-3.ltx + RELOC/doc/latex/math-e/08-01-4.ltx + RELOC/doc/latex/math-e/08-01-5.ltx + RELOC/doc/latex/math-e/08-01-6.ltx + RELOC/doc/latex/math-e/08-01-7.ltx + RELOC/doc/latex/math-e/08-01-8.ltx + RELOC/doc/latex/math-e/08-01-9.ltx + RELOC/doc/latex/math-e/08-02-1.ltx + RELOC/doc/latex/math-e/08-02-10.ltx + RELOC/doc/latex/math-e/08-02-11.ltx + RELOC/doc/latex/math-e/08-02-12.ltx + RELOC/doc/latex/math-e/08-02-13.ltx + RELOC/doc/latex/math-e/08-02-14.ltx + RELOC/doc/latex/math-e/08-02-15.ltx + RELOC/doc/latex/math-e/08-02-2.ltx + RELOC/doc/latex/math-e/08-02-3.ltx + RELOC/doc/latex/math-e/08-02-4.ltx + RELOC/doc/latex/math-e/08-02-5.ltx + RELOC/doc/latex/math-e/08-02-6.ltx + RELOC/doc/latex/math-e/08-02-7.ltx + RELOC/doc/latex/math-e/08-02-8.ltx + RELOC/doc/latex/math-e/08-02-9.ltx + RELOC/doc/latex/math-e/08-03-1.ltx + RELOC/doc/latex/math-e/08-03-10.ltx + RELOC/doc/latex/math-e/08-03-11.ltx + RELOC/doc/latex/math-e/08-03-12.ltx + RELOC/doc/latex/math-e/08-03-2.ltx + RELOC/doc/latex/math-e/08-03-3.ltx + RELOC/doc/latex/math-e/08-03-4.ltx + RELOC/doc/latex/math-e/08-03-5.ltx + RELOC/doc/latex/math-e/08-03-6.ltx + RELOC/doc/latex/math-e/08-03-7.ltx + RELOC/doc/latex/math-e/08-03-8.ltx + RELOC/doc/latex/math-e/08-03-9.ltx + RELOC/doc/latex/math-e/09-01-1.ltx + RELOC/doc/latex/math-e/09-02-1.ltx + RELOC/doc/latex/math-e/09-03-1.ltx + RELOC/doc/latex/math-e/09-03-2.ltx + RELOC/doc/latex/math-e/09-04-1.ltx + RELOC/doc/latex/math-e/09-05-1.ltx + RELOC/doc/latex/math-e/09-05-2.ltx + RELOC/doc/latex/math-e/09-06-1.ltx + RELOC/doc/latex/math-e/09-06-2.ltx + RELOC/doc/latex/math-e/09-07-1.ltx + RELOC/doc/latex/math-e/09-07-2.ltx + RELOC/doc/latex/math-e/09-07-3.ltx + RELOC/doc/latex/math-e/09-07-4.ltx + RELOC/doc/latex/math-e/09-08-1.ltx + RELOC/doc/latex/math-e/09-08-2.ltx + RELOC/doc/latex/math-e/09-08-3.ltx + RELOC/doc/latex/math-e/09-09-1.ltx + RELOC/doc/latex/math-e/09-09-2.ltx + RELOC/doc/latex/math-e/09-10-1.ltx + RELOC/doc/latex/math-e/09-10-2.ltx + RELOC/doc/latex/math-e/09-11-1.ltx + RELOC/doc/latex/math-e/09-11-2.ltx + RELOC/doc/latex/math-e/09-11-3.ltx + RELOC/doc/latex/math-e/09-12-1.ltx + RELOC/doc/latex/math-e/09-12-2.ltx + RELOC/doc/latex/math-e/09-12-3.ltx + RELOC/doc/latex/math-e/09-12-4.ltx + RELOC/doc/latex/math-e/09-12-5.ltx + RELOC/doc/latex/math-e/09-12-6.ltx + RELOC/doc/latex/math-e/09-12-7.ltxps + RELOC/doc/latex/math-e/09-13-1.ltx + RELOC/doc/latex/math-e/09-13-2.ltx + RELOC/doc/latex/math-e/09-14-1.ltx + RELOC/doc/latex/math-e/09-15-1.ltx + RELOC/doc/latex/math-e/09-15-2.ltx + RELOC/doc/latex/math-e/09-15-3.ltx + RELOC/doc/latex/math-e/09-16-1.ltx + RELOC/doc/latex/math-e/09-16-2.ltx + RELOC/doc/latex/math-e/09-16-3.ltx + RELOC/doc/latex/math-e/09-16-4.ltx + RELOC/doc/latex/math-e/09-16-5.ltx + RELOC/doc/latex/math-e/09-16-6.ltx + RELOC/doc/latex/math-e/09-16-7.ltx + RELOC/doc/latex/math-e/09-16-8.ltx + RELOC/doc/latex/math-e/09-17-1.ltx + RELOC/doc/latex/math-e/09-17-10.ltx + RELOC/doc/latex/math-e/09-17-11.ltx + RELOC/doc/latex/math-e/09-17-12.ltx + RELOC/doc/latex/math-e/09-17-13.ltx + RELOC/doc/latex/math-e/09-17-14.ltx + RELOC/doc/latex/math-e/09-17-2.ltx + RELOC/doc/latex/math-e/09-17-3.ltx + RELOC/doc/latex/math-e/09-17-4.ltx4 + RELOC/doc/latex/math-e/09-17-5.ltx + RELOC/doc/latex/math-e/09-17-6.ltx + RELOC/doc/latex/math-e/09-17-7.ltx + RELOC/doc/latex/math-e/09-17-8.ltx + RELOC/doc/latex/math-e/09-17-9.ltx + RELOC/doc/latex/math-e/09-18-1.ltx + RELOC/doc/latex/math-e/09-18-2.ltx + RELOC/doc/latex/math-e/09-18-3.ltx + RELOC/doc/latex/math-e/09-19-1.ltx + RELOC/doc/latex/math-e/09-19-2.ltx + RELOC/doc/latex/math-e/09-20-1.ltx + RELOC/doc/latex/math-e/09-20-2.ltx + RELOC/doc/latex/math-e/09-20-3.ltx + RELOC/doc/latex/math-e/09-20-4.ltx + RELOC/doc/latex/math-e/09-20-5.ltx + RELOC/doc/latex/math-e/10-01-1.ltx + RELOC/doc/latex/math-e/10-01-2.ltx + RELOC/doc/latex/math-e/10-01-3.ltx + RELOC/doc/latex/math-e/10-01-4.ltxps + RELOC/doc/latex/math-e/10-01-5.ltxps + RELOC/doc/latex/math-e/10-02-1.ltx + RELOC/doc/latex/math-e/10-02-2.ltx + RELOC/doc/latex/math-e/10-03-1.ltx + RELOC/doc/latex/math-e/10-03-2.ltx + RELOC/doc/latex/math-e/10-03-3.ltx + RELOC/doc/latex/math-e/10-03-4.ltx + RELOC/doc/latex/math-e/10-03-5.ltx + RELOC/doc/latex/math-e/10-04-1.ltx + RELOC/doc/latex/math-e/10-04-2.ltx + RELOC/doc/latex/math-e/10-04-3.ltx + RELOC/doc/latex/math-e/10-04-4.ltx + RELOC/doc/latex/math-e/10-04-5.ltx + RELOC/doc/latex/math-e/10-04-6.ltx + RELOC/doc/latex/math-e/10-04-7.ltx + RELOC/doc/latex/math-e/10-04-8.ltx + RELOC/doc/latex/math-e/10-04-9.ltx + RELOC/doc/latex/math-e/10-05-1.ltx + RELOC/doc/latex/math-e/10-05-2.ltx + RELOC/doc/latex/math-e/10-06-1.ltx + RELOC/doc/latex/math-e/10-06-2.ltx + RELOC/doc/latex/math-e/10-06-3.ltx + RELOC/doc/latex/math-e/10-06-4.ltx + RELOC/doc/latex/math-e/10-07-1.ltx2 + RELOC/doc/latex/math-e/10-07-2.ltx + RELOC/doc/latex/math-e/10-07-3.ltx + RELOC/doc/latex/math-e/10-07-4.ltx + RELOC/doc/latex/math-e/10-07-5.ltx + RELOC/doc/latex/math-e/10-07-6.ltx + RELOC/doc/latex/math-e/10-07-7.ltx + RELOC/doc/latex/math-e/10-08-1.ltxps + RELOC/doc/latex/math-e/10-09-1.ltx + RELOC/doc/latex/math-e/10-09-10.ltx + RELOC/doc/latex/math-e/10-09-11.ltx + RELOC/doc/latex/math-e/10-09-12.ltx + RELOC/doc/latex/math-e/10-09-13.ltx + RELOC/doc/latex/math-e/10-09-2.ltx + RELOC/doc/latex/math-e/10-09-3.ltx + RELOC/doc/latex/math-e/10-09-4.ltx + RELOC/doc/latex/math-e/10-09-5.ltx + RELOC/doc/latex/math-e/10-09-6.ltx + RELOC/doc/latex/math-e/10-09-7.ltx + RELOC/doc/latex/math-e/10-09-8.ltx + RELOC/doc/latex/math-e/10-09-9.ltx + RELOC/doc/latex/math-e/10-10-1.ltx + RELOC/doc/latex/math-e/10-10-2.ltx + RELOC/doc/latex/math-e/10-10-3.ltx + RELOC/doc/latex/math-e/10-10-4.ltx + RELOC/doc/latex/math-e/10-10-5.ltx + RELOC/doc/latex/math-e/10-10-6.ltx + RELOC/doc/latex/math-e/10-10-7.ltx + RELOC/doc/latex/math-e/11-01-1.ltx + RELOC/doc/latex/math-e/11-01-2.ltx + RELOC/doc/latex/math-e/11-01-3.ltx + RELOC/doc/latex/math-e/11-01-4.ltx + RELOC/doc/latex/math-e/11-01-5.ltx + RELOC/doc/latex/math-e/11-01-6.ltx + RELOC/doc/latex/math-e/11-01-7.ltx + RELOC/doc/latex/math-e/11-02-1.ltx + RELOC/doc/latex/math-e/11-02-10.ltx + RELOC/doc/latex/math-e/11-02-11.ltx + RELOC/doc/latex/math-e/11-02-12.ltx + RELOC/doc/latex/math-e/11-02-13.ltx + RELOC/doc/latex/math-e/11-02-14.ltx + RELOC/doc/latex/math-e/11-02-15.ltx + RELOC/doc/latex/math-e/11-02-16.ltx + RELOC/doc/latex/math-e/11-02-17.ltx + RELOC/doc/latex/math-e/11-02-18.ltx + RELOC/doc/latex/math-e/11-02-19.ltx + RELOC/doc/latex/math-e/11-02-2.ltx + RELOC/doc/latex/math-e/11-02-20.ltx + RELOC/doc/latex/math-e/11-02-21.ltx + RELOC/doc/latex/math-e/11-02-22.ltx + RELOC/doc/latex/math-e/11-02-23.ltx + RELOC/doc/latex/math-e/11-02-24.ltx + RELOC/doc/latex/math-e/11-02-25.ltx + RELOC/doc/latex/math-e/11-02-26.ltx + RELOC/doc/latex/math-e/11-02-3.ltx + RELOC/doc/latex/math-e/11-02-4.ltx + RELOC/doc/latex/math-e/11-02-5.ltx + RELOC/doc/latex/math-e/11-02-6.ltx + 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/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-license lppl1.3 + +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 +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, 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 +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 + +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). +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 + +name mathtools +category Package +revision 37587 +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. +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 +catalogue-license lppl1.3 +catalogue-topics maths +catalogue-version 1.17 + +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.) +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 +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-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 + +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. +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. +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 +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 +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 + +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 +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{<char>}{<code>} where <char> is a directly- +longdesc typed Unicode character, and <code> 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.<numbering scheme>, 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{<max width>}{<text>} which adjusts its +longdesc width to that of the enclosed text, up to the maximum width +longdesc given. The package also defines some associated length +longdesc commands. +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{<number>}. Also a lot of customizations are +longdesc possible, allowing you to create an unique progressbar on your +longdesc own. The package uses TikZ to produce its graphics. +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<counter> +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: <modulus>;<argument or phase inside an +longdesc angle symbol> 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[<options>]{<svg +longdesc filename>} A variety of options is available, including width, +longdesc height, and path of the SVG. The image is converted to an +longdesc appropriate format, using the \write18 mechanism to execute a +longdesc shell command, and the package also offers the means of saving +longdesc a PDF, EPS, or PNG copy of the image, at the same time. The +longdesc documentation shows an example using an SVG created from the +longdesc high energy particle physics analysis package ROOT. +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{<length>} moves the typesetting position to <length> +longdesc from the left margin of the paragraph. If the typesetting +longdesc position is already further along, \tabto starts a new line. +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{<length>} moves the typesetting position to <length> +longdesc from the left margin of the paragraph. If the typesetting +longdesc position is already further along, \tabto starts a new line; +longdesc the command \tabto* will move position backwards if necessary, +longdesc so that previous text may be overwritten. The command +longdesc \TabPositions may be used to define a set of tabbing positions, +longdesc after which the command \tab advances typesetting position to +longdesc the next defined 'tab stop'. +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 <dimen> +longdesc specifies a target width, and \begin{tabu} spread <dimen> +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 +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 +catalogue-license lppl +catalogue-topics cvt-html + +name tex4ht.i386-linux +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 + +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 e- +longdesc TeX (and, should you want to compile its documentation, the +longdesc pitex package is also needed). +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 +catalogue-license lppl +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). +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 + +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 texconfig.i386-linux +category TLCore +revision 29741 +shortdesc i386-linux files of texconfig +binfiles arch=i386-linux size=1 + bin/i386-linux/texconfig + +name texcount +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 +catalogue-license lppl +catalogue-version 3.0 + +name texcount.i386-linux +category Package +revision 13013 +shortdesc i386-linux files of texcount +binfiles arch=i386-linux size=1 + bin/i386-linux/texcount + +name texdef +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 + +name texdef.i386-linux +category Package +revision 21802 +shortdesc i386-linux files of texdef +binfiles arch=i386-linux size=1 + bin/i386-linux/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 +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 + +name texdiff.i386-linux +category Package +revision 15506 +shortdesc i386-linux files of texdiff +binfiles arch=i386-linux size=1 + bin/i386-linux/texdiff + +name texdirflatten +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 +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 +catalogue-version 1.1 + +name texdirflatten.i386-linux +category Package +revision 12782 +shortdesc i386-linux files of texdirflatten +binfiles arch=i386-linux size=1 + bin/i386-linux/texdirflatten + +name texdoc +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 + +name texdoc.i386-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 + +name texdraw +category Package +revision 31894 +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 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 + +name tex-ewd +category Package +revision 15878 +shortdesc Macros to typeset calculational proofs and programs in Dijkstra's style. +relocated 1 +longdesc Edsger W. Dijkstra and others suggest a unique style to present +longdesc mathematical proofs and to construct programs. This package +longdesc provides macros that support calculational proofs and +longdesc Dijkstra's "guarded command language". +runfiles size=2 + RELOC/tex/generic/tex-ewd/dotnot.tex +docfiles size=8 + RELOC/doc/generic/tex-ewd/README + RELOC/doc/generic/tex-ewd/bsdlic.txt + RELOC/doc/generic/tex-ewd/p0.tex + RELOC/doc/generic/tex-ewd/t1.tex +catalogue-ctan /macros/generic/tex-ewd +catalogue-date 2012-06-27 16:40:35 +0200 +catalogue-license bsd + +name tex-font-errors-cheatsheet +category Package +revision 18314 +shortdesc Cheat sheet outlining the most common TeX font errors. +relocated 1 +longdesc This is a compact three-pages document highlighting the TeX +longdesc flow of integrating fonts, and explains how some of the most +longdesc common font-related error messages occur. Also, hints are given +longdesc on how to address those. +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/tex-font-cheatsheet.tex +catalogue-ctan /info/tex-font-errors-cheatsheet +catalogue-date 2012-06-27 16:40:35 +0200 +catalogue-license lppl +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. +relocated 1 +longdesc The TeX-GYRE bundle consists of six font families: TeX Gyre +longdesc Adventor is based on the URW Gothic L family of fonts (which is +longdesc derived from ITC Avant Garde Gothic, designed by Herb Lubalin +longdesc and Tom Carnase). TeX Gyre Bonum is based on the URW Bookman L +longdesc family (from Bookman Old Style, designed by Alexander +longdesc Phemister). TeX Gyre Chorus is based on URW Chancery L Medium +longdesc Italic (from ITC Zapf Chancery, designed by Hermann Zapf in +longdesc 1979). TeX-Gyre Cursor is based on URW Nimbus Mono L (based on +longdesc Courier, designed by Howard G. Kettler in 1955, for IBM). TeX +longdesc Gyre Heros is based on URW Nimbus Sans L (from Helvetica, +longdesc prepared by Max Miedinger, with Eduard Hoffmann in 1957). TeX +longdesc Gyre Pagella is based on URW Palladio L (from Palatino, +longdesc designed by Hermann Zapf in the 1940s). TeX Gyre Schola is +longdesc based on the URW Century Schoolbook L family (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 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 formats, and LaTeX support (for use with a variety of +longdesc encodings) is provided. Vietnamese characters were added by Han +longdesc The Thanh. +execute addMap qag.map +execute addMap qbk.map +execute addMap qcr.map +execute addMap qcs.map +execute addMap qhv.map +execute addMap qpl.map +execute addMap qtm.map +execute addMap qzc.map +runfiles size=6213 + RELOC/fonts/afm/public/tex-gyre/qagb.afm + RELOC/fonts/afm/public/tex-gyre/qagbi.afm + RELOC/fonts/afm/public/tex-gyre/qagr.afm + RELOC/fonts/afm/public/tex-gyre/qagri.afm + RELOC/fonts/afm/public/tex-gyre/qbkb.afm + RELOC/fonts/afm/public/tex-gyre/qbkbi.afm + RELOC/fonts/afm/public/tex-gyre/qbkr.afm + RELOC/fonts/afm/public/tex-gyre/qbkri.afm + RELOC/fonts/afm/public/tex-gyre/qcrb.afm + RELOC/fonts/afm/public/tex-gyre/qcrbi.afm + RELOC/fonts/afm/public/tex-gyre/qcrr.afm + RELOC/fonts/afm/public/tex-gyre/qcrri.afm + RELOC/fonts/afm/public/tex-gyre/qcsb.afm + RELOC/fonts/afm/public/tex-gyre/qcsbi.afm + RELOC/fonts/afm/public/tex-gyre/qcsr.afm + RELOC/fonts/afm/public/tex-gyre/qcsri.afm + RELOC/fonts/afm/public/tex-gyre/qhvb.afm + RELOC/fonts/afm/public/tex-gyre/qhvbi.afm + RELOC/fonts/afm/public/tex-gyre/qhvcb.afm + RELOC/fonts/afm/public/tex-gyre/qhvcbi.afm + RELOC/fonts/afm/public/tex-gyre/qhvcr.afm + RELOC/fonts/afm/public/tex-gyre/qhvcri.afm + RELOC/fonts/afm/public/tex-gyre/qhvr.afm + RELOC/fonts/afm/public/tex-gyre/qhvri.afm + RELOC/fonts/afm/public/tex-gyre/qplb.afm + RELOC/fonts/afm/public/tex-gyre/qplbi.afm + RELOC/fonts/afm/public/tex-gyre/qplr.afm + RELOC/fonts/afm/public/tex-gyre/qplri.afm + RELOC/fonts/afm/public/tex-gyre/qtmb.afm + RELOC/fonts/afm/public/tex-gyre/qtmbi.afm + RELOC/fonts/afm/public/tex-gyre/qtmr.afm + RELOC/fonts/afm/public/tex-gyre/qtmri.afm + RELOC/fonts/afm/public/tex-gyre/qzcmi.afm + RELOC/fonts/enc/dvips/tex-gyre/q-cs-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-cs.enc + RELOC/fonts/enc/dvips/tex-gyre/q-csm-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-csm.enc + RELOC/fonts/enc/dvips/tex-gyre/q-cszc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-ec-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-ec.enc + RELOC/fonts/enc/dvips/tex-gyre/q-l7x-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-l7x.enc + RELOC/fonts/enc/dvips/tex-gyre/q-l7xzc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qx-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qx.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qxm-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qxm.enc + RELOC/fonts/enc/dvips/tex-gyre/q-qxzc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rm-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rm.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rmm-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rmm.enc + RELOC/fonts/enc/dvips/tex-gyre/q-rmzc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-t5-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-t5.enc + RELOC/fonts/enc/dvips/tex-gyre/q-texnansi-sc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-texnansi.enc + RELOC/fonts/enc/dvips/tex-gyre/q-texnansizc.enc + RELOC/fonts/enc/dvips/tex-gyre/q-ts1.enc + RELOC/fonts/map/dvips/tex-gyre/qag-cs.map + RELOC/fonts/map/dvips/tex-gyre/qag-ec.map + RELOC/fonts/map/dvips/tex-gyre/qag-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qag-qx.map + RELOC/fonts/map/dvips/tex-gyre/qag-rm.map + RELOC/fonts/map/dvips/tex-gyre/qag-t5.map + RELOC/fonts/map/dvips/tex-gyre/qag-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qag-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qag.map + RELOC/fonts/map/dvips/tex-gyre/qbk-cs.map + RELOC/fonts/map/dvips/tex-gyre/qbk-ec.map + RELOC/fonts/map/dvips/tex-gyre/qbk-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qbk-qx.map + RELOC/fonts/map/dvips/tex-gyre/qbk-rm.map + RELOC/fonts/map/dvips/tex-gyre/qbk-t5.map + RELOC/fonts/map/dvips/tex-gyre/qbk-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qbk-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qbk.map + RELOC/fonts/map/dvips/tex-gyre/qcr-cs.map + RELOC/fonts/map/dvips/tex-gyre/qcr-ec.map + RELOC/fonts/map/dvips/tex-gyre/qcr-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qcr-qx.map + RELOC/fonts/map/dvips/tex-gyre/qcr-rm.map + RELOC/fonts/map/dvips/tex-gyre/qcr-t5.map + RELOC/fonts/map/dvips/tex-gyre/qcr-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qcr-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qcr.map + RELOC/fonts/map/dvips/tex-gyre/qcs-cs.map + RELOC/fonts/map/dvips/tex-gyre/qcs-ec.map + RELOC/fonts/map/dvips/tex-gyre/qcs-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qcs-qx.map + RELOC/fonts/map/dvips/tex-gyre/qcs-rm.map + RELOC/fonts/map/dvips/tex-gyre/qcs-t5.map + RELOC/fonts/map/dvips/tex-gyre/qcs-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qcs-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qcs.map + RELOC/fonts/map/dvips/tex-gyre/qhv-cs.map + RELOC/fonts/map/dvips/tex-gyre/qhv-ec.map + RELOC/fonts/map/dvips/tex-gyre/qhv-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qhv-qx.map + RELOC/fonts/map/dvips/tex-gyre/qhv-rm.map + RELOC/fonts/map/dvips/tex-gyre/qhv-t5.map + RELOC/fonts/map/dvips/tex-gyre/qhv-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qhv-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qhv.map + RELOC/fonts/map/dvips/tex-gyre/qpl-cs.map + RELOC/fonts/map/dvips/tex-gyre/qpl-ec.map + RELOC/fonts/map/dvips/tex-gyre/qpl-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qpl-qx.map + RELOC/fonts/map/dvips/tex-gyre/qpl-rm.map + RELOC/fonts/map/dvips/tex-gyre/qpl-t5.map + RELOC/fonts/map/dvips/tex-gyre/qpl-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qpl-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qpl.map + RELOC/fonts/map/dvips/tex-gyre/qtm-cs.map + RELOC/fonts/map/dvips/tex-gyre/qtm-ec.map + RELOC/fonts/map/dvips/tex-gyre/qtm-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qtm-qx.map + RELOC/fonts/map/dvips/tex-gyre/qtm-rm.map + RELOC/fonts/map/dvips/tex-gyre/qtm-t5.map + RELOC/fonts/map/dvips/tex-gyre/qtm-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qtm-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qtm.map + RELOC/fonts/map/dvips/tex-gyre/qzc-cs.map + RELOC/fonts/map/dvips/tex-gyre/qzc-ec.map + RELOC/fonts/map/dvips/tex-gyre/qzc-l7x.map + RELOC/fonts/map/dvips/tex-gyre/qzc-qx.map + RELOC/fonts/map/dvips/tex-gyre/qzc-rm.map + RELOC/fonts/map/dvips/tex-gyre/qzc-t5.map + RELOC/fonts/map/dvips/tex-gyre/qzc-texnansi.map + RELOC/fonts/map/dvips/tex-gyre/qzc-ts1.map + RELOC/fonts/map/dvips/tex-gyre/qzc.map + RELOC/fonts/opentype/public/tex-gyre/texgyreadventor-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreadventor-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreadventor-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreadventor-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrebonum-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrebonum-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrebonum-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrebonum-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrechorus-mediumitalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrecursor-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrecursor-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrecursor-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrecursor-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheros-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheros-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheros-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheros-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheroscn-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheroscn-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheroscn-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreheroscn-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrepagella-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrepagella-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrepagella-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyrepagella-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreschola-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreschola-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreschola-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyreschola-regular.otf + RELOC/fonts/opentype/public/tex-gyre/texgyretermes-bold.otf + RELOC/fonts/opentype/public/tex-gyre/texgyretermes-bolditalic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyretermes-italic.otf + RELOC/fonts/opentype/public/tex-gyre/texgyretermes-regular.otf + RELOC/fonts/tfm/public/tex-gyre/cs-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/cs-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/ec-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/l7x-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/qx-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/rm-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/t5-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmb-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmbi-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmr-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmri-sc.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/texnansi-qzcmi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qagb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qagbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qagr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qagri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qbkb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qbkbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qbkr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qbkri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcrb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcrbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcrr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcrri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcsb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcsbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcsr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qcsri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvcb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvcbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvcr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvcri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qhvri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qplb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qplbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qplr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qplri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qtmb.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qtmbi.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qtmr.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qtmri.tfm + RELOC/fonts/tfm/public/tex-gyre/ts1-qzcmi.tfm + RELOC/fonts/type1/public/tex-gyre/qagb.pfb + RELOC/fonts/type1/public/tex-gyre/qagb.pfm + RELOC/fonts/type1/public/tex-gyre/qagbi.pfb + RELOC/fonts/type1/public/tex-gyre/qagbi.pfm + RELOC/fonts/type1/public/tex-gyre/qagr.pfb + RELOC/fonts/type1/public/tex-gyre/qagr.pfm + RELOC/fonts/type1/public/tex-gyre/qagri.pfb + RELOC/fonts/type1/public/tex-gyre/qagri.pfm + RELOC/fonts/type1/public/tex-gyre/qbkb.pfb + RELOC/fonts/type1/public/tex-gyre/qbkb.pfm + RELOC/fonts/type1/public/tex-gyre/qbkbi.pfb + RELOC/fonts/type1/public/tex-gyre/qbkbi.pfm + RELOC/fonts/type1/public/tex-gyre/qbkr.pfb + RELOC/fonts/type1/public/tex-gyre/qbkr.pfm + RELOC/fonts/type1/public/tex-gyre/qbkri.pfb + RELOC/fonts/type1/public/tex-gyre/qbkri.pfm + RELOC/fonts/type1/public/tex-gyre/qcrb.pfb + RELOC/fonts/type1/public/tex-gyre/qcrb.pfm + RELOC/fonts/type1/public/tex-gyre/qcrbi.pfb + RELOC/fonts/type1/public/tex-gyre/qcrbi.pfm + RELOC/fonts/type1/public/tex-gyre/qcrr.pfb + RELOC/fonts/type1/public/tex-gyre/qcrr.pfm + RELOC/fonts/type1/public/tex-gyre/qcrri.pfb + RELOC/fonts/type1/public/tex-gyre/qcrri.pfm + RELOC/fonts/type1/public/tex-gyre/qcsb.pfb + RELOC/fonts/type1/public/tex-gyre/qcsb.pfm + RELOC/fonts/type1/public/tex-gyre/qcsbi.pfb + RELOC/fonts/type1/public/tex-gyre/qcsbi.pfm + RELOC/fonts/type1/public/tex-gyre/qcsr.pfb + RELOC/fonts/type1/public/tex-gyre/qcsr.pfm + RELOC/fonts/type1/public/tex-gyre/qcsri.pfb + RELOC/fonts/type1/public/tex-gyre/qcsri.pfm + RELOC/fonts/type1/public/tex-gyre/qhvb.pfb + RELOC/fonts/type1/public/tex-gyre/qhvb.pfm + RELOC/fonts/type1/public/tex-gyre/qhvbi.pfb + RELOC/fonts/type1/public/tex-gyre/qhvbi.pfm + RELOC/fonts/type1/public/tex-gyre/qhvcb.pfb + RELOC/fonts/type1/public/tex-gyre/qhvcb.pfm + RELOC/fonts/type1/public/tex-gyre/qhvcbi.pfb + RELOC/fonts/type1/public/tex-gyre/qhvcbi.pfm + RELOC/fonts/type1/public/tex-gyre/qhvcr.pfb + RELOC/fonts/type1/public/tex-gyre/qhvcr.pfm + RELOC/fonts/type1/public/tex-gyre/qhvcri.pfb + RELOC/fonts/type1/public/tex-gyre/qhvcri.pfm + RELOC/fonts/type1/public/tex-gyre/qhvr.pfb + RELOC/fonts/type1/public/tex-gyre/qhvr.pfm + RELOC/fonts/type1/public/tex-gyre/qhvri.pfb + RELOC/fonts/type1/public/tex-gyre/qhvri.pfm + RELOC/fonts/type1/public/tex-gyre/qplb.pfb + RELOC/fonts/type1/public/tex-gyre/qplb.pfm + RELOC/fonts/type1/public/tex-gyre/qplbi.pfb + RELOC/fonts/type1/public/tex-gyre/qplbi.pfm + RELOC/fonts/type1/public/tex-gyre/qplr.pfb + RELOC/fonts/type1/public/tex-gyre/qplr.pfm + RELOC/fonts/type1/public/tex-gyre/qplri.pfb + RELOC/fonts/type1/public/tex-gyre/qplri.pfm + RELOC/fonts/type1/public/tex-gyre/qtmb.pfb + RELOC/fonts/type1/public/tex-gyre/qtmb.pfm + RELOC/fonts/type1/public/tex-gyre/qtmbi.pfb + RELOC/fonts/type1/public/tex-gyre/qtmbi.pfm + RELOC/fonts/type1/public/tex-gyre/qtmr.pfb + RELOC/fonts/type1/public/tex-gyre/qtmr.pfm + RELOC/fonts/type1/public/tex-gyre/qtmri.pfb + RELOC/fonts/type1/public/tex-gyre/qtmri.pfm + RELOC/fonts/type1/public/tex-gyre/qzcmi.pfb + RELOC/fonts/type1/public/tex-gyre/qzcmi.pfm + RELOC/tex/latex/tex-gyre/il2qag.fd + RELOC/tex/latex/tex-gyre/il2qbk.fd + RELOC/tex/latex/tex-gyre/il2qcr.fd + RELOC/tex/latex/tex-gyre/il2qcs.fd + RELOC/tex/latex/tex-gyre/il2qhv.fd + RELOC/tex/latex/tex-gyre/il2qhvc.fd + RELOC/tex/latex/tex-gyre/il2qpl.fd + RELOC/tex/latex/tex-gyre/il2qtm.fd + RELOC/tex/latex/tex-gyre/il2qzc.fd + RELOC/tex/latex/tex-gyre/l7xqag.fd + RELOC/tex/latex/tex-gyre/l7xqbk.fd + RELOC/tex/latex/tex-gyre/l7xqcr.fd + RELOC/tex/latex/tex-gyre/l7xqcs.fd + RELOC/tex/latex/tex-gyre/l7xqhv.fd + RELOC/tex/latex/tex-gyre/l7xqhvc.fd + RELOC/tex/latex/tex-gyre/l7xqpl.fd + RELOC/tex/latex/tex-gyre/l7xqtm.fd + RELOC/tex/latex/tex-gyre/l7xqzc.fd + RELOC/tex/latex/tex-gyre/ly1qag.fd + RELOC/tex/latex/tex-gyre/ly1qbk.fd + RELOC/tex/latex/tex-gyre/ly1qcr.fd + RELOC/tex/latex/tex-gyre/ly1qcs.fd + RELOC/tex/latex/tex-gyre/ly1qhv.fd + RELOC/tex/latex/tex-gyre/ly1qhvc.fd + RELOC/tex/latex/tex-gyre/ly1qpl.fd + RELOC/tex/latex/tex-gyre/ly1qtm.fd + RELOC/tex/latex/tex-gyre/ly1qzc.fd + RELOC/tex/latex/tex-gyre/ot1qag.fd + RELOC/tex/latex/tex-gyre/ot1qbk.fd + RELOC/tex/latex/tex-gyre/ot1qcr.fd + RELOC/tex/latex/tex-gyre/ot1qcs.fd + RELOC/tex/latex/tex-gyre/ot1qhv.fd + RELOC/tex/latex/tex-gyre/ot1qhvc.fd + RELOC/tex/latex/tex-gyre/ot1qpl.fd + RELOC/tex/latex/tex-gyre/ot1qtm.fd + RELOC/tex/latex/tex-gyre/ot1qzc.fd + RELOC/tex/latex/tex-gyre/ot4qag.fd + RELOC/tex/latex/tex-gyre/ot4qbk.fd + RELOC/tex/latex/tex-gyre/ot4qcr.fd + RELOC/tex/latex/tex-gyre/ot4qcs.fd + RELOC/tex/latex/tex-gyre/ot4qhv.fd + RELOC/tex/latex/tex-gyre/ot4qhvc.fd + RELOC/tex/latex/tex-gyre/ot4qpl.fd + RELOC/tex/latex/tex-gyre/ot4qtm.fd + RELOC/tex/latex/tex-gyre/ot4qzc.fd + RELOC/tex/latex/tex-gyre/qbookman.sty + RELOC/tex/latex/tex-gyre/qcourier.sty + RELOC/tex/latex/tex-gyre/qpalatin.sty + RELOC/tex/latex/tex-gyre/qswiss.sty + RELOC/tex/latex/tex-gyre/qtimes.sty + RELOC/tex/latex/tex-gyre/qxqag.fd + RELOC/tex/latex/tex-gyre/qxqbk.fd + RELOC/tex/latex/tex-gyre/qxqcr.fd + RELOC/tex/latex/tex-gyre/qxqcs.fd + RELOC/tex/latex/tex-gyre/qxqhv.fd + RELOC/tex/latex/tex-gyre/qxqhvc.fd + RELOC/tex/latex/tex-gyre/qxqpl.fd + RELOC/tex/latex/tex-gyre/qxqtm.fd + RELOC/tex/latex/tex-gyre/qxqzc.fd + RELOC/tex/latex/tex-gyre/qzapfcha.sty + RELOC/tex/latex/tex-gyre/t1qag.fd + RELOC/tex/latex/tex-gyre/t1qbk.fd + RELOC/tex/latex/tex-gyre/t1qcr.fd + RELOC/tex/latex/tex-gyre/t1qcs.fd + RELOC/tex/latex/tex-gyre/t1qhv.fd + RELOC/tex/latex/tex-gyre/t1qhvc.fd + RELOC/tex/latex/tex-gyre/t1qpl.fd + RELOC/tex/latex/tex-gyre/t1qtm.fd + RELOC/tex/latex/tex-gyre/t1qzc.fd + RELOC/tex/latex/tex-gyre/t5qag.fd + RELOC/tex/latex/tex-gyre/t5qbk.fd + RELOC/tex/latex/tex-gyre/t5qcr.fd + RELOC/tex/latex/tex-gyre/t5qcs.fd + RELOC/tex/latex/tex-gyre/t5qhv.fd + RELOC/tex/latex/tex-gyre/t5qhvc.fd + RELOC/tex/latex/tex-gyre/t5qpl.fd + RELOC/tex/latex/tex-gyre/t5qtm.fd + RELOC/tex/latex/tex-gyre/t5qzc.fd + RELOC/tex/latex/tex-gyre/tgadventor.sty + RELOC/tex/latex/tex-gyre/tgbonum.sty + RELOC/tex/latex/tex-gyre/tgchorus.sty + RELOC/tex/latex/tex-gyre/tgcursor.sty + RELOC/tex/latex/tex-gyre/tgheros.sty + RELOC/tex/latex/tex-gyre/tgpagella.sty + RELOC/tex/latex/tex-gyre/tgschola.sty + RELOC/tex/latex/tex-gyre/tgtermes.sty + RELOC/tex/latex/tex-gyre/ts1qag.fd + RELOC/tex/latex/tex-gyre/ts1qbk.fd + RELOC/tex/latex/tex-gyre/ts1qcr.fd + RELOC/tex/latex/tex-gyre/ts1qcs.fd + RELOC/tex/latex/tex-gyre/ts1qhv.fd + RELOC/tex/latex/tex-gyre/ts1qhvc.fd + RELOC/tex/latex/tex-gyre/ts1qpl.fd + RELOC/tex/latex/tex-gyre/ts1qtm.fd + RELOC/tex/latex/tex-gyre/ts1qzc.fd +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-ctan /fonts/tex-gyre +catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-license gfsl +catalogue-version 2.004 + +name texilikechaps +category Package +revision 28553 +shortdesc Format chapters with a texi-like format. +relocated 1 +longdesc The package enables the user to reduce the size of the rather +longdesc large chapter headings in standard classes into a texi-like +longdesc smaller format. Details of the format may be controlled with +longdesc internal commands. +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-license lppl +catalogue-version 1.0a + +name texilikecover +category Package +revision 15878 +shortdesc A cover-page package, like TeXinfo. +relocated 1 +longdesc The package creates document cover pages, like those that +longdesc TeXinfo produces. +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-license lppl +catalogue-version 0.1 + +name texinfo +category Package +revision 37747 +shortdesc Texinfo documentation system. +relocated 1 +longdesc Texinfo is the preferred format for documentation in the GNU +longdesc project; the format may be used to produce online or printed +longdesc output from a single source. The Texinfo macros may be used to +longdesc produce printable output using TeX; other programs in the +longdesc distribution offer online interactive use (with hypertext +longdesc linkages in some cases). Note that a developers' snapshot of +longdesc the latest release of the Texinfo macros may be found in the +longdesc Texinfo 'latest' package. +runfiles size=98 + RELOC/tex/texinfo/texinfo.ini + RELOC/tex/texinfo/texinfo.tex + RELOC/tex/texinfo/txi-cs.tex + RELOC/tex/texinfo/txi-de.tex + RELOC/tex/texinfo/txi-en.tex + RELOC/tex/texinfo/txi-es.tex + RELOC/tex/texinfo/txi-fr.tex + RELOC/tex/texinfo/txi-it.tex + RELOC/tex/texinfo/txi-nb.tex + RELOC/tex/texinfo/txi-nl.tex + RELOC/tex/texinfo/txi-nn.tex + RELOC/tex/texinfo/txi-pl.tex + RELOC/tex/texinfo/txi-pt.tex + RELOC/tex/texinfo/txi-ru.tex + RELOC/tex/texinfo/txi-sr.tex + RELOC/tex/texinfo/txi-tr.tex + RELOC/tex/texinfo/txi-uk.tex +catalogue-ctan /macros/texinfo/texinfo +catalogue-date 2015-03-01 06:25:07 +0100 +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 +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 + RELOC/doc/texlive/index.html + 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/tlmgr-gui.png + RELOC/doc/texlive/texlive-common/tlmgr-paper-options.png + RELOC/doc/texlive/texlive-common/tray-menu.png + RELOC/doc/texlive/texlive-common/wizard-w32.png + +name texlive-cz +category TLCore +revision 37325 +shortdesc TeX Live manual (Czech/Slovak) +relocated 1 +docfiles size=376 + RELOC/doc/texlive/texlive-cz/Makefile + RELOC/doc/texlive/texlive-cz/csquote.sty + RELOC/doc/texlive/texlive-cz/ec-lmr10-19.png + RELOC/doc/texlive/texlive-cz/live4ht.cfg + RELOC/doc/texlive/texlive-cz/tex-live.css + RELOC/doc/texlive/texlive-cz/texlive-cz.css + RELOC/doc/texlive/texlive-cz/texlive-cz.html + RELOC/doc/texlive/texlive-cz/texlive-cz.pdf + RELOC/doc/texlive/texlive-cz/texlive-cz.tex + +name texlive-de +category TLCore +revision 37312 +shortdesc TeX Live manual (German) +relocated 1 +docfiles size=402 + RELOC/doc/texlive/texlive-de/Makefile + RELOC/doc/texlive/texlive-de/install-lnx-main.png + RELOC/doc/texlive/texlive-de/lmsy10-40.png + RELOC/doc/texlive/texlive-de/nsis_installer.png + RELOC/doc/texlive/texlive-de/nsisinstaller.png + RELOC/doc/texlive/texlive-de/psview.png + RELOC/doc/texlive/texlive-de/stdcoll.png + RELOC/doc/texlive/texlive-de/texlive-de-html.css + RELOC/doc/texlive/texlive-de/texlive-de-html.tex + RELOC/doc/texlive/texlive-de/texlive-de.css + RELOC/doc/texlive/texlive-de/texlive-de.html + RELOC/doc/texlive/texlive-de/texlive-de.pdf + RELOC/doc/texlive/texlive-de/texlive-de.tex + RELOC/doc/texlive/texlive-de/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/tray-menu.png + RELOC/doc/texlive/texlive-de/wizard-w32.png + +name texlive-docindex +category TLCore +revision 38366 +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. +runfiles size=270 + texmf-dist/scripts/texlive/var/texcatalogue.keywords +docfiles size=195 + doc.html + +name texlive-en +category TLCore +revision 37206 +shortdesc TeX Live manual (English) +relocated 1 +docfiles size=1119 + RELOC/doc/info/tlbuild.info + RELOC/doc/texlive/texlive-en/Makefile + RELOC/doc/texlive/texlive-en/README + RELOC/doc/texlive/texlive-en/archive/bv-live.tex + RELOC/doc/texlive/texlive-en/archive/bvoutln.sty + RELOC/doc/texlive/texlive-en/archive/changemail + RELOC/doc/texlive/texlive-en/archive/l.pl + RELOC/doc/texlive/texlive-en/archive/live-2003.tex + RELOC/doc/texlive/texlive-en/archive/live-2004.tex + RELOC/doc/texlive/texlive-en/archive/live-2005.tex + RELOC/doc/texlive/texlive-en/archive/live-2007.tex + RELOC/doc/texlive/texlive-en/archive/live-2008.tex + RELOC/doc/texlive/texlive-en/archive/live-2009.tex + RELOC/doc/texlive/texlive-en/archive/live-2010.tex + RELOC/doc/texlive/texlive-en/archive/live-2011.tex + RELOC/doc/texlive/texlive-en/archive/live-2012.tex + RELOC/doc/texlive/texlive-en/archive/live-2013.tex + RELOC/doc/texlive/texlive-en/archive/live-2014.tex + RELOC/doc/texlive/texlive-en/archive/live-tl7.tex + RELOC/doc/texlive/texlive-en/archive/live4ht.cfg-2004 + RELOC/doc/texlive/texlive-en/archive/mod.pl + RELOC/doc/texlive/texlive-en/archive/nocites.tex + RELOC/doc/texlive/texlive-en/archive/picture.tex + RELOC/doc/texlive/texlive-en/archive/split.pl + RELOC/doc/texlive/texlive-en/archive/status.pl + RELOC/doc/texlive/texlive-en/archive/tex-live.bib + RELOC/doc/texlive/texlive-en/archive/tex-live.bst + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2003 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2004 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2005 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2007 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2008 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2009 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2010 + RELOC/doc/texlive/texlive-en/archive/tex-live.sty-2014 + RELOC/doc/texlive/texlive-en/archive/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 + +name texlive.infra.i386-linux +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 + +name texlive-it +category TLCore +revision 37462 +shortdesc TeX Live manual (Italian) +relocated 1 +docfiles size=374 + RELOC/doc/texlive/texlive-it/Makefile + RELOC/doc/texlive/texlive-it/texlive-it.html + RELOC/doc/texlive/texlive-it/texlive-it.pdf + RELOC/doc/texlive/texlive-it/texlive-it.tex + +name texlive-msg-translations +category TLCore +revision 37957 +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 + tlpkg/translations/cs.po + tlpkg/translations/de.po + tlpkg/translations/es.po + tlpkg/translations/fr.po + tlpkg/translations/it.po + tlpkg/translations/ja.po + tlpkg/translations/messages.pot + tlpkg/translations/nl.po + tlpkg/translations/pl.po + tlpkg/translations/pt_BR.po + tlpkg/translations/ru.po + tlpkg/translations/sk.po + tlpkg/translations/sl.po + tlpkg/translations/sr.po + tlpkg/translations/translators + tlpkg/translations/uk.po + tlpkg/translations/vi.po + tlpkg/translations/zh_CN.po + tlpkg/translations/zh_TW.po + +name 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 +shortdesc TeX Live manual (Polish) +relocated 1 +docfiles size=405 + RELOC/doc/texlive/texlive-pl/Makefile + RELOC/doc/texlive/texlive-pl/live4ht.cfg + RELOC/doc/texlive/texlive-pl/tex-live.css + RELOC/doc/texlive/texlive-pl/texlive-pl.css + RELOC/doc/texlive/texlive-pl/texlive-pl.html + RELOC/doc/texlive/texlive-pl/texlive-pl.pdf + RELOC/doc/texlive/texlive-pl/texlive-pl.tex + +name texlive-ru +category TLCore +revision 37222 +shortdesc TeX Live manual (Russian) +relocated 1 +docfiles size=419 + RELOC/doc/texlive/texlive-ru/Makefile + RELOC/doc/texlive/texlive-ru/live4ht.cfg + RELOC/doc/texlive/texlive-ru/tex-live.css + RELOC/doc/texlive/texlive-ru/texlive-ru.css + RELOC/doc/texlive/texlive-ru/texlive-ru.html + RELOC/doc/texlive/texlive-ru/texlive-ru.pdf + RELOC/doc/texlive/texlive-ru/texlive-ru.tex + +name texlive-scripts +category TLCore +revision 38366 +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 + install-tl + texmf-dist/scripts/texlive/lua/texlive/getopt.tlu + texmf-dist/scripts/texlive/lua/texlive/tlpdb.tlu + texmf-dist/scripts/texlive/lua/texlive/utils.tlu + texmf-dist/scripts/texlive/rungs.tlu + texmf-dist/scripts/texlive/test-tlpdb.tlu + texmf-dist/scripts/texlive/texconf.tlu + tlpkg/installer/ctan-mirrors.pl + tlpkg/installer/install-menu-perltk.pl + tlpkg/installer/install-menu-text.pl + tlpkg/installer/install-menu-wizard.pl + 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.i386-linux +category TLCore +revision 29741 +shortdesc i386-linux files of texlive-scripts +binfiles arch=i386-linux size=2 + bin/i386-linux/rungs + +name texlive-sr +category TLCore +revision 37233 +shortdesc TeX Live manual (Serbian) +relocated 1 +docfiles size=413 + 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/texlive-sr.css + RELOC/doc/texlive/texlive-sr/texlive-sr.html + RELOC/doc/texlive/texlive-sr/texlive-sr.pdf + RELOC/doc/texlive/texlive-sr/texlive-sr.sty + RELOC/doc/texlive/texlive-sr/texlive-sr.tex + +name texlive-zh-cn +category TLCore +revision 37314 +shortdesc TeX Live manual (Chinese) +relocated 1 +docfiles size=243 + 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 texloganalyser +category Package +revision 35584 +shortdesc Analyse TeX logs. +longdesc The perl script allows the user to extract (and display) +longdesc elements of the log file +depend texloganalyser.ARCH +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-license bsd +catalogue-version 0.9 + +name texloganalyser.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of texloganalyser +binfiles arch=i386-linux size=1 + bin/i386-linux/texloganalyser + +name texlogos +category Package +revision 19083 +shortdesc Ready-to-use LaTeX logos. +relocated 1 +longdesc TeXlogos defines an assortment of frequently used logos not +longdesc contained in base LaTeX itself. The Metafont, MetapostAMS, +longdesc BibTeX and SliTeX logos are defined, as long as you have the +longdesc appropriate CM/Logo/AMS fonts. Currency symbols Euro, Cent, +longdesc Yen, Won and Naira are defined so as not to need TS1-encoded +longdesc fonts. Also defined are the C++ logo, with the '+' signs +longdesc properly positioned, and the logo of the Vienna University +longdesc Business Administration Center (BWZ). +runfiles size=2 + RELOC/tex/latex/texlogos/texlogos.sty +catalogue-ctan /macros/latex/contrib/texlogos/texlogos.sty +catalogue-date 2012-06-27 22:19:02 +0200 +catalogue-license lppl +catalogue-version 1.3.1 + +name texmate +category Package +revision 15878 +shortdesc Comprehensive chess annotation in LaTeX. +relocated 1 +longdesc TeXmate formats chess games from very simple ascii input. The +longdesc clean "1. e4 e5; 2. Nf3 Nc6; 3. Bb5 a6" will produce the same +longdesc results as the sloppier "1 e4 e5; Nf3 Nc6 3.. Bb5 a6". The +longdesc resulting format is fully customizable. There are 4 levels of +longdesc commentary: 1 is the main game, 2-3 are commentaries. Each has +longdesc its fonts, punctuation marks, etc., and these are also +longdesc customizable. The package includes a tool for the creation of +longdesc diagrams. The package works in conjunction with skak to produce +longdesc diagrams of the current position automatically. For chess +longdesc fonts, the package uses the chessfss system. +runfiles size=7 + RELOC/tex/latex/texmate/texmate.sty +docfiles size=82 + RELOC/doc/latex/texmate/README + RELOC/doc/latex/texmate/texmate2manual.pdf + RELOC/doc/latex/texmate/texmate2manual.tex +srcfiles size=9 + RELOC/source/latex/texmate/texmate.dtx + RELOC/source/latex/texmate/texmate.ins +catalogue-ctan /macros/latex/contrib/texmate +catalogue-date 2012-06-05 21:37:17 +0200 +catalogue-license lppl +catalogue-version 2 + +name texments +category Package +revision 15878 +shortdesc Using the Pygments highlighter in LaTeX. +relocated 1 +longdesc A package which allows to use the Pygments highlighter inside +longdesc LaTeX documents. Pygments supports syntax colouring of over 50 +longdesc types of files, and ships with multiple colour schemes. +runfiles size=1 + RELOC/tex/latex/texments/texments.sty +docfiles size=26 + RELOC/doc/latex/texments/README + RELOC/doc/latex/texments/texments.pdf +srcfiles size=4 + RELOC/source/latex/texments/texments.dtx + RELOC/source/latex/texments/texments.ins +catalogue-ctan /macros/latex/contrib/texments +catalogue-date 2012-06-26 13:14:08 +0200 +catalogue-license lppl +catalogue-version 0.2.0 + +name tex-overview +category Package +revision 27724 +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. +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 +catalogue-license lppl1.3 +catalogue-version 0.1f + +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. +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 +docfiles size=267 + RELOC/doc/latex/texpower/00readme.txt + RELOC/doc/latex/texpower/01install.txt + RELOC/doc/latex/texpower/02changes.txt + RELOC/doc/latex/texpower/FAQ-display.tex + RELOC/doc/latex/texpower/FAQ-printout.tex + RELOC/doc/latex/texpower/MakeExamples.sh + RELOC/doc/latex/texpower/__TPcfg.tex + RELOC/doc/latex/texpower/__TPindexing.tex + RELOC/doc/latex/texpower/__TPpreamble.tex + RELOC/doc/latex/texpower/bckwrdexample.tex + RELOC/doc/latex/texpower/bgndexample.tex + RELOC/doc/latex/texpower/contrib/00readme.txt + RELOC/doc/latex/texpower/contrib/config.landscapeplus + RELOC/doc/latex/texpower/contrib/tpmultiinc.tar + RELOC/doc/latex/texpower/divexample.tex + RELOC/doc/latex/texpower/dummy.java + RELOC/doc/latex/texpower/fancyexample.tex + RELOC/doc/latex/texpower/fig-1.mps + RELOC/doc/latex/texpower/fig-2.mps + RELOC/doc/latex/texpower/fig-3.mps + RELOC/doc/latex/texpower/foilsdemo.tex + RELOC/doc/latex/texpower/fulldemo.tex + RELOC/doc/latex/texpower/hilitexample.tex + RELOC/doc/latex/texpower/ifmslidemo.tex + RELOC/doc/latex/texpower/manual.pdf + RELOC/doc/latex/texpower/manual.tex + RELOC/doc/latex/texpower/mathexample.tex + RELOC/doc/latex/texpower/panelexample.tex + RELOC/doc/latex/texpower/parexample.tex + RELOC/doc/latex/texpower/pdfscrdemo.tex + RELOC/doc/latex/texpower/pdfslidemo.tex + RELOC/doc/latex/texpower/picexample.tex + RELOC/doc/latex/texpower/picltxexample.tex + RELOC/doc/latex/texpower/picpsexample.tex + RELOC/doc/latex/texpower/pp4sldemo.tex + RELOC/doc/latex/texpower/prosperdemo.tex + RELOC/doc/latex/texpower/seminardemo.tex + RELOC/doc/latex/texpower/simpledemo.tex + RELOC/doc/latex/texpower/slidesdemo.tex + RELOC/doc/latex/texpower/spanelexample.tex + RELOC/doc/latex/texpower/tabexample.tex + RELOC/doc/latex/texpower/tpslifonts.zip + RELOC/doc/latex/texpower/tpslifonts/00readme.txt + RELOC/doc/latex/texpower/tpslifonts/01install.txt + RELOC/doc/latex/texpower/tpslifonts/Makefile + RELOC/doc/latex/texpower/tpslifonts/slifontsexample.tex + RELOC/doc/latex/texpower/tpslifonts/tpslifonts.dtx + RELOC/doc/latex/texpower/tpslifonts/tpslifonts.ins + RELOC/doc/latex/texpower/verbexample.tex +srcfiles size=172 + RELOC/source/latex/texpower/Makefile + RELOC/source/latex/texpower/powersem.dtx + RELOC/source/latex/texpower/texpower-addons.dtx + RELOC/source/latex/texpower/texpower-cfg.dtx + RELOC/source/latex/texpower/texpower-doc.dtx + RELOC/source/latex/texpower/texpower.dtx + RELOC/source/latex/texpower/tpbundle.ins + RELOC/source/latex/texpower/tplists.dtx +catalogue-ctan /macros/latex/contrib/texpower +catalogue-date 2012-02-24 11:11:42 +0100 +catalogue-license gpl +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 +catalogue-license other-free +catalogue-version 0.4.8 + +name texshade +category Package +revision 24716 +shortdesc Package for setting nucleotide and peptide alignments. +relocated 1 +longdesc TeXshade is alignment shading software completely written in +longdesc TeX/LaTeX; it can process multiple sequence alignments in the +longdesc .MSF and the .ALN file formats. In addition to common shading +longdesc algorithms, it provides special shading modes showing +longdesc functional aspects, e.g. charge or hydropathy, and a wide range +longdesc of commands for handling shading colours, text styles, labels, +longdesc legends; it even allows the user to define completely new +longdesc shading modes. TeXshade combines highest flexibility with TeX +longdesc output quality -- all in a bundle that does not demand +longdesc excessive development time of the user. +runfiles size=155 + RELOC/tex/latex/texshade/texshade.def + RELOC/tex/latex/texshade/texshade.sty +docfiles size=311 + RELOC/doc/latex/texshade/AQP1.phd + RELOC/doc/latex/texshade/AQP1.top + RELOC/doc/latex/texshade/AQP2spec.ALN + RELOC/doc/latex/texshade/AQPDNA.MSF + RELOC/doc/latex/texshade/AQP_HMM.ext + RELOC/doc/latex/texshade/AQP_HMM.sgl + RELOC/doc/latex/texshade/AQP_TC.asc + RELOC/doc/latex/texshade/AQPpro.MSF + RELOC/doc/latex/texshade/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/tsfaq.tex +srcfiles size=250 + RELOC/source/latex/texshade/texshade.dtx + RELOC/source/latex/texshade/texshade.ins +catalogue-ctan /macros/latex/contrib/texshade +catalogue-date 2011-12-01 13:24:33 +0100 +catalogue-license gpl2 +catalogue-version 1.24 + +name texsis +category Package +revision 31958 +shortdesc Plain TeX macros for Physicists. +longdesc TeXsis is a TeX macro package which provides useful features +longdesc for typesetting research papers and related documents. For +longdesc example, it includes support specifically for: Automatic +longdesc numbering of equations, figures, tables and references; +longdesc Simplified control of type sizes, line spacing, footnotes, +longdesc running headlines and footlines, and tables of contents, +longdesc figures and tables; Specialized document formats for research +longdesc papers, preprints and ``e-prints,'' conference proceedings, +longdesc theses, books, referee reports, letters, and memoranda; +longdesc Simplified means of constructing an index for a book or thesis; +longdesc Easy to use double column formatting; Specialized environments +longdesc for lists, theorems and proofs, centered or non-justified text, +longdesc and listing computer code; Specialized macros for easily +longdesc constructing ruled tables. TeXsis was originally developed for +longdesc physicists, but others may also find it useful. It is +longdesc completely compatible with Plain TeX. +depend tex +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 +docfiles size=135 + texmf-dist/doc/man/man1/texsis.1 + texmf-dist/doc/man/man1/texsis.man1.pdf + texmf-dist/doc/otherformats/texsis/base/COPYING + texmf-dist/doc/otherformats/texsis/base/Example.tex + texmf-dist/doc/otherformats/texsis/base/Fonts.tex + texmf-dist/doc/otherformats/texsis/base/INSTALL + texmf-dist/doc/otherformats/texsis/base/Install.tex + texmf-dist/doc/otherformats/texsis/base/MANIFEST + texmf-dist/doc/otherformats/texsis/base/Manual.fgl + texmf-dist/doc/otherformats/texsis/base/Manual.ref + texmf-dist/doc/otherformats/texsis/base/Manual.tbl + texmf-dist/doc/otherformats/texsis/base/Manual.tex + texmf-dist/doc/otherformats/texsis/base/NEWS + texmf-dist/doc/otherformats/texsis/base/README + texmf-dist/doc/otherformats/texsis/base/TXSapxF.doc + texmf-dist/doc/otherformats/texsis/base/TXScover.doc + texmf-dist/doc/otherformats/texsis/base/TXSdcol.doc + texmf-dist/doc/otherformats/texsis/base/TXSdoc.doc + texmf-dist/doc/otherformats/texsis/base/TXSdoc0.doc + texmf-dist/doc/otherformats/texsis/base/TXSdocM.doc + texmf-dist/doc/otherformats/texsis/base/TXSend.doc + texmf-dist/doc/otherformats/texsis/base/TXSenvmt.doc + texmf-dist/doc/otherformats/texsis/base/TXSeqns.doc + texmf-dist/doc/otherformats/texsis/base/TXSfigs.doc + texmf-dist/doc/otherformats/texsis/base/TXSfmts.doc + texmf-dist/doc/otherformats/texsis/base/TXSfonts.doc + texmf-dist/doc/otherformats/texsis/base/TXSinstl.doc + texmf-dist/doc/otherformats/texsis/base/TXSintro.doc + texmf-dist/doc/otherformats/texsis/base/TXSletr.doc + texmf-dist/doc/otherformats/texsis/base/TXSmisc.doc + texmf-dist/doc/otherformats/texsis/base/TXSprns.doc + texmf-dist/doc/otherformats/texsis/base/TXSrefs.doc + texmf-dist/doc/otherformats/texsis/base/TXSrevs.doc + texmf-dist/doc/otherformats/texsis/base/TXSruled.doc + texmf-dist/doc/otherformats/texsis/base/TXSsects.doc + texmf-dist/doc/otherformats/texsis/base/TXSsite.000 + texmf-dist/doc/otherformats/texsis/base/TXSsymb.doc + texmf-dist/doc/otherformats/texsis/base/TXStags.doc + texmf-dist/doc/otherformats/texsis/base/index.tex + texmf-dist/doc/otherformats/texsis/base/letr + texmf-dist/doc/otherformats/texsis/base/penguin.eps + texmf-dist/doc/otherformats/texsis/base/penguin2.eps + texmf-dist/doc/otherformats/texsis/base/texsis.el + texmf-dist/doc/otherformats/texsis/base/texsis.lsm +catalogue-ctan /macros/texsis +catalogue-date 2012-06-05 22:22:59 +0200 +catalogue-license lppl +catalogue-version 2.18 + +name texsis.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of texsis +binfiles arch=i386-linux size=1 + bin/i386-linux/texsis + +name textcase +category Package +revision 15878 +shortdesc Case conversion ignoring mathematics, etc. +relocated 1 +longdesc The textcase package offers commands \MakeTextUppercase and +longdesc \MakeTextLowercase are similar to the standard \MakeUppercase +longdesc and \MakeLowercase, but they do not change the case of any +longdesc sections of mathematics, or the arguments of \cite, \label and +longdesc \ref commands within the argument. A further command +longdesc \NoCaseChange does nothing but suppress case change within its +longdesc argument, so to force uppercase of a section including an +longdesc environment, one might say: +longdesc \MakeTextUppercase{...\NoCaseChange{\begin{foo}} +longdesc ...\NoCaseChange{\end{foo}}...} +runfiles size=1 + RELOC/tex/latex/textcase/textcase.sty +docfiles size=43 + RELOC/doc/latex/textcase/README + RELOC/doc/latex/textcase/textcase.pdf +srcfiles size=5 + RELOC/source/latex/textcase/textcase.dtx + RELOC/source/latex/textcase/textcase.ins +catalogue-ctan /macros/latex/contrib/textcase +catalogue-date 2012-06-26 14:36:07 +0200 +catalogue-license lppl + +name textfit +category Package +revision 20591 +shortdesc Fit text to a desired size. +relocated 1 +longdesc Package to fit text to a given width or height by scaling the +longdesc font. For example: \scaletowidth{3in}{This}. (The job is done +longdesc by calculating a magstep and applying it to the current font; +longdesc thus "This" will be very tall, as well as very wide; to scale +longdesc in just one dimension, use the facilities of the graphicx +longdesc package.) +runfiles size=2 + RELOC/tex/latex/textfit/textfit.sty +docfiles size=43 + RELOC/doc/latex/textfit/README + RELOC/doc/latex/textfit/makefile + RELOC/doc/latex/textfit/manifest + RELOC/doc/latex/textfit/textfit.pdf +srcfiles size=4 + RELOC/source/latex/textfit/textfit.dtx + RELOC/source/latex/textfit/textfit.ins +catalogue-ctan /macros/latex/contrib/textfit +catalogue-date 2012-06-26 14:36:07 +0200 +catalogue-license lppl1.3 +catalogue-version 5 + +name textglos +category Package +revision 30788 +shortdesc Typeset and index linguistic gloss abbreviations. +relocated 1 +longdesc The package provides a set of macros for in-line linguistic +longdesc examples (as opposed to interlinear glossing, set apart from +longdesc the main text). It prevents hyphenated examples from breaking +longdesc across lines and consistently formats phonemic examples, +longdesc orthographic examples, and more. +runfiles size=1 + RELOC/tex/latex/textglos/textglos.sty +docfiles size=105 + RELOC/doc/latex/textglos/README + RELOC/doc/latex/textglos/README.txt + RELOC/doc/latex/textglos/textglos.pdf +srcfiles size=6 + RELOC/source/latex/textglos/textglos.dtx + RELOC/source/latex/textglos/textglos.ins +catalogue-ctan /macros/latex/contrib/textglos +catalogue-date 2013-06-19 00:57:02 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name textgreek +category Package +revision 24282 +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 +docfiles size=136 + RELOC/doc/latex/textgreek/README + RELOC/doc/latex/textgreek/textgreek.pdf +srcfiles size=8 + RELOC/source/latex/textgreek/textgreek.dtx + RELOC/source/latex/textgreek/textgreek.ins +catalogue-ctan /macros/latex/contrib/textgreek +catalogue-date 2012-06-26 14:36:07 +0200 +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 + +name textmerg +category Package +revision 20677 +shortdesc Merge text in TeX and LaTeX. +relocated 1 +longdesc Repetetively produce documents from a fixed part and a variable +longdesc part. Such an operation is commonly used as "mail merge" to +longdesc produce mail shots. +runfiles size=2 + RELOC/tex/generic/textmerg/textmerg.sty +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.tex + RELOC/doc/generic/textmerg/tmexamp1.tex + RELOC/doc/generic/textmerg/tmexamp2.tex + RELOC/doc/generic/textmerg/tmexampp.tex +srcfiles size=9 + RELOC/source/generic/textmerg/textmerg.drv + RELOC/source/generic/textmerg/textmerg.dtx + RELOC/source/generic/textmerg/textmerg.ins +catalogue-ctan /macros/latex/contrib/textmerg +catalogue-date 2012-06-27 22:19:02 +0200 +catalogue-license pd +catalogue-version 2.01 + +name textopo +category Package +revision 23796 +shortdesc Annotated membrane protein topology plots. +relocated 1 +longdesc A LaTeX package for setting shaded and annotated membrane +longdesc protein topology plots and helical wheels. +runfiles size=67 + RELOC/tex/latex/textopo/biotex.sty + RELOC/tex/latex/textopo/textopo.def + RELOC/tex/latex/textopo/textopo.sty +docfiles size=190 + RELOC/doc/latex/textopo/AQP1.SP + RELOC/doc/latex/textopo/AQP1.hmm + RELOC/doc/latex/textopo/AQP1.phd + RELOC/doc/latex/textopo/AQP1.swp + RELOC/doc/latex/textopo/AQP1.tpo + RELOC/doc/latex/textopo/AQP2spec.ALN + RELOC/doc/latex/textopo/AQPpro.MSF + RELOC/doc/latex/textopo/AQPpro1.shd + RELOC/doc/latex/textopo/textopo.pdf + RELOC/doc/latex/textopo/textopo.txt +srcfiles size=123 + RELOC/source/latex/textopo/textopo.dtx + RELOC/source/latex/textopo/textopo.ins +catalogue-ctan /macros/latex/contrib/textopo +catalogue-date 2011-09-27 20:18:06 +0200 +catalogue-license gpl +catalogue-version 1.5 + +name textpath +category Package +revision 15878 +shortdesc Setting text along a path with MetaPost. +relocated 1 +longdesc This MetaPost package provides macros to typeset text along a +longdesc free path with the help of LaTeX, thereby preserving kerning +longdesc and allowing for 8-bit input (accented characters). +runfiles size=5 + RELOC/metapost/textpath/textpath.mp + RELOC/tex/latex/textpath/textpathmp.sty +docfiles size=77 + RELOC/doc/metapost/textpath/CHANGES + RELOC/doc/metapost/textpath/README + RELOC/doc/metapost/textpath/textpath.pdf + RELOC/doc/metapost/textpath/textpath.tex + RELOC/doc/metapost/textpath/textpathfigs.mp + RELOC/doc/metapost/textpath/textpathfigs.tex +catalogue-ctan /graphics/metapost/contrib/macros/textpath +catalogue-date 2012-06-27 22:19:02 +0200 +catalogue-license lppl +catalogue-version 1.6 + +name textpos +category Package +revision 32571 +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 + 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/examples/t1.tex + RELOC/doc/latex/textpos/examples/t2.tex + RELOC/doc/latex/textpos/examples/t3.tex + RELOC/doc/latex/textpos/examples/t4.tex + RELOC/doc/latex/textpos/examples/t5.tex + RELOC/doc/latex/textpos/examples/t6.tex + RELOC/doc/latex/textpos/examples/t7.tex + RELOC/doc/latex/textpos/examples/t8.tex + RELOC/doc/latex/textpos/niepraschk-eso-pic.pdf + 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/source/latex/textpos/textpos.drv + RELOC/source/latex/textpos/textpos.dtx + RELOC/source/latex/textpos/textpos.ins +catalogue-ctan /macros/latex/contrib/textpos +catalogue-date 2014-01-04 08:41:38 +0100 +catalogue-license gpl +catalogue-version 1.7j + +name tex-virtual-academy-pl +category Package +revision 34177 +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 + +name texware +category TLCore +revision 37078 +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 +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 + 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-ctan /systems/knuth/dist/texware +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license knuth + +name texware.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of texware +binfiles arch=i386-linux size=43 + bin/i386-linux/dvitype + bin/i386-linux/pooltype + +name texworks +category TLCore +revision 37429 +shortdesc Cross-platform friendly front end. +longdesc See http://tug.org/texworks for information and downloads. TeX +longdesc Live includes executables 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 + 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 + tlpkg/texworks/share/poppler/CMakeLists.txt + tlpkg/texworks/share/poppler/COPYING + tlpkg/texworks/share/poppler/COPYING.adobe + tlpkg/texworks/share/poppler/COPYING.gpl2 + tlpkg/texworks/share/poppler/Makefile + tlpkg/texworks/share/poppler/README + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-0 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-1 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-2 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-3 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-4 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-5 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-6 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-B5pc + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-ETen-B5 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-H-CID + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-H-Host + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-H-Mac + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/Adobe-CNS1-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5pc-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5pc-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5pc-UCS2C + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/B5pc-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS1-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS1-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/CNS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETHK-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETHK-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETen-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETen-B5-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETen-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETenms-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/ETenms-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKdla-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKdla-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKdlb-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKdlb-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKgccs-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKgccs-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKm314-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKm314-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKm471-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKm471-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKscs-B5-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/HKscs-B5-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UCS2-B5pc + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UCS2-ETen-B5 + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-CNS1/UniCNS-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-0 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-1 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-2 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-3 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-4 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-5 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-GBK-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-GBpc-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-H-CID + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-H-Host + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-H-Mac + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/Adobe-GB1-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GB-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GB-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GB-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GB-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK-EUC-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK2K-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBK2K-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBKp-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBKp-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBT-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBT-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBT-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBT-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBTpc-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBTpc-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBpc-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBpc-EUC-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBpc-EUC-UCS2C + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/GBpc-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UCS2-GBK-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UCS2-GBpc-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-GB1/UniGB-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78ms-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/78ms-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/83pv-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90ms-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90ms-RKSJ-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90ms-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90msp-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90msp-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90pv-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90pv-RKSJ-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90pv-RKSJ-UCS2C + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/90pv-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Add-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Add-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Add-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Add-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-0 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-1 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-2 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-3 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-4 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-5 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-6 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-90ms-RKSJ + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-90pv-RKSJ + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-H-CID + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-H-Host + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-H-Mac + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-PS-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-PS-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Adobe-Japan1-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Ext-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Ext-RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Ext-RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Ext-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hankaku + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hiragana + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hojo-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hojo-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hojo-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Hojo-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Katakana + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/NWP-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/NWP-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/RKSJ-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/RKSJ-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/Roman + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UCS2-90ms-RKSJ + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UCS2-90pv-RKSJ + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniHojo-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UCS2-HW-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UCS2-HW-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJIS2004-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISPro-UCS2-HW-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISPro-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISPro-UTF8-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISX0213-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISX0213-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISX02132004-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/UniJISX02132004-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/V + tlpkg/texworks/share/poppler/cMap/Adobe-Japan1/WP-Symbol + tlpkg/texworks/share/poppler/cMap/Adobe-Japan2/Adobe-Japan2-0 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-0 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-1 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-2 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-H-CID + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-H-Host + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-H-Mac + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-KSCms-UHC + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-KSCpc-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/Adobe-Korea1-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-Johab-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-Johab-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-HW-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-HW-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCms-UHC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCpc-EUC-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCpc-EUC-UCS2 + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCpc-EUC-UCS2C + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/KSCpc-EUC-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UCS2-KSCms-UHC + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UCS2-KSCpc-EUC + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UCS2-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UCS2-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF16-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF16-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF32-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF32-V + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF8-H + tlpkg/texworks/share/poppler/cMap/Adobe-Korea1/UniKS-UTF8-V + tlpkg/texworks/share/poppler/cidToUnicode/Adobe-CNS1 + tlpkg/texworks/share/poppler/cidToUnicode/Adobe-GB1 + tlpkg/texworks/share/poppler/cidToUnicode/Adobe-Japan1 + tlpkg/texworks/share/poppler/cidToUnicode/Adobe-Korea1 + tlpkg/texworks/share/poppler/nameToUnicode/Bulgarian + tlpkg/texworks/share/poppler/nameToUnicode/Greek + tlpkg/texworks/share/poppler/nameToUnicode/Thai + tlpkg/texworks/share/poppler/poppler-data.pc + tlpkg/texworks/share/poppler/poppler-data.pc.in + tlpkg/texworks/share/poppler/unicodeMap/Big5 + tlpkg/texworks/share/poppler/unicodeMap/Big5ascii + tlpkg/texworks/share/poppler/unicodeMap/EUC-CN + tlpkg/texworks/share/poppler/unicodeMap/EUC-JP + tlpkg/texworks/share/poppler/unicodeMap/GBK + tlpkg/texworks/share/poppler/unicodeMap/ISO-2022-CN + tlpkg/texworks/share/poppler/unicodeMap/ISO-2022-JP + tlpkg/texworks/share/poppler/unicodeMap/ISO-2022-KR + tlpkg/texworks/share/poppler/unicodeMap/ISO-8859-6 + tlpkg/texworks/share/poppler/unicodeMap/ISO-8859-7 + tlpkg/texworks/share/poppler/unicodeMap/ISO-8859-8 + tlpkg/texworks/share/poppler/unicodeMap/ISO-8859-9 + tlpkg/texworks/share/poppler/unicodeMap/KOI8-R + tlpkg/texworks/share/poppler/unicodeMap/Latin2 + tlpkg/texworks/share/poppler/unicodeMap/Shift-JIS + tlpkg/texworks/share/poppler/unicodeMap/TIS-620 + tlpkg/texworks/share/poppler/unicodeMap/Windows-1255 + tlpkg/texworks/texworks-help/TeXworks-manual/en/Acknowledgements.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/AdvanceduseScripting.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Beyondthismanual.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/CompilingTw.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/CustomizingTw.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Firststeps.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/GoingfurtherEditingtools.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/GoingfurtherOthertools.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Installation.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Introduction.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/Regularexpressions.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/TeXworks-manual-en.pdf + tlpkg/texworks/texworks-help/TeXworks-manual/en/bibname.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/contentsname.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/LMB.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/Linux.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/Mac.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/MacCmdKey.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/MacOptKey.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/RMB.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/TeXworks.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/Windows.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/cmsy10-c-41.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/cmsy10-c-4d.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/cmsy10-c-53.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/consoleOutput.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/errorParsingScript.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/example.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/iconAbortTypesetting.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/iconTypeset.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index0x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index1x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index2x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index3x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index4x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index5x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index6x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index7x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/index8x.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/interface-summary.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/replaceDialog.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/toolbar1.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/images/toolbar2.png + tlpkg/texworks/texworks-help/TeXworks-manual/en/index.css + tlpkg/texworks/texworks-help/TeXworks-manual/en/index.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index10.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index12.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index13.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index14.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index15.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index16.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index17.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index18.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index19.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index2.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index20.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index21.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index23.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index24.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index25.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index26.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index27.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index28.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index29.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index30.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/index36.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/index37.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/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 + tlpkg/texworks/texworks-help/TeXworks-manual/en/indexname.html + tlpkg/texworks/texworks-help/TeXworks-manual/en/manual.css + tlpkg/texworks/texworks-help/TeXworks-manual/en/tw-help-title.txt + tlpkg/texworks/texworks-help/TeXworks-manual/fr/AdaptationdeTw.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Allerplusloinautresoutils.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Allerplusloinoutilsdedition.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Audeladecemanuel.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/CompilerTw.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Expressionsregulieres.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Installation.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Introduction.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Priseenmain.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/Remerciements.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/TeXworks-manual-fr.pdf + tlpkg/texworks/texworks-help/TeXworks-manual/fr/UsageavancelesScripts.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/bibname.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/contentsname.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/LMB.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/Linux.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/Mac.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/MacCmdKey.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/RMB.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/TeXworks.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/Windows.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/cmsy10-c-41.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/cmsy10-c-4d.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/cmsy10-c-53.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/consoleOutput.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/ec-lmr12-19.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/errorParsingScript.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/example.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/iconAbortTypesetting.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/iconTypeset.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index0x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index1x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index2x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index3x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index4x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index5x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index6x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index7x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/index8x.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/interface-Tw.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/rechremp.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/toolbar1.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/images/toolbar2.png + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index.css + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index10.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index11.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index13.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index14.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index15.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index16.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index17.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index18.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index19.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index2.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index20.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index21.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index22.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index23.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index25.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index26.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index27.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index28.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index29.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index30.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index31.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index32.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index33.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/index39.html + tlpkg/texworks/texworks-help/TeXworks-manual/fr/index40.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/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 + +name tfrupee +category Package +revision 20770 +shortdesc A font offering the new (Indian) Rupee symbol. +relocated 1 +longdesc The package provides LaTeX support for the (Indian) Rupee +longdesc symbol font, created by TechFat. The original font has been +longdesc converted to Adobe Type 1 format, and simple LaTeX support +longdesc written for its use. +execute addMap tfrupee.map +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-license gpl3 +catalogue-version 1.02 + +name thalie +category Package +revision 34435 +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 + RELOC/source/latex/thalie/thalie.dtx + RELOC/source/latex/thalie/thalie.ins +catalogue-ctan /macros/latex/contrib/thalie +catalogue-date 2014-06-26 11:32:01 +0200 +catalogue-license lppl1.3 +catalogue-version 0.6 + +name theoremref +category Package +revision 30640 +shortdesc References with automatic theorem names. +relocated 1 +longdesc The theoremref package provides variants of the \label and \ref +longdesc commands for theorem-like environments, capable of +longdesc automatically typesetting references including the theorem name +longdesc (apart from the theorem number). The scheme is particularly +longdesc valuable if the author decides to change a lemma to a +longdesc proposition or a theorem (or whatever). +runfiles size=3 + RELOC/tex/latex/theoremref/theoremref.sty +docfiles size=94 + RELOC/doc/latex/theoremref/COPYING + RELOC/doc/latex/theoremref/README + RELOC/doc/latex/theoremref/theoremref-doc.pdf + RELOC/doc/latex/theoremref/theoremref-doc.tex +catalogue-ctan /macros/latex/contrib/theoremref +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name thesis-ekf +category Package +revision 36950 +shortdesc Thesis class for Eszterhazy Karoly College. +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 + RELOC/source/latex/thesis-ekf/thesis-ekf.dtx + RELOC/source/latex/thesis-ekf/thesis-ekf.ins +catalogue-ctan /macros/latex/contrib/thesis-ekf +catalogue-date 2015-04-19 14:02:25 +0200 +catalogue-license lppl1.2 +catalogue-version 1.1 + +name thesis-titlepage-fhac +category Package +revision 15878 +shortdesc Little style to create a standard titlepage for diploma thesis +relocated 1 +longdesc Yet another thesis titlepage style: support of Fachhochschule +longdesc Aachen (Standort Juelich) +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 +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/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/pdf_with_figbig_and_glossar.tco +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 +catalogue-ctan /macros/latex/contrib/thesis-titlepage-fhAC +catalogue-date 2012-02-09 21:58:23 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name thinsp +category Package +revision 15878 +shortdesc A stretchable \thinspace for LaTeX. +relocated 1 +longdesc The package redefines \thinspace to have a stretch component. +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-license gpl +catalogue-version 0.1 + +name thmbox +category Package +revision 15878 +shortdesc Decorate theorem statements. +relocated 1 +longdesc The package defines an environment thmbox that presents +longdesc theorems, definitions and similar objects in boxes decorated +longdesc with frames and various aesthetic features. The standard macro +longdesc \newtheorem may be redefined to use the environment. +runfiles size=2 + RELOC/tex/latex/thmbox/thmbox.sty +docfiles size=30 + RELOC/doc/latex/thmbox/README + RELOC/doc/latex/thmbox/thmbox.pdf +srcfiles size=9 + RELOC/source/latex/thmbox/thmbox.dtx + RELOC/source/latex/thmbox/thmbox.ins +catalogue-ctan /macros/latex/contrib/thmbox +catalogue-date 2012-04-27 11:57:13 +0200 +catalogue-license lppl + +name thmtools +category Package +revision 33624 +shortdesc Extensions to theorem environments. +relocated 1 +longdesc The bundle provides several packages for commonly-needed +longdesc support for typesetting theorems. The packages should work with +longdesc kernel theorems (theorems 'out of the box' with LaTeX), and the +longdesc theorem and amsthm packages. Features of the bundle include: a +longdesc key-value interface to \newtheorem; a \listoftheorems command; +longdesc hyperref and autoref compatibility; a mechanism for restating +longdesc entire theorems in a single macro call. +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 +docfiles size=75 + RELOC/doc/latex/thmtools/COPYING + RELOC/doc/latex/thmtools/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 +srcfiles size=28 + RELOC/source/latex/thmtools/aliasctr.dtx + RELOC/source/latex/thmtools/parseargs.dtx + RELOC/source/latex/thmtools/thm-amsthm.dtx + RELOC/source/latex/thmtools/thm-autoref.dtx + RELOC/source/latex/thmtools/thm-beamer.dtx + RELOC/source/latex/thmtools/thm-kv.dtx + RELOC/source/latex/thmtools/thm-listof.dtx + RELOC/source/latex/thmtools/thm-llncs.dtx + RELOC/source/latex/thmtools/thm-ntheorem.dtx + RELOC/source/latex/thmtools/thm-patch.dtx + RELOC/source/latex/thmtools/thm-restate.dtx + RELOC/source/latex/thmtools/thmdef-mdframed.dtx + RELOC/source/latex/thmtools/thmdef-shaded.dtx + RELOC/source/latex/thmtools/thmdef-thmbox.dtx + RELOC/source/latex/thmtools/thmtools.dtx + RELOC/source/latex/thmtools/thmtools.ins + RELOC/source/latex/thmtools/unique.dtx +catalogue-ctan /macros/latex/exptl/thmtools +catalogue-date 2014-10-15 15:43:28 +0200 +catalogue-license lppl1.3 +catalogue-version 66 + +name threadcol +category Package +revision 28754 +shortdesc Organize document columns into PDF "article thread". +relocated 1 +longdesc The package combines a document's columns into a PDF "article +longdesc thread". PDF readers that support this mechanism (probably +longdesc Adobe Acrobat/Reader only) can be instructed to scroll +longdesc automatically from column to column, which facilitates 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 +docfiles size=81 + RELOC/doc/latex/threadcol/README + RELOC/doc/latex/threadcol/threadcol.pdf +srcfiles size=28 + RELOC/source/latex/threadcol/articles-ar9.png + RELOC/source/latex/threadcol/threadcol.dtx + RELOC/source/latex/threadcol/threadcol.ins +catalogue-ctan /macros/latex/contrib/threadcol +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name threeddice +category Package +revision 20675 +shortdesc Create images of dice with one, two, or three faces showing, using MetaPost. +relocated 1 +longdesc The package provides MetaPost code to create all possible +longdesc symmetrical views (up to rotation) of a right-handed die. +longdesc Configuration is possible by editing the source code, following +longdesc the guidance in the documentation. +runfiles size=2 + RELOC/metapost/threeddice/threeddice.mp +docfiles size=32 + RELOC/doc/metapost/threeddice/README + RELOC/doc/metapost/threeddice/threeddice-doc.pdf + RELOC/doc/metapost/threeddice/threeddice-doc.tex +catalogue-ctan /graphics/metapost/contrib/macros/threeddice +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name threeparttable +category Package +revision 17383 +shortdesc Tables with captions and notes all the same width. +relocated 1 +longdesc Provides a scheme for tables that have a structured note +longdesc section, after the caption. This scheme provides an answer to +longdesc the old problem of putting footnotes in tables -- by making +longdesc footnotes entirely unnecessary. Note that a threeparttable is +longdesc not a float of itself; but you can place it in a table or a +longdesc table* environment, if necessary. +runfiles size=5 + RELOC/tex/latex/threeparttable/3parttable.sty + RELOC/tex/latex/threeparttable/threeparttable.sty +docfiles size=73 + RELOC/doc/latex/threeparttable/miscdoc.sty + RELOC/doc/latex/threeparttable/threeparttable.pdf + RELOC/doc/latex/threeparttable/threeparttable.tex +catalogue-ctan /macros/latex/contrib/threeparttable +catalogue-date 2011-10-17 18:01:19 +0200 +catalogue-license other-free + +name threeparttablex +category Package +revision 34206 +shortdesc Notes in longtables. +relocated 1 +longdesc The package provides the functionality of the threeparttable +longdesc package to tables created using the longtable package. +runfiles size=2 + RELOC/tex/latex/threeparttablex/threeparttablex.sty +docfiles size=19 + RELOC/doc/latex/threeparttablex/README + RELOC/doc/latex/threeparttablex/threeparttablex.pdf + RELOC/doc/latex/threeparttablex/threeparttablex.tex +catalogue-ctan /macros/latex/contrib/threeparttablex +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.3 + +name thumbpdf +category Package +revision 34621 +shortdesc Thumbnails for pdfTeX and dvips/ps2pdf. +longdesc A Perl script that provides support for thumbnails in pdfTeX +longdesc and dvips/ps2pdf. The script uses ghostscript to generate the +longdesc thumbnails which get represented in a TeX readable file that is +longdesc read by the package thumbpdf.sty to automatically include the +longdesc thumbnails. This arrangement works with both plain TeX and +longdesc LaTeX. +depend thumbpdf.ARCH +runfiles size=19 + texmf-dist/scripts/thumbpdf/thumbpdf.pl + texmf-dist/tex/generic/thumbpdf/thumbpdf.sty + texmf-dist/tex/generic/thumbpdf/thumbpdf.tex +docfiles size=10 + texmf-dist/doc/generic/thumbpdf/README + texmf-dist/doc/man/man1/thumbpdf.1 + texmf-dist/doc/man/man1/thumbpdf.man1.pdf +catalogue-ctan /support/thumbpdf +catalogue-date 2014-07-15 08:34:09 +0200 +catalogue-license lppl +catalogue-version 3.16 + +name thumbpdf.i386-linux +category Package +revision 6898 +shortdesc i386-linux files of thumbpdf +binfiles arch=i386-linux size=1 + bin/i386-linux/thumbpdf + +name thumbs +category Package +revision 33134 +shortdesc Create thumb indexes. +relocated 1 +longdesc The package puts running, customizable thumb marks in the outer +longdesc margin, moving downward as the chapter number (or whatever +longdesc shall be marked by the thumb marks) increases. Additionally an +longdesc overview page/table of thumb marks can be added automatically, +longdesc which gives the names of the thumbed objects, the page where +longdesc the object/thumb mark first appears, and the thumb mark itself +longdesc at its correct position. The thumb marks are useful for large +longdesc documents (such as reference guides, anthologies, etc.), where +longdesc a quick and easy way to find (for example) a chapter is needed. +runfiles size=14 + RELOC/tex/latex/thumbs/thumbs.sty +docfiles size=182 + RELOC/doc/latex/thumbs/README + RELOC/doc/latex/thumbs/thumbs-example.pdf + RELOC/doc/latex/thumbs/thumbs-example.tex + RELOC/doc/latex/thumbs/thumbs.pdf +srcfiles size=41 + RELOC/source/latex/thumbs/thumbs.drv + RELOC/source/latex/thumbs/thumbs.dtx + RELOC/source/latex/thumbs/thumbs.ins +catalogue-ctan /macros/latex/contrib/thumbs +catalogue-date 2014-03-12 00:15:37 +0100 +catalogue-license lppl1.3 +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. +relocated 1 +longdesc The package can generate thumb indexes for your document. It +longdesc features printing thumb indexes on one- or two-sided pages, +longdesc along with background- and foreground-color selection and full +longdesc LaTeX styling of the chapter numbers in the thumb indexes. The +longdesc height of each thumb index is automatically chosen based on the +longdesc number of chapters in your document, while the width is chosen +longdesc by the user. The package is designed to work with the memoir +longdesc class, and also requires PerlTeX and tikz/ +runfiles size=3 + RELOC/tex/latex/thumby/thumby.sty +docfiles size=52 + RELOC/doc/latex/thumby/LICENSE + RELOC/doc/latex/thumby/README + RELOC/doc/latex/thumby/example.pdf + RELOC/doc/latex/thumby/latexmkrc + RELOC/doc/latex/thumby/thumby.pdf +catalogue-ctan /macros/latex/contrib/thumby +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl3 +catalogue-version 0.1 + +name thuthesis +category Package +revision 35774 +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 + RELOC/doc/latex/thuthesis/data/ack.tex + RELOC/doc/latex/thuthesis/data/appendix01.tex + RELOC/doc/latex/thuthesis/data/chap01.tex + RELOC/doc/latex/thuthesis/data/chap02.tex + RELOC/doc/latex/thuthesis/data/cover.tex + 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/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/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/source/latex/thuthesis/thuthesis.dtx + RELOC/source/latex/thuthesis/thuthesis.ins +catalogue-ctan /macros/latex/contrib/thuthesis +catalogue-date 2014-12-09 20:29:22 +0100 +catalogue-license lppl1.3 +catalogue-version 4.8.1 + +name ticket +category Package +revision 20679 +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 + RELOC/doc/latex/ticket/comment + RELOC/doc/latex/ticket/ex_file.pdf + RELOC/doc/latex/ticket/ex_file.tex + RELOC/doc/latex/ticket/ex_flashcard.pdf + RELOC/doc/latex/ticket/ex_flashcard.tex + RELOC/doc/latex/ticket/ex_flashcard_dup.pdf + RELOC/doc/latex/ticket/ex_flashcard_rm.pdf + RELOC/doc/latex/ticket/ex_flashcard_rm.tex + RELOC/doc/latex/ticket/ex_marks.pdf + RELOC/doc/latex/ticket/ex_marks.tex + RELOC/doc/latex/ticket/ex_pin.pdf + RELOC/doc/latex/ticket/ex_pin.tex + RELOC/doc/latex/ticket/ex_vcard.pdf + RELOC/doc/latex/ticket/ex_vcard.tex + RELOC/doc/latex/ticket/manual.pdf + RELOC/doc/latex/ticket/manual.tex + RELOC/doc/latex/ticket/test.tex + RELOC/doc/latex/ticket/words.tex +catalogue-ctan /macros/latex/contrib/ticket +catalogue-date 2012-04-27 12:20:53 +0200 +catalogue-license lppl +catalogue-version 0.4b + +name ticollege +category Package +revision 36306 +shortdesc Graphical representation of keys on a standard scientific calculator. +relocated 1 +longdesc This package provides commands to draw scientific calculator +longdesc keys with the help of TikZ. It also provides commands to draw +longdesc the content of screens and of menu items. +runfiles size=6 + RELOC/tex/latex/ticollege/ticollege.sty +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/ticollege-doc.tex +catalogue-ctan /graphics/pgf/contrib/ticollege +catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name tie +category TLCore +revision 37078 +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 + 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-license other-free +catalogue-version 2.4 + +name tie.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of tie +binfiles arch=i386-linux size=27 + bin/i386-linux/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 +longdesc expressed as parametric functions of polar angles. +runfiles size=8 + RELOC/tex/latex/tikz-3dplot/tikz-3dplot.sty +docfiles size=139 + RELOC/doc/latex/tikz-3dplot/CHANGELOG + RELOC/doc/latex/tikz-3dplot/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.tex + RELOC/doc/latex/tikz-3dplot/tikz-3dplot_documentation_figures.tex +catalogue-ctan /graphics/pgf/contrib/tikz-3dplot +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 + +name tikz-bayesnet +category Package +revision 38295 +shortdesc Draw Bayesian networks, graphical models and directed factor graphs +relocated 1 +longdesc The package provides a library supporting the display of +longdesc Bayesian networks, graphical models and (directed) factor +longdesc graphs in LaTeX. +runfiles size=1 + RELOC/tex/latex/tikz-bayesnet/tikzlibrarybayesnet.code.tex +docfiles size=20 + RELOC/doc/latex/tikz-bayesnet/LICENSE_GPL + RELOC/doc/latex/tikz-bayesnet/LICENSE_LPPL + RELOC/doc/latex/tikz-bayesnet/README.rst + RELOC/doc/latex/tikz-bayesnet/example.tex + RELOC/doc/latex/tikz-bayesnet/model_citation_influence.tex + RELOC/doc/latex/tikz-bayesnet/model_lda.tex + RELOC/doc/latex/tikz-bayesnet/model_pca.tex + RELOC/doc/latex/tikz-bayesnet/model_pca2.tex +catalogue-ctan /graphics/pgf/contrib/tikz-bayesnet +catalogue-date 2015-08-03 05:43:12 +0200 +catalogue-license lppl1.3 +catalogue-topics statistics pgf-tikz +catalogue-version 0.1 + +name tikz-cd +category Package +revision 35485 +shortdesc Create commutative diagrams with TikZ +relocated 1 +longdesc The general-purpose drawing package TiKZ can be used to typeset +longdesc commutative diagrams and other kinds of mathematical pictures, +longdesc generating high-quality results. The purpose of this package is +longdesc to make the process of creation of such diagrams easier by +longdesc providing a convenient set of macros and reasonable default +longdesc settings. This package also includes an arrow tip library that +longdesc match closely the arrows present in the Computer Modern +longdesc typeface. +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-ctan /graphics/pgf/contrib/tikz-cd +catalogue-date 2014-10-31 09:00:43 +0100 +catalogue-license gpl3 +catalogue-version 0.9e + +name tikz-dependency +category Package +revision 25156 +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 + 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.tex +catalogue-ctan /graphics/pgf/contrib/tikz-dependency +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name tikz-dimline +category Package +revision 35805 +shortdesc Technical dimension lines using PGF/TikZ. +relocated 1 +longdesc tikz-dimline helps drawing technical dimension lines in TikZ +longdesc picture environments. Its usage is similar to some +longdesc contributions posted on stackexchange. +runfiles size=2 + RELOC/tex/latex/tikz-dimline/tikz-dimline.sty +docfiles size=49 + RELOC/doc/latex/tikz-dimline/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.tex +catalogue-ctan /graphics/pgf/contrib/tikz-dimline +catalogue-date 2014-12-31 01:06:50 +0100 +catalogue-license other-free +catalogue-version 1.0 + +name tikzinclude +category Package +revision 28715 +shortdesc Import TikZ images from colletions. +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 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name tikz-inet +category Package +revision 15878 +shortdesc Draw interaction nets with TikZ +relocated 1 +longdesc The package extends TikZ with macros to draw interaction nets. +runfiles size=4 + RELOC/tex/latex/tikz-inet/tikz-inet.sty +docfiles size=38 + RELOC/doc/latex/tikz-inet/README + RELOC/doc/latex/tikz-inet/tikz-inet-doc.pdf + RELOC/doc/latex/tikz-inet/tikz-inet-doc.tex +catalogue-ctan /graphics/pgf/contrib/tikz-inet +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name tikzmark +category Package +revision 29999 +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. +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 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name tikz-opm +category Package +revision 32769 +shortdesc Typeset OPM diagrams. +relocated 1 +longdesc Typeset OPM (Object-Process Methodology) diagrams using LaTeX +longdesc and pgf/TikZ. +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-license lppl1.3 +catalogue-version 0.1.1 + +name tikzorbital +category Package +revision 36439 +shortdesc Atomic and molecular orbitals using TiKZ. +relocated 1 +longdesc Atomic s, p and d orbitals may be drawn, as well as molecular +longdesc orbital diagrams. +runfiles size=5 + RELOC/tex/latex/tikzorbital/tikzorbital.sty +docfiles size=56 + RELOC/doc/latex/tikzorbital/README.rst + RELOC/doc/latex/tikzorbital/tikzorbital.pdf + RELOC/doc/latex/tikzorbital/tikzorbital.tex +catalogue-ctan /graphics/pgf/contrib/tikzorbital +catalogue-date 2015-03-05 19:37:30 +0100 +catalogue-license lppl + +name tikzpagenodes +category Package +revision 27723 +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 +docfiles size=63 + RELOC/doc/latex/tikzpagenodes/README + RELOC/doc/latex/tikzpagenodes/tikzpagenodes.pdf +srcfiles size=5 + RELOC/source/latex/tikzpagenodes/tikzpagenodes.dtx + RELOC/source/latex/tikzpagenodes/tikzpagenodes.ins +catalogue-ctan /graphics/pgf/contrib/tikzpagenodes +catalogue-date 2014-01-09 12:53:44 +0100 +catalogue-license lppl +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 +catalogue-license lppl1.3 +catalogue-version 2.21 + +name tikzpfeile +category Package +revision 25777 +shortdesc Draw arrows using PGF/TikZ. +relocated 1 +longdesc In a document with a lot of diagrams created with PGF/TikZ, +longdesc there is a possibility of the reader being distracted by +longdesc different sorts of arrowheads in the diagrams and in the text +longdesc (as, e.g., in \rightarrow). The package defines macros to +longdesc create all arrows using PGF/TikZ, so as to avoid the problem. +runfiles size=2 + RELOC/tex/latex/tikzpfeile/tikzpfeile.sty +docfiles size=14 + RELOC/doc/latex/tikzpfeile/README + RELOC/doc/latex/tikzpfeile/tikzpfeile.pdf +srcfiles size=4 + RELOC/source/latex/tikzpfeile/tikzpfeile.dtx + RELOC/source/latex/tikzpfeile/tikzpfeile.ins +catalogue-ctan /graphics/pgf/contrib/tikzpfeile +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name tikzposter +category Package +revision 32732 +shortdesc Create scientific posters using TikZ. +relocated 1 +longdesc A document class provides a simple way of using TikZ for +longdesc generating posters. Several formatting options are available, +longdesc and spacing and layout of the poster is to a large extent +longdesc automated. +runfiles size=25 + RELOC/tex/latex/tikzposter/tikzposter.cls + RELOC/tex/latex/tikzposter/tikzposterBackgroundstyles.tex + RELOC/tex/latex/tikzposter/tikzposterBlockstyles.tex + RELOC/tex/latex/tikzposter/tikzposterColorpalettes.tex + RELOC/tex/latex/tikzposter/tikzposterColorstyles.tex + RELOC/tex/latex/tikzposter/tikzposterInnerblockstyles.tex + RELOC/tex/latex/tikzposter/tikzposterLayoutthemes.tex + RELOC/tex/latex/tikzposter/tikzposterNotestyles.tex + RELOC/tex/latex/tikzposter/tikzposterTitlestyles.tex +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-license lppl1.2 +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. +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 +docfiles size=189 + RELOC/doc/latex/tikzscale/3Dplot.tikz + RELOC/doc/latex/tikzscale/README + RELOC/doc/latex/tikzscale/alt.tikz + RELOC/doc/latex/tikzscale/histogramNormal.tikz + RELOC/doc/latex/tikzscale/invisible.tikz + RELOC/doc/latex/tikzscale/linewidth.tikz + RELOC/doc/latex/tikzscale/only.tikz + RELOC/doc/latex/tikzscale/onslide.tikz + RELOC/doc/latex/tikzscale/pause.tikz + RELOC/doc/latex/tikzscale/pgfplots-test.tikz + RELOC/doc/latex/tikzscale/pgfplots.randn.dat + RELOC/doc/latex/tikzscale/temporal.tikz + RELOC/doc/latex/tikzscale/test-tikzscale.pdf + RELOC/doc/latex/tikzscale/test-tikzscale.tex + RELOC/doc/latex/tikzscale/testNode.tikz + RELOC/doc/latex/tikzscale/testRectangle.tikz + RELOC/doc/latex/tikzscale/testgraphic2D.tikz + RELOC/doc/latex/tikzscale/tikzscale-beamer.tex + RELOC/doc/latex/tikzscale/tikzscale.pdf + RELOC/doc/latex/tikzscale/uncover.tikz + RELOC/doc/latex/tikzscale/visible.tikz +srcfiles size=22 + RELOC/source/latex/tikzscale/tikzscale.dtx + RELOC/source/latex/tikzscale/tikzscale.ins +catalogue-ctan /graphics/pgf/contrib/tikzscale +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2.6 + +name tikzsymbols +category Package +revision 35484 +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 + RELOC/source/latex/tikzsymbols/tikzsymbols.dtx + RELOC/source/latex/tikzsymbols/tikzsymbols.ins +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 + +name times +category Package +revision 35058 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX. +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap utm.map +runfiles size=335 + RELOC/dvips/times/config.utm + RELOC/fonts/afm/adobe/times/ptmb8a.afm + RELOC/fonts/afm/adobe/times/ptmbi8a.afm + RELOC/fonts/afm/adobe/times/ptmr8a.afm + RELOC/fonts/afm/adobe/times/ptmri8a.afm + RELOC/fonts/afm/urw/times/utmb8a.afm + RELOC/fonts/afm/urw/times/utmbi8a.afm + RELOC/fonts/afm/urw/times/utmr8a.afm + RELOC/fonts/afm/urw/times/utmri8a.afm + RELOC/fonts/map/dvips/times/utm.map + RELOC/fonts/tfm/adobe/times/psyro.tfm + RELOC/fonts/tfm/adobe/times/ptmb.tfm + RELOC/fonts/tfm/adobe/times/ptmb7t.tfm + RELOC/fonts/tfm/adobe/times/ptmb8c.tfm + RELOC/fonts/tfm/adobe/times/ptmb8r.tfm + RELOC/fonts/tfm/adobe/times/ptmb8t.tfm + RELOC/fonts/tfm/adobe/times/ptmbc.tfm + RELOC/fonts/tfm/adobe/times/ptmbc7t.tfm + RELOC/fonts/tfm/adobe/times/ptmbc8t.tfm + RELOC/fonts/tfm/adobe/times/ptmbi.tfm + RELOC/fonts/tfm/adobe/times/ptmbi7t.tfm + RELOC/fonts/tfm/adobe/times/ptmbi8c.tfm + RELOC/fonts/tfm/adobe/times/ptmbi8r.tfm + RELOC/fonts/tfm/adobe/times/ptmbi8t.tfm + RELOC/fonts/tfm/adobe/times/ptmbo.tfm + RELOC/fonts/tfm/adobe/times/ptmbo7t.tfm + RELOC/fonts/tfm/adobe/times/ptmbo8c.tfm + RELOC/fonts/tfm/adobe/times/ptmbo8r.tfm + RELOC/fonts/tfm/adobe/times/ptmbo8t.tfm + RELOC/fonts/tfm/adobe/times/ptmr.tfm + RELOC/fonts/tfm/adobe/times/ptmr7t.tfm + RELOC/fonts/tfm/adobe/times/ptmr8c.tfm + RELOC/fonts/tfm/adobe/times/ptmr8r.tfm + RELOC/fonts/tfm/adobe/times/ptmr8rn.tfm + RELOC/fonts/tfm/adobe/times/ptmr8t.tfm + RELOC/fonts/tfm/adobe/times/ptmrc.tfm + RELOC/fonts/tfm/adobe/times/ptmrc7t.tfm + RELOC/fonts/tfm/adobe/times/ptmrc8t.tfm + RELOC/fonts/tfm/adobe/times/ptmri.tfm + RELOC/fonts/tfm/adobe/times/ptmri7t.tfm + RELOC/fonts/tfm/adobe/times/ptmri8c.tfm + RELOC/fonts/tfm/adobe/times/ptmri8r.tfm + RELOC/fonts/tfm/adobe/times/ptmri8t.tfm + RELOC/fonts/tfm/adobe/times/ptmro.tfm + RELOC/fonts/tfm/adobe/times/ptmro7t.tfm + RELOC/fonts/tfm/adobe/times/ptmro8c.tfm + RELOC/fonts/tfm/adobe/times/ptmro8r.tfm + RELOC/fonts/tfm/adobe/times/ptmro8t.tfm + RELOC/fonts/tfm/adobe/times/ptmrr8re.tfm + RELOC/fonts/tfm/adobe/times/ptmrre.tfm + RELOC/fonts/tfm/adobe/times/ptmrrn.tfm + RELOC/fonts/tfm/adobe/times/zpsycmrv.tfm + RELOC/fonts/tfm/adobe/times/zptmcm7m.tfm + RELOC/fonts/tfm/adobe/times/zptmcm7t.tfm + RELOC/fonts/tfm/adobe/times/zptmcm7v.tfm + RELOC/fonts/tfm/adobe/times/zptmcm7y.tfm + RELOC/fonts/tfm/adobe/times/zptmcmr.tfm + RELOC/fonts/tfm/adobe/times/zptmcmrm.tfm + RELOC/fonts/tfm/adobe/times/zpzccmry.tfm + RELOC/fonts/tfm/urw35vf/times/utmb7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmb8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmb8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmb8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbc7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbc8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbi7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbi8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmbi8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmbi8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbo7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmbo8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmbo8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmbo8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmr7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmr8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmr8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmr8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmrc7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmrc8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmri7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmri8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmri8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmri8t.tfm + RELOC/fonts/tfm/urw35vf/times/utmro7t.tfm + RELOC/fonts/tfm/urw35vf/times/utmro8c.tfm + RELOC/fonts/tfm/urw35vf/times/utmro8r.tfm + RELOC/fonts/tfm/urw35vf/times/utmro8t.tfm + RELOC/fonts/type1/urw/times/utmb8a.pfb + RELOC/fonts/type1/urw/times/utmb8a.pfm + RELOC/fonts/type1/urw/times/utmbi8a.pfb + RELOC/fonts/type1/urw/times/utmbi8a.pfm + RELOC/fonts/type1/urw/times/utmr8a.pfb + RELOC/fonts/type1/urw/times/utmr8a.pfm + RELOC/fonts/type1/urw/times/utmri8a.pfb + RELOC/fonts/type1/urw/times/utmri8a.pfm + RELOC/fonts/vf/adobe/times/ptmb.vf + RELOC/fonts/vf/adobe/times/ptmb7t.vf + RELOC/fonts/vf/adobe/times/ptmb8c.vf + RELOC/fonts/vf/adobe/times/ptmb8t.vf + RELOC/fonts/vf/adobe/times/ptmbc.vf + RELOC/fonts/vf/adobe/times/ptmbc7t.vf + RELOC/fonts/vf/adobe/times/ptmbc8t.vf + RELOC/fonts/vf/adobe/times/ptmbi.vf + RELOC/fonts/vf/adobe/times/ptmbi7t.vf + RELOC/fonts/vf/adobe/times/ptmbi8c.vf + RELOC/fonts/vf/adobe/times/ptmbi8t.vf + RELOC/fonts/vf/adobe/times/ptmbo.vf + RELOC/fonts/vf/adobe/times/ptmbo7t.vf + RELOC/fonts/vf/adobe/times/ptmbo8c.vf + RELOC/fonts/vf/adobe/times/ptmbo8t.vf + RELOC/fonts/vf/adobe/times/ptmr.vf + RELOC/fonts/vf/adobe/times/ptmr7t.vf + RELOC/fonts/vf/adobe/times/ptmr8c.vf + RELOC/fonts/vf/adobe/times/ptmr8t.vf + RELOC/fonts/vf/adobe/times/ptmrc.vf + RELOC/fonts/vf/adobe/times/ptmrc7t.vf + RELOC/fonts/vf/adobe/times/ptmrc8t.vf + RELOC/fonts/vf/adobe/times/ptmri.vf + RELOC/fonts/vf/adobe/times/ptmri7t.vf + RELOC/fonts/vf/adobe/times/ptmri8c.vf + RELOC/fonts/vf/adobe/times/ptmri8t.vf + RELOC/fonts/vf/adobe/times/ptmro.vf + RELOC/fonts/vf/adobe/times/ptmro7t.vf + RELOC/fonts/vf/adobe/times/ptmro8c.vf + RELOC/fonts/vf/adobe/times/ptmro8t.vf + RELOC/fonts/vf/adobe/times/ptmrre.vf + RELOC/fonts/vf/adobe/times/ptmrrn.vf + RELOC/fonts/vf/adobe/times/zpsycmrv.vf + RELOC/fonts/vf/adobe/times/zptmcm7m.vf + RELOC/fonts/vf/adobe/times/zptmcm7t.vf + RELOC/fonts/vf/adobe/times/zptmcm7v.vf + RELOC/fonts/vf/adobe/times/zptmcm7y.vf + RELOC/fonts/vf/adobe/times/zptmcmr.vf + RELOC/fonts/vf/adobe/times/zptmcmrm.vf + RELOC/fonts/vf/adobe/times/zpzccmry.vf + RELOC/fonts/vf/urw35vf/times/utmb7t.vf + RELOC/fonts/vf/urw35vf/times/utmb8c.vf + RELOC/fonts/vf/urw35vf/times/utmb8t.vf + RELOC/fonts/vf/urw35vf/times/utmbc7t.vf + RELOC/fonts/vf/urw35vf/times/utmbc8t.vf + RELOC/fonts/vf/urw35vf/times/utmbi7t.vf + RELOC/fonts/vf/urw35vf/times/utmbi8c.vf + RELOC/fonts/vf/urw35vf/times/utmbi8t.vf + RELOC/fonts/vf/urw35vf/times/utmbo7t.vf + RELOC/fonts/vf/urw35vf/times/utmbo8c.vf + RELOC/fonts/vf/urw35vf/times/utmbo8t.vf + RELOC/fonts/vf/urw35vf/times/utmr7t.vf + RELOC/fonts/vf/urw35vf/times/utmr8c.vf + RELOC/fonts/vf/urw35vf/times/utmr8t.vf + RELOC/fonts/vf/urw35vf/times/utmrc7t.vf + RELOC/fonts/vf/urw35vf/times/utmrc8t.vf + RELOC/fonts/vf/urw35vf/times/utmri7t.vf + RELOC/fonts/vf/urw35vf/times/utmri8c.vf + RELOC/fonts/vf/urw35vf/times/utmri8t.vf + RELOC/fonts/vf/urw35vf/times/utmro7t.vf + RELOC/fonts/vf/urw35vf/times/utmro8c.vf + RELOC/fonts/vf/urw35vf/times/utmro8t.vf + RELOC/tex/latex/times/8rutm.fd + RELOC/tex/latex/times/omlutm.fd + RELOC/tex/latex/times/omsutm.fd + RELOC/tex/latex/times/ot1utm.fd + RELOC/tex/latex/times/t1utm.fd + RELOC/tex/latex/times/ts1utm.fd +catalogue-ctan /fonts/urw/base35 +catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-license gpl + +name timetable +category Package +revision 15878 +shortdesc Generate timetables. +relocated 1 +longdesc A highly-configurable package, with nice output and simple +longdesc input. The macros use a radix sort mechanism so that the order +longdesc of input is not critical. +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-license lppl + +name timing-diagrams +category Package +revision 31491 +shortdesc Draw timing diagrams. +relocated 1 +longdesc The package provides commands to draw and annotate various +longdesc kinds of timing diagrams, using Tikz. Documentation is sparse, +longdesc but the source and the examples file should be of some use. +runfiles size=2 + RELOC/tex/latex/timing-diagrams/timing-diagrams.sty +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/diagrams-examples.tex + RELOC/doc/latex/timing-diagrams/version.txt +catalogue-ctan /graphics/pgf/contrib/timing-diagrams +catalogue-date 2014-04-27 13:42:31 +0200 +catalogue-license lppl1.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. +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 + +name tipa +category Package +revision 29349 +shortdesc Fonts and macros for IPA phonetics characters. +relocated 1 +longdesc These fonts are considered the 'ultimate answer' to IPA +longdesc typesetting. The encoding of these 8-bit fonts has been +longdesc registered as LaTeX standard encoding T3, and the set of +longdesc addendum symbols as encoding TS3. 'Times-like' Adobe Type 1 +longdesc versions are provided for both the T3 and the TS3 fonts. +execute addMixedMap tipa.map +runfiles size=1096 + RELOC/fonts/map/dvips/tipa/tipa.map + RELOC/fonts/source/public/tipa/tipa.mf + RELOC/fonts/source/public/tipa/tipa10.mf + RELOC/fonts/source/public/tipa/tipa12.mf + RELOC/fonts/source/public/tipa/tipa17.mf + RELOC/fonts/source/public/tipa/tipa8.mf + RELOC/fonts/source/public/tipa/tipa9.mf + RELOC/fonts/source/public/tipa/tipab10.mf + RELOC/fonts/source/public/tipa/tipabase.mf + RELOC/fonts/source/public/tipa/tipabs10.mf + RELOC/fonts/source/public/tipa/tipabx10.mf + RELOC/fonts/source/public/tipa/tipabx12.mf + RELOC/fonts/source/public/tipa/tipabx8.mf + RELOC/fonts/source/public/tipa/tipabx9.mf + RELOC/fonts/source/public/tipa/tipadiac.mf + RELOC/fonts/source/public/tipa/tipaextr.mf + RELOC/fonts/source/public/tipa/tipagerm.mf + RELOC/fonts/source/public/tipa/tipanew.mf + RELOC/fonts/source/public/tipa/tipapnct.mf + RELOC/fonts/source/public/tipa/tipaprm.def + RELOC/fonts/source/public/tipa/tiparoml.mf + RELOC/fonts/source/public/tipa/tipasb10.mf + RELOC/fonts/source/public/tipa/tipasc.mf + RELOC/fonts/source/public/tipa/tipasi10.mf + RELOC/fonts/source/public/tipa/tipasl10.mf + RELOC/fonts/source/public/tipa/tipasl12.mf + RELOC/fonts/source/public/tipa/tipasl8.mf + RELOC/fonts/source/public/tipa/tipasl9.mf + RELOC/fonts/source/public/tipa/tipass10.mf + RELOC/fonts/source/public/tipa/tipass12.mf + RELOC/fonts/source/public/tipa/tipass17.mf + RELOC/fonts/source/public/tipa/tipass8.mf + RELOC/fonts/source/public/tipa/tipass9.mf + RELOC/fonts/source/public/tipa/tipasym1.mf + RELOC/fonts/source/public/tipa/tipasym2.mf + RELOC/fonts/source/public/tipa/tipasym3.mf + RELOC/fonts/source/public/tipa/tipasym4.mf + RELOC/fonts/source/public/tipa/tipatone.mf + RELOC/fonts/source/public/tipa/tipatr.mf + RELOC/fonts/source/public/tipa/tipats10.mf + RELOC/fonts/source/public/tipa/tipatt10.mf + RELOC/fonts/source/public/tipa/tipatt12.mf + RELOC/fonts/source/public/tipa/tipatt8.mf + RELOC/fonts/source/public/tipa/tipatt9.mf + RELOC/fonts/source/public/tipa/tipx.mf + RELOC/fonts/source/public/tipa/tipx10.mf + RELOC/fonts/source/public/tipa/tipx12.mf + RELOC/fonts/source/public/tipa/tipx17.mf + RELOC/fonts/source/public/tipa/tipx8.mf + RELOC/fonts/source/public/tipa/tipx9.mf + RELOC/fonts/source/public/tipa/tipxb10.mf + RELOC/fonts/source/public/tipa/tipxbs10.mf + RELOC/fonts/source/public/tipa/tipxbx10.mf + RELOC/fonts/source/public/tipa/tipxbx12.mf + RELOC/fonts/source/public/tipa/tipxbx8.mf + RELOC/fonts/source/public/tipa/tipxbx9.mf + RELOC/fonts/source/public/tipa/tipxsb10.mf + RELOC/fonts/source/public/tipa/tipxsi10.mf + RELOC/fonts/source/public/tipa/tipxsl10.mf + RELOC/fonts/source/public/tipa/tipxsl12.mf + RELOC/fonts/source/public/tipa/tipxsl8.mf + RELOC/fonts/source/public/tipa/tipxsl9.mf + RELOC/fonts/source/public/tipa/tipxss10.mf + RELOC/fonts/source/public/tipa/tipxss12.mf + RELOC/fonts/source/public/tipa/tipxss17.mf + RELOC/fonts/source/public/tipa/tipxss8.mf + RELOC/fonts/source/public/tipa/tipxss9.mf + RELOC/fonts/source/public/tipa/tipxts10.mf + RELOC/fonts/source/public/tipa/tipxtt10.mf + RELOC/fonts/source/public/tipa/tipxtt12.mf + RELOC/fonts/source/public/tipa/tipxtt8.mf + RELOC/fonts/source/public/tipa/tipxtt9.mf + RELOC/fonts/source/public/tipa/xipa10.mf + RELOC/fonts/source/public/tipa/xipab10.mf + RELOC/fonts/source/public/tipa/xipabs10.mf + RELOC/fonts/source/public/tipa/xipaprm.def + RELOC/fonts/source/public/tipa/xipasb10.mf + RELOC/fonts/source/public/tipa/xipasi10.mf + RELOC/fonts/source/public/tipa/xipasl10.mf + RELOC/fonts/source/public/tipa/xipass10.mf + RELOC/fonts/source/public/tipa/xipx10.mf + RELOC/fonts/source/public/tipa/xipxb10.mf + RELOC/fonts/source/public/tipa/xipxbs10.mf + RELOC/fonts/source/public/tipa/xipxsb10.mf + RELOC/fonts/source/public/tipa/xipxsi10.mf + RELOC/fonts/source/public/tipa/xipxsl10.mf + RELOC/fonts/source/public/tipa/xipxss10.mf + RELOC/fonts/tfm/public/tipa/tipa10.tfm + RELOC/fonts/tfm/public/tipa/tipa12.tfm + RELOC/fonts/tfm/public/tipa/tipa17.tfm + RELOC/fonts/tfm/public/tipa/tipa8.tfm + RELOC/fonts/tfm/public/tipa/tipa9.tfm + RELOC/fonts/tfm/public/tipa/tipab10.tfm + RELOC/fonts/tfm/public/tipa/tipabs10.tfm + RELOC/fonts/tfm/public/tipa/tipabx10.tfm + RELOC/fonts/tfm/public/tipa/tipabx12.tfm + RELOC/fonts/tfm/public/tipa/tipabx8.tfm + RELOC/fonts/tfm/public/tipa/tipabx9.tfm + RELOC/fonts/tfm/public/tipa/tipasb10.tfm + RELOC/fonts/tfm/public/tipa/tipasi10.tfm + RELOC/fonts/tfm/public/tipa/tipasl10.tfm + RELOC/fonts/tfm/public/tipa/tipasl12.tfm + RELOC/fonts/tfm/public/tipa/tipasl8.tfm + RELOC/fonts/tfm/public/tipa/tipasl9.tfm + RELOC/fonts/tfm/public/tipa/tipass10.tfm + RELOC/fonts/tfm/public/tipa/tipass12.tfm + RELOC/fonts/tfm/public/tipa/tipass17.tfm + RELOC/fonts/tfm/public/tipa/tipass8.tfm + RELOC/fonts/tfm/public/tipa/tipass9.tfm + RELOC/fonts/tfm/public/tipa/tipats10.tfm + RELOC/fonts/tfm/public/tipa/tipatt10.tfm + RELOC/fonts/tfm/public/tipa/tipatt12.tfm + RELOC/fonts/tfm/public/tipa/tipatt8.tfm + RELOC/fonts/tfm/public/tipa/tipatt9.tfm + RELOC/fonts/tfm/public/tipa/tipx10.tfm + RELOC/fonts/tfm/public/tipa/tipx12.tfm + RELOC/fonts/tfm/public/tipa/tipx17.tfm + RELOC/fonts/tfm/public/tipa/tipx8.tfm + RELOC/fonts/tfm/public/tipa/tipx9.tfm + RELOC/fonts/tfm/public/tipa/tipxb10.tfm + RELOC/fonts/tfm/public/tipa/tipxbs10.tfm + RELOC/fonts/tfm/public/tipa/tipxbx10.tfm + RELOC/fonts/tfm/public/tipa/tipxbx12.tfm + RELOC/fonts/tfm/public/tipa/tipxbx8.tfm + RELOC/fonts/tfm/public/tipa/tipxbx9.tfm + RELOC/fonts/tfm/public/tipa/tipxsb10.tfm + RELOC/fonts/tfm/public/tipa/tipxsi10.tfm + RELOC/fonts/tfm/public/tipa/tipxsl10.tfm + RELOC/fonts/tfm/public/tipa/tipxsl12.tfm + RELOC/fonts/tfm/public/tipa/tipxsl8.tfm + RELOC/fonts/tfm/public/tipa/tipxsl9.tfm + RELOC/fonts/tfm/public/tipa/tipxss10.tfm + RELOC/fonts/tfm/public/tipa/tipxss12.tfm + RELOC/fonts/tfm/public/tipa/tipxss17.tfm + RELOC/fonts/tfm/public/tipa/tipxss8.tfm + RELOC/fonts/tfm/public/tipa/tipxss9.tfm + RELOC/fonts/tfm/public/tipa/tipxts10.tfm + RELOC/fonts/tfm/public/tipa/tipxtt10.tfm + RELOC/fonts/tfm/public/tipa/tipxtt12.tfm + RELOC/fonts/tfm/public/tipa/tipxtt8.tfm + RELOC/fonts/tfm/public/tipa/tipxtt9.tfm + RELOC/fonts/tfm/public/tipa/xipa10.tfm + RELOC/fonts/tfm/public/tipa/xipab10.tfm + RELOC/fonts/tfm/public/tipa/xipabs10.tfm + RELOC/fonts/tfm/public/tipa/xipasb10.tfm + RELOC/fonts/tfm/public/tipa/xipasi10.tfm + RELOC/fonts/tfm/public/tipa/xipasl10.tfm + RELOC/fonts/tfm/public/tipa/xipass10.tfm + RELOC/fonts/tfm/public/tipa/xipx10.tfm + RELOC/fonts/tfm/public/tipa/xipxb10.tfm + RELOC/fonts/tfm/public/tipa/xipxbs10.tfm + RELOC/fonts/tfm/public/tipa/xipxsb10.tfm + RELOC/fonts/tfm/public/tipa/xipxsi10.tfm + RELOC/fonts/tfm/public/tipa/xipxsl10.tfm + RELOC/fonts/tfm/public/tipa/xipxss10.tfm + RELOC/fonts/type1/public/tipa/tipa10.pfb + RELOC/fonts/type1/public/tipa/tipa12.pfb + RELOC/fonts/type1/public/tipa/tipa17.pfb + RELOC/fonts/type1/public/tipa/tipa8.pfb + RELOC/fonts/type1/public/tipa/tipa9.pfb + RELOC/fonts/type1/public/tipa/tipab10.pfb + RELOC/fonts/type1/public/tipa/tipabs10.pfb + RELOC/fonts/type1/public/tipa/tipabx10.pfb + RELOC/fonts/type1/public/tipa/tipabx12.pfb + RELOC/fonts/type1/public/tipa/tipabx8.pfb + RELOC/fonts/type1/public/tipa/tipabx9.pfb + RELOC/fonts/type1/public/tipa/tipasb10.pfb + RELOC/fonts/type1/public/tipa/tipasi10.pfb + RELOC/fonts/type1/public/tipa/tipasl10.pfb + RELOC/fonts/type1/public/tipa/tipasl12.pfb + RELOC/fonts/type1/public/tipa/tipasl8.pfb + RELOC/fonts/type1/public/tipa/tipasl9.pfb + RELOC/fonts/type1/public/tipa/tipass10.pfb + RELOC/fonts/type1/public/tipa/tipass12.pfb + RELOC/fonts/type1/public/tipa/tipass17.pfb + RELOC/fonts/type1/public/tipa/tipass8.pfb + RELOC/fonts/type1/public/tipa/tipass9.pfb + RELOC/fonts/type1/public/tipa/tipats10.pfb + RELOC/fonts/type1/public/tipa/tipatt10.pfb + RELOC/fonts/type1/public/tipa/tipatt12.pfb + RELOC/fonts/type1/public/tipa/tipatt8.pfb + RELOC/fonts/type1/public/tipa/tipatt9.pfb + RELOC/fonts/type1/public/tipa/tipx10.pfb + RELOC/fonts/type1/public/tipa/tipx12.pfb + RELOC/fonts/type1/public/tipa/tipx17.pfb + RELOC/fonts/type1/public/tipa/tipx8.pfb + RELOC/fonts/type1/public/tipa/tipx9.pfb + RELOC/fonts/type1/public/tipa/tipxb10.pfb + RELOC/fonts/type1/public/tipa/tipxbs10.pfb + RELOC/fonts/type1/public/tipa/tipxbx10.pfb + RELOC/fonts/type1/public/tipa/tipxbx12.pfb + RELOC/fonts/type1/public/tipa/tipxbx8.pfb + RELOC/fonts/type1/public/tipa/tipxbx9.pfb + RELOC/fonts/type1/public/tipa/tipxsb10.pfb + RELOC/fonts/type1/public/tipa/tipxsi10.pfb + RELOC/fonts/type1/public/tipa/tipxsl10.pfb + RELOC/fonts/type1/public/tipa/tipxsl12.pfb + RELOC/fonts/type1/public/tipa/tipxsl8.pfb + RELOC/fonts/type1/public/tipa/tipxsl9.pfb + RELOC/fonts/type1/public/tipa/tipxss10.pfb + RELOC/fonts/type1/public/tipa/tipxss12.pfb + RELOC/fonts/type1/public/tipa/tipxss17.pfb + RELOC/fonts/type1/public/tipa/tipxss8.pfb + RELOC/fonts/type1/public/tipa/tipxss9.pfb + RELOC/fonts/type1/public/tipa/tipxts10.pfb + RELOC/fonts/type1/public/tipa/tipxtt10.pfb + RELOC/fonts/type1/public/tipa/tipxtt12.pfb + RELOC/fonts/type1/public/tipa/tipxtt8.pfb + RELOC/fonts/type1/public/tipa/tipxtt9.pfb + RELOC/fonts/type1/public/tipa/xipa10.pfb + RELOC/fonts/type1/public/tipa/xipab10.pfb + RELOC/fonts/type1/public/tipa/xipabs10.pfb + RELOC/fonts/type1/public/tipa/xipasb10.pfb + RELOC/fonts/type1/public/tipa/xipasi10.pfb + RELOC/fonts/type1/public/tipa/xipasl10.pfb + RELOC/fonts/type1/public/tipa/xipass10.pfb + RELOC/fonts/type1/public/tipa/xipx10.pfb + RELOC/fonts/type1/public/tipa/xipxb10.pfb + RELOC/fonts/type1/public/tipa/xipxbs10.pfb + RELOC/fonts/type1/public/tipa/xipxsb10.pfb + RELOC/fonts/type1/public/tipa/xipxsi10.pfb + RELOC/fonts/type1/public/tipa/xipxsl10.pfb + RELOC/fonts/type1/public/tipa/xipxss10.pfb + RELOC/tex/latex/tipa/exaccent.sty + RELOC/tex/latex/tipa/extraipa.sty + RELOC/tex/latex/tipa/t3cmr.fd + RELOC/tex/latex/tipa/t3cmss.fd + RELOC/tex/latex/tipa/t3cmtt.fd + RELOC/tex/latex/tipa/t3enc.def + RELOC/tex/latex/tipa/t3phv.fd + RELOC/tex/latex/tipa/t3ptm.fd + RELOC/tex/latex/tipa/tipa.sty + RELOC/tex/latex/tipa/tipx.sty + RELOC/tex/latex/tipa/tone.sty + RELOC/tex/latex/tipa/ts3cmr.fd + RELOC/tex/latex/tipa/ts3cmss.fd + RELOC/tex/latex/tipa/ts3cmtt.fd + RELOC/tex/latex/tipa/ts3enc.def + RELOC/tex/latex/tipa/ts3phv.fd + RELOC/tex/latex/tipa/ts3ptm.fd + RELOC/tex/latex/tipa/utipx.fd + RELOC/tex/latex/tipa/utipxss.fd + RELOC/tex/latex/tipa/utipxtt.fd + RELOC/tex/latex/tipa/uxipx.fd + RELOC/tex/latex/tipa/uxipxss.fd + RELOC/tex/latex/tipa/vowel.sty +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-ctan /fonts/tipa/tipa +catalogue-date 2014-05-31 17:44:05 +0200 +catalogue-license lppl +catalogue-version 1.3 + +name tipfr +category Package +revision 35984 +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 +catalogue-ctan /graphics/pgf/contrib/tipfr +catalogue-date 2015-01-14 14:29:45 +0100 +catalogue-license lppl +catalogue-version 1.5 + +name titlecaps +category Package +revision 36170 +shortdesc Setting rich-text input into Titling Caps. +relocated 1 +longdesc The package is intended for setting rich text into titling +longdesc capitals (in which the first character of words are +longdesc capitalized). It automatically accounts for diacritical marks +longdesc (like umlauts), national symbols (like "ae"), punctuation, and +longdesc font changing commands that alter the appearance or size of the +longdesc text. It allows a list of predesignated words to be protected +longdesc as lower-cased, and also allows for titling exceptions of +longdesc various sorts. +runfiles size=4 + RELOC/tex/latex/titlecaps/titlecaps.sty +docfiles size=74 + RELOC/doc/latex/titlecaps/README + RELOC/doc/latex/titlecaps/titlecaps.pdf + RELOC/doc/latex/titlecaps/titlecaps.tex +catalogue-ctan /macros/latex/contrib/titlecaps +catalogue-date 2015-01-30 15:05:03 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name titlefoot +category Package +revision 15878 +shortdesc Add special material to footer of title page. +relocated 1 +longdesc Provides the capability of adding keywords (with a \keywords +longdesc command), a running title (\runningtitle), AMS subject +longdesc classifications (\amssubj), and an 'author's footnote' as +longdesc footnotes to the title or first page of a document. Works with +longdesc any class for which the \thanks macro works (e.g., article). +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-license lppl + +name titlepages +category Package +revision 19457 +shortdesc Sample titlepages, and how to code them. +relocated 1 +longdesc The document provides examples of over two dozen title page +longdesc designs based on a range of published books and theses, +longdesc together with the LaTeX code used to create them. +docfiles size=270 + RELOC/doc/latex/titlepages/README + RELOC/doc/latex/titlepages/titlepages.pdf + RELOC/doc/latex/titlepages/titlepages.tex +catalogue-ctan /info/latex-samples/TitlePages +catalogue-date 2015-02-23 19:56:17 +0100 +catalogue-license lppl + +name titlepic +category Package +revision 15878 +shortdesc Add picture to title page of a document. +relocated 1 +longdesc The package allows you to place a picture on the title page +longdesc (cover page) of a LaTeX document. Example of usage: +longdesc \usepackage[cc]{titlepic} \usepackage{graphicx} +longdesc \titlepic{\includegraphics[width=\textwidth]{picture.png}} The +longdesc package currently only works with the document classes article, +longdesc report and book. +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-license pd +catalogue-version 1.1 + +name titleref +category Package +revision 18729 +shortdesc A "\titleref" command to cross-reference section titles. +relocated 1 +longdesc Defines a command \titleref that allows you to cross-reference +longdesc section (and chapter, etc) titles and captions just like \ref +longdesc and \pageref. The package does not interwork with hyperref; if +longdesc you need hypertext capabilities, use nameref instead. +runfiles size=2 + RELOC/tex/latex/titleref/titleref.sty +docfiles size=53 + RELOC/doc/latex/titleref/miscdoc.sty + RELOC/doc/latex/titleref/titleref.pdf + RELOC/doc/latex/titleref/titleref.tex +catalogue-ctan /macros/latex/contrib/titleref +catalogue-date 2012-03-07 12:52:16 +0100 +catalogue-license pd +catalogue-version 3.1 + +name titlesec +category Package +revision 24852 +shortdesc Select alternative section titles. +relocated 1 +longdesc A package providing an interface to sectioning commands for +longdesc selection from various title styles. E.g., marginal titles and +longdesc to change the font of all headings with a single command, also +longdesc providing simple one-step page styles. Also includes a package +longdesc to change the page styles when there are floats in a page. You +longdesc may assign headers/footers to individual floats, too. +runfiles size=30 + RELOC/tex/latex/titlesec/block.tss + RELOC/tex/latex/titlesec/drop.tss + RELOC/tex/latex/titlesec/frame.tss + RELOC/tex/latex/titlesec/leftmargin.tss + RELOC/tex/latex/titlesec/margin.tss + RELOC/tex/latex/titlesec/rightmargin.tss + RELOC/tex/latex/titlesec/titleps.sty + RELOC/tex/latex/titlesec/titlesec.sty + RELOC/tex/latex/titlesec/titletoc.sty + 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-ctan /macros/latex/contrib/titlesec +catalogue-date 2012-05-01 16:59:50 +0200 +catalogue-license lppl +catalogue-version 2.10.0 + +name titling +category Package +revision 15878 +shortdesc Control over the typesetting of the \maketitle command. +relocated 1 +longdesc The titling package provides control over the typesetting of +longdesc the \maketitle command and \thanks commands, and makes the +longdesc \title, \author and \date information permanently available. +longdesc Multiple titles are allowed in a single document. New titling +longdesc elements can be added and a titlepage title can be centered on +longdesc a physical page. +runfiles size=2 + RELOC/tex/latex/titling/titling.sty +docfiles size=50 + RELOC/doc/latex/titling/README + RELOC/doc/latex/titling/titling.pdf +srcfiles size=14 + RELOC/source/latex/titling/titling.dtx + RELOC/source/latex/titling/titling.ins +catalogue-ctan /macros/latex/contrib/titling +catalogue-date 2012-07-24 20:02:06 +0200 +catalogue-license lppl +catalogue-version 2.1d + +name tkz-base +category Package +revision 22961 +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. +runfiles size=36 + RELOC/tex/latex/tkz-base/tkz-base.cfg + RELOC/tex/latex/tkz-base/tkz-base.sty + RELOC/tex/latex/tkz-base/tkz-obj-marks.tex + RELOC/tex/latex/tkz-base/tkz-obj-points.tex + RELOC/tex/latex/tkz-base/tkz-obj-segments.tex + RELOC/tex/latex/tkz-base/tkz-tools-arith.tex + RELOC/tex/latex/tkz-base/tkz-tools-base.tex + RELOC/tex/latex/tkz-base/tkz-tools-math.tex + 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-ctan /macros/latex/contrib/tkz/tkz-base +catalogue-date 2012-06-24 19:27:06 +0200 +catalogue-license lppl +catalogue-version 1.16 + +name tkz-berge +category Package +revision 22891 +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 +docfiles size=454 + RELOC/doc/latex/tkz-berge/NamedGraphs/README + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/NamedGraphs.pdf + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Andrasfai.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Balaban.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Bipartite.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Bull.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Cage.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Chvatal.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Cocktail_Party.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Coxeter.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Crown.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-CubicSymmetric.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Desargues.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Doyle.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Dyck.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Folkman.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Foster.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Franklin.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Gray.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Groetzsch.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Harries.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Heawood.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Hypercube.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Koenisberg.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Levi.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-McGee.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Moebius.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Nauru.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Pappus.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Petersen.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Platonic.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Robertson.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Tutte.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-Wong.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-couverture.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/NamedGraphs-main.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/doc/latex/namedg.ist + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-1-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-1-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-1-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-10-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-10-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-11-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-11-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-11-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-11-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-12-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-12-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-12-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-12-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-13-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-13-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-13-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-13-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-14-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-15-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-15-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-15-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-16-0-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-17-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-17-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-17-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-18-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-18-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-19-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-2-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-2-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-2-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-2-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-20-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-20-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-21-0-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-21-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-21-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-22-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-22-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-22-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-5-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-6-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-23-7-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-24-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-24-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-24-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-5-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-6-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-7-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-8-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-25-9-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-10-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-11-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-12-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-13-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-14-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-5-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-6-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-7-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-8-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-26-9-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-27-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-27-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-27-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-27-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-28-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-29-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-3-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-3-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-3-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-4-0-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-6-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-6-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-4-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-7-5-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-8-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-8-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-8-3-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-9-1-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/latex/tkzNamed-9-2-0.tex + RELOC/doc/latex/tkz-berge/NamedGraphs/examples/tkzpreamblenamed.ltx + RELOC/doc/latex/tkz-berge/NamedGraphs/readme-namedgraph.txt + RELOC/doc/latex/tkz-berge/examples/Grid.pdf + RELOC/doc/latex/tkz-berge/examples/gr-Circulant.pdf + RELOC/doc/latex/tkz-berge/examples/gr-Complet-16.pdf + RELOC/doc/latex/tkz-berge/examples/gr-edgeingraphmodloop.pdf + RELOC/doc/latex/tkz-berge/examples/grCLadder.pdf + RELOC/doc/latex/tkz-berge/examples/grDoubleMod.pdf + RELOC/doc/latex/tkz-berge/examples/grExtraChords.pdf + RELOC/doc/latex/tkz-berge/examples/grLadder.pdf + RELOC/doc/latex/tkz-berge/examples/grSQCycle.pdf + RELOC/doc/latex/tkz-berge/examples/grStar.pdf + RELOC/doc/latex/tkz-berge/examples/grWheel.pdf + RELOC/doc/latex/tkz-berge/examples/hypercube.pdf + RELOC/doc/latex/tkz-berge/examples/hypercube_simple.pdf + RELOC/doc/latex/tkz-berge/examples/hypercubed.pdf + RELOC/doc/latex/tkz-berge/examples/latex/Grid.tex + RELOC/doc/latex/tkz-berge/examples/latex/gr-Circulant.tex + RELOC/doc/latex/tkz-berge/examples/latex/gr-Complet-16.tex + RELOC/doc/latex/tkz-berge/examples/latex/gr-edgeingraphmodloop.tex + RELOC/doc/latex/tkz-berge/examples/latex/grCLadder.tex + RELOC/doc/latex/tkz-berge/examples/latex/grDoubleMod.tex + RELOC/doc/latex/tkz-berge/examples/latex/grExtraChords.tex + RELOC/doc/latex/tkz-berge/examples/latex/grLadder.tex + RELOC/doc/latex/tkz-berge/examples/latex/grSQCycle.tex + RELOC/doc/latex/tkz-berge/examples/latex/grStar.tex + RELOC/doc/latex/tkz-berge/examples/latex/grWheel.tex + RELOC/doc/latex/tkz-berge/examples/latex/hypercube_simple.tex + RELOC/doc/latex/tkz-berge/examples/latex/hypercubed.tex + RELOC/doc/latex/tkz-berge/latex/TKZdoc-berge-classic.tex + RELOC/doc/latex/tkz-berge/latex/TKZdoc-berge-installation.tex + RELOC/doc/latex/tkz-berge/latex/TKZdoc-berge-macros-e.tex + RELOC/doc/latex/tkz-berge/latex/TKZdoc-berge-macros.tex + RELOC/doc/latex/tkz-berge/latex/TKZdoc-berge-main.tex + 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 +catalogue-ctan /macros/latex/contrib/tkz/tkz-berge +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.00c + +name tkz-doc +category Package +revision 22959 +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. +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-ctan /macros/latex/contrib/tkz-doc +catalogue-date 2014-09-21 12:31:39 +0200 +catalogue-license lppl +catalogue-version 1.1c + +name tkz-euclide +category Package +revision 22830 +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 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 +docfiles size=252 + RELOC/doc/latex/tkz-euclide/README + 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 + RELOC/doc/latex/tkz-euclide/examples/tkzeuclpreamble.ltx + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-FAQ.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-alea.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-arcs.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-base.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-circles.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-compass.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-config.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-example.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-exemples.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-installation.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-intersec.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-lines.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-main.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-obj.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-points.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-polygons.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-presentation.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-rapporteur.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-sectors.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-segments.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-tips_and_tricks.tex + RELOC/doc/latex/tkz-euclide/latex/TKZdoc-euclide-tools.tex + 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.txt + RELOC/doc/latex/tkz-euclide/tkz-euclide-screen.pdf +catalogue-ctan /macros/latex/contrib/tkz/tkz-euclide +catalogue-date 2012-06-25 01:24:05 +0200 +catalogue-license lppl +catalogue-version 1.16c + +name tkz-fct +category Package +revision 22831 +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 +docfiles size=311 + RELOC/doc/latex/tkz-fct/README + 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 + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-10-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-10-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-10-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-10-5-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-10-6-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-10-7-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-10-8-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-11-1-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-11-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-11-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-11-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-11-5-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-11-6-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-11-7-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-12-1-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-12-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-12-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-12-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-12-5-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-12-6-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-13-0-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-1-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-5-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-6-1.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-7-1.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-7-2.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-7-3.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-7-4.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-8-1.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-14-8-2.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-15-0-3.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-15-0-4.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-16-1-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-16-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-3-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-3-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-4-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-4-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-4-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-4-5-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-4-6-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-4-7-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-4-8-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-5-1-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-5-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-5-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-5-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-5-5-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-5-6-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-6-1-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-10-2.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-5-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-6-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-7-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-8-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-7-9-1.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-10-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-11-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-4-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-6-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-7-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-8-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-8-9-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-9-1-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-9-2-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-9-3-0.tex + RELOC/doc/latex/tkz-fct/examples/latex/tkzFct-9-4-0.tex + RELOC/doc/latex/tkz-fct/examples/tkzfctpreamble.ltx + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-VDW.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-area.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-asymptote.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-bac.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-compilation.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-example.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-faq.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-fonctions.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-fppgf.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-installation.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-interpolation.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-label.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-liste.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-main.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-param.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-point.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-polar.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-riemann.tex + RELOC/doc/latex/tkz-fct/latex/TKZdoc-fct-symbol.tex + 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.txt + RELOC/doc/latex/tkz-fct/readme.tex + RELOC/doc/latex/tkz-fct/tkz-fct-screen.pdf +catalogue-ctan /macros/latex/contrib/tkz/tkz-fct +catalogue-date 2012-06-25 01:24:05 +0200 +catalogue-license lppl +catalogue-version 1.16c + +name tkz-graph +category Package +revision 22832 +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 +docfiles size=112 + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-Dijkstra.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-Welsh.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-annales.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-couverture.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-edge.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-installation.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-label.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-main.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-presentation.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-prob.tex + RELOC/doc/latex/tkz-graph/latex/TKZdoc-gr-style.tex + 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 +catalogue-ctan /macros/latex/contrib/tkz/tkz-graph +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.00 + +name tkz-kiviat +category Package +revision 22857 +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 + 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 + RELOC/doc/latex/tkz-kiviat/examples/latex/kiviat3.tex + RELOC/doc/latex/tkz-kiviat/examples/latex/kiviat4.tex + RELOC/doc/latex/tkz-kiviat/examples/latex/kiviat5.tex + 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 +catalogue-ctan /macros/latex/contrib/tkz/tkz-kiviat +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name tkz-linknodes +category Package +revision 22833 +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 +docfiles size=107 + RELOC/doc/latex/tkz-linknodes/README + 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 + RELOC/doc/latex/tkz-linknodes/examples/latex/system.tex + RELOC/doc/latex/tkz-linknodes/examples/quadratic.pdf + RELOC/doc/latex/tkz-linknodes/examples/system.pdf + 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 +catalogue-ctan /macros/latex/contrib/tkz/tkz-linknodes +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0c + +name tkz-orm +category Package +revision 16849 +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 + RELOC/doc/latex/tkz-orm/LICENSE + RELOC/doc/latex/tkz-orm/Makefile + RELOC/doc/latex/tkz-orm/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.tex +catalogue-ctan /graphics/pgf/contrib/tkz-orm +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license gpl +catalogue-version 0.1 + +name tkz-tab +category Package +revision 22834 +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 +docfiles size=150 + RELOC/doc/latex/tkz-tab/README + 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 + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-examples.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-image.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-init.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-install.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-main.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-sign.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-slope.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-style.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-tangente.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-tv.tex + RELOC/doc/latex/tkz-tab/latex/TKZdoc-tab-valeurs.tex + 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 +catalogue-ctan /macros/latex/contrib/tkz/tkz-tab +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.3c + +name tlc2 +category Package +revision 26096 +catalogue tlc2-examples +shortdesc Examples from "The LaTeX Companion", second edition. +relocated 1 +longdesc The source of the examples printed in the book, together with +longdesc necessary supporting files. The book was published by Addison- +longdesc Wesley, 2004, ISBN 0-201-36299-6. +docfiles size=890 + RELOC/doc/latex/tlc2/1-3-1.ltx + RELOC/doc/latex/tlc2/1-3-2.ltx2 + RELOC/doc/latex/tlc2/1-3-3.ltx + RELOC/doc/latex/tlc2/1-3-4.ltx + RELOC/doc/latex/tlc2/1-3-5.ltx + RELOC/doc/latex/tlc2/10-1-1.ltx + RELOC/doc/latex/tlc2/10-1-10.ltx + RELOC/doc/latex/tlc2/10-1-11.ltx + RELOC/doc/latex/tlc2/10-1-12.ltx + RELOC/doc/latex/tlc2/10-1-13.ltx + RELOC/doc/latex/tlc2/10-1-14.ltx + RELOC/doc/latex/tlc2/10-1-15.ltx + RELOC/doc/latex/tlc2/10-1-16.ltx + RELOC/doc/latex/tlc2/10-1-17.ltx + RELOC/doc/latex/tlc2/10-1-18.ltx + RELOC/doc/latex/tlc2/10-1-19.ltx + RELOC/doc/latex/tlc2/10-1-2.ltx + RELOC/doc/latex/tlc2/10-1-20.ltx + RELOC/doc/latex/tlc2/10-1-21.ltx + RELOC/doc/latex/tlc2/10-1-22.ltx + RELOC/doc/latex/tlc2/10-1-23.ltx + RELOC/doc/latex/tlc2/10-1-24.ltx + RELOC/doc/latex/tlc2/10-1-25.ltx + RELOC/doc/latex/tlc2/10-1-26.ltx + RELOC/doc/latex/tlc2/10-1-27.ltx + RELOC/doc/latex/tlc2/10-1-3.ltx + RELOC/doc/latex/tlc2/10-1-4.ltx + RELOC/doc/latex/tlc2/10-1-5.ltx + RELOC/doc/latex/tlc2/10-1-6.ltx + RELOC/doc/latex/tlc2/10-1-7.ltx + RELOC/doc/latex/tlc2/10-1-8.ltx + RELOC/doc/latex/tlc2/10-1-9.ltx2 + RELOC/doc/latex/tlc2/10-2-1.ltx + RELOC/doc/latex/tlc2/10-2-10.ltx + RELOC/doc/latex/tlc2/10-2-11.ltx + RELOC/doc/latex/tlc2/10-2-12.ltx + RELOC/doc/latex/tlc2/10-2-13.ltx + RELOC/doc/latex/tlc2/10-2-14.ltx + RELOC/doc/latex/tlc2/10-2-15.ltx + RELOC/doc/latex/tlc2/10-2-2.ltx + RELOC/doc/latex/tlc2/10-2-3.ltx + RELOC/doc/latex/tlc2/10-2-4.ltx + RELOC/doc/latex/tlc2/10-2-5.ltx + RELOC/doc/latex/tlc2/10-2-6.ltx + RELOC/doc/latex/tlc2/10-2-7.ltx + RELOC/doc/latex/tlc2/10-2-8.ltx + RELOC/doc/latex/tlc2/10-2-9.ltx + RELOC/doc/latex/tlc2/10-3-1.ltx + RELOC/doc/latex/tlc2/10-3-10.ltx + RELOC/doc/latex/tlc2/10-3-11.ltx + RELOC/doc/latex/tlc2/10-3-12.ltx + RELOC/doc/latex/tlc2/10-3-2.ltx + RELOC/doc/latex/tlc2/10-3-3.ltx + RELOC/doc/latex/tlc2/10-3-4.ltx + RELOC/doc/latex/tlc2/10-3-5.ltx + RELOC/doc/latex/tlc2/10-3-6.ltx + RELOC/doc/latex/tlc2/10-3-7.ltx + RELOC/doc/latex/tlc2/10-3-8.ltx + RELOC/doc/latex/tlc2/10-3-9.ltx + RELOC/doc/latex/tlc2/10-4-1.ltx + RELOC/doc/latex/tlc2/10-4-2.ltx + RELOC/doc/latex/tlc2/10-4-3.ltx + RELOC/doc/latex/tlc2/10-4-4.ltx + RELOC/doc/latex/tlc2/12-1-1.ltx + RELOC/doc/latex/tlc2/12-1-2.ltx + RELOC/doc/latex/tlc2/12-1-3.ltx + RELOC/doc/latex/tlc2/12-2-1.ltx + RELOC/doc/latex/tlc2/12-2-10.ltx + RELOC/doc/latex/tlc2/12-2-11.ltx + RELOC/doc/latex/tlc2/12-2-12.ltx + RELOC/doc/latex/tlc2/12-2-13.ltx + RELOC/doc/latex/tlc2/12-2-14.ltx + RELOC/doc/latex/tlc2/12-2-2.ltx + RELOC/doc/latex/tlc2/12-2-3.ltx + RELOC/doc/latex/tlc2/12-2-4.ltx + RELOC/doc/latex/tlc2/12-2-5.ltx + RELOC/doc/latex/tlc2/12-2-6.ltx + RELOC/doc/latex/tlc2/12-2-7.ltx + RELOC/doc/latex/tlc2/12-2-8.ltx + RELOC/doc/latex/tlc2/12-2-9.ltx + RELOC/doc/latex/tlc2/12-3-1.ltx + RELOC/doc/latex/tlc2/12-3-10.ltx + RELOC/doc/latex/tlc2/12-3-11.ltx + RELOC/doc/latex/tlc2/12-3-12.ltx + RELOC/doc/latex/tlc2/12-3-13.ltx + RELOC/doc/latex/tlc2/12-3-14.ltx + RELOC/doc/latex/tlc2/12-3-15.ltx + RELOC/doc/latex/tlc2/12-3-16.ltx + RELOC/doc/latex/tlc2/12-3-17.ltx + RELOC/doc/latex/tlc2/12-3-18.ltx + RELOC/doc/latex/tlc2/12-3-19.ltx + RELOC/doc/latex/tlc2/12-3-2.ltx + RELOC/doc/latex/tlc2/12-3-20.ltx + RELOC/doc/latex/tlc2/12-3-21.ltx + RELOC/doc/latex/tlc2/12-3-22.ltx + RELOC/doc/latex/tlc2/12-3-23.ltx + RELOC/doc/latex/tlc2/12-3-24.ltx + RELOC/doc/latex/tlc2/12-3-25.ltx + RELOC/doc/latex/tlc2/12-3-26.ltx + RELOC/doc/latex/tlc2/12-3-27.ltx + RELOC/doc/latex/tlc2/12-3-3.ltx + RELOC/doc/latex/tlc2/12-3-4.ltx + RELOC/doc/latex/tlc2/12-3-5.ltx + RELOC/doc/latex/tlc2/12-3-6.ltx + RELOC/doc/latex/tlc2/12-3-7.ltx + RELOC/doc/latex/tlc2/12-3-8.ltx + RELOC/doc/latex/tlc2/12-3-9.ltx + RELOC/doc/latex/tlc2/12-4-1.ltx + RELOC/doc/latex/tlc2/12-4-2.ltx + RELOC/doc/latex/tlc2/12-4-3.ltx + RELOC/doc/latex/tlc2/12-4-4.ltx + RELOC/doc/latex/tlc2/12-4-5.ltx + RELOC/doc/latex/tlc2/12-4-6.ltx + RELOC/doc/latex/tlc2/12-4-7.ltx + RELOC/doc/latex/tlc2/12-4-8.ltx + RELOC/doc/latex/tlc2/12-5-1.ltx + RELOC/doc/latex/tlc2/12-5-10.ltx + RELOC/doc/latex/tlc2/12-5-11.ltx + RELOC/doc/latex/tlc2/12-5-12.ltx + RELOC/doc/latex/tlc2/12-5-13.ltx + RELOC/doc/latex/tlc2/12-5-14.ltx + RELOC/doc/latex/tlc2/12-5-15.ltx + RELOC/doc/latex/tlc2/12-5-16.ltx + RELOC/doc/latex/tlc2/12-5-17.ltx + RELOC/doc/latex/tlc2/12-5-18.ltx + RELOC/doc/latex/tlc2/12-5-19.ltx + RELOC/doc/latex/tlc2/12-5-2.ltx + RELOC/doc/latex/tlc2/12-5-20.ltx + RELOC/doc/latex/tlc2/12-5-21.ltx + RELOC/doc/latex/tlc2/12-5-22.ltx + RELOC/doc/latex/tlc2/12-5-23.ltx + RELOC/doc/latex/tlc2/12-5-24.ltx2 + RELOC/doc/latex/tlc2/12-5-25.ltx2 + RELOC/doc/latex/tlc2/12-5-26.ltx2 + RELOC/doc/latex/tlc2/12-5-27.ltx + RELOC/doc/latex/tlc2/12-5-28.ltx + RELOC/doc/latex/tlc2/12-5-29.ltx2 + RELOC/doc/latex/tlc2/12-5-3.ltx + RELOC/doc/latex/tlc2/12-5-30.ltx + RELOC/doc/latex/tlc2/12-5-31.ltx + RELOC/doc/latex/tlc2/12-5-32.ltx + RELOC/doc/latex/tlc2/12-5-33.ltx + RELOC/doc/latex/tlc2/12-5-34.ltx + RELOC/doc/latex/tlc2/12-5-35.ltx + RELOC/doc/latex/tlc2/12-5-36.ltx + RELOC/doc/latex/tlc2/12-5-37.ltx + RELOC/doc/latex/tlc2/12-5-38.ltx + RELOC/doc/latex/tlc2/12-5-39.ltx + RELOC/doc/latex/tlc2/12-5-4.ltx + RELOC/doc/latex/tlc2/12-5-40.ltx + RELOC/doc/latex/tlc2/12-5-41.ltx + RELOC/doc/latex/tlc2/12-5-42.ltx + RELOC/doc/latex/tlc2/12-5-43.ltx + RELOC/doc/latex/tlc2/12-5-44.ltx + RELOC/doc/latex/tlc2/12-5-45.ltx + RELOC/doc/latex/tlc2/12-5-46.ltx + RELOC/doc/latex/tlc2/12-5-47.ltx + RELOC/doc/latex/tlc2/12-5-48.ltx + RELOC/doc/latex/tlc2/12-5-49.ltx + RELOC/doc/latex/tlc2/12-5-5.ltx + RELOC/doc/latex/tlc2/12-5-6.ltx + RELOC/doc/latex/tlc2/12-5-7.ltx + RELOC/doc/latex/tlc2/12-5-8.ltx + RELOC/doc/latex/tlc2/12-5-9.ltx + RELOC/doc/latex/tlc2/12-6-1.ltx2 + RELOC/doc/latex/tlc2/12-6-10.ltx + RELOC/doc/latex/tlc2/12-6-2.ltx + RELOC/doc/latex/tlc2/12-6-3.ltx2 + RELOC/doc/latex/tlc2/12-6-4.ltx2 + RELOC/doc/latex/tlc2/12-6-5.ltx2 + RELOC/doc/latex/tlc2/12-6-6.ltx2 + RELOC/doc/latex/tlc2/12-6-7.ltx + RELOC/doc/latex/tlc2/12-6-8.ltx + RELOC/doc/latex/tlc2/12-6-9.ltx + RELOC/doc/latex/tlc2/13-4-1.ltx + RELOC/doc/latex/tlc2/13-4-2.ltx + RELOC/doc/latex/tlc2/13-5-1.ltx + RELOC/doc/latex/tlc2/13-5-2.ltx + RELOC/doc/latex/tlc2/13-5-3.ltx + RELOC/doc/latex/tlc2/13-5-4.ltx + RELOC/doc/latex/tlc2/13-5-5.ltx + RELOC/doc/latex/tlc2/13-5-6.ltx + RELOC/doc/latex/tlc2/13-5-7.ltx + RELOC/doc/latex/tlc2/14-4-1.ltx + RELOC/doc/latex/tlc2/14-4-2.ltx + RELOC/doc/latex/tlc2/2-1-1.ltx + RELOC/doc/latex/tlc2/2-2-1.ltx + RELOC/doc/latex/tlc2/2-2-10.ltx + RELOC/doc/latex/tlc2/2-2-11.ltx + RELOC/doc/latex/tlc2/2-2-12.ltx + RELOC/doc/latex/tlc2/2-2-13.ltx + RELOC/doc/latex/tlc2/2-2-14.ltx + RELOC/doc/latex/tlc2/2-2-15.ltx + RELOC/doc/latex/tlc2/2-2-16.ltx + RELOC/doc/latex/tlc2/2-2-17.ltx + RELOC/doc/latex/tlc2/2-2-18.ltx + RELOC/doc/latex/tlc2/2-2-19.ltx + RELOC/doc/latex/tlc2/2-2-2.ltx + RELOC/doc/latex/tlc2/2-2-20.ltx + RELOC/doc/latex/tlc2/2-2-21.ltx2 + RELOC/doc/latex/tlc2/2-2-22.ltx + RELOC/doc/latex/tlc2/2-2-3.ltx + RELOC/doc/latex/tlc2/2-2-4.ltx + RELOC/doc/latex/tlc2/2-2-5.ltx + RELOC/doc/latex/tlc2/2-2-6.ltx + RELOC/doc/latex/tlc2/2-2-7.ltx + RELOC/doc/latex/tlc2/2-2-8.ltx + RELOC/doc/latex/tlc2/2-2-9.ltx + RELOC/doc/latex/tlc2/2-3-1.ltx2 + RELOC/doc/latex/tlc2/2-3-10.ltx + RELOC/doc/latex/tlc2/2-3-11.ltx + RELOC/doc/latex/tlc2/2-3-12.ltx + RELOC/doc/latex/tlc2/2-3-13.ltx + RELOC/doc/latex/tlc2/2-3-14.ltx + RELOC/doc/latex/tlc2/2-3-2.ltx + RELOC/doc/latex/tlc2/2-3-3.ltx + RELOC/doc/latex/tlc2/2-3-4.ltx + RELOC/doc/latex/tlc2/2-3-5.ltx + RELOC/doc/latex/tlc2/2-3-6.ltx + RELOC/doc/latex/tlc2/2-3-7.ltx + RELOC/doc/latex/tlc2/2-3-8.ltx2 + RELOC/doc/latex/tlc2/2-3-9.ltx + RELOC/doc/latex/tlc2/2-4-1.ltx + RELOC/doc/latex/tlc2/2-4-2.ltx + RELOC/doc/latex/tlc2/2-4-3.ltx + RELOC/doc/latex/tlc2/2-4-4.ltx2 + RELOC/doc/latex/tlc2/2-4-5.ltx + RELOC/doc/latex/tlc2/2-4-6.ltx2 + RELOC/doc/latex/tlc2/2-4-7.ltx + RELOC/doc/latex/tlc2/2-4-8.ltx + RELOC/doc/latex/tlc2/2-4-9.ltx + RELOC/doc/latex/tlc2/3-1-1.ltx + RELOC/doc/latex/tlc2/3-1-10.ltx + RELOC/doc/latex/tlc2/3-1-11.ltx + RELOC/doc/latex/tlc2/3-1-12.ltx + RELOC/doc/latex/tlc2/3-1-13.ltx + RELOC/doc/latex/tlc2/3-1-14.ltx + RELOC/doc/latex/tlc2/3-1-15.ltx + RELOC/doc/latex/tlc2/3-1-16.ltx + RELOC/doc/latex/tlc2/3-1-17.ltx + RELOC/doc/latex/tlc2/3-1-18.ltx + RELOC/doc/latex/tlc2/3-1-19.ltx + RELOC/doc/latex/tlc2/3-1-2.ltx + RELOC/doc/latex/tlc2/3-1-20.ltx + RELOC/doc/latex/tlc2/3-1-21.ltx + RELOC/doc/latex/tlc2/3-1-22.ltx + RELOC/doc/latex/tlc2/3-1-23.ltx + RELOC/doc/latex/tlc2/3-1-24.ltx + RELOC/doc/latex/tlc2/3-1-25.ltx + RELOC/doc/latex/tlc2/3-1-26.ltx + RELOC/doc/latex/tlc2/3-1-27.ltx + RELOC/doc/latex/tlc2/3-1-28.ltx + RELOC/doc/latex/tlc2/3-1-29.ltx + RELOC/doc/latex/tlc2/3-1-3.ltx + RELOC/doc/latex/tlc2/3-1-30.ltx + RELOC/doc/latex/tlc2/3-1-31.ltx + RELOC/doc/latex/tlc2/3-1-32.ltx + RELOC/doc/latex/tlc2/3-1-33.ltx + RELOC/doc/latex/tlc2/3-1-34.ltx + RELOC/doc/latex/tlc2/3-1-35.ltx + RELOC/doc/latex/tlc2/3-1-36.ltx + RELOC/doc/latex/tlc2/3-1-37.ltx + RELOC/doc/latex/tlc2/3-1-38.ltx + RELOC/doc/latex/tlc2/3-1-39.ltx + RELOC/doc/latex/tlc2/3-1-4.ltx + RELOC/doc/latex/tlc2/3-1-40.ltx + RELOC/doc/latex/tlc2/3-1-41.ltx + RELOC/doc/latex/tlc2/3-1-42.ltx + RELOC/doc/latex/tlc2/3-1-43.ltx + RELOC/doc/latex/tlc2/3-1-44.ltx + RELOC/doc/latex/tlc2/3-1-45.ltx + RELOC/doc/latex/tlc2/3-1-46.ltx + RELOC/doc/latex/tlc2/3-1-47.ltx + RELOC/doc/latex/tlc2/3-1-48.ltx + RELOC/doc/latex/tlc2/3-1-49.ltx + RELOC/doc/latex/tlc2/3-1-5.ltx + RELOC/doc/latex/tlc2/3-1-50.ltx + RELOC/doc/latex/tlc2/3-1-51.ltx + RELOC/doc/latex/tlc2/3-1-52.ltx + RELOC/doc/latex/tlc2/3-1-53.ltx + RELOC/doc/latex/tlc2/3-1-6.ltx + RELOC/doc/latex/tlc2/3-1-7.ltx + RELOC/doc/latex/tlc2/3-1-8.ltx + RELOC/doc/latex/tlc2/3-1-9.ltx + RELOC/doc/latex/tlc2/3-2-1.ltx + RELOC/doc/latex/tlc2/3-2-10.ltx + RELOC/doc/latex/tlc2/3-2-11.ltx + RELOC/doc/latex/tlc2/3-2-12.ltx + RELOC/doc/latex/tlc2/3-2-13.ltx + RELOC/doc/latex/tlc2/3-2-14.ltx + RELOC/doc/latex/tlc2/3-2-15.ltx + RELOC/doc/latex/tlc2/3-2-16.ltx + RELOC/doc/latex/tlc2/3-2-17.ltx2 + RELOC/doc/latex/tlc2/3-2-18.ltx2 + RELOC/doc/latex/tlc2/3-2-19.ltx + RELOC/doc/latex/tlc2/3-2-2.ltx + RELOC/doc/latex/tlc2/3-2-20.ltx + RELOC/doc/latex/tlc2/3-2-21.ltx2 + RELOC/doc/latex/tlc2/3-2-22.ltx + RELOC/doc/latex/tlc2/3-2-23.ltx + RELOC/doc/latex/tlc2/3-2-24.ltx2 + RELOC/doc/latex/tlc2/3-2-25.ltx + RELOC/doc/latex/tlc2/3-2-26.ltx + RELOC/doc/latex/tlc2/3-2-27.ltx + RELOC/doc/latex/tlc2/3-2-28.ltx + RELOC/doc/latex/tlc2/3-2-3.ltx + RELOC/doc/latex/tlc2/3-2-4.ltx + RELOC/doc/latex/tlc2/3-2-5.ltx + RELOC/doc/latex/tlc2/3-2-6.ltx + RELOC/doc/latex/tlc2/3-2-7.ltx2 + RELOC/doc/latex/tlc2/3-2-8.ltx + RELOC/doc/latex/tlc2/3-2-9.ltx + RELOC/doc/latex/tlc2/3-3-1.ltx + RELOC/doc/latex/tlc2/3-3-10.ltx + RELOC/doc/latex/tlc2/3-3-11.ltx + RELOC/doc/latex/tlc2/3-3-12.ltx + RELOC/doc/latex/tlc2/3-3-13.ltx + RELOC/doc/latex/tlc2/3-3-14.ltx + RELOC/doc/latex/tlc2/3-3-15.ltx + RELOC/doc/latex/tlc2/3-3-16.ltx + RELOC/doc/latex/tlc2/3-3-17.ltx + RELOC/doc/latex/tlc2/3-3-18.ltx + RELOC/doc/latex/tlc2/3-3-19.ltx + RELOC/doc/latex/tlc2/3-3-2.ltx + RELOC/doc/latex/tlc2/3-3-20.ltx + RELOC/doc/latex/tlc2/3-3-21.ltx + RELOC/doc/latex/tlc2/3-3-22.ltx + RELOC/doc/latex/tlc2/3-3-23.ltx + RELOC/doc/latex/tlc2/3-3-24.ltx + RELOC/doc/latex/tlc2/3-3-25.ltx + RELOC/doc/latex/tlc2/3-3-26.ltx + RELOC/doc/latex/tlc2/3-3-27.ltx + RELOC/doc/latex/tlc2/3-3-28.ltx + RELOC/doc/latex/tlc2/3-3-29.ltx + RELOC/doc/latex/tlc2/3-3-3.ltx + RELOC/doc/latex/tlc2/3-3-30.ltx + RELOC/doc/latex/tlc2/3-3-4.ltx + RELOC/doc/latex/tlc2/3-3-5.ltx + RELOC/doc/latex/tlc2/3-3-6.ltx + RELOC/doc/latex/tlc2/3-3-7.ltx + RELOC/doc/latex/tlc2/3-3-8.ltx + RELOC/doc/latex/tlc2/3-3-9.ltx + RELOC/doc/latex/tlc2/3-4-1.ltx + RELOC/doc/latex/tlc2/3-4-10.ltx + RELOC/doc/latex/tlc2/3-4-11.ltx + RELOC/doc/latex/tlc2/3-4-12.ltx + RELOC/doc/latex/tlc2/3-4-13.ltx + RELOC/doc/latex/tlc2/3-4-14.ltx + RELOC/doc/latex/tlc2/3-4-15.ltx + RELOC/doc/latex/tlc2/3-4-16.ltx + RELOC/doc/latex/tlc2/3-4-17.ltx + RELOC/doc/latex/tlc2/3-4-18.ltx + RELOC/doc/latex/tlc2/3-4-19.ltx + RELOC/doc/latex/tlc2/3-4-2.ltx + RELOC/doc/latex/tlc2/3-4-20.ltx + RELOC/doc/latex/tlc2/3-4-21.ltx + RELOC/doc/latex/tlc2/3-4-22.ltx + RELOC/doc/latex/tlc2/3-4-23.ltx + RELOC/doc/latex/tlc2/3-4-24.ltx + RELOC/doc/latex/tlc2/3-4-25.ltx + RELOC/doc/latex/tlc2/3-4-26.ltx + RELOC/doc/latex/tlc2/3-4-27.ltx + RELOC/doc/latex/tlc2/3-4-28.ltx + RELOC/doc/latex/tlc2/3-4-29.ltx + RELOC/doc/latex/tlc2/3-4-3.ltx + RELOC/doc/latex/tlc2/3-4-30.ltx + RELOC/doc/latex/tlc2/3-4-31.ltx + RELOC/doc/latex/tlc2/3-4-32.ltx + RELOC/doc/latex/tlc2/3-4-33.ltx + RELOC/doc/latex/tlc2/3-4-34.ltx + RELOC/doc/latex/tlc2/3-4-35.ltx + RELOC/doc/latex/tlc2/3-4-36.ltx + RELOC/doc/latex/tlc2/3-4-37.ltx + RELOC/doc/latex/tlc2/3-4-38.ltx + RELOC/doc/latex/tlc2/3-4-39.ltx + RELOC/doc/latex/tlc2/3-4-4.ltx + RELOC/doc/latex/tlc2/3-4-40.ltx + RELOC/doc/latex/tlc2/3-4-41.ltx + RELOC/doc/latex/tlc2/3-4-42.ltx + RELOC/doc/latex/tlc2/3-4-5.ltx + RELOC/doc/latex/tlc2/3-4-6.ltx + RELOC/doc/latex/tlc2/3-4-7.ltx + RELOC/doc/latex/tlc2/3-4-8.ltx + RELOC/doc/latex/tlc2/3-4-9.ltx + RELOC/doc/latex/tlc2/3-5-1.ltx + RELOC/doc/latex/tlc2/3-5-10.ltx + RELOC/doc/latex/tlc2/3-5-11.ltx + RELOC/doc/latex/tlc2/3-5-12.ltx + RELOC/doc/latex/tlc2/3-5-13.ltx + RELOC/doc/latex/tlc2/3-5-14.ltx + RELOC/doc/latex/tlc2/3-5-15.ltx + RELOC/doc/latex/tlc2/3-5-16.ltx + RELOC/doc/latex/tlc2/3-5-17.ltx + RELOC/doc/latex/tlc2/3-5-18.ltx + RELOC/doc/latex/tlc2/3-5-19.ltx + RELOC/doc/latex/tlc2/3-5-2.ltx + RELOC/doc/latex/tlc2/3-5-20.ltx + RELOC/doc/latex/tlc2/3-5-3.ltx + RELOC/doc/latex/tlc2/3-5-4.ltx + RELOC/doc/latex/tlc2/3-5-5.ltx + RELOC/doc/latex/tlc2/3-5-6.ltx + RELOC/doc/latex/tlc2/3-5-7.ltx + RELOC/doc/latex/tlc2/3-5-8.ltx + RELOC/doc/latex/tlc2/3-5-9.ltx + RELOC/doc/latex/tlc2/4-1-1.ltx + RELOC/doc/latex/tlc2/4-2-1.ltx + RELOC/doc/latex/tlc2/4-2-10.ltx + RELOC/doc/latex/tlc2/4-2-11.ltx + RELOC/doc/latex/tlc2/4-2-12.ltx + RELOC/doc/latex/tlc2/4-2-13.ltx + RELOC/doc/latex/tlc2/4-2-2.ltx + RELOC/doc/latex/tlc2/4-2-3.ltx + RELOC/doc/latex/tlc2/4-2-4.ltx + RELOC/doc/latex/tlc2/4-2-5.ltx + RELOC/doc/latex/tlc2/4-2-6.ltx + RELOC/doc/latex/tlc2/4-2-7.ltx + RELOC/doc/latex/tlc2/4-2-8.ltx2 + RELOC/doc/latex/tlc2/4-2-9.ltx2 + RELOC/doc/latex/tlc2/4-3-1.ltx2 + RELOC/doc/latex/tlc2/4-3-2.ltx2 + RELOC/doc/latex/tlc2/4-3-3.ltx2 + RELOC/doc/latex/tlc2/4-4-1.ltx + RELOC/doc/latex/tlc2/4-4-10.ltx2 + RELOC/doc/latex/tlc2/4-4-11.ltx2 + RELOC/doc/latex/tlc2/4-4-12.ltx2 + RELOC/doc/latex/tlc2/4-4-13.ltx2 + RELOC/doc/latex/tlc2/4-4-14.ltx + RELOC/doc/latex/tlc2/4-4-15.ltx2 + RELOC/doc/latex/tlc2/4-4-2.ltx + RELOC/doc/latex/tlc2/4-4-3.ltx + RELOC/doc/latex/tlc2/4-4-4.ltx2 + RELOC/doc/latex/tlc2/4-4-5.ltx2 + RELOC/doc/latex/tlc2/4-4-6.ltx2 + RELOC/doc/latex/tlc2/4-4-7.ltx2 + RELOC/doc/latex/tlc2/4-4-8.ltx2 + RELOC/doc/latex/tlc2/4-4-9.ltx2 + RELOC/doc/latex/tlc2/4-5-1.ltx2 + RELOC/doc/latex/tlc2/4-5-2.ltx2 + RELOC/doc/latex/tlc2/5-1-1.ltx + RELOC/doc/latex/tlc2/5-1-2.ltx + RELOC/doc/latex/tlc2/5-1-3.ltx + RELOC/doc/latex/tlc2/5-1-4.ltx + RELOC/doc/latex/tlc2/5-2-1.ltx + RELOC/doc/latex/tlc2/5-2-10.ltx + RELOC/doc/latex/tlc2/5-2-11.ltx + RELOC/doc/latex/tlc2/5-2-12.ltx + RELOC/doc/latex/tlc2/5-2-13.ltx + RELOC/doc/latex/tlc2/5-2-2.ltx + RELOC/doc/latex/tlc2/5-2-3.ltx + RELOC/doc/latex/tlc2/5-2-4.ltx + RELOC/doc/latex/tlc2/5-2-5.ltx + RELOC/doc/latex/tlc2/5-2-6.ltx + RELOC/doc/latex/tlc2/5-2-7.ltx + RELOC/doc/latex/tlc2/5-2-8.ltx + RELOC/doc/latex/tlc2/5-2-9.ltx + RELOC/doc/latex/tlc2/5-3-1.ltx + RELOC/doc/latex/tlc2/5-3-2.ltx + RELOC/doc/latex/tlc2/5-3-3.ltx + RELOC/doc/latex/tlc2/5-3-4.ltx + RELOC/doc/latex/tlc2/5-3-5.ltx + RELOC/doc/latex/tlc2/5-3-6.ltx + RELOC/doc/latex/tlc2/5-4-1.ltx2 + RELOC/doc/latex/tlc2/5-4-2.ltx2 + RELOC/doc/latex/tlc2/5-4-3.ltx2 + RELOC/doc/latex/tlc2/5-4-4.ltx + RELOC/doc/latex/tlc2/5-4-5.ltx2 + RELOC/doc/latex/tlc2/5-4-6.ltx2 + RELOC/doc/latex/tlc2/5-5-1.ltx + RELOC/doc/latex/tlc2/5-5-2.ltx + RELOC/doc/latex/tlc2/5-6-1.ltx + RELOC/doc/latex/tlc2/5-6-2.ltx + RELOC/doc/latex/tlc2/5-6-3.ltx + RELOC/doc/latex/tlc2/5-6-4.ltx + RELOC/doc/latex/tlc2/5-6-5.ltx + RELOC/doc/latex/tlc2/5-6-6.ltx + RELOC/doc/latex/tlc2/5-6-7.ltx + RELOC/doc/latex/tlc2/5-6-8.ltx + RELOC/doc/latex/tlc2/5-7-1.ltx + RELOC/doc/latex/tlc2/5-7-2.ltx + RELOC/doc/latex/tlc2/5-7-3.ltx + RELOC/doc/latex/tlc2/5-7-4.ltx + RELOC/doc/latex/tlc2/5-7-5.ltx + RELOC/doc/latex/tlc2/5-7-6.ltx + RELOC/doc/latex/tlc2/5-7-7.ltx + RELOC/doc/latex/tlc2/5-7-8.ltx + RELOC/doc/latex/tlc2/5-8-1.ltx + RELOC/doc/latex/tlc2/5-8-2.ltx + RELOC/doc/latex/tlc2/5-9-1.ltx + RELOC/doc/latex/tlc2/5-9-2.ltx + RELOC/doc/latex/tlc2/5-9-3.ltx + RELOC/doc/latex/tlc2/5-9-4.ltx + RELOC/doc/latex/tlc2/5-9-5.ltx + RELOC/doc/latex/tlc2/5-9-6.ltx + RELOC/doc/latex/tlc2/6-3-1.ltx + RELOC/doc/latex/tlc2/6-3-2.ltx + RELOC/doc/latex/tlc2/6-3-3.ltx + RELOC/doc/latex/tlc2/6-3-4.ltx2 + RELOC/doc/latex/tlc2/6-3-5.ltx + RELOC/doc/latex/tlc2/6-3-6.ltx2 + RELOC/doc/latex/tlc2/6-3-7.ltx2 + RELOC/doc/latex/tlc2/6-4-1.ltx + RELOC/doc/latex/tlc2/6-4-2.ltx + RELOC/doc/latex/tlc2/6-4-3.ltx + RELOC/doc/latex/tlc2/6-4-4.ltx + RELOC/doc/latex/tlc2/6-4-5.ltx2 + RELOC/doc/latex/tlc2/6-4-6.ltx2 + RELOC/doc/latex/tlc2/6-4-7.ltx + RELOC/doc/latex/tlc2/6-4-8.ltx + RELOC/doc/latex/tlc2/6-5-1.ltx + RELOC/doc/latex/tlc2/6-5-10.ltx + RELOC/doc/latex/tlc2/6-5-11.ltx + RELOC/doc/latex/tlc2/6-5-12.ltx + RELOC/doc/latex/tlc2/6-5-13.ltx + RELOC/doc/latex/tlc2/6-5-14.ltx2 + RELOC/doc/latex/tlc2/6-5-15.ltx + RELOC/doc/latex/tlc2/6-5-16.ltx + RELOC/doc/latex/tlc2/6-5-17.ltx + RELOC/doc/latex/tlc2/6-5-18.ltx2 + RELOC/doc/latex/tlc2/6-5-2.ltx + RELOC/doc/latex/tlc2/6-5-3.ltx + RELOC/doc/latex/tlc2/6-5-4.ltx + RELOC/doc/latex/tlc2/6-5-5.ltx + RELOC/doc/latex/tlc2/6-5-6.ltx + RELOC/doc/latex/tlc2/6-5-7.ltx2 + RELOC/doc/latex/tlc2/6-5-8.ltx + RELOC/doc/latex/tlc2/6-5-9.ltx + RELOC/doc/latex/tlc2/7-10-1.ltx + RELOC/doc/latex/tlc2/7-12-1.ltx + RELOC/doc/latex/tlc2/7-3-1.ltx + RELOC/doc/latex/tlc2/7-3-2.ltx + RELOC/doc/latex/tlc2/7-3-3.ltx + RELOC/doc/latex/tlc2/7-3-4.ltx + RELOC/doc/latex/tlc2/7-3-5.ltx + RELOC/doc/latex/tlc2/7-3-6.ltx + RELOC/doc/latex/tlc2/7-3-7.ltx + RELOC/doc/latex/tlc2/7-3-8.ltx + RELOC/doc/latex/tlc2/7-4-1.ltx + RELOC/doc/latex/tlc2/7-4-2.ltx + RELOC/doc/latex/tlc2/7-4-3.ltx + RELOC/doc/latex/tlc2/7-4-4.ltx + RELOC/doc/latex/tlc2/7-4-5.ltx + RELOC/doc/latex/tlc2/7-5-1.ltx + RELOC/doc/latex/tlc2/7-5-10.ltx + RELOC/doc/latex/tlc2/7-5-11.ltx + RELOC/doc/latex/tlc2/7-5-12.ltx + RELOC/doc/latex/tlc2/7-5-13.ltx + RELOC/doc/latex/tlc2/7-5-14.ltx + RELOC/doc/latex/tlc2/7-5-15.ltx + RELOC/doc/latex/tlc2/7-5-16.ltx + RELOC/doc/latex/tlc2/7-5-17.ltx + RELOC/doc/latex/tlc2/7-5-2.ltx + RELOC/doc/latex/tlc2/7-5-3.ltx + RELOC/doc/latex/tlc2/7-5-4.ltx + RELOC/doc/latex/tlc2/7-5-5.ltx + RELOC/doc/latex/tlc2/7-5-6.ltx + RELOC/doc/latex/tlc2/7-5-7.ltx + RELOC/doc/latex/tlc2/7-5-8.ltx + RELOC/doc/latex/tlc2/7-5-9.ltx + RELOC/doc/latex/tlc2/7-6-1.ltx + RELOC/doc/latex/tlc2/7-6-10.ltx + RELOC/doc/latex/tlc2/7-6-11.ltx + RELOC/doc/latex/tlc2/7-6-12.ltx + RELOC/doc/latex/tlc2/7-6-2.ltx + RELOC/doc/latex/tlc2/7-6-3.ltx + RELOC/doc/latex/tlc2/7-6-4.ltx + RELOC/doc/latex/tlc2/7-6-5.ltx + RELOC/doc/latex/tlc2/7-6-6.ltx + RELOC/doc/latex/tlc2/7-6-7.ltx + RELOC/doc/latex/tlc2/7-6-8.ltx + RELOC/doc/latex/tlc2/7-6-9.ltx + RELOC/doc/latex/tlc2/7-7-1.ltx + RELOC/doc/latex/tlc2/7-7-10.ltx + RELOC/doc/latex/tlc2/7-7-11.ltx + RELOC/doc/latex/tlc2/7-7-12.ltx + RELOC/doc/latex/tlc2/7-7-13.ltx + RELOC/doc/latex/tlc2/7-7-14.ltx + RELOC/doc/latex/tlc2/7-7-15.ltx + RELOC/doc/latex/tlc2/7-7-16.ltx + RELOC/doc/latex/tlc2/7-7-17.ltx + RELOC/doc/latex/tlc2/7-7-18.ltx + RELOC/doc/latex/tlc2/7-7-19.ltx + RELOC/doc/latex/tlc2/7-7-2.ltx + RELOC/doc/latex/tlc2/7-7-20.ltx + RELOC/doc/latex/tlc2/7-7-21.ltx + RELOC/doc/latex/tlc2/7-7-22.ltx + RELOC/doc/latex/tlc2/7-7-23.ltx + RELOC/doc/latex/tlc2/7-7-24.ltx + RELOC/doc/latex/tlc2/7-7-25.ltx + RELOC/doc/latex/tlc2/7-7-26.ltx + RELOC/doc/latex/tlc2/7-7-27.ltx + RELOC/doc/latex/tlc2/7-7-28.ltx + RELOC/doc/latex/tlc2/7-7-29.ltx + RELOC/doc/latex/tlc2/7-7-3.ltx + RELOC/doc/latex/tlc2/7-7-4.ltx + RELOC/doc/latex/tlc2/7-7-5.ltx + RELOC/doc/latex/tlc2/7-7-6.ltx + RELOC/doc/latex/tlc2/7-7-7.ltx + RELOC/doc/latex/tlc2/7-7-8.ltx + RELOC/doc/latex/tlc2/7-7-9.ltx + RELOC/doc/latex/tlc2/7-8-1.ltx + RELOC/doc/latex/tlc2/7-8-10.ltx + RELOC/doc/latex/tlc2/7-8-11.ltx + RELOC/doc/latex/tlc2/7-8-12.ltx + RELOC/doc/latex/tlc2/7-8-13.ltx + RELOC/doc/latex/tlc2/7-8-14.ltx + RELOC/doc/latex/tlc2/7-8-15.ltx + RELOC/doc/latex/tlc2/7-8-16.ltx + RELOC/doc/latex/tlc2/7-8-17.ltx + RELOC/doc/latex/tlc2/7-8-18.ltx + RELOC/doc/latex/tlc2/7-8-19.ltx + RELOC/doc/latex/tlc2/7-8-2.ltx + RELOC/doc/latex/tlc2/7-8-20.ltx + RELOC/doc/latex/tlc2/7-8-21.ltx + RELOC/doc/latex/tlc2/7-8-22.ltx + RELOC/doc/latex/tlc2/7-8-3.ltx + RELOC/doc/latex/tlc2/7-8-4.ltx + RELOC/doc/latex/tlc2/7-8-5.ltx + RELOC/doc/latex/tlc2/7-8-6.ltx + RELOC/doc/latex/tlc2/7-8-7.ltx + RELOC/doc/latex/tlc2/7-8-8.ltx + RELOC/doc/latex/tlc2/7-8-9.ltx + RELOC/doc/latex/tlc2/7-9-1.ltx + RELOC/doc/latex/tlc2/7-9-2.ltx + RELOC/doc/latex/tlc2/8-2-1.ltx + RELOC/doc/latex/tlc2/8-2-10.ltx + RELOC/doc/latex/tlc2/8-2-11.ltx + RELOC/doc/latex/tlc2/8-2-12.ltx + RELOC/doc/latex/tlc2/8-2-13.ltx + RELOC/doc/latex/tlc2/8-2-14.ltx + RELOC/doc/latex/tlc2/8-2-15.ltx + RELOC/doc/latex/tlc2/8-2-16.ltx + RELOC/doc/latex/tlc2/8-2-17.ltx + RELOC/doc/latex/tlc2/8-2-18.ltx + RELOC/doc/latex/tlc2/8-2-19.ltx + RELOC/doc/latex/tlc2/8-2-2.ltx + RELOC/doc/latex/tlc2/8-2-20.ltx + RELOC/doc/latex/tlc2/8-2-21.ltx + RELOC/doc/latex/tlc2/8-2-22.ltx + RELOC/doc/latex/tlc2/8-2-23.ltx + RELOC/doc/latex/tlc2/8-2-24.ltx + RELOC/doc/latex/tlc2/8-2-25.ltx + RELOC/doc/latex/tlc2/8-2-26.ltx + RELOC/doc/latex/tlc2/8-2-27.ltx + RELOC/doc/latex/tlc2/8-2-28.ltx + RELOC/doc/latex/tlc2/8-2-29.ltx + RELOC/doc/latex/tlc2/8-2-3.ltx + RELOC/doc/latex/tlc2/8-2-4.ltx + RELOC/doc/latex/tlc2/8-2-5.ltx + RELOC/doc/latex/tlc2/8-2-6.ltx + RELOC/doc/latex/tlc2/8-2-7.ltx + RELOC/doc/latex/tlc2/8-2-8.ltx + RELOC/doc/latex/tlc2/8-2-9.ltx + RELOC/doc/latex/tlc2/8-3-1.ltx + RELOC/doc/latex/tlc2/8-3-10.ltx + RELOC/doc/latex/tlc2/8-3-11.ltx + RELOC/doc/latex/tlc2/8-3-12.ltx + RELOC/doc/latex/tlc2/8-3-13.ltx + RELOC/doc/latex/tlc2/8-3-14.ltx + RELOC/doc/latex/tlc2/8-3-15.ltx + RELOC/doc/latex/tlc2/8-3-16.ltx + RELOC/doc/latex/tlc2/8-3-17.ltx + RELOC/doc/latex/tlc2/8-3-18.ltx + RELOC/doc/latex/tlc2/8-3-19.ltx + RELOC/doc/latex/tlc2/8-3-2.ltx + RELOC/doc/latex/tlc2/8-3-20.ltx + RELOC/doc/latex/tlc2/8-3-21.ltx + RELOC/doc/latex/tlc2/8-3-22.ltx + RELOC/doc/latex/tlc2/8-3-23.ltx + RELOC/doc/latex/tlc2/8-3-24.ltx + RELOC/doc/latex/tlc2/8-3-25.ltx + RELOC/doc/latex/tlc2/8-3-26.ltx + RELOC/doc/latex/tlc2/8-3-27.ltx + RELOC/doc/latex/tlc2/8-3-28.ltx + RELOC/doc/latex/tlc2/8-3-29.ltx + RELOC/doc/latex/tlc2/8-3-3.ltx + RELOC/doc/latex/tlc2/8-3-30.ltx + RELOC/doc/latex/tlc2/8-3-31.ltx + RELOC/doc/latex/tlc2/8-3-32.ltx + RELOC/doc/latex/tlc2/8-3-33.ltx + RELOC/doc/latex/tlc2/8-3-34.ltx + RELOC/doc/latex/tlc2/8-3-35.ltx + RELOC/doc/latex/tlc2/8-3-36.ltx + RELOC/doc/latex/tlc2/8-3-37.ltx + RELOC/doc/latex/tlc2/8-3-38.ltx + RELOC/doc/latex/tlc2/8-3-39.ltx + RELOC/doc/latex/tlc2/8-3-4.ltx + RELOC/doc/latex/tlc2/8-3-5.ltx + RELOC/doc/latex/tlc2/8-3-6.ltx + RELOC/doc/latex/tlc2/8-3-7.ltx + RELOC/doc/latex/tlc2/8-3-8.ltx + RELOC/doc/latex/tlc2/8-3-9.ltx + RELOC/doc/latex/tlc2/8-4-1.ltx + RELOC/doc/latex/tlc2/8-4-10.ltx + RELOC/doc/latex/tlc2/8-4-11.ltx + RELOC/doc/latex/tlc2/8-4-12.ltx + RELOC/doc/latex/tlc2/8-4-13.ltx + RELOC/doc/latex/tlc2/8-4-14.ltx + RELOC/doc/latex/tlc2/8-4-2.ltx + RELOC/doc/latex/tlc2/8-4-3.ltx + RELOC/doc/latex/tlc2/8-4-4.ltx + RELOC/doc/latex/tlc2/8-4-5.ltx + RELOC/doc/latex/tlc2/8-4-6.ltx + RELOC/doc/latex/tlc2/8-4-7.ltx + RELOC/doc/latex/tlc2/8-4-8.ltx + RELOC/doc/latex/tlc2/8-4-9.ltx + RELOC/doc/latex/tlc2/8-5-1.ltx + RELOC/doc/latex/tlc2/8-5-2.ltx + RELOC/doc/latex/tlc2/8-5-3.ltx + RELOC/doc/latex/tlc2/8-5-4.ltx + RELOC/doc/latex/tlc2/8-6-1.ltx + RELOC/doc/latex/tlc2/8-6-2.ltx + RELOC/doc/latex/tlc2/8-6-3.ltx + RELOC/doc/latex/tlc2/8-6-4.ltx + RELOC/doc/latex/tlc2/8-7-1.ltx + RELOC/doc/latex/tlc2/8-7-2.ltx + RELOC/doc/latex/tlc2/8-7-3.ltx + RELOC/doc/latex/tlc2/8-7-4.ltx + RELOC/doc/latex/tlc2/8-7-5.ltx + RELOC/doc/latex/tlc2/8-7-6.ltx + RELOC/doc/latex/tlc2/8-7-7.ltx + RELOC/doc/latex/tlc2/8-8-1.ltx + RELOC/doc/latex/tlc2/8-8-10.ltx + RELOC/doc/latex/tlc2/8-8-11.ltx + RELOC/doc/latex/tlc2/8-8-12.ltx + RELOC/doc/latex/tlc2/8-8-13.ltx + RELOC/doc/latex/tlc2/8-8-14.ltx + RELOC/doc/latex/tlc2/8-8-15.ltx + RELOC/doc/latex/tlc2/8-8-16.ltx + RELOC/doc/latex/tlc2/8-8-17.ltx + RELOC/doc/latex/tlc2/8-8-18.ltx + RELOC/doc/latex/tlc2/8-8-19.ltx + RELOC/doc/latex/tlc2/8-8-2.ltx + RELOC/doc/latex/tlc2/8-8-20.ltx + RELOC/doc/latex/tlc2/8-8-21.ltx + RELOC/doc/latex/tlc2/8-8-22.ltx + RELOC/doc/latex/tlc2/8-8-23.ltx + RELOC/doc/latex/tlc2/8-8-24.ltx + RELOC/doc/latex/tlc2/8-8-25.ltx + RELOC/doc/latex/tlc2/8-8-3.ltx + RELOC/doc/latex/tlc2/8-8-4.ltx + RELOC/doc/latex/tlc2/8-8-5.ltx + RELOC/doc/latex/tlc2/8-8-6.ltx + RELOC/doc/latex/tlc2/8-8-7.ltx + RELOC/doc/latex/tlc2/8-8-8.ltx + RELOC/doc/latex/tlc2/8-8-9.ltx + RELOC/doc/latex/tlc2/8-9-1.ltx + RELOC/doc/latex/tlc2/8-9-2.ltx + RELOC/doc/latex/tlc2/8-9-3.ltx + RELOC/doc/latex/tlc2/8-9-4.ltx + RELOC/doc/latex/tlc2/8-9-5.ltx + RELOC/doc/latex/tlc2/8-9-6.ltx + RELOC/doc/latex/tlc2/8-9-7.ltx + RELOC/doc/latex/tlc2/8-9-8.ltx + RELOC/doc/latex/tlc2/9-2-1.ltx + RELOC/doc/latex/tlc2/9-2-2.ltx + RELOC/doc/latex/tlc2/9-2-3.ltx + RELOC/doc/latex/tlc2/9-2-4.ltx + RELOC/doc/latex/tlc2/9-2-5.ltx + RELOC/doc/latex/tlc2/9-2-6.ltx + RELOC/doc/latex/tlc2/9-2-7.ltx + RELOC/doc/latex/tlc2/9-2-8.ltx + RELOC/doc/latex/tlc2/9-3-1.ltx + RELOC/doc/latex/tlc2/9-3-10.ltx + RELOC/doc/latex/tlc2/9-3-11.ltx + RELOC/doc/latex/tlc2/9-3-12.ltx + RELOC/doc/latex/tlc2/9-3-13.ltx + RELOC/doc/latex/tlc2/9-3-14.ltx + RELOC/doc/latex/tlc2/9-3-15.ltx + RELOC/doc/latex/tlc2/9-3-16.ltx + RELOC/doc/latex/tlc2/9-3-17.ltx + RELOC/doc/latex/tlc2/9-3-18.ltx + RELOC/doc/latex/tlc2/9-3-19.ltx + RELOC/doc/latex/tlc2/9-3-2.ltx + RELOC/doc/latex/tlc2/9-3-20.ltx + RELOC/doc/latex/tlc2/9-3-21.ltx + RELOC/doc/latex/tlc2/9-3-22.ltx + RELOC/doc/latex/tlc2/9-3-23.ltx + RELOC/doc/latex/tlc2/9-3-24.ltx + RELOC/doc/latex/tlc2/9-3-25.ltx + RELOC/doc/latex/tlc2/9-3-26.ltx + RELOC/doc/latex/tlc2/9-3-27.ltx + RELOC/doc/latex/tlc2/9-3-28.ltx + RELOC/doc/latex/tlc2/9-3-29.ltx + RELOC/doc/latex/tlc2/9-3-3.ltx + RELOC/doc/latex/tlc2/9-3-30.ltx + RELOC/doc/latex/tlc2/9-3-31.ltx + RELOC/doc/latex/tlc2/9-3-32.ltx + RELOC/doc/latex/tlc2/9-3-33.ltx + RELOC/doc/latex/tlc2/9-3-34.ltx + RELOC/doc/latex/tlc2/9-3-35.ltx + RELOC/doc/latex/tlc2/9-3-36.ltx + RELOC/doc/latex/tlc2/9-3-37.ltx + RELOC/doc/latex/tlc2/9-3-38.ltx + RELOC/doc/latex/tlc2/9-3-39.ltx + RELOC/doc/latex/tlc2/9-3-4.ltx + RELOC/doc/latex/tlc2/9-3-5.ltx + RELOC/doc/latex/tlc2/9-3-6.ltx + RELOC/doc/latex/tlc2/9-3-7.ltx + RELOC/doc/latex/tlc2/9-3-8.ltx + RELOC/doc/latex/tlc2/9-3-9.ltx + RELOC/doc/latex/tlc2/9-4-1.ltx + RELOC/doc/latex/tlc2/9-4-2.ltx + RELOC/doc/latex/tlc2/9-4-3.ltx + RELOC/doc/latex/tlc2/9-4-4.ltx + RELOC/doc/latex/tlc2/9-4-5.ltx + RELOC/doc/latex/tlc2/9-5-1.ltx + RELOC/doc/latex/tlc2/A-1-1.ltx + RELOC/doc/latex/tlc2/A-1-10.ltx + RELOC/doc/latex/tlc2/A-1-11.ltx + RELOC/doc/latex/tlc2/A-1-12.ltx + RELOC/doc/latex/tlc2/A-1-13.ltx + RELOC/doc/latex/tlc2/A-1-14.ltx + RELOC/doc/latex/tlc2/A-1-15.ltx + RELOC/doc/latex/tlc2/A-1-16.ltx + RELOC/doc/latex/tlc2/A-1-17.ltx + RELOC/doc/latex/tlc2/A-1-2.ltx + RELOC/doc/latex/tlc2/A-1-3.ltx + RELOC/doc/latex/tlc2/A-1-4.ltx + RELOC/doc/latex/tlc2/A-1-5.ltx + RELOC/doc/latex/tlc2/A-1-6.ltx + RELOC/doc/latex/tlc2/A-1-7.ltx + RELOC/doc/latex/tlc2/A-1-8.ltx + RELOC/doc/latex/tlc2/A-1-9.ltx + RELOC/doc/latex/tlc2/A-2-1.ltx + RELOC/doc/latex/tlc2/A-2-10.ltx + RELOC/doc/latex/tlc2/A-2-11.ltx + RELOC/doc/latex/tlc2/A-2-12.ltx + RELOC/doc/latex/tlc2/A-2-13.ltx + RELOC/doc/latex/tlc2/A-2-14.ltx + RELOC/doc/latex/tlc2/A-2-15.ltx + RELOC/doc/latex/tlc2/A-2-16.ltx + RELOC/doc/latex/tlc2/A-2-17.ltx + RELOC/doc/latex/tlc2/A-2-18.ltx + RELOC/doc/latex/tlc2/A-2-19.ltx + RELOC/doc/latex/tlc2/A-2-2.ltx + RELOC/doc/latex/tlc2/A-2-20.ltx + RELOC/doc/latex/tlc2/A-2-21.ltx + RELOC/doc/latex/tlc2/A-2-3.ltx + RELOC/doc/latex/tlc2/A-2-4.ltx + RELOC/doc/latex/tlc2/A-2-5.ltx + RELOC/doc/latex/tlc2/A-2-6.ltx + RELOC/doc/latex/tlc2/A-2-7.ltx + RELOC/doc/latex/tlc2/A-2-8.ltx + RELOC/doc/latex/tlc2/A-2-9.ltx + RELOC/doc/latex/tlc2/A-3-1.ltx + RELOC/doc/latex/tlc2/A-3-10.ltx + RELOC/doc/latex/tlc2/A-3-11.ltx + RELOC/doc/latex/tlc2/A-3-2.ltx + RELOC/doc/latex/tlc2/A-3-3.ltx + RELOC/doc/latex/tlc2/A-3-4.ltx + RELOC/doc/latex/tlc2/A-3-5.ltx + RELOC/doc/latex/tlc2/A-3-6.ltx + RELOC/doc/latex/tlc2/A-3-7.ltx + RELOC/doc/latex/tlc2/A-3-8.ltx + RELOC/doc/latex/tlc2/A-3-9.ltx2 + RELOC/doc/latex/tlc2/B-3-1.ltx + RELOC/doc/latex/tlc2/Escher.ps + RELOC/doc/latex/tlc2/cat.ps + RELOC/doc/latex/tlc2/elephant.ps + RELOC/doc/latex/tlc2/indexexa.ltx + RELOC/doc/latex/tlc2/jura.bib + RELOC/doc/latex/tlc2/partial.toc + RELOC/doc/latex/tlc2/rosette.ps + RELOC/doc/latex/tlc2/tex.bib + RELOC/doc/latex/tlc2/ttctexa.cls + RELOC/doc/latex/tlc2/ttctexamargin.cls + RELOC/doc/latex/tlc2/ttctexareport.cls + RELOC/doc/latex/tlc2/w.eps + RELOC/doc/latex/tlc2/w.ps +catalogue-ctan /info/examples/tlc2 +catalogue-date 2012-06-24 19:27:06 +0200 +catalogue-license lppl + +name tocbibind +category Package +revision 20085 +shortdesc Add bibliography/index/contents to Table of Contents. +relocated 1 +longdesc Automatically adds the bibliography and/or the index and/or the +longdesc contents, etc., to the Table of Contents listing. +runfiles size=3 + RELOC/tex/latex/tocbibind/tocbibind.sty +docfiles size=77 + RELOC/doc/latex/tocbibind/README + RELOC/doc/latex/tocbibind/tocbibind.pdf +srcfiles size=12 + RELOC/source/latex/tocbibind/tocbibind.dtx + RELOC/source/latex/tocbibind/tocbibind.ins +catalogue-ctan /macros/latex/contrib/tocbibind +catalogue-date 2012-06-24 19:27:06 +0200 +catalogue-license lppl +catalogue-version 1.5k + +name tocloft +category Package +revision 30209 +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 + RELOC/source/latex/tocloft/tocloft.dtx + RELOC/source/latex/tocloft/tocloft.ins +catalogue-ctan /macros/latex/contrib/tocloft +catalogue-date 2015-01-18 12:33:42 +0100 +catalogue-license lppl1.3 +catalogue-version 2.3f + +name tocvsec2 +category Package +revision 33146 +shortdesc Section numbering and table of contents control. +relocated 1 +longdesc Provides control over section numbering (without recourse to +longdesc starred sectional commands) and/or the entries in the Table of +longdesc Contents on a section by section basis. +runfiles size=2 + RELOC/tex/latex/tocvsec2/tocvsec2.sty +docfiles size=76 + RELOC/doc/latex/tocvsec2/README + RELOC/doc/latex/tocvsec2/tocvsec2-example.tex + RELOC/doc/latex/tocvsec2/tocvsec2.pdf +srcfiles size=8 + RELOC/source/latex/tocvsec2/tocvsec2.dtx + RELOC/source/latex/tocvsec2/tocvsec2.ins +catalogue-ctan /macros/latex/contrib/tocvsec2 +catalogue-date 2014-03-10 12:04:22 +0100 +catalogue-license lppl1.3 +catalogue-version 1.3a + +name todonotes +category Package +revision 37829 +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 + 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/source/latex/todonotes/todonotes.dtx + RELOC/source/latex/todonotes/todonotes.ins +catalogue-also todo +catalogue-ctan /macros/latex/contrib/todonotes +catalogue-date 2015-07-10 19:33:04 +0200 +catalogue-license lppl1.2 +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 + +name tokenizer +category Package +revision 15878 +shortdesc A tokenizer. +relocated 1 +longdesc A tokenizer for LaTeX. \GetTokens{Target1}{Target2}{Source} +longdesc splits source into two tokens at the first encounter of a +longdesc comma. The first token is saved in a newly created command with +longdesc the name passed as <Target1> and the second token likewise. A +longdesc package option 'trim' causes leading and trailing space to be +longdesc removed from each token; with this option, the \TrimSpaces +longdesc command is defined, which removes leading and trailing spaces +longdesc from its argument. +runfiles size=2 + RELOC/tex/latex/tokenizer/tokenizer.sty +docfiles size=22 + RELOC/doc/latex/tokenizer/tokenizer.pdf + RELOC/doc/latex/tokenizer/tokenizer.tex +catalogue-ctan /macros/latex/contrib/tokenizer +catalogue-date 2014-09-23 18:36:08 +0200 +catalogue-license lppl +catalogue-version 1.1.0 + +name toolbox +category Package +revision 32260 +shortdesc Tool macros. +relocated 1 +longdesc A package for (La)TeX which provides some macros which are +longdesc convenient for writing indexes, glossaries, or other macros. It +longdesc contains macros which support: implicit macros; fancy optional +longdesc arguments; loops over tokenlists and itemlists; searching and +longdesc splitting; controlled expansion; redefinition of macros; and +longdesc concatenated macro names; macros for text replacement. +runfiles size=3 + RELOC/tex/latex/toolbox/toolbox.sty +docfiles size=49 + RELOC/doc/latex/toolbox/README + RELOC/doc/latex/toolbox/toolbox.pdf + RELOC/doc/latex/toolbox/toolbox.tex + RELOC/doc/latex/toolbox/toolbox.txt +srcfiles size=29 + RELOC/source/latex/toolbox/toolbox.dtx + RELOC/source/latex/toolbox/toolbox.ins +catalogue-ctan /macros/latex/contrib/toolbox +catalogue-date 2013-11-27 01:19:45 +0100 +catalogue-license lppl +catalogue-version 5.1 + +name tools +category Package +revision 36834 +shortdesc The LaTeX standard tools bundle. +relocated 1 +longdesc A collection of (variously) simple tools provided as part of +longdesc the LaTeX required tools distribution, comprising the packages: +longdesc afterpage, array, bm, calc, dcolumn, delarray, enumerate, +longdesc fileerr, fontsmpl, ftnright, hhline, indentfirst, layout, +longdesc longtable, multicol, rawfonts, showkeys, somedefs, tabularx, +longdesc theorem, trace, varioref, verbatim, xr, and xspace. +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 + RELOC/doc/latex/tools/afterpage.pdf + RELOC/doc/latex/tools/array.pdf + RELOC/doc/latex/tools/bm.pdf + RELOC/doc/latex/tools/calc.pdf + RELOC/doc/latex/tools/changes.txt + RELOC/doc/latex/tools/dcolumn.pdf + RELOC/doc/latex/tools/delarray.pdf + RELOC/doc/latex/tools/enumerate.pdf + RELOC/doc/latex/tools/fileerr.pdf + RELOC/doc/latex/tools/fontsmpl.pdf + RELOC/doc/latex/tools/ftnright.pdf + RELOC/doc/latex/tools/hhline.pdf + RELOC/doc/latex/tools/indentfirst.pdf + RELOC/doc/latex/tools/layout.pdf + RELOC/doc/latex/tools/longtable.pdf + RELOC/doc/latex/tools/manifest.txt + RELOC/doc/latex/tools/multicol.pdf + RELOC/doc/latex/tools/rawfonts.pdf + RELOC/doc/latex/tools/showkeys.pdf + RELOC/doc/latex/tools/somedefs.pdf + RELOC/doc/latex/tools/tabularx.pdf + RELOC/doc/latex/tools/theorem.pdf + RELOC/doc/latex/tools/tools-overview.pdf + RELOC/doc/latex/tools/tools-overview.tex + RELOC/doc/latex/tools/trace.pdf + RELOC/doc/latex/tools/varioref.pdf + RELOC/doc/latex/tools/verbatim.pdf + RELOC/doc/latex/tools/xr.pdf + RELOC/doc/latex/tools/xspace.pdf +srcfiles size=252 + RELOC/source/latex/tools/afterpage.dtx + RELOC/source/latex/tools/afterpage.ins + RELOC/source/latex/tools/array.dtx + RELOC/source/latex/tools/bm.dtx + RELOC/source/latex/tools/bm.ins + RELOC/source/latex/tools/calc.dtx + RELOC/source/latex/tools/dcolumn.dtx + RELOC/source/latex/tools/delarray.dtx + RELOC/source/latex/tools/enumerate.dtx + RELOC/source/latex/tools/fileerr.dtx + RELOC/source/latex/tools/fontsmpl.dtx + RELOC/source/latex/tools/ftnright.dtx + RELOC/source/latex/tools/hhline.dtx + RELOC/source/latex/tools/indentfirst.dtx + RELOC/source/latex/tools/layout.dtx + RELOC/source/latex/tools/longtable.dtx + RELOC/source/latex/tools/longtable.ins + RELOC/source/latex/tools/multicol.dtx + RELOC/source/latex/tools/multicol.ins + RELOC/source/latex/tools/rawfonts.dtx + RELOC/source/latex/tools/showkeys.dtx + RELOC/source/latex/tools/somedefs.dtx + RELOC/source/latex/tools/tabularx.dtx + RELOC/source/latex/tools/tabularx.ins + RELOC/source/latex/tools/theorem.dtx + RELOC/source/latex/tools/tools.ins + RELOC/source/latex/tools/trace.dtx + RELOC/source/latex/tools/varioref.dtx + RELOC/source/latex/tools/varioref.ins + RELOC/source/latex/tools/verbatim.dtx + RELOC/source/latex/tools/xr.dtx + RELOC/source/latex/tools/xspace.dtx +catalogue-ctan /macros/latex/required/tools +catalogue-date 2015-04-13 07:39:17 +0200 +catalogue-license lppl1.3 + +name topfloat +category Package +revision 19084 +shortdesc Move floats to the top of the page. +relocated 1 +runfiles size=1 + RELOC/tex/latex/topfloat/topfloat.sty +docfiles size=15 + RELOC/doc/latex/topfloat/topfloat.pdf + RELOC/doc/latex/topfloat/topfloat.tex +catalogue-ctan /macros/latex/contrib/topfloat +catalogue-date 2012-08-24 15:51:53 +0200 +catalogue-license gpl + +name toptesi +category Package +revision 35916 +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 language supported by LaTeX: the bundle is constructed to +longdesc support multilingual use). The infix strings may be selected +longdesc and specified at will by means of a configuration file, so as +longdesc to customize the layout of the front page to the requirements +longdesc of a specific university. Thanks to its language management, +longdesc the bundle is suited for multilanguage theses that are becoming +longdesc more and more frequent thanks to the double degree programs of +longdesc the European Community Socrates programs. Toptesi is designed +longdesc to save the PDF version of a thesis in PDF/A-1b compliant mode +longdesc and with all the necessary metadata. +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 + 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/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/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-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/source/latex/toptesi/toptesi.dtx +catalogue-ctan /macros/latex/contrib/toptesi +catalogue-date 2014-12-28 08:03:05 +0100 +catalogue-license lppl1.3 +catalogue-version 5.86f + +name totcount +category Package +revision 21178 +shortdesc Find the last value of a counter. +relocated 1 +longdesc The package records the value that was last set, for any +longdesc counter of interest; since most such counters are simply +longdesc incremented when they are changed, the recorded value will +longdesc usually be the maximum value. +runfiles size=2 + RELOC/tex/latex/totcount/totcount.sty +docfiles size=72 + RELOC/doc/latex/totcount/README + RELOC/doc/latex/totcount/totcount-ex.tex + RELOC/doc/latex/totcount/totcount.pdf +srcfiles size=8 + RELOC/source/latex/totcount/totcount.drv + RELOC/source/latex/totcount/totcount.dtx + RELOC/source/latex/totcount/totcount.ins +catalogue-ctan /macros/latex/contrib/totcount +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name totpages +category Package +revision 15878 +shortdesc Count pages in a document, and report last page number. +relocated 1 +longdesc The package counts the actual pages in the document (as opposed +longdesc to reporting the number of the last page, as does lastpage). +longdesc The counter itself may be shipped out to the DVI file. The +longdesc package uses the everyshi package for its task. +runfiles size=2 + RELOC/tex/latex/totpages/totpages.sty +docfiles size=52 + RELOC/doc/latex/totpages/README + RELOC/doc/latex/totpages/totexmpl.tex + RELOC/doc/latex/totpages/totpages.pdf +srcfiles size=9 + RELOC/source/latex/totpages/totpages.drv + RELOC/source/latex/totpages/totpages.dtx + RELOC/source/latex/totpages/totpages.ins +catalogue-ctan /macros/latex/contrib/totpages +catalogue-date 2012-03-07 12:52:16 +0100 +catalogue-license lppl +catalogue-version 2.00 + +name tpic2pdftex +category TLCore +revision 37078 +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 + texmf-dist/doc/man/man1/tpic2pdftex.1 + texmf-dist/doc/man/man1/tpic2pdftex.man1.pdf + texmf-dist/doc/tpic2pdftex/Makefile + texmf-dist/doc/tpic2pdftex/beamerexample.pdf + texmf-dist/doc/tpic2pdftex/beamerexample.pic + texmf-dist/doc/tpic2pdftex/example.pdf + texmf-dist/doc/tpic2pdftex/example.pic +catalogue-ctan /graphics/tpic2pdftex +catalogue-date 2015-03-27 20:48:30 +0100 +catalogue-license gpl + +name tpic2pdftex.i386-linux +category TLCore +revision 29741 +shortdesc i386-linux files of tpic2pdftex +binfiles arch=i386-linux size=4 + bin/i386-linux/tpic2pdftex + +name tpslifonts +category Package +revision 27464 +shortdesc A LaTeX package for configuring presentation fonts. +relocated 1 +longdesc This package aims to improve of font readability in +longdesc presentations, especially with maths. The standard cm maths +longdesc fonts at large design sizes are difficult to read from far +longdesc away, especially at low resolutions and low contrast color +longdesc choice. Using this package leads to much better overall +longdesc readability of some font combinations. The package offers a +longdesc couple of 'harmonising' combinations of text and maths fonts +longdesc from the (distant) relatives of computer modern fonts, with a +longdesc couple of extras for optimising readability. Text fonts from +longdesc computer modern roman, computer modern sans serif, SliTeX +longdesc computer modern sans serif, computer modern bright, or concrete +longdesc roman are available, in addition to maths fonts from computer +longdesc modern maths, computer modern bright maths, or Euler fonts. The +longdesc package is part of the TeXPower bundle. +runfiles size=8 + RELOC/tex/latex/tpslifonts/tpslifonts.sty +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 +srcfiles size=14 + RELOC/source/latex/tpslifonts/tpslifonts.dtx + RELOC/source/latex/tpslifonts/tpslifonts.ins +catalogue-ctan /macros/latex/contrib/texpower/tpslifonts +catalogue-date 2014-05-31 20:41:06 +0200 +catalogue-license gpl +catalogue-version 0.6 + +name tqft +category Package +revision 33411 +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 + RELOC/doc/latex/tqft/README + RELOC/doc/latex/tqft/tqft_doc.pdf + RELOC/doc/latex/tqft/tqft_doc.tex +srcfiles size=21 + RELOC/source/latex/tqft/tqft.dtx + RELOC/source/latex/tqft/tqft.ins +catalogue-ctan /macros/latex/contrib/tqft +catalogue-date 2014-04-08 15:56:54 +0200 +catalogue-license lppl1.3 +catalogue-version 2.0 + +name tracklang +category Package +revision 36603 +shortdesc Language and dialect tracker. +relocated 1 +longdesc The tracklang package is provided for package developers who +longdesc want a simple interface to find out which languages the user +longdesc has requested through packages such as babel or polyglossia. +longdesc This package does not provide any translations! Its purpose is +longdesc simply to track which languages have been requested by the +longdesc user. Generic TeX code is in tracklang.tex for non-LaTeX users. +runfiles size=17 + RELOC/tex/generic/tracklang/tracklang.tex + RELOC/tex/latex/tracklang/tracklang.sty +docfiles size=204 + RELOC/doc/generic/tracklang/CHANGES + RELOC/doc/generic/tracklang/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.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.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.pdf + RELOC/doc/generic/tracklang/samples/animals/sample-animals.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-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.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.pdf + RELOC/doc/generic/tracklang/samples/regions/sample-regions2.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang2.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang2.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang3.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang3.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang4.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang4.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang5.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang5.tex + RELOC/doc/generic/tracklang/samples/sample-tracklang6.pdf + RELOC/doc/generic/tracklang/samples/sample-tracklang6.tex + RELOC/doc/generic/tracklang/tracklang.pdf +srcfiles size=39 + RELOC/source/latex/tracklang/tracklang.dtx + RELOC/source/latex/tracklang/tracklang.ins +catalogue-ctan /macros/generic/tracklang +catalogue-date 2015-03-23 20:26:19 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2 + +name trajan +category Package +revision 15878 +shortdesc Fonts from the Trajan column in Rome. +relocated 1 +longdesc Provides fonts (both as Metafont source and in Adobe Type 1 +longdesc format) based on the capitals carved on the Trajan column in +longdesc Rome in 114 AD, together with macros to access the fonts. Many +longdesc typographers think these rank first among the Roman's artistic +longdesc legacy. The font is uppercase letters together with some +longdesc punctuation and analphabetics; no lowercase or digits. +execute addMixedMap trajan.map +runfiles size=25 + RELOC/fonts/afm/public/trajan/trjnr10.afm + RELOC/fonts/afm/public/trajan/trjnsl10.afm + RELOC/fonts/map/dvips/trajan/trajan.map + RELOC/fonts/tfm/public/trajan/trjnr10.tfm + RELOC/fonts/tfm/public/trajan/trjnsl10.tfm + RELOC/fonts/type1/public/trajan/trjnr10.pfb + RELOC/fonts/type1/public/trajan/trjnsl10.pfb + RELOC/tex/latex/trajan/t1trjn.fd + RELOC/tex/latex/trajan/trajan.sty +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-license lppl +catalogue-version 1.1 + +name tram +category Package +revision 29803 +shortdesc Typeset tram boxes in LaTeX. +relocated 1 +longdesc Tram boxes are highlighted with patterns of dots; the package +longdesc defines an environment tram that typesets its content into a +longdesc tram box. The pattern used may be selected in an optional +longdesc argument to the environment. +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-ctan /macros/latex/contrib/tram +catalogue-date 2014-09-06 11:47:36 +0200 +catalogue-license lppl +catalogue-version 0.2 + +name translation-array-fr +category Package +revision 24344 +shortdesc French translation of the documentation of array. +relocated 1 +longdesc A French translation of the documentation of array. +docfiles size=188 + RELOC/doc/latex/translation-array-fr/Copyright + RELOC/doc/latex/translation-array-fr/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/ltxdoc.cfg +catalogue-ctan /info/translations/array/fr +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name translation-arsclassica-de +category Package +revision 23803 +shortdesc German version of arsclassica. +relocated 1 +longdesc This is a "translation" of the arsclassica documentation. +docfiles size=98 + RELOC/doc/latex/translation-arsclassica-de/ArsClassica-de.pdf + 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-license lppl + +name translation-biblatex-de +category Package +revision 24386 +shortdesc German translation of the documentation 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 +catalogue-ctan /info/translations/biblatex/de +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name translation-chemsym-de +category Package +revision 23804 +shortdesc German version of chemsym. +relocated 1 +longdesc This is a "translation" of the chemsym documentation. +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 +catalogue-ctan /info/translations/chemsym/de +catalogue-date 2012-08-24 00:56:38 +0200 +catalogue-license lppl + +name translation-dcolumn-fr +category Package +revision 24345 +shortdesc French translation of the documentation of dcolumn. +relocated 1 +longdesc A French translation of the documentation of dcolumn. +docfiles size=88 + RELOC/doc/latex/translation-dcolumn-fr/Copyright + RELOC/doc/latex/translation-dcolumn-fr/README + RELOC/doc/latex/translation-dcolumn-fr/f-dcolumn.dtx + RELOC/doc/latex/translation-dcolumn-fr/f-dcolumn.pdf +catalogue-ctan /info/translations/dcolumn/fr +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name translation-ecv-de +category Package +revision 24754 +shortdesc Ecv documentation, in German. +relocated 1 +longdesc This is a "translation" of the ecv documentation. +docfiles size=108 + RELOC/doc/latex/translation-ecv-de/ecvde.dtx.pdf + 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-license lppl + +name translation-enumitem-de +category Package +revision 24196 +shortdesc Enumitem documentation, in German. +relocated 1 +longdesc This is a translation of the manual for enumitem. +docfiles size=160 + RELOC/doc/latex/translation-enumitem-de/enumitem-de.pdf + 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-license lppl + +name translation-europecv-de +category Package +revision 23840 +shortdesc German version of europecv. +relocated 1 +longdesc This is a "translation" of the europecv documentation. +docfiles size=253 + RELOC/doc/latex/translation-europecv-de/Beispiele/at.pdf + RELOC/doc/latex/translation-europecv-de/Beispiele/bulgarian-koi8-r.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/bulgarian-utf8.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/greek-utf8.pdf + RELOC/doc/latex/translation-europecv-de/Beispiele/greek-utf8.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/maltese-maltese.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/maltese-utf8.tex + RELOC/doc/latex/translation-europecv-de/Beispiele/minimal.pdf + RELOC/doc/latex/translation-europecv-de/Beispiele/minimal.tex + RELOC/doc/latex/translation-europecv-de/europecv-de.pdf + RELOC/doc/latex/translation-europecv-de/europecv-de.tex + RELOC/doc/latex/translation-europecv-de/templates/cv_template_de.pdf + RELOC/doc/latex/translation-europecv-de/templates/cv_template_de.tex + RELOC/doc/latex/translation-europecv-de/templates/cv_template_en.pdf + RELOC/doc/latex/translation-europecv-de/templates/cv_template_en.tex + RELOC/doc/latex/translation-europecv-de/templates/cv_template_it.pdf + RELOC/doc/latex/translation-europecv-de/templates/cv_template_it.tex + RELOC/doc/latex/translation-europecv-de/templates/cv_template_pl.pdf + RELOC/doc/latex/translation-europecv-de/templates/cv_template_pl.tex + RELOC/doc/latex/translation-europecv-de/templates/publications.bib +catalogue-ctan /info/translations/europecv/de +catalogue-date 2012-08-23 23:37:14 +0200 +catalogue-license lppl + +name translation-filecontents-de +category Package +revision 24010 +shortdesc German version of filecontents. +relocated 1 +longdesc This is a "translation" of the filecontents documentation. +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 +catalogue-ctan /info/translations/filecontents/de +catalogue-date 2012-08-23 23:34:30 +0200 +catalogue-license lppl + +name translation-moreverb-de +category Package +revision 23957 +shortdesc German version of moreverb. +relocated 1 +longdesc This is a "translation" of the moreverb documentation. +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.tex +catalogue-ctan /info/translations/moreverb/de +catalogue-date 2012-08-23 23:34:30 +0200 +catalogue-license lppl + +name translation-natbib-fr +category Package +revision 25105 +shortdesc French translation of the documentation of natbib. +relocated 1 +longdesc A French translation of the documentation of natbib. +docfiles size=207 + RELOC/doc/latex/translation-natbib-fr/f-natbib.dtx + RELOC/doc/latex/translation-natbib-fr/f-natbib.pdf +catalogue-ctan /info/translations/natbib/fr +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name translations +category Package +revision 38308 +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 + RELOC/tex/latex/translations/translations-basic-dictionary-catalan.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-ctan /macros/latex/contrib/translations +catalogue-date 2015-09-06 13:02:17 +0200 +catalogue-license lppl1.3 +catalogue-topics multilingual package-supp +catalogue-version 1.2d + +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 tree-dvips +category Package +revision 21751 +shortdesc Trees and other linguists' macros. +relocated 1 +longdesc The package defines a mechanism for specifying connected trees +longdesc that uses a tabular environment to generate node positions. The +longdesc package uses PostScript code, loaded by dvips, so output can +longdesc only be generated by use of dvips. The package lingmacros.sty +longdesc defines a few macros for linguists: \enumsentence for +longdesc enumerating sentence examples, simple tabular-based 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 +docfiles size=42 + RELOC/doc/latex/tree-dvips/Makefile + RELOC/doc/latex/tree-dvips/README + RELOC/doc/latex/tree-dvips/README.TEXLIVE + RELOC/doc/latex/tree-dvips/lingmacros-manual.pdf + 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.tex +catalogue-ctan /macros/latex209/contrib/trees/tree-dvips +catalogue-date 2012-01-20 11:26:32 +0100 +catalogue-license lppl1 +catalogue-version 91 + +name treetex +category Package +revision 28176 +catalogue treetex-plain +shortdesc Draw trees. +relocated 1 +longdesc Macros to draw trees, within TeX (or LaTeX). The algorithm used +longdesc is discussed in an accompanying paper (written using LaTeX +longdesc 2.09). +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-license pd + +name trfsigns +category Package +revision 15878 +shortdesc Typeset transform signs. +relocated 1 +longdesc A package for typesetting various transformation signs for +longdesc Laplace transforms, Fourier transforms and others. +runfiles size=2 + RELOC/tex/latex/trfsigns/trfsigns.sty +docfiles size=59 + RELOC/doc/latex/trfsigns/COPYING + RELOC/doc/latex/trfsigns/README + RELOC/doc/latex/trfsigns/trfexamp.tex + RELOC/doc/latex/trfsigns/trfsigns.pdf +srcfiles size=6 + RELOC/source/latex/trfsigns/trfsigns.drv + RELOC/source/latex/trfsigns/trfsigns.dtx + RELOC/source/latex/trfsigns/trfsigns.ins +catalogue-ctan /macros/latex/contrib/trfsigns +catalogue-date 2012-08-23 23:34:30 +0200 +catalogue-license gpl +catalogue-version 1.01 + +name trimspaces +category Package +revision 15878 +shortdesc Trim spaces around an argument or within a macro. +relocated 1 +longdesc A very short package that allows you to expandably remove +longdesc spaces around a token list (commands are provided to remove +longdesc spaces before, spaces after, or both); or to remove surrounding +longdesc spaces within a macro definition, or to define space-stripped +longdesc macros. +runfiles size=1 + RELOC/tex/latex/trimspaces/trimspaces.sty +docfiles size=44 + RELOC/doc/latex/trimspaces/README + RELOC/doc/latex/trimspaces/trimspaces.pdf +srcfiles size=3 + RELOC/source/latex/trimspaces/trimspaces.ins + RELOC/source/latex/trimspaces/trimspaces.tex +catalogue-ctan /macros/latex/contrib/trimspaces +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name trivfloat +category Package +revision 15878 +shortdesc Quick float definitions in LaTeX. +relocated 1 +longdesc The trivfloat package provides a quick method for defining new +longdesc float types in LaTeX. A single command sets up a new float in +longdesc the same style as the LaTeX kernel figure and table float +longdesc types. The package works with memoir as well as the standard +longdesc classes. +runfiles size=2 + RELOC/tex/latex/trivfloat/trivfloat.sty +docfiles size=37 + RELOC/doc/latex/trivfloat/README + RELOC/doc/latex/trivfloat/trivfloat.pdf +srcfiles size=7 + RELOC/source/latex/trivfloat/trivfloat.dtx + RELOC/source/latex/trivfloat/trivfloat.ins +catalogue-ctan /macros/latex/contrib/trivfloat +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.3b + +name trsym +category Package +revision 18732 +shortdesc Symbols for transformations. +relocated 1 +longdesc The bundle provides Metafont source for a small font used for +longdesc (e.g.) Laplace transformations, together with a LaTeX .fd file +longdesc and a package providing commands for the symbols' use in +longdesc mathematics. +runfiles size=7 + RELOC/fonts/source/public/trsym/trsy.mf + RELOC/fonts/source/public/trsym/trsy10.mf + RELOC/fonts/source/public/trsym/trsy12.mf + RELOC/fonts/tfm/public/trsym/trsy10.tfm + RELOC/fonts/tfm/public/trsym/trsy12.tfm + RELOC/tex/latex/trsym/trsym.sty + RELOC/tex/latex/trsym/utrsy.fd +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-license lppl1.2 +catalogue-version 1.0 + +name truncate +category Package +revision 18921 +shortdesc Truncate text to a specified width. +relocated 1 +longdesc The package will by default break at word boundaries, but +longdesc package options are offered to permit breaks within words. +runfiles size=2 + RELOC/tex/latex/truncate/truncate.sty +docfiles size=42 + RELOC/doc/latex/truncate/miscdoc.sty + RELOC/doc/latex/truncate/truncate.pdf + RELOC/doc/latex/truncate/truncate.tex +catalogue-ctan /macros/latex/contrib/truncate +catalogue-date 2012-08-23 23:07:17 +0200 +catalogue-license pd +catalogue-version 3.6 + +name tsemlines +category Package +revision 23440 +shortdesc Support for the ancient \emline macro. +relocated 1 +longdesc Occasional Documents appear, that use graphics generated by +longdesc texcad from the emtex distribution. These documents often use +longdesc the \emline macro, which produced lines at an arbitrary +longdesc orientation. The present package emulates the macro, using +longdesc TikZ. +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-license pd +catalogue-version 1.0 + +name ttfutils +category TLCore +revision 37078 +depend ttfutils.ARCH +runfiles size=219 + texmf-dist/fonts/enc/ttf2pk/base/T1-WGL4.enc + texmf-dist/fonts/sfd/ttf2pk/Big5.sfd + texmf-dist/fonts/sfd/ttf2pk/EUC.sfd + texmf-dist/fonts/sfd/ttf2pk/HKSCS.sfd + texmf-dist/fonts/sfd/ttf2pk/KS-HLaTeX.sfd + texmf-dist/fonts/sfd/ttf2pk/SJIS.sfd + texmf-dist/fonts/sfd/ttf2pk/UBg5plus.sfd + texmf-dist/fonts/sfd/ttf2pk/UBig5.sfd + texmf-dist/fonts/sfd/ttf2pk/UGB.sfd + texmf-dist/fonts/sfd/ttf2pk/UGBK.sfd + texmf-dist/fonts/sfd/ttf2pk/UJIS.sfd + texmf-dist/fonts/sfd/ttf2pk/UKS-HLaTeX.sfd + texmf-dist/fonts/sfd/ttf2pk/UKS.sfd + texmf-dist/fonts/sfd/ttf2pk/Unicode.sfd + texmf-dist/ttf2pk/VPS.rpl + texmf-dist/ttf2pk/ttf2pk.cfg +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.i386-linux +category TLCore +revision 37100 +shortdesc i386-linux files of ttfutils +binfiles arch=i386-linux size=477 + bin/i386-linux/ttf2afm + bin/i386-linux/ttf2pk + bin/i386-linux/ttf2tfm + bin/i386-linux/ttfdump + +name tucv +category Package +revision 20680 +shortdesc Support for typesetting a CV or resumee. +relocated 1 +longdesc The package provides commands for typesetting a CV or resume. +longdesc It provides commands for general-purpose headings, entries, and +longdesc item/description pairs, as well as more specific commands for +longdesc formatting sections, with explicit inclusion of school, degree, +longdesc employer, job, conference, and publications entries. It tends +longdesc to produce a somewhat long and quite detailed document but may +longdesc also be suitable to support a shorter resume. The package +longdesc relies on a 'sufficiently recent' copy of the l3kernel and +longdesc l3packages bundles. +runfiles size=1 + RELOC/tex/latex/tucv/tucv.sty +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/tucv_ex.tex +srcfiles size=5 + RELOC/source/latex/tucv/tucv.dtx + RELOC/source/latex/tucv/tucv.ins +catalogue-ctan /macros/latex/contrib/tucv +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 1.0 + +name tudscr +category Package +revision 37945 +shortdesc The Corporate Design of TU 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 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 +longdesc used, but in this case, the created documents do not correspond +longdesc to the originally thought style. Employees and students of the +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 + 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 + 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/task.tex + RELOC/source/latex/tudscr/doc/examples/thesis.tex + RELOC/source/latex/tudscr/doc/examples/treatise-example.tex + RELOC/source/latex/tudscr/doc/tudscr-additional.tex + RELOC/source/latex/tudscr/doc/tudscr-bundle.tex + RELOC/source/latex/tudscr/doc/tudscr-examples.tex + RELOC/source/latex/tudscr/doc/tudscr-hints.tex + RELOC/source/latex/tudscr/doc/tudscr-index.tex + RELOC/source/latex/tudscr/doc/tudscr-installation.tex + RELOC/source/latex/tudscr/doc/tudscr-introduction.tex + RELOC/source/latex/tudscr/doc/tudscr-mainclasses.tex + RELOC/source/latex/tudscr/doc/tudscr-obsolete.tex + RELOC/source/latex/tudscr/doc/tudscr-packages.tex + RELOC/source/latex/tudscr/doc/tudscr-poster.tex + RELOC/source/latex/tudscr/doc/tudscr-preface.tex + RELOC/source/latex/tudscr/doc/tudscr.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-base.dtx + RELOC/source/latex/tudscr/tudscr-color.dtx + RELOC/source/latex/tudscr/tudscr-comp.dtx + RELOC/source/latex/tudscr/tudscr-doc.dtx + RELOC/source/latex/tudscr/tudscr-fields.dtx + RELOC/source/latex/tudscr/tudscr-fonts.dtx + RELOC/source/latex/tudscr/tudscr-frontmatter.dtx + RELOC/source/latex/tudscr/tudscr-layout.dtx + RELOC/source/latex/tudscr/tudscr-locale.dtx + RELOC/source/latex/tudscr/tudscr-manual.dtx + RELOC/source/latex/tudscr/tudscr-mathswap.dtx + RELOC/source/latex/tudscr/tudscr-misc.dtx + RELOC/source/latex/tudscr/tudscr-pagestyle.dtx + RELOC/source/latex/tudscr/tudscr-poster.dtx + RELOC/source/latex/tudscr/tudscr-supervisor.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 +catalogue-ctan /macros/latex/contrib/tudscr +catalogue-date 2015-07-24 14:52:08 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class +catalogue-version 2.04a + +name tufte-latex +category Package +revision 37649 +shortdesc Document classes inspired by the work of Edward Tufte. +relocated 1 +longdesc Provided are two classes inspired, respectively, by handouts +longdesc and books created by Edward Tufte. +depend xifthen +depend ifmtarg +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 +docfiles size=185 + RELOC/doc/latex/tufte-latex/History.txt + RELOC/doc/latex/tufte-latex/Manifest.txt + RELOC/doc/latex/tufte-latex/README.txt + RELOC/doc/latex/tufte-latex/graphics/be-contents.pdf + RELOC/doc/latex/tufte-latex/graphics/be-title.pdf + RELOC/doc/latex/tufte-latex/graphics/ei-contents.pdf + RELOC/doc/latex/tufte-latex/graphics/ei-title.pdf + RELOC/doc/latex/tufte-latex/graphics/helix.asy + RELOC/doc/latex/tufte-latex/graphics/helix.pdf + RELOC/doc/latex/tufte-latex/graphics/hilbertcurves.pdf + RELOC/doc/latex/tufte-latex/graphics/nasa_vision_sm.png + RELOC/doc/latex/tufte-latex/graphics/satir_graph.png + RELOC/doc/latex/tufte-latex/graphics/sine.asy + RELOC/doc/latex/tufte-latex/graphics/sine.pdf + RELOC/doc/latex/tufte-latex/graphics/vdqi-contents.pdf + RELOC/doc/latex/tufte-latex/graphics/vdqi-title.pdf + RELOC/doc/latex/tufte-latex/graphics/ve-contents.pdf + RELOC/doc/latex/tufte-latex/graphics/ve-title.pdf + RELOC/doc/latex/tufte-latex/sample-book.pdf + 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.tex +catalogue-ctan /macros/latex/contrib/tufte-latex +catalogue-date 2015-06-22 09:18:00 +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. +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 + RELOC/bibtex/bst/tugboat/ltugbib.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-ctan /macros/latex/contrib/tugboat +catalogue-date 2015-03-26 08:11:46 +0100 +catalogue-license lppl1.3 +catalogue-version 2.17 + +name tui +category Package +revision 27253 +shortdesc Thesis style for the University of the Andes, Colombia. +relocated 1 +longdesc Doctoral Dissertations from the Faculty of Engineering at the +longdesc Universidad de los Andes, Bogota, Colombia. The class is +longdesc implemented as an extension of the memoir class. Clase de Tesis +longdesc doctorales para ingenieria, Universidad de los Andes, Bogota. +runfiles size=3 + RELOC/tex/latex/tui/tui.cls +docfiles size=104 + RELOC/doc/latex/tui/README + RELOC/doc/latex/tui/TUIdoc.pdf + RELOC/doc/latex/tui/TUIdoc.tex + RELOC/doc/latex/tui/example/abstract.tex + RELOC/doc/latex/tui/example/agradec.tex + RELOC/doc/latex/tui/example/ap01.tex + RELOC/doc/latex/tui/example/bibliotesis.bib + RELOC/doc/latex/tui/example/ch01.tex + RELOC/doc/latex/tui/example/ch02.tex + RELOC/doc/latex/tui/example/ch03.tex + RELOC/doc/latex/tui/example/coleccion.tex + RELOC/doc/latex/tui/example/dedicat.tex + RELOC/doc/latex/tui/example/hyphenation.tex + RELOC/doc/latex/tui/example/imagen.pdf + RELOC/doc/latex/tui/example/intro.tex + RELOC/doc/latex/tui/example/lipsum.tex + RELOC/doc/latex/tui/example/listofsymbols.tex + RELOC/doc/latex/tui/example/main.tex + RELOC/doc/latex/tui/example/plegal.tex + RELOC/doc/latex/tui/example/portada.tex + RELOC/doc/latex/tui/example/resumen.tex + RELOC/doc/latex/tui/template/abstract.tex + RELOC/doc/latex/tui/template/agradec.tex + RELOC/doc/latex/tui/template/ap01.tex + RELOC/doc/latex/tui/template/bibliotesis.bib + RELOC/doc/latex/tui/template/ch01.tex + RELOC/doc/latex/tui/template/ch02.tex + RELOC/doc/latex/tui/template/ch03.tex + RELOC/doc/latex/tui/template/coleccion.tex + RELOC/doc/latex/tui/template/dedicat.tex + RELOC/doc/latex/tui/template/hyphenation.tex + RELOC/doc/latex/tui/template/intro.tex + RELOC/doc/latex/tui/template/listofsymbols.tex + RELOC/doc/latex/tui/template/main.tex + RELOC/doc/latex/tui/template/plegal.tex + RELOC/doc/latex/tui/template/portada.tex + RELOC/doc/latex/tui/template/resumen.tex +catalogue-ctan /macros/latex/contrib/tui +catalogue-date 2014-09-12 18:40:58 +0200 +catalogue-license lppl +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. +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 +docfiles size=4 + RELOC/doc/latex/turabian/README + RELOC/doc/latex/turabian/turabian.tex + RELOC/doc/latex/turabian/userguide.txt +catalogue-ctan /macros/latex/contrib/turabian +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license lppl +catalogue-version 0.1.0 + +name turkmen +category Package +revision 17748 +shortdesc Babel support for Turkmen. +relocated 1 +longdesc The package provides support for Turkmen in babel, but +longdesc integration with babel is not available. +runfiles size=1 + RELOC/tex/latex/turkmen/turkmen.ldf +docfiles size=30 + RELOC/doc/latex/turkmen/README + RELOC/doc/latex/turkmen/turkmen.pdf +srcfiles size=4 + RELOC/source/latex/turkmen/turkmen.dtx + RELOC/source/latex/turkmen/turkmen.ins +catalogue-ctan /language/turkmen +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.2 + +name turnstile +category Package +revision 15878 +shortdesc Typeset the (logic) turnstile notation. +relocated 1 +longdesc Among other uses, the turnstile sign is used by logicians for +longdesc denoting a consequence relation, related to a given logic, +longdesc between a collection of formulas and a derived formula. +runfiles size=3 + RELOC/tex/latex/turnstile/turnstile.sty +docfiles size=176 + RELOC/doc/latex/turnstile/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_article.tex + RELOC/doc/latex/turnstile/turnstile_artigo.pdf + RELOC/doc/latex/turnstile/turnstile_artigo.tex +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 +catalogue-ctan /macros/latex/contrib/turnstile +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +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 +docfiles size=45 + RELOC/doc/latex/turnthepage/Makefile + RELOC/doc/latex/turnthepage/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.tex +catalogue-ctan /macros/latex/contrib/turnthepage +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.3a + +name twoinone +category Package +revision 17024 +shortdesc Print two pages on a single page. +relocated 1 +longdesc The package is for printing two pages on a single (landscape) +longdesc A4 page. Page numbers appear on the included pages, and not on +longdesc the landscape 'container' page. +runfiles size=1 + RELOC/tex/latex/twoinone/2in1.sty +docfiles size=20 + RELOC/doc/latex/twoinone/twoinone.pdf + RELOC/doc/latex/twoinone/twoinone.tex +catalogue-ctan /macros/latex/contrib/twoinone +catalogue-date 2012-08-19 17:38:37 +0200 +catalogue-license pd + +name twoup +category Package +revision 15878 +catalogue twoupltx +shortdesc Print two virtual pages on each physical page. +relocated 1 +longdesc MiKTeX and many other TeX implementations include tools for +longdesc massaging PostScript into booklet and two-up printing -- that +longdesc is, printing two logical pages side by side on one side of one +longdesc sheet of paper. However, some LaTeX preliminaries are necessary +longdesc to use those tools. The twoup package provides such +longdesc preliminaries and gives advice on how to use the PostScript +longdesc tools. +runfiles size=2 + RELOC/tex/latex/twoup/twoup.sty +docfiles size=52 + RELOC/doc/latex/twoup/README + RELOC/doc/latex/twoup/twoup.pdf +srcfiles size=9 + RELOC/source/latex/twoup/twoup.dtx + RELOC/source/latex/twoup/twoup.ins +catalogue-ctan /macros/latex/contrib/twoup +catalogue-date 2012-08-19 17:50:37 +0200 +catalogue-license lppl +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. +relocated 1 +longdesc Txfonts supplies virtual text roman fonts using Adobe Times (or +longdesc URW NimbusRomNo9L) with some modified and additional text +longdesc symbols in the OT1, T1, and TS1 encodings; maths alphabets +longdesc using Times/URW Nimbus; maths fonts providing all the symbols +longdesc of the Computer Modern and AMS fonts, including all the Greek +longdesc capital letters from CMR; and additional maths fonts of various +longdesc other symbols. The set is complemented by a sans-serif set of +longdesc text fonts, based on Helvetica/NimbusSanL, and a monospace set. +longdesc All the fonts are in Type 1 format (AFM and PFB files), and are +longdesc supported by TeX metrics (VF and TFM files) and macros for use +longdesc with LaTeX. +execute addMap txfonts.map +runfiles size=558 + RELOC/fonts/afm/public/txfonts/rtcxb.afm + RELOC/fonts/afm/public/txfonts/rtcxbi.afm + RELOC/fonts/afm/public/txfonts/rtcxbss.afm + RELOC/fonts/afm/public/txfonts/rtcxi.afm + RELOC/fonts/afm/public/txfonts/rtcxr.afm + RELOC/fonts/afm/public/txfonts/rtcxss.afm + RELOC/fonts/afm/public/txfonts/rtxb.afm + RELOC/fonts/afm/public/txfonts/rtxbi.afm + RELOC/fonts/afm/public/txfonts/rtxbmi.afm + RELOC/fonts/afm/public/txfonts/rtxbsc.afm + RELOC/fonts/afm/public/txfonts/rtxbss.afm + RELOC/fonts/afm/public/txfonts/rtxbsssc.afm + RELOC/fonts/afm/public/txfonts/rtxi.afm + RELOC/fonts/afm/public/txfonts/rtxmi.afm + RELOC/fonts/afm/public/txfonts/rtxr.afm + RELOC/fonts/afm/public/txfonts/rtxsc.afm + RELOC/fonts/afm/public/txfonts/rtxss.afm + RELOC/fonts/afm/public/txfonts/rtxsssc.afm + RELOC/fonts/afm/public/txfonts/t1xbtt.afm + RELOC/fonts/afm/public/txfonts/t1xbttsc.afm + RELOC/fonts/afm/public/txfonts/t1xtt.afm + RELOC/fonts/afm/public/txfonts/t1xttsc.afm + RELOC/fonts/afm/public/txfonts/tcxbtt.afm + RELOC/fonts/afm/public/txfonts/tcxtt.afm + RELOC/fonts/afm/public/txfonts/txbex.afm + RELOC/fonts/afm/public/txfonts/txbexa.afm + RELOC/fonts/afm/public/txfonts/txbmia.afm + RELOC/fonts/afm/public/txfonts/txbsy.afm + RELOC/fonts/afm/public/txfonts/txbsya.afm + RELOC/fonts/afm/public/txfonts/txbsyb.afm + RELOC/fonts/afm/public/txfonts/txbsyc.afm + RELOC/fonts/afm/public/txfonts/txbtt.afm + RELOC/fonts/afm/public/txfonts/txbttsc.afm + RELOC/fonts/afm/public/txfonts/txex.afm + RELOC/fonts/afm/public/txfonts/txexa.afm + RELOC/fonts/afm/public/txfonts/txmia.afm + RELOC/fonts/afm/public/txfonts/txsy.afm + RELOC/fonts/afm/public/txfonts/txsya.afm + RELOC/fonts/afm/public/txfonts/txsyb.afm + RELOC/fonts/afm/public/txfonts/txsyc.afm + RELOC/fonts/afm/public/txfonts/txtt.afm + RELOC/fonts/afm/public/txfonts/txttsc.afm + RELOC/fonts/enc/dvips/txfonts/tx8r.enc + RELOC/fonts/map/dvips/txfonts/txfonts.map + RELOC/fonts/map/dvips/txfonts/txr.map + RELOC/fonts/map/dvips/txfonts/txr1.map + RELOC/fonts/map/dvips/txfonts/txr2.map + RELOC/fonts/map/dvips/txfonts/txr3.map + RELOC/fonts/tfm/public/txfonts/rtcxb.tfm + RELOC/fonts/tfm/public/txfonts/rtcxbi.tfm + RELOC/fonts/tfm/public/txfonts/rtcxbsl.tfm + RELOC/fonts/tfm/public/txfonts/rtcxbss.tfm + RELOC/fonts/tfm/public/txfonts/rtcxbsso.tfm + RELOC/fonts/tfm/public/txfonts/rtcxi.tfm + RELOC/fonts/tfm/public/txfonts/rtcxr.tfm + RELOC/fonts/tfm/public/txfonts/rtcxsl.tfm + RELOC/fonts/tfm/public/txfonts/rtcxss.tfm + RELOC/fonts/tfm/public/txfonts/rtcxsssl.tfm + RELOC/fonts/tfm/public/txfonts/rtxb.tfm + RELOC/fonts/tfm/public/txfonts/rtxbi.tfm + RELOC/fonts/tfm/public/txfonts/rtxbmi.tfm + RELOC/fonts/tfm/public/txfonts/rtxbsc.tfm + RELOC/fonts/tfm/public/txfonts/rtxbsl.tfm + RELOC/fonts/tfm/public/txfonts/rtxbss.tfm + RELOC/fonts/tfm/public/txfonts/rtxbsssc.tfm + RELOC/fonts/tfm/public/txfonts/rtxbsssl.tfm + RELOC/fonts/tfm/public/txfonts/rtxi.tfm + RELOC/fonts/tfm/public/txfonts/rtxmi.tfm + RELOC/fonts/tfm/public/txfonts/rtxphvb.tfm + RELOC/fonts/tfm/public/txfonts/rtxphvbo.tfm + RELOC/fonts/tfm/public/txfonts/rtxphvr.tfm + RELOC/fonts/tfm/public/txfonts/rtxphvro.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmb.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmbi.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmbo.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmr.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmri.tfm + RELOC/fonts/tfm/public/txfonts/rtxptmro.tfm + RELOC/fonts/tfm/public/txfonts/rtxr.tfm + RELOC/fonts/tfm/public/txfonts/rtxsc.tfm + RELOC/fonts/tfm/public/txfonts/rtxsl.tfm + RELOC/fonts/tfm/public/txfonts/rtxss.tfm + RELOC/fonts/tfm/public/txfonts/rtxsssc.tfm + RELOC/fonts/tfm/public/txfonts/rtxsssl.tfm + RELOC/fonts/tfm/public/txfonts/t1xb.tfm + RELOC/fonts/tfm/public/txfonts/t1xbi.tfm + RELOC/fonts/tfm/public/txfonts/t1xbsc.tfm + RELOC/fonts/tfm/public/txfonts/t1xbsl.tfm + RELOC/fonts/tfm/public/txfonts/t1xbss.tfm + RELOC/fonts/tfm/public/txfonts/t1xbsssc.tfm + RELOC/fonts/tfm/public/txfonts/t1xbsssl.tfm + RELOC/fonts/tfm/public/txfonts/t1xbtt.tfm + RELOC/fonts/tfm/public/txfonts/t1xbttsc.tfm + RELOC/fonts/tfm/public/txfonts/t1xbttsl.tfm + RELOC/fonts/tfm/public/txfonts/t1xi.tfm + RELOC/fonts/tfm/public/txfonts/t1xr.tfm + RELOC/fonts/tfm/public/txfonts/t1xsc.tfm + RELOC/fonts/tfm/public/txfonts/t1xsl.tfm + RELOC/fonts/tfm/public/txfonts/t1xss.tfm + RELOC/fonts/tfm/public/txfonts/t1xsssc.tfm + RELOC/fonts/tfm/public/txfonts/t1xsssl.tfm + RELOC/fonts/tfm/public/txfonts/t1xtt.tfm + RELOC/fonts/tfm/public/txfonts/t1xttsc.tfm + RELOC/fonts/tfm/public/txfonts/t1xttsl.tfm + RELOC/fonts/tfm/public/txfonts/tcxb.tfm + RELOC/fonts/tfm/public/txfonts/tcxbi.tfm + RELOC/fonts/tfm/public/txfonts/tcxbsl.tfm + RELOC/fonts/tfm/public/txfonts/tcxbss.tfm + RELOC/fonts/tfm/public/txfonts/tcxbsssl.tfm + RELOC/fonts/tfm/public/txfonts/tcxbtt.tfm + RELOC/fonts/tfm/public/txfonts/tcxbttsl.tfm + RELOC/fonts/tfm/public/txfonts/tcxi.tfm + RELOC/fonts/tfm/public/txfonts/tcxr.tfm + RELOC/fonts/tfm/public/txfonts/tcxsl.tfm + RELOC/fonts/tfm/public/txfonts/tcxss.tfm + RELOC/fonts/tfm/public/txfonts/tcxsssl.tfm + RELOC/fonts/tfm/public/txfonts/tcxtt.tfm + RELOC/fonts/tfm/public/txfonts/tcxttsl.tfm + RELOC/fonts/tfm/public/txfonts/txb.tfm + RELOC/fonts/tfm/public/txfonts/txbex.tfm + RELOC/fonts/tfm/public/txfonts/txbexa.tfm + RELOC/fonts/tfm/public/txfonts/txbi.tfm + RELOC/fonts/tfm/public/txfonts/txbmi.tfm + RELOC/fonts/tfm/public/txfonts/txbmi1.tfm + RELOC/fonts/tfm/public/txfonts/txbmia.tfm + RELOC/fonts/tfm/public/txfonts/txbsc.tfm + RELOC/fonts/tfm/public/txfonts/txbsl.tfm + RELOC/fonts/tfm/public/txfonts/txbss.tfm + RELOC/fonts/tfm/public/txfonts/txbsssc.tfm + RELOC/fonts/tfm/public/txfonts/txbsssl.tfm + RELOC/fonts/tfm/public/txfonts/txbsy.tfm + RELOC/fonts/tfm/public/txfonts/txbsya.tfm + RELOC/fonts/tfm/public/txfonts/txbsyb.tfm + RELOC/fonts/tfm/public/txfonts/txbsyc.tfm + RELOC/fonts/tfm/public/txfonts/txbtt.tfm + RELOC/fonts/tfm/public/txfonts/txbttsc.tfm + RELOC/fonts/tfm/public/txfonts/txbttsl.tfm + RELOC/fonts/tfm/public/txfonts/txex.tfm + RELOC/fonts/tfm/public/txfonts/txexa.tfm + RELOC/fonts/tfm/public/txfonts/txi.tfm + RELOC/fonts/tfm/public/txfonts/txmi.tfm + RELOC/fonts/tfm/public/txfonts/txmi1.tfm + RELOC/fonts/tfm/public/txfonts/txmia.tfm + RELOC/fonts/tfm/public/txfonts/txr.tfm + RELOC/fonts/tfm/public/txfonts/txsc.tfm + RELOC/fonts/tfm/public/txfonts/txsl.tfm + RELOC/fonts/tfm/public/txfonts/txss.tfm + RELOC/fonts/tfm/public/txfonts/txsssc.tfm + RELOC/fonts/tfm/public/txfonts/txsssl.tfm + RELOC/fonts/tfm/public/txfonts/txsy.tfm + RELOC/fonts/tfm/public/txfonts/txsya.tfm + RELOC/fonts/tfm/public/txfonts/txsyb.tfm + RELOC/fonts/tfm/public/txfonts/txsyc.tfm + RELOC/fonts/tfm/public/txfonts/txtt.tfm + RELOC/fonts/tfm/public/txfonts/txttsc.tfm + RELOC/fonts/tfm/public/txfonts/txttsl.tfm + RELOC/fonts/tfm/public/txfonts/tyxb.tfm + RELOC/fonts/tfm/public/txfonts/tyxbi.tfm + RELOC/fonts/tfm/public/txfonts/tyxbsc.tfm + RELOC/fonts/tfm/public/txfonts/tyxbsl.tfm + RELOC/fonts/tfm/public/txfonts/tyxbss.tfm + RELOC/fonts/tfm/public/txfonts/tyxbsssc.tfm + RELOC/fonts/tfm/public/txfonts/tyxbsssl.tfm + RELOC/fonts/tfm/public/txfonts/tyxbtt.tfm + RELOC/fonts/tfm/public/txfonts/tyxbttsc.tfm + RELOC/fonts/tfm/public/txfonts/tyxbttsl.tfm + RELOC/fonts/tfm/public/txfonts/tyxi.tfm + RELOC/fonts/tfm/public/txfonts/tyxr.tfm + RELOC/fonts/tfm/public/txfonts/tyxsc.tfm + RELOC/fonts/tfm/public/txfonts/tyxsl.tfm + RELOC/fonts/tfm/public/txfonts/tyxss.tfm + RELOC/fonts/tfm/public/txfonts/tyxsssc.tfm + RELOC/fonts/tfm/public/txfonts/tyxsssl.tfm + RELOC/fonts/tfm/public/txfonts/tyxtt.tfm + RELOC/fonts/tfm/public/txfonts/tyxttsc.tfm + RELOC/fonts/tfm/public/txfonts/tyxttsl.tfm + RELOC/fonts/type1/public/txfonts/rtcxb.pfb + RELOC/fonts/type1/public/txfonts/rtcxbi.pfb + RELOC/fonts/type1/public/txfonts/rtcxbss.pfb + RELOC/fonts/type1/public/txfonts/rtcxi.pfb + RELOC/fonts/type1/public/txfonts/rtcxr.pfb + RELOC/fonts/type1/public/txfonts/rtcxss.pfb + RELOC/fonts/type1/public/txfonts/rtxb.pfb + RELOC/fonts/type1/public/txfonts/rtxbi.pfb + RELOC/fonts/type1/public/txfonts/rtxbmi.pfb + RELOC/fonts/type1/public/txfonts/rtxbsc.pfb + RELOC/fonts/type1/public/txfonts/rtxbss.pfb + RELOC/fonts/type1/public/txfonts/rtxbsssc.pfb + RELOC/fonts/type1/public/txfonts/rtxi.pfb + RELOC/fonts/type1/public/txfonts/rtxmi.pfb + RELOC/fonts/type1/public/txfonts/rtxr.pfb + RELOC/fonts/type1/public/txfonts/rtxsc.pfb + RELOC/fonts/type1/public/txfonts/rtxss.pfb + RELOC/fonts/type1/public/txfonts/rtxsssc.pfb + RELOC/fonts/type1/public/txfonts/t1xbtt.pfb + RELOC/fonts/type1/public/txfonts/t1xbttsc.pfb + RELOC/fonts/type1/public/txfonts/t1xtt.pfb + RELOC/fonts/type1/public/txfonts/t1xttsc.pfb + RELOC/fonts/type1/public/txfonts/tcxbtt.pfb + RELOC/fonts/type1/public/txfonts/tcxtt.pfb + RELOC/fonts/type1/public/txfonts/txbex.pfb + RELOC/fonts/type1/public/txfonts/txbexa.pfb + RELOC/fonts/type1/public/txfonts/txbmia.pfb + RELOC/fonts/type1/public/txfonts/txbsy.pfb + RELOC/fonts/type1/public/txfonts/txbsya.pfb + RELOC/fonts/type1/public/txfonts/txbsyb.pfb + RELOC/fonts/type1/public/txfonts/txbsyc.pfb + RELOC/fonts/type1/public/txfonts/txbtt.pfb + RELOC/fonts/type1/public/txfonts/txbttsc.pfb + RELOC/fonts/type1/public/txfonts/txex.pfb + RELOC/fonts/type1/public/txfonts/txexa.pfb + RELOC/fonts/type1/public/txfonts/txmia.pfb + RELOC/fonts/type1/public/txfonts/txsy.pfb + RELOC/fonts/type1/public/txfonts/txsya.pfb + RELOC/fonts/type1/public/txfonts/txsyb.pfb + RELOC/fonts/type1/public/txfonts/txsyc.pfb + RELOC/fonts/type1/public/txfonts/txtt.pfb + RELOC/fonts/type1/public/txfonts/txttsc.pfb + RELOC/fonts/vf/public/txfonts/t1xb.vf + RELOC/fonts/vf/public/txfonts/t1xbi.vf + RELOC/fonts/vf/public/txfonts/t1xbsc.vf + RELOC/fonts/vf/public/txfonts/t1xbsl.vf + RELOC/fonts/vf/public/txfonts/t1xbss.vf + RELOC/fonts/vf/public/txfonts/t1xbsssc.vf + RELOC/fonts/vf/public/txfonts/t1xbsssl.vf + RELOC/fonts/vf/public/txfonts/t1xi.vf + RELOC/fonts/vf/public/txfonts/t1xr.vf + RELOC/fonts/vf/public/txfonts/t1xsc.vf + RELOC/fonts/vf/public/txfonts/t1xsl.vf + RELOC/fonts/vf/public/txfonts/t1xss.vf + RELOC/fonts/vf/public/txfonts/t1xsssc.vf + RELOC/fonts/vf/public/txfonts/t1xsssl.vf + RELOC/fonts/vf/public/txfonts/tcxb.vf + RELOC/fonts/vf/public/txfonts/tcxbi.vf + RELOC/fonts/vf/public/txfonts/tcxbsl.vf + RELOC/fonts/vf/public/txfonts/tcxbss.vf + RELOC/fonts/vf/public/txfonts/tcxbsssl.vf + RELOC/fonts/vf/public/txfonts/tcxi.vf + RELOC/fonts/vf/public/txfonts/tcxr.vf + RELOC/fonts/vf/public/txfonts/tcxsl.vf + RELOC/fonts/vf/public/txfonts/tcxss.vf + RELOC/fonts/vf/public/txfonts/tcxsssl.vf + RELOC/fonts/vf/public/txfonts/txb.vf + RELOC/fonts/vf/public/txfonts/txbi.vf + RELOC/fonts/vf/public/txfonts/txbmi.vf + RELOC/fonts/vf/public/txfonts/txbmi1.vf + RELOC/fonts/vf/public/txfonts/txbsc.vf + RELOC/fonts/vf/public/txfonts/txbsl.vf + RELOC/fonts/vf/public/txfonts/txbss.vf + RELOC/fonts/vf/public/txfonts/txbsssc.vf + RELOC/fonts/vf/public/txfonts/txbsssl.vf + RELOC/fonts/vf/public/txfonts/txi.vf + RELOC/fonts/vf/public/txfonts/txmi.vf + RELOC/fonts/vf/public/txfonts/txmi1.vf + RELOC/fonts/vf/public/txfonts/txr.vf + RELOC/fonts/vf/public/txfonts/txsc.vf + RELOC/fonts/vf/public/txfonts/txsl.vf + RELOC/fonts/vf/public/txfonts/txss.vf + RELOC/fonts/vf/public/txfonts/txsssc.vf + RELOC/fonts/vf/public/txfonts/txsssl.vf + RELOC/fonts/vf/public/txfonts/tyxb.vf + RELOC/fonts/vf/public/txfonts/tyxbi.vf + RELOC/fonts/vf/public/txfonts/tyxbsc.vf + RELOC/fonts/vf/public/txfonts/tyxbsl.vf + RELOC/fonts/vf/public/txfonts/tyxbss.vf + RELOC/fonts/vf/public/txfonts/tyxbsssc.vf + RELOC/fonts/vf/public/txfonts/tyxbsssl.vf + RELOC/fonts/vf/public/txfonts/tyxbtt.vf + RELOC/fonts/vf/public/txfonts/tyxbttsc.vf + RELOC/fonts/vf/public/txfonts/tyxbttsl.vf + RELOC/fonts/vf/public/txfonts/tyxi.vf + RELOC/fonts/vf/public/txfonts/tyxr.vf + RELOC/fonts/vf/public/txfonts/tyxsc.vf + RELOC/fonts/vf/public/txfonts/tyxsl.vf + RELOC/fonts/vf/public/txfonts/tyxss.vf + RELOC/fonts/vf/public/txfonts/tyxsssc.vf + RELOC/fonts/vf/public/txfonts/tyxsssl.vf + RELOC/fonts/vf/public/txfonts/tyxtt.vf + RELOC/fonts/vf/public/txfonts/tyxttsc.vf + RELOC/fonts/vf/public/txfonts/tyxttsl.vf + RELOC/tex/latex/txfonts/ly1txr.fd + RELOC/tex/latex/txfonts/ly1txss.fd + RELOC/tex/latex/txfonts/ly1txtt.fd + RELOC/tex/latex/txfonts/omltxmi.fd + RELOC/tex/latex/txfonts/omltxr.fd + RELOC/tex/latex/txfonts/omstxr.fd + RELOC/tex/latex/txfonts/omstxsy.fd + RELOC/tex/latex/txfonts/omxtxex.fd + RELOC/tex/latex/txfonts/ot1txr.fd + RELOC/tex/latex/txfonts/ot1txss.fd + RELOC/tex/latex/txfonts/ot1txtt.fd + RELOC/tex/latex/txfonts/t1txr.fd + RELOC/tex/latex/txfonts/t1txss.fd + RELOC/tex/latex/txfonts/t1txtt.fd + RELOC/tex/latex/txfonts/ts1txr.fd + RELOC/tex/latex/txfonts/ts1txss.fd + RELOC/tex/latex/txfonts/ts1txtt.fd + RELOC/tex/latex/txfonts/txfonts.sty + RELOC/tex/latex/txfonts/utxexa.fd + RELOC/tex/latex/txfonts/utxmia.fd + RELOC/tex/latex/txfonts/utxr.fd + RELOC/tex/latex/txfonts/utxss.fd + RELOC/tex/latex/txfonts/utxsya.fd + RELOC/tex/latex/txfonts/utxsyb.fd + RELOC/tex/latex/txfonts/utxsyc.fd + RELOC/tex/latex/txfonts/utxtt.fd +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-ctan /fonts/txfonts +catalogue-date 2014-05-31 21:01:32 +0200 +catalogue-license gpl + +name txgreeks +category Package +revision 21839 +shortdesc Shape selection for TX fonts Greek letters. +relocated 1 +longdesc The package allows LaTeX users who use the TX fonts to select +longdesc the shapes (italic or upright) for the Greek lowercase and +longdesc uppercase letters. Once the shapes for lowercase and uppercase +longdesc have been selected via a package option, the \other prefix +longdesc (e.g., \otheralpha) allows using the alternate glyph (as in the +longdesc fourier package). The txgreeks package does not constrain the +longdesc text font that may be used in the document. +runfiles size=2 + RELOC/tex/latex/txgreeks/txgreeks.sty +docfiles size=18 + RELOC/doc/latex/txgreeks/README + RELOC/doc/latex/txgreeks/txgreeks.pdf +srcfiles size=4 + RELOC/source/latex/txgreeks/txgreeks.dtx + RELOC/source/latex/txgreeks/txgreeks.ins +catalogue-ctan /macros/latex/contrib/txgreeks +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name type1cm +category Package +revision 21820 +shortdesc Arbitrary size font selection in LaTeX. +relocated 1 +longdesc LaTeX, by default, restricts the sizes at which you can use its +longdesc default computer modern fonts, to a fixed set of discrete sizes +longdesc (effectively, a set specified by Knuth). The type1cm package +longdesc removes this restriction; this is particularly useful when +longdesc using scalable versions of the cm fonts (Bakoma, or the +longdesc versions from BSR/Y&Y, or True Type versions from Kinch, PCTeX, +longdesc etc.). In fact, since modern distributions will automatically +longdesc generate any bitmap font you might need, type1cm has wider +longdesc application than just those using scaleable versions of the +longdesc fonts. Note that the LaTeX distribution now contains a package +longdesc fix-cm, which performs the task of type1cm, as well as doing +longdesc the same job for T1- and TS1-encoded ec fonts. +runfiles size=2 + RELOC/tex/latex/type1cm/type1cm.sty +docfiles size=83 + RELOC/doc/latex/type1cm/type1cm-doc.pdf + RELOC/doc/latex/type1cm/type1cm-doc.tex + RELOC/doc/latex/type1cm/type1cm.txt +srcfiles size=4 + RELOC/source/latex/type1cm/type1cm.fdd + RELOC/source/latex/type1cm/type1cm.ins +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 + +name typeface +category Package +revision 27046 +shortdesc Select a balanced set of fonts. +relocated 1 +longdesc The package provides the means of establishing a consistent set +longdesc of fonts for use in a LaTeX document. It allows mixing and +longdesc matching the Type 1 font sets available on the archive (and it +longdesc may be extended, via its configuration file, to support other +longdesc fonts). Font-set definition takes the form of a set of options +longdesc that are read when the package is loaded: for each typographic +longdesc category (main body font, sans-serif font, monospace font, +longdesc mathematics fonts, text figures, and so on), a font or a +longdesc transformation is given in those options. The approach enables +longdesc the user to remember their own configurations (as a single +longdesc command) and to borrow configurations that other users have +longdesc developed. The present release is designated "for review". +runfiles size=57 + RELOC/tex/latex/typeface/typeface.cfg + RELOC/tex/latex/typeface/typeface.sty +docfiles size=4487 + RELOC/doc/latex/typeface/README + RELOC/doc/latex/typeface/typeface-all-rm.pdf + RELOC/doc/latex/typeface/typeface-test.tex + RELOC/doc/latex/typeface/typeface.pdf + RELOC/doc/latex/typeface/typeface.tex +srcfiles size=6 + RELOC/source/latex/typeface/typeface-all-rm.bat +catalogue-ctan /macros/latex/contrib/typeface +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name typehtml +category Package +revision 17134 +shortdesc Typeset HTML directly from LaTeX. +relocated 1 +longdesc Can handle almost all of HTML2, and most of the math fragment +longdesc of the draft HTML3. +runfiles size=7 + RELOC/tex/latex/typehtml/typehtml.sty +docfiles size=47 + RELOC/doc/latex/typehtml/README + RELOC/doc/latex/typehtml/typehtml.pdf +srcfiles size=17 + RELOC/source/latex/typehtml/typehtml.dtx + RELOC/source/latex/typehtml/typehtml.ins +catalogue-ctan /macros/latex/contrib/typehtml +catalogue-date 2011-10-03 12:30:02 +0200 +catalogue-license lppl + +name typeoutfileinfo +category Package +revision 29349 +shortdesc Display class/package/file information. +longdesc The package provides a minimalist shell script, for Unix +longdesc systems, that displays the information content in a +longdesc \ProvidesFile, \ProvidesPackage or \ProvidesClass command in a +longdesc LaTeX source file. The package requires that the readprov +longdesc package is available. +depend typeoutfileinfo.ARCH +runfiles size=1 + texmf-dist/scripts/typeoutfileinfo/typeoutfileinfo.sh +docfiles size=1 + texmf-dist/doc/support/typeoutfileinfo/README +catalogue-ctan /support/typeoutfileinfo +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.31 + +name typeoutfileinfo.i386-linux +category Package +revision 25648 +shortdesc i386-linux files of typeoutfileinfo +binfiles arch=i386-linux size=1 + bin/i386-linux/typeoutfileinfo + +name typicons +category Package +revision 37623 +shortdesc Font containing a set of web-related icons. +relocated 1 +longdesc This package grants access to 336 web-related icons provided by +longdesc the included "Typicons" free font, designed by Stephen +longdesc Hutchings and released under the SIL Open Font License. See +longdesc http://www.typicons.com for more details about the font itself. +longdesc This package requires the fontspec package and either the +longdesc Xe(La)TeX or Lua(La)TeX engine to load the included ttf font. +longdesc Once the package is loaded, icons can be accessed through the +longdesc general \ticon command, which takes as argument the name of the +longdesc desired icon, or through direct commands specific to each icon. +longdesc The full list of icon designs, names and direct commands is +longdesc showcased in the manual. +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-license lppl1.3 +catalogue-topics font font-supp-symbol font-symbol font-ttf +catalogue-version 2.0.7 + +name typogrid +category Package +revision 24994 +shortdesc Print a typographic grid. +relocated 1 +longdesc Draws a grid on every page of the document; the grid divides +longdesc the page into columns, and may be used for fixing measurements +longdesc of layout. +runfiles size=2 + RELOC/tex/latex/typogrid/typogrid.sty +docfiles size=77 + RELOC/doc/latex/typogrid/ChangeLog + RELOC/doc/latex/typogrid/Makefile + RELOC/doc/latex/typogrid/README + RELOC/doc/latex/typogrid/getversion.tex + RELOC/doc/latex/typogrid/testtypogrid.tex + RELOC/doc/latex/typogrid/typogrid.pdf +srcfiles size=4 + RELOC/source/latex/typogrid/typogrid.dtx + RELOC/source/latex/typogrid/typogrid.ins +catalogue-ctan /macros/latex/contrib/typogrid +catalogue-date 2012-04-27 17:21:29 +0200 +catalogue-license lppl +catalogue-version 0.21 + +name uaclasses +category Package +revision 15878 +shortdesc University of Arizona thesis and dissertation format. +relocated 1 +longdesc This package provides a LaTeX2e document class named 'ua- +longdesc 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 +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/ua-example.tex +srcfiles size=13 + RELOC/source/latex/uaclasses/ua-classes.dtx + RELOC/source/latex/uaclasses/ua-classes.ins +catalogue-ctan /macros/latex/contrib/uaclasses +catalogue-date 2011-11-23 23:58:18 +0100 +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 + +name uafthesis +category Package +revision 29349 +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 +docfiles size=36 + RELOC/doc/latex/uafthesis/Makefile + RELOC/doc/latex/uafthesis/README.md + RELOC/doc/latex/uafthesis/bib_styles/agufull08.bst + RELOC/doc/latex/uafthesis/bib_styles/unsrtabbrv3.bst + RELOC/doc/latex/uafthesis/example/abstract.tex + RELOC/doc/latex/uafthesis/example/acknowledgements.tex + RELOC/doc/latex/uafthesis/example/apx1.tex + RELOC/doc/latex/uafthesis/example/build.sh + RELOC/doc/latex/uafthesis/example/ch1.tex + RELOC/doc/latex/uafthesis/example/ch2.tex + RELOC/doc/latex/uafthesis/example/ch3.tex + RELOC/doc/latex/uafthesis/example/custom-macros.tex + RELOC/doc/latex/uafthesis/example/example.loa.bk + RELOC/doc/latex/uafthesis/example/example.tex + RELOC/doc/latex/uafthesis/example/example.toc.bk + RELOC/doc/latex/uafthesis/example/fig/fivebatteries.png + RELOC/doc/latex/uafthesis/example/fig/onebattery.png + RELOC/doc/latex/uafthesis/example/quotepage.tex +catalogue-ctan /macros/latex/contrib/uafthesis +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 12.12 + +name uassign +category Package +revision 38326 +shortdesc Provides 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 + RELOC/doc/latex/uassign/uassign.tex +catalogue-ctan /macros/latex/contrib/uassign +catalogue-date 2015-09-08 08:01:50 +0200 +catalogue-license gpl2 +catalogue-topics class + +name ucbthesis +category Package +revision 37776 +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 +docfiles size=51 + RELOC/doc/latex/ucbthesis/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.tex +catalogue-ctan /macros/latex/contrib/ucbthesis +catalogue-date 2015-06-02 07:10:48 +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. +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 + +name ucharcat +category Package +revision 38197 +shortdesc Implementation of the (new in 2015) XeTeX \Ucharcat command in lua, for LuaTeX +relocated 1 +longdesc The package implements the \Ucharcat command for LuaLaTeX. +longdesc \Ucharcat is a new primitive in XeTeX, an extension of the +longdesc existing \Uchar command, that allows the specification of the +longdesc catcode as well as character code of the character token being +longdesc constructed. +runfiles size=1 + RELOC/tex/latex/ucharcat/ucharcat.sty +docfiles size=40 + RELOC/doc/latex/ucharcat/README + RELOC/doc/latex/ucharcat/ucharcat.pdf +srcfiles size=3 + RELOC/source/latex/ucharcat/ucharcat.dtx + RELOC/source/latex/ucharcat/ucharcat.ins +catalogue-ctan /macros/latex/contrib/ucharcat +catalogue-date 2015-08-24 06:16:32 +0200 +catalogue-license lppl +catalogue-topics lua-supp luatex +catalogue-version 0.02 + +name ucharclasses +category Package +revision 27820 +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 + RELOC/doc/xelatex/ucharclasses/ucharclasses.tex +catalogue-ctan /macros/xetex/latex/ucharclasses +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license pd +catalogue-version 2.0 + +name ucs +category Package +revision 35853 +shortdesc Extended UTF-8 input encoding support for LaTeX. +relocated 1 +longdesc The bundle provides the ucs package, and utf8x.def, together +longdesc with a large number of support files. The utf8x.def definition +longdesc file for use with inputenc covers a wider range of Unicode +longdesc characters than does utf8.def in the LaTeX distribution. The +longdesc package provides facilities for efficient use of its large sets +longdesc of Unicode characters. Glyph production may be controlled by +longdesc various options, which permits use of non-ASCII characters when +longdesc coding mathematical formulae. Note that the bundle previously +longdesc had an alias "unicode"; that alias has now been withdrawn, and +longdesc no package of that name now exists. +runfiles size=704 + RELOC/tex/latex/ucs/data/uni-0.def + RELOC/tex/latex/ucs/data/uni-1.def + RELOC/tex/latex/ucs/data/uni-100.def + RELOC/tex/latex/ucs/data/uni-101.def + RELOC/tex/latex/ucs/data/uni-102.def + RELOC/tex/latex/ucs/data/uni-103.def + RELOC/tex/latex/ucs/data/uni-104.def + RELOC/tex/latex/ucs/data/uni-105.def + RELOC/tex/latex/ucs/data/uni-106.def + RELOC/tex/latex/ucs/data/uni-107.def + RELOC/tex/latex/ucs/data/uni-108.def + RELOC/tex/latex/ucs/data/uni-109.def + RELOC/tex/latex/ucs/data/uni-110.def + RELOC/tex/latex/ucs/data/uni-111.def + RELOC/tex/latex/ucs/data/uni-112.def + RELOC/tex/latex/ucs/data/uni-113.def + RELOC/tex/latex/ucs/data/uni-114.def + RELOC/tex/latex/ucs/data/uni-115.def + RELOC/tex/latex/ucs/data/uni-116.def + RELOC/tex/latex/ucs/data/uni-117.def + RELOC/tex/latex/ucs/data/uni-118.def + RELOC/tex/latex/ucs/data/uni-119.def + RELOC/tex/latex/ucs/data/uni-12.def + RELOC/tex/latex/ucs/data/uni-120.def + RELOC/tex/latex/ucs/data/uni-121.def + RELOC/tex/latex/ucs/data/uni-122.def + RELOC/tex/latex/ucs/data/uni-123.def + RELOC/tex/latex/ucs/data/uni-124.def + RELOC/tex/latex/ucs/data/uni-125.def + RELOC/tex/latex/ucs/data/uni-126.def + RELOC/tex/latex/ucs/data/uni-127.def + RELOC/tex/latex/ucs/data/uni-128.def + RELOC/tex/latex/ucs/data/uni-129.def + RELOC/tex/latex/ucs/data/uni-130.def + RELOC/tex/latex/ucs/data/uni-131.def + RELOC/tex/latex/ucs/data/uni-132.def + RELOC/tex/latex/ucs/data/uni-133.def + RELOC/tex/latex/ucs/data/uni-134.def + RELOC/tex/latex/ucs/data/uni-135.def + RELOC/tex/latex/ucs/data/uni-136.def + RELOC/tex/latex/ucs/data/uni-137.def + RELOC/tex/latex/ucs/data/uni-138.def + RELOC/tex/latex/ucs/data/uni-139.def + RELOC/tex/latex/ucs/data/uni-14.def + RELOC/tex/latex/ucs/data/uni-140.def + RELOC/tex/latex/ucs/data/uni-141.def + RELOC/tex/latex/ucs/data/uni-142.def + RELOC/tex/latex/ucs/data/uni-143.def + RELOC/tex/latex/ucs/data/uni-144.def + RELOC/tex/latex/ucs/data/uni-145.def + RELOC/tex/latex/ucs/data/uni-146.def + RELOC/tex/latex/ucs/data/uni-147.def + RELOC/tex/latex/ucs/data/uni-148.def + RELOC/tex/latex/ucs/data/uni-149.def + RELOC/tex/latex/ucs/data/uni-150.def + RELOC/tex/latex/ucs/data/uni-151.def + RELOC/tex/latex/ucs/data/uni-152.def + RELOC/tex/latex/ucs/data/uni-153.def + RELOC/tex/latex/ucs/data/uni-154.def + RELOC/tex/latex/ucs/data/uni-155.def + RELOC/tex/latex/ucs/data/uni-156.def + RELOC/tex/latex/ucs/data/uni-157.def + RELOC/tex/latex/ucs/data/uni-158.def + RELOC/tex/latex/ucs/data/uni-159.def + RELOC/tex/latex/ucs/data/uni-167.def + RELOC/tex/latex/ucs/data/uni-172.def + RELOC/tex/latex/ucs/data/uni-173.def + RELOC/tex/latex/ucs/data/uni-174.def + RELOC/tex/latex/ucs/data/uni-175.def + RELOC/tex/latex/ucs/data/uni-176.def + RELOC/tex/latex/ucs/data/uni-177.def + RELOC/tex/latex/ucs/data/uni-178.def + RELOC/tex/latex/ucs/data/uni-179.def + RELOC/tex/latex/ucs/data/uni-18.def + RELOC/tex/latex/ucs/data/uni-180.def + RELOC/tex/latex/ucs/data/uni-181.def + RELOC/tex/latex/ucs/data/uni-182.def + RELOC/tex/latex/ucs/data/uni-183.def + RELOC/tex/latex/ucs/data/uni-184.def + RELOC/tex/latex/ucs/data/uni-185.def + RELOC/tex/latex/ucs/data/uni-186.def + RELOC/tex/latex/ucs/data/uni-187.def + RELOC/tex/latex/ucs/data/uni-188.def + RELOC/tex/latex/ucs/data/uni-189.def + RELOC/tex/latex/ucs/data/uni-19.def + RELOC/tex/latex/ucs/data/uni-190.def + RELOC/tex/latex/ucs/data/uni-191.def + RELOC/tex/latex/ucs/data/uni-192.def + RELOC/tex/latex/ucs/data/uni-193.def + RELOC/tex/latex/ucs/data/uni-194.def + RELOC/tex/latex/ucs/data/uni-195.def + RELOC/tex/latex/ucs/data/uni-196.def + RELOC/tex/latex/ucs/data/uni-197.def + RELOC/tex/latex/ucs/data/uni-198.def + RELOC/tex/latex/ucs/data/uni-199.def + RELOC/tex/latex/ucs/data/uni-2.def + RELOC/tex/latex/ucs/data/uni-200.def + RELOC/tex/latex/ucs/data/uni-201.def + RELOC/tex/latex/ucs/data/uni-202.def + RELOC/tex/latex/ucs/data/uni-203.def + RELOC/tex/latex/ucs/data/uni-204.def + RELOC/tex/latex/ucs/data/uni-205.def + RELOC/tex/latex/ucs/data/uni-206.def + RELOC/tex/latex/ucs/data/uni-207.def + RELOC/tex/latex/ucs/data/uni-208.def + RELOC/tex/latex/ucs/data/uni-209.def + RELOC/tex/latex/ucs/data/uni-210.def + RELOC/tex/latex/ucs/data/uni-211.def + RELOC/tex/latex/ucs/data/uni-212.def + RELOC/tex/latex/ucs/data/uni-213.def + RELOC/tex/latex/ucs/data/uni-214.def + RELOC/tex/latex/ucs/data/uni-215.def + RELOC/tex/latex/ucs/data/uni-24.def + RELOC/tex/latex/ucs/data/uni-248.def + RELOC/tex/latex/ucs/data/uni-249.def + RELOC/tex/latex/ucs/data/uni-250.def + RELOC/tex/latex/ucs/data/uni-251.def + RELOC/tex/latex/ucs/data/uni-254.def + RELOC/tex/latex/ucs/data/uni-255.def + RELOC/tex/latex/ucs/data/uni-29.def + RELOC/tex/latex/ucs/data/uni-3.def + RELOC/tex/latex/ucs/data/uni-30.def + RELOC/tex/latex/ucs/data/uni-31.def + RELOC/tex/latex/ucs/data/uni-32.def + RELOC/tex/latex/ucs/data/uni-33.def + RELOC/tex/latex/ucs/data/uni-34.def + RELOC/tex/latex/ucs/data/uni-35.def + RELOC/tex/latex/ucs/data/uni-3584.def + RELOC/tex/latex/ucs/data/uni-36.def + RELOC/tex/latex/ucs/data/uni-37.def + RELOC/tex/latex/ucs/data/uni-38.def + RELOC/tex/latex/ucs/data/uni-39.def + RELOC/tex/latex/ucs/data/uni-4.def + RELOC/tex/latex/ucs/data/uni-40.def + RELOC/tex/latex/ucs/data/uni-42.def + RELOC/tex/latex/ucs/data/uni-44.def + RELOC/tex/latex/ucs/data/uni-46.def + RELOC/tex/latex/ucs/data/uni-465.def + RELOC/tex/latex/ucs/data/uni-468.def + RELOC/tex/latex/ucs/data/uni-469.def + RELOC/tex/latex/ucs/data/uni-47.def + RELOC/tex/latex/ucs/data/uni-470.def + RELOC/tex/latex/ucs/data/uni-471.def + RELOC/tex/latex/ucs/data/uni-48.def + RELOC/tex/latex/ucs/data/uni-49.def + RELOC/tex/latex/ucs/data/uni-497.def + RELOC/tex/latex/ucs/data/uni-498.def + RELOC/tex/latex/ucs/data/uni-5.def + RELOC/tex/latex/ucs/data/uni-50.def + RELOC/tex/latex/ucs/data/uni-51.def + RELOC/tex/latex/ucs/data/uni-760.def + RELOC/tex/latex/ucs/data/uni-761.def + RELOC/tex/latex/ucs/data/uni-762.def + RELOC/tex/latex/ucs/data/uni-78.def + RELOC/tex/latex/ucs/data/uni-79.def + RELOC/tex/latex/ucs/data/uni-80.def + RELOC/tex/latex/ucs/data/uni-81.def + RELOC/tex/latex/ucs/data/uni-82.def + RELOC/tex/latex/ucs/data/uni-83.def + RELOC/tex/latex/ucs/data/uni-84.def + RELOC/tex/latex/ucs/data/uni-85.def + RELOC/tex/latex/ucs/data/uni-86.def + RELOC/tex/latex/ucs/data/uni-87.def + RELOC/tex/latex/ucs/data/uni-88.def + RELOC/tex/latex/ucs/data/uni-89.def + RELOC/tex/latex/ucs/data/uni-9.def + RELOC/tex/latex/ucs/data/uni-90.def + RELOC/tex/latex/ucs/data/uni-91.def + RELOC/tex/latex/ucs/data/uni-92.def + RELOC/tex/latex/ucs/data/uni-93.def + RELOC/tex/latex/ucs/data/uni-94.def + RELOC/tex/latex/ucs/data/uni-95.def + RELOC/tex/latex/ucs/data/uni-96.def + RELOC/tex/latex/ucs/data/uni-97.def + RELOC/tex/latex/ucs/data/uni-98.def + RELOC/tex/latex/ucs/data/uni-99.def + RELOC/tex/latex/ucs/data/uni-global.def + RELOC/tex/latex/ucs/data/uninames.dat + RELOC/tex/latex/ucs/ucs.sty + RELOC/tex/latex/ucs/ucsencs.def + RELOC/tex/latex/ucs/ucshyper.sty + RELOC/tex/latex/ucs/ucsutils.sty + RELOC/tex/latex/ucs/utf8x.def + RELOC/tex/latex/ucs/utils/UnicodeT.sfd + RELOC/tex/latex/ucs/utils/autofe.sty + RELOC/tex/latex/ucs/utils/c00enc.def + RELOC/tex/latex/ucs/utils/c10enc.def + RELOC/tex/latex/ucs/utils/c40enc.def + RELOC/tex/latex/ucs/utils/c42enc.def + RELOC/tex/latex/ucs/utils/c61enc.def + RELOC/tex/latex/ucs/utils/cenccmn.tex + RELOC/tex/latex/ucs/utils/cp1252.enc + RELOC/tex/latex/ucs/utils/ldvarial.fd + RELOC/tex/latex/ucs/utils/ldvc2000.fd + RELOC/tex/latex/ucs/utils/ldvenc.def + RELOC/tex/latex/ucs/utils/letc2000.fd + RELOC/tex/latex/ucs/utils/letenc.def + RELOC/tex/latex/ucs/utils/letgfzem.fd + RELOC/tex/latex/ucs/utils/letjiret.fd + RELOC/tex/latex/ucs/utils/lklenc.def + RELOC/tex/latex/ucs/utils/lklkli.fd + RELOC/tex/latex/ucs/utils/ltaarial.fd + RELOC/tex/latex/ucs/utils/ltac2000.fd + RELOC/tex/latex/ucs/utils/ltaenc.def + RELOC/tex/latex/ucs/utils/ltgc2000.fd + RELOC/tex/latex/ucs/utils/ltgenc.def + RELOC/tex/latex/ucs/utils/ltlcmr.fd + RELOC/tex/latex/ucs/utils/ltlenc.def + RELOC/tex/latex/ucs/utils/ltwdsnol.fd + RELOC/tex/latex/ucs/utils/ltwdsque.fd + RELOC/tex/latex/ucs/utils/ltwdssin.fd + RELOC/tex/latex/ucs/utils/ltwenc.def + RELOC/tex/latex/ucs/utils/lucarial.fd + RELOC/tex/latex/ucs/utils/lucc2000.fd + RELOC/tex/latex/ucs/utils/lucenc.def + RELOC/tex/latex/ucs/utils/mkrenc.def + RELOC/tex/latex/ucs/utils/mkrezra.fd + RELOC/tex/latex/ucs/utils/mkrhadas.fd + RELOC/tex/latex/ucs/utils/mkromega.fd + RELOC/tex/latex/ucs/utils/mkrrashi.fd + RELOC/tex/latex/ucs/utils/t2dcmr.fd + RELOC/tex/latex/ucs/utils/t2denc.def + RELOC/tex/latex/ucs/utils/tengwarDS.enc + RELOC/tex/latex/ucs/utils/xscmr.fd + RELOC/tex/latex/ucs/utils/xsenc.def +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-license lppl1.3 +catalogue-version 2.2 + +name ucthesis +category Package +revision 15878 +shortdesc University of California thesis format. +relocated 1 +longdesc A modified version of the standard LaTeX report style that is +longdesc accepted for use with University of California PhD +longdesc dissertations and Masters theses. A sample dissertation source +longdesc and bibliography are provided. +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-license lppl1.3 +catalogue-version 3.2 + +name udesoftec +category Package +revision 38298 +shortdesc Thesis class for the University of Duisburg-Essen +relocated 1 +longdesc The class is designed for typesetting theses in the Research +longdesc Group for Business Informatics and Software Engineering. (The +longdesc class may also serve as a template for such theses.) The class +longdesc is designed for use with pdfLaTeX; input in UTF-8 encoding is +longdesc assumed. +runfiles size=71 + RELOC/bibtex/bst/udesoftec/udesoftec.bst + RELOC/tex/latex/udesoftec/udesoftec-bibcommon.sty + RELOC/tex/latex/udesoftec/udesoftec-biblatex.sty + RELOC/tex/latex/udesoftec/udesoftec-bst.sty + RELOC/tex/latex/udesoftec/udesoftec-cover-uba.pdf + RELOC/tex/latex/udesoftec/udesoftec-cover-ude-de.pdf + RELOC/tex/latex/udesoftec/udesoftec-cover-ude-en.pdf + RELOC/tex/latex/udesoftec/udesoftec-extra.sty + RELOC/tex/latex/udesoftec/udesoftec.cls +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-ctan /macros/latex/contrib/udesoftec +catalogue-date 2015-09-04 19:17:42 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation bus-study class +catalogue-version 1.5.2 + +name uebungsblatt +category Package +revision 15878 +shortdesc A LaTeX class for writing exercise sheets. +relocated 1 +longdesc This package implements a LaTeX class for writing exercise +longdesc sheets for a lecture. Features: - quick typesetting of exercise +longdesc sheets or their revisions, - simple user friendly commands, - +longdesc elegant page formatting, - automatic numbering of exercises and +longdesc sub-exercises, - the number of the exercise sheet is extracted +longdesc automatically from the file name, - static information about +longdesc the lectures and the authors needs to provided at one point +longdesc only. +runfiles size=4 + RELOC/tex/latex/uebungsblatt/uebungsblatt.cls + RELOC/tex/latex/uebungsblatt/uebungsblatt.sty +docfiles size=63 + RELOC/doc/latex/uebungsblatt/README + RELOC/doc/latex/uebungsblatt/history.txt + RELOC/doc/latex/uebungsblatt/uebungsblatt-doc.pdf + RELOC/doc/latex/uebungsblatt/uebungsblatt-doc.tex +catalogue-ctan /macros/latex/contrib/uebungsblatt +catalogue-date 2012-01-14 17:47:45 +0100 +catalogue-license lppl +catalogue-version 1.5.0 + +name uestcthesis +category Package +revision 36371 +shortdesc Thesis class for UESTC +relocated 1 +longdesc The class is for typesetting a thesis at the University of +longdesc Electronic Science and Technology of China. +runfiles size=31 + RELOC/bibtex/bst/uestcthesis/uestcthesis.bst + RELOC/tex/latex/uestcthesis/uestcthesis.cls +docfiles size=1191 + RELOC/doc/latex/uestcthesis/README + RELOC/doc/latex/uestcthesis/doc/chapters/DuplicateMe.tex + RELOC/doc/latex/uestcthesis/doc/chapters/Matrix.java.tex + RELOC/doc/latex/uestcthesis/doc/chapters/Place_has_TrainDAO.java.tex + RELOC/doc/latex/uestcthesis/doc/chapters/implementation.tex + RELOC/doc/latex/uestcthesis/doc/chapters/math.tex + RELOC/doc/latex/uestcthesis/doc/chapters/test.c.tex + RELOC/doc/latex/uestcthesis/doc/chapters/tuition.tex + RELOC/doc/latex/uestcthesis/doc/contents/Cabstract.tex + RELOC/doc/latex/uestcthesis/doc/contents/Eabstract.tex + RELOC/doc/latex/uestcthesis/doc/contents/acknowledgements.tex + RELOC/doc/latex/uestcthesis/doc/contents/appendix.tex + RELOC/doc/latex/uestcthesis/doc/contents/cv.tex + RELOC/doc/latex/uestcthesis/doc/contents/original.tex + RELOC/doc/latex/uestcthesis/doc/contents/publications.bib + RELOC/doc/latex/uestcthesis/doc/contents/reference.bib + RELOC/doc/latex/uestcthesis/doc/contents/translation.tex + RELOC/doc/latex/uestcthesis/doc/pics/Chrysanthemum.jpg + RELOC/doc/latex/uestcthesis/doc/pics/Penguins.jpg + RELOC/doc/latex/uestcthesis/doc/pics/Tulips.jpg + RELOC/doc/latex/uestcthesis/doc/pics/apk.png + RELOC/doc/latex/uestcthesis/doc/pics/excel.png + RELOC/doc/latex/uestcthesis/doc/pics/fisher1.png + RELOC/doc/latex/uestcthesis/doc/pics/fisher2.png + RELOC/doc/latex/uestcthesis/doc/pics/flow1.png + RELOC/doc/latex/uestcthesis/doc/pics/flow3.png + RELOC/doc/latex/uestcthesis/doc/pics/flow4.png + RELOC/doc/latex/uestcthesis/doc/pics/flow5-1.png + RELOC/doc/latex/uestcthesis/doc/pics/flow5-2.png + RELOC/doc/latex/uestcthesis/doc/pics/flow5-3.png + RELOC/doc/latex/uestcthesis/doc/pics/highlight1.png + RELOC/doc/latex/uestcthesis/doc/pics/highlight2.png + RELOC/doc/latex/uestcthesis/doc/pics/system.png + RELOC/doc/latex/uestcthesis/doc/pics/winedt.png + RELOC/doc/latex/uestcthesis/doc/uestcthesis-doc.pdf + RELOC/doc/latex/uestcthesis/doc/uestcthesis-doc.tex + RELOC/doc/latex/uestcthesis/source/uestcthesis.dtx + RELOC/doc/latex/uestcthesis/source/uestcthesis.ins +catalogue-ctan /macros/latex/contrib/uestcthesis +catalogue-date 2015-02-24 13:44:17 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1.0 + +name uhc +category Package +revision 16791 +shortdesc Fonts for the Korean language. +relocated 1 +longdesc Support for Korean documents written in Korean standard KSC +longdesc codes for LaTeX2e. +execute addMap umj.map +runfiles size=4177 + RELOC/dvips/uhc/config.uhc + RELOC/fonts/afm/uhc/umj/umj00.afm + RELOC/fonts/afm/uhc/umj/umj01.afm + RELOC/fonts/afm/uhc/umj/umj02.afm + RELOC/fonts/afm/uhc/umj/umj03.afm + RELOC/fonts/afm/uhc/umj/umj04.afm + RELOC/fonts/afm/uhc/umj/umj05.afm + RELOC/fonts/afm/uhc/umj/umj10.afm + RELOC/fonts/afm/uhc/umj/umj11.afm + RELOC/fonts/afm/uhc/umj/umj12.afm + RELOC/fonts/afm/uhc/umj/umj13.afm + RELOC/fonts/afm/uhc/umj/umj14.afm + RELOC/fonts/afm/uhc/umj/umj15.afm + RELOC/fonts/afm/uhc/umj/umj16.afm + RELOC/fonts/afm/uhc/umj/umj17.afm + RELOC/fonts/afm/uhc/umj/umj20.afm + RELOC/fonts/afm/uhc/umj/umj21.afm + RELOC/fonts/afm/uhc/umj/umj22.afm + RELOC/fonts/afm/uhc/umj/umj23.afm + RELOC/fonts/afm/uhc/umj/umj24.afm + RELOC/fonts/afm/uhc/umj/umj25.afm + RELOC/fonts/afm/uhc/umj/umj26.afm + RELOC/fonts/afm/uhc/umj/umj27.afm + RELOC/fonts/afm/uhc/umj/umj28.afm + RELOC/fonts/afm/uhc/umj/umj29.afm + RELOC/fonts/afm/uhc/umj/umj30.afm + RELOC/fonts/afm/uhc/umj/umj31.afm + RELOC/fonts/afm/uhc/umj/umj32.afm + RELOC/fonts/afm/uhc/umj/umj33.afm + RELOC/fonts/afm/uhc/umj/umj34.afm + RELOC/fonts/afm/uhc/umj/umj35.afm + RELOC/fonts/afm/uhc/umj/umj36.afm + RELOC/fonts/afm/uhc/umj/umj37.afm + RELOC/fonts/afm/uhc/umj/umj38.afm + RELOC/fonts/map/dvips/uhc/umj.map + RELOC/fonts/tfm/uhc/umj/umj00.tfm + RELOC/fonts/tfm/uhc/umj/umj01.tfm + RELOC/fonts/tfm/uhc/umj/umj02.tfm + RELOC/fonts/tfm/uhc/umj/umj03.tfm + RELOC/fonts/tfm/uhc/umj/umj04.tfm + RELOC/fonts/tfm/uhc/umj/umj05.tfm + RELOC/fonts/tfm/uhc/umj/umj10.tfm + RELOC/fonts/tfm/uhc/umj/umj11.tfm + RELOC/fonts/tfm/uhc/umj/umj12.tfm + RELOC/fonts/tfm/uhc/umj/umj13.tfm + RELOC/fonts/tfm/uhc/umj/umj14.tfm + RELOC/fonts/tfm/uhc/umj/umj15.tfm + RELOC/fonts/tfm/uhc/umj/umj16.tfm + RELOC/fonts/tfm/uhc/umj/umj17.tfm + RELOC/fonts/tfm/uhc/umj/umj20.tfm + RELOC/fonts/tfm/uhc/umj/umj21.tfm + RELOC/fonts/tfm/uhc/umj/umj22.tfm + RELOC/fonts/tfm/uhc/umj/umj23.tfm + RELOC/fonts/tfm/uhc/umj/umj24.tfm + RELOC/fonts/tfm/uhc/umj/umj25.tfm + RELOC/fonts/tfm/uhc/umj/umj26.tfm + RELOC/fonts/tfm/uhc/umj/umj27.tfm + RELOC/fonts/tfm/uhc/umj/umj28.tfm + RELOC/fonts/tfm/uhc/umj/umj29.tfm + RELOC/fonts/tfm/uhc/umj/umj30.tfm + RELOC/fonts/tfm/uhc/umj/umj31.tfm + RELOC/fonts/tfm/uhc/umj/umj32.tfm + RELOC/fonts/tfm/uhc/umj/umj33.tfm + RELOC/fonts/tfm/uhc/umj/umj34.tfm + RELOC/fonts/tfm/uhc/umj/umj35.tfm + RELOC/fonts/tfm/uhc/umj/umj36.tfm + RELOC/fonts/tfm/uhc/umj/umj37.tfm + RELOC/fonts/tfm/uhc/umj/umj38.tfm + RELOC/fonts/tfm/uhc/umj/umjc00.tfm + RELOC/fonts/tfm/uhc/umj/umjc01.tfm + RELOC/fonts/tfm/uhc/umj/umjc02.tfm + RELOC/fonts/tfm/uhc/umj/umjc03.tfm + RELOC/fonts/tfm/uhc/umj/umjc04.tfm + RELOC/fonts/tfm/uhc/umj/umjc05.tfm + RELOC/fonts/tfm/uhc/umj/umjc10.tfm + RELOC/fonts/tfm/uhc/umj/umjc11.tfm + RELOC/fonts/tfm/uhc/umj/umjc12.tfm + RELOC/fonts/tfm/uhc/umj/umjc13.tfm + RELOC/fonts/tfm/uhc/umj/umjc14.tfm + RELOC/fonts/tfm/uhc/umj/umjc15.tfm + RELOC/fonts/tfm/uhc/umj/umjc16.tfm + RELOC/fonts/tfm/uhc/umj/umjc17.tfm + RELOC/fonts/tfm/uhc/umj/umjc20.tfm + RELOC/fonts/tfm/uhc/umj/umjc21.tfm + RELOC/fonts/tfm/uhc/umj/umjc22.tfm + RELOC/fonts/tfm/uhc/umj/umjc23.tfm + RELOC/fonts/tfm/uhc/umj/umjc24.tfm + RELOC/fonts/tfm/uhc/umj/umjc25.tfm + RELOC/fonts/tfm/uhc/umj/umjc26.tfm + RELOC/fonts/tfm/uhc/umj/umjc27.tfm + RELOC/fonts/tfm/uhc/umj/umjc28.tfm + RELOC/fonts/tfm/uhc/umj/umjc29.tfm + RELOC/fonts/tfm/uhc/umj/umjc30.tfm + RELOC/fonts/tfm/uhc/umj/umjc31.tfm + RELOC/fonts/tfm/uhc/umj/umjc32.tfm + RELOC/fonts/tfm/uhc/umj/umjc33.tfm + RELOC/fonts/tfm/uhc/umj/umjc34.tfm + RELOC/fonts/tfm/uhc/umj/umjc35.tfm + RELOC/fonts/tfm/uhc/umj/umjc36.tfm + RELOC/fonts/tfm/uhc/umj/umjc37.tfm + RELOC/fonts/tfm/uhc/umj/umjc38.tfm + RELOC/fonts/tfm/uhc/umj/umjco00.tfm + RELOC/fonts/tfm/uhc/umj/umjco01.tfm + RELOC/fonts/tfm/uhc/umj/umjco02.tfm + RELOC/fonts/tfm/uhc/umj/umjco03.tfm + RELOC/fonts/tfm/uhc/umj/umjco04.tfm + RELOC/fonts/tfm/uhc/umj/umjco05.tfm + RELOC/fonts/tfm/uhc/umj/umjco10.tfm + RELOC/fonts/tfm/uhc/umj/umjco11.tfm + RELOC/fonts/tfm/uhc/umj/umjco12.tfm + RELOC/fonts/tfm/uhc/umj/umjco13.tfm + RELOC/fonts/tfm/uhc/umj/umjco14.tfm + RELOC/fonts/tfm/uhc/umj/umjco15.tfm + RELOC/fonts/tfm/uhc/umj/umjco16.tfm + RELOC/fonts/tfm/uhc/umj/umjco17.tfm + RELOC/fonts/tfm/uhc/umj/umjco20.tfm + RELOC/fonts/tfm/uhc/umj/umjco21.tfm + RELOC/fonts/tfm/uhc/umj/umjco22.tfm + RELOC/fonts/tfm/uhc/umj/umjco23.tfm + RELOC/fonts/tfm/uhc/umj/umjco24.tfm + RELOC/fonts/tfm/uhc/umj/umjco25.tfm + RELOC/fonts/tfm/uhc/umj/umjco26.tfm + RELOC/fonts/tfm/uhc/umj/umjco27.tfm + RELOC/fonts/tfm/uhc/umj/umjco28.tfm + RELOC/fonts/tfm/uhc/umj/umjco29.tfm + RELOC/fonts/tfm/uhc/umj/umjco30.tfm + RELOC/fonts/tfm/uhc/umj/umjco31.tfm + RELOC/fonts/tfm/uhc/umj/umjco32.tfm + RELOC/fonts/tfm/uhc/umj/umjco33.tfm + RELOC/fonts/tfm/uhc/umj/umjco34.tfm + RELOC/fonts/tfm/uhc/umj/umjco35.tfm + RELOC/fonts/tfm/uhc/umj/umjco36.tfm + RELOC/fonts/tfm/uhc/umj/umjco37.tfm + RELOC/fonts/tfm/uhc/umj/umjco38.tfm + RELOC/fonts/tfm/uhc/umj/umjo00.tfm + RELOC/fonts/tfm/uhc/umj/umjo01.tfm + RELOC/fonts/tfm/uhc/umj/umjo02.tfm + RELOC/fonts/tfm/uhc/umj/umjo03.tfm + RELOC/fonts/tfm/uhc/umj/umjo04.tfm + RELOC/fonts/tfm/uhc/umj/umjo05.tfm + RELOC/fonts/tfm/uhc/umj/umjo10.tfm + RELOC/fonts/tfm/uhc/umj/umjo11.tfm + RELOC/fonts/tfm/uhc/umj/umjo12.tfm + RELOC/fonts/tfm/uhc/umj/umjo13.tfm + RELOC/fonts/tfm/uhc/umj/umjo14.tfm + RELOC/fonts/tfm/uhc/umj/umjo15.tfm + RELOC/fonts/tfm/uhc/umj/umjo16.tfm + RELOC/fonts/tfm/uhc/umj/umjo17.tfm + RELOC/fonts/tfm/uhc/umj/umjo20.tfm + RELOC/fonts/tfm/uhc/umj/umjo21.tfm + RELOC/fonts/tfm/uhc/umj/umjo22.tfm + RELOC/fonts/tfm/uhc/umj/umjo23.tfm + RELOC/fonts/tfm/uhc/umj/umjo24.tfm + RELOC/fonts/tfm/uhc/umj/umjo25.tfm + RELOC/fonts/tfm/uhc/umj/umjo26.tfm + RELOC/fonts/tfm/uhc/umj/umjo27.tfm + RELOC/fonts/tfm/uhc/umj/umjo28.tfm + RELOC/fonts/tfm/uhc/umj/umjo29.tfm + RELOC/fonts/tfm/uhc/umj/umjo30.tfm + RELOC/fonts/tfm/uhc/umj/umjo31.tfm + RELOC/fonts/tfm/uhc/umj/umjo32.tfm + RELOC/fonts/tfm/uhc/umj/umjo33.tfm + RELOC/fonts/tfm/uhc/umj/umjo34.tfm + RELOC/fonts/tfm/uhc/umj/umjo35.tfm + RELOC/fonts/tfm/uhc/umj/umjo36.tfm + RELOC/fonts/tfm/uhc/umj/umjo37.tfm + RELOC/fonts/tfm/uhc/umj/umjo38.tfm + RELOC/fonts/tfm/uhc/umj/umju00.tfm + RELOC/fonts/tfm/uhc/umj/umju01.tfm + RELOC/fonts/tfm/uhc/umj/umju02.tfm + RELOC/fonts/tfm/uhc/umj/umju03.tfm + RELOC/fonts/tfm/uhc/umj/umju04.tfm + RELOC/fonts/tfm/uhc/umj/umju05.tfm + RELOC/fonts/tfm/uhc/umj/umju10.tfm + RELOC/fonts/tfm/uhc/umj/umju11.tfm + RELOC/fonts/tfm/uhc/umj/umju12.tfm + RELOC/fonts/tfm/uhc/umj/umju13.tfm + RELOC/fonts/tfm/uhc/umj/umju14.tfm + RELOC/fonts/tfm/uhc/umj/umju15.tfm + RELOC/fonts/tfm/uhc/umj/umju16.tfm + RELOC/fonts/tfm/uhc/umj/umju17.tfm + RELOC/fonts/tfm/uhc/umj/umju20.tfm + RELOC/fonts/tfm/uhc/umj/umju21.tfm + RELOC/fonts/tfm/uhc/umj/umju22.tfm + RELOC/fonts/tfm/uhc/umj/umju23.tfm + RELOC/fonts/tfm/uhc/umj/umju24.tfm + RELOC/fonts/tfm/uhc/umj/umju25.tfm + RELOC/fonts/tfm/uhc/umj/umju26.tfm + RELOC/fonts/tfm/uhc/umj/umju27.tfm + RELOC/fonts/tfm/uhc/umj/umju28.tfm + RELOC/fonts/tfm/uhc/umj/umju29.tfm + RELOC/fonts/tfm/uhc/umj/umju30.tfm + RELOC/fonts/tfm/uhc/umj/umju31.tfm + RELOC/fonts/tfm/uhc/umj/umju32.tfm + RELOC/fonts/tfm/uhc/umj/umju33.tfm + RELOC/fonts/tfm/uhc/umj/umju34.tfm + RELOC/fonts/tfm/uhc/umj/umju35.tfm + RELOC/fonts/tfm/uhc/umj/umju36.tfm + RELOC/fonts/tfm/uhc/umj/umju37.tfm + RELOC/fonts/tfm/uhc/umj/umju38.tfm + RELOC/fonts/tfm/uhc/umj/umjuo00.tfm + RELOC/fonts/tfm/uhc/umj/umjuo01.tfm + RELOC/fonts/tfm/uhc/umj/umjuo02.tfm + RELOC/fonts/tfm/uhc/umj/umjuo03.tfm + RELOC/fonts/tfm/uhc/umj/umjuo04.tfm + RELOC/fonts/tfm/uhc/umj/umjuo05.tfm + RELOC/fonts/tfm/uhc/umj/umjuo10.tfm + RELOC/fonts/tfm/uhc/umj/umjuo11.tfm + RELOC/fonts/tfm/uhc/umj/umjuo12.tfm + RELOC/fonts/tfm/uhc/umj/umjuo13.tfm + RELOC/fonts/tfm/uhc/umj/umjuo14.tfm + RELOC/fonts/tfm/uhc/umj/umjuo15.tfm + RELOC/fonts/tfm/uhc/umj/umjuo16.tfm + RELOC/fonts/tfm/uhc/umj/umjuo17.tfm + RELOC/fonts/tfm/uhc/umj/umjuo20.tfm + RELOC/fonts/tfm/uhc/umj/umjuo21.tfm + RELOC/fonts/tfm/uhc/umj/umjuo22.tfm + RELOC/fonts/tfm/uhc/umj/umjuo23.tfm + RELOC/fonts/tfm/uhc/umj/umjuo24.tfm + RELOC/fonts/tfm/uhc/umj/umjuo25.tfm + RELOC/fonts/tfm/uhc/umj/umjuo26.tfm + RELOC/fonts/tfm/uhc/umj/umjuo27.tfm + RELOC/fonts/tfm/uhc/umj/umjuo28.tfm + RELOC/fonts/tfm/uhc/umj/umjuo29.tfm + RELOC/fonts/tfm/uhc/umj/umjuo30.tfm + RELOC/fonts/tfm/uhc/umj/umjuo31.tfm + RELOC/fonts/tfm/uhc/umj/umjuo32.tfm + RELOC/fonts/tfm/uhc/umj/umjuo33.tfm + RELOC/fonts/tfm/uhc/umj/umjuo34.tfm + RELOC/fonts/tfm/uhc/umj/umjuo35.tfm + RELOC/fonts/tfm/uhc/umj/umjuo36.tfm + RELOC/fonts/tfm/uhc/umj/umjuo37.tfm + RELOC/fonts/tfm/uhc/umj/umjuo38.tfm + RELOC/fonts/tfm/uhc/umj/umjx00.tfm + RELOC/fonts/tfm/uhc/umj/umjx01.tfm + RELOC/fonts/tfm/uhc/umj/umjx02.tfm + RELOC/fonts/tfm/uhc/umj/umjx03.tfm + RELOC/fonts/tfm/uhc/umj/umjx04.tfm + RELOC/fonts/tfm/uhc/umj/umjx05.tfm + RELOC/fonts/tfm/uhc/umj/umjx10.tfm + RELOC/fonts/tfm/uhc/umj/umjx11.tfm + RELOC/fonts/tfm/uhc/umj/umjx12.tfm + RELOC/fonts/tfm/uhc/umj/umjx13.tfm + RELOC/fonts/tfm/uhc/umj/umjx14.tfm + RELOC/fonts/tfm/uhc/umj/umjx15.tfm + RELOC/fonts/tfm/uhc/umj/umjx16.tfm + RELOC/fonts/tfm/uhc/umj/umjx17.tfm + RELOC/fonts/tfm/uhc/umj/umjx20.tfm + RELOC/fonts/tfm/uhc/umj/umjx21.tfm + RELOC/fonts/tfm/uhc/umj/umjx22.tfm + RELOC/fonts/tfm/uhc/umj/umjx23.tfm + RELOC/fonts/tfm/uhc/umj/umjx24.tfm + RELOC/fonts/tfm/uhc/umj/umjx25.tfm + RELOC/fonts/tfm/uhc/umj/umjx26.tfm + RELOC/fonts/tfm/uhc/umj/umjx27.tfm + RELOC/fonts/tfm/uhc/umj/umjx28.tfm + RELOC/fonts/tfm/uhc/umj/umjx29.tfm + RELOC/fonts/tfm/uhc/umj/umjx30.tfm + RELOC/fonts/tfm/uhc/umj/umjx31.tfm + RELOC/fonts/tfm/uhc/umj/umjx32.tfm + RELOC/fonts/tfm/uhc/umj/umjx33.tfm + RELOC/fonts/tfm/uhc/umj/umjx34.tfm + RELOC/fonts/tfm/uhc/umj/umjx35.tfm + RELOC/fonts/tfm/uhc/umj/umjx36.tfm + RELOC/fonts/tfm/uhc/umj/umjx37.tfm + RELOC/fonts/tfm/uhc/umj/umjx38.tfm + RELOC/fonts/tfm/uhc/umj/umjxo00.tfm + RELOC/fonts/tfm/uhc/umj/umjxo01.tfm + RELOC/fonts/tfm/uhc/umj/umjxo02.tfm + RELOC/fonts/tfm/uhc/umj/umjxo03.tfm + RELOC/fonts/tfm/uhc/umj/umjxo04.tfm + RELOC/fonts/tfm/uhc/umj/umjxo05.tfm + RELOC/fonts/tfm/uhc/umj/umjxo10.tfm + RELOC/fonts/tfm/uhc/umj/umjxo11.tfm + RELOC/fonts/tfm/uhc/umj/umjxo12.tfm + RELOC/fonts/tfm/uhc/umj/umjxo13.tfm + RELOC/fonts/tfm/uhc/umj/umjxo14.tfm + RELOC/fonts/tfm/uhc/umj/umjxo15.tfm + RELOC/fonts/tfm/uhc/umj/umjxo16.tfm + RELOC/fonts/tfm/uhc/umj/umjxo17.tfm + RELOC/fonts/tfm/uhc/umj/umjxo20.tfm + RELOC/fonts/tfm/uhc/umj/umjxo21.tfm + RELOC/fonts/tfm/uhc/umj/umjxo22.tfm + RELOC/fonts/tfm/uhc/umj/umjxo23.tfm + RELOC/fonts/tfm/uhc/umj/umjxo24.tfm + RELOC/fonts/tfm/uhc/umj/umjxo25.tfm + RELOC/fonts/tfm/uhc/umj/umjxo26.tfm + RELOC/fonts/tfm/uhc/umj/umjxo27.tfm + RELOC/fonts/tfm/uhc/umj/umjxo28.tfm + RELOC/fonts/tfm/uhc/umj/umjxo29.tfm + RELOC/fonts/tfm/uhc/umj/umjxo30.tfm + RELOC/fonts/tfm/uhc/umj/umjxo31.tfm + RELOC/fonts/tfm/uhc/umj/umjxo32.tfm + RELOC/fonts/tfm/uhc/umj/umjxo33.tfm + RELOC/fonts/tfm/uhc/umj/umjxo34.tfm + RELOC/fonts/tfm/uhc/umj/umjxo35.tfm + RELOC/fonts/tfm/uhc/umj/umjxo36.tfm + RELOC/fonts/tfm/uhc/umj/umjxo37.tfm + RELOC/fonts/tfm/uhc/umj/umjxo38.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmj9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjb9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjbf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjc9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcb9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcbf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjccb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjccc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjccd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjccf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcd7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcf9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcfa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjco9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcob9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcobf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcocb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcocc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcocd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcocf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcod7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcof9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcofa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjcoff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjd7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjf9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjfa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjo9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjob9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjobf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjocb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjocc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjocd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjocf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjod7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjof9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjofa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjoff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmju9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjub9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjubb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjubc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjubd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjube.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjubf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjucb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjucc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjucd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjucf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjud7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuf9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjufa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuo9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuob9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuobf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuocb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuocc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuocd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuocf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuod7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuof9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuofa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjuoff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjx9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxb9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxbf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxcb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxcc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxcd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxcf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxd7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxf9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxfa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxff.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo00.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo01.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo02.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo03.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo04.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo20.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo21.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo22.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo23.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo24.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo25.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo26.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo30.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo31.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo32.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo33.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo4e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo4f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo50.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo51.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo52.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo53.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo54.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo55.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo56.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo57.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo58.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo59.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo5f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo60.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo61.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo62.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo63.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo64.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo65.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo66.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo67.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo68.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo69.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo6f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo70.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo71.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo72.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo73.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo74.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo75.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo76.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo77.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo78.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo79.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo7f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo80.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo81.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo82.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo83.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo84.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo85.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo86.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo87.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo88.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo89.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo8f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo90.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo91.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo92.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo93.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo94.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo95.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo96.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo97.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo98.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo99.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9a.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9b.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9c.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9d.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9e.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxo9f.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoac.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoad.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoae.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoaf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxob9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoba.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobe.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxobf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc8.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoc9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoca.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxocb.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxocc.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxocd.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoce.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxocf.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod0.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod1.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod2.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod3.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod4.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod5.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod6.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxod7.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxof9.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxofa.tfm + RELOC/fonts/tfm/uhc/uwmj/uwmjxoff.tfm + RELOC/fonts/tfm/uhc/wmj/wmj0.tfm + RELOC/fonts/tfm/uhc/wmj/wmj04.tfm + RELOC/fonts/tfm/uhc/wmj/wmj05.tfm + RELOC/fonts/tfm/uhc/wmj/wmj06.tfm + RELOC/fonts/tfm/uhc/wmj/wmj07.tfm + RELOC/fonts/tfm/uhc/wmj/wmj1.tfm + RELOC/fonts/tfm/uhc/wmj/wmj10.tfm + RELOC/fonts/tfm/uhc/wmj/wmj11.tfm + RELOC/fonts/tfm/uhc/wmj/wmj12.tfm + RELOC/fonts/tfm/uhc/wmj/wmj13.tfm + RELOC/fonts/tfm/uhc/wmj/wmj14.tfm + RELOC/fonts/tfm/uhc/wmj/wmj15.tfm + RELOC/fonts/tfm/uhc/wmj/wmj16.tfm + RELOC/fonts/tfm/uhc/wmj/wmj17.tfm + RELOC/fonts/tfm/uhc/wmj/wmj18.tfm + RELOC/fonts/tfm/uhc/wmj/wmj19.tfm + RELOC/fonts/tfm/uhc/wmj/wmj2.tfm + RELOC/fonts/tfm/uhc/wmj/wmj20.tfm + RELOC/fonts/tfm/uhc/wmj/wmj21.tfm + RELOC/fonts/tfm/uhc/wmj/wmj22.tfm + RELOC/fonts/tfm/uhc/wmj/wmj23.tfm + RELOC/fonts/tfm/uhc/wmj/wmj24.tfm + RELOC/fonts/tfm/uhc/wmj/wmj25.tfm + RELOC/fonts/tfm/uhc/wmj/wmj26.tfm + RELOC/fonts/tfm/uhc/wmj/wmj27.tfm + RELOC/fonts/tfm/uhc/wmj/wmj28.tfm + RELOC/fonts/tfm/uhc/wmj/wmj29.tfm + RELOC/fonts/tfm/uhc/wmj/wmj3.tfm + RELOC/fonts/tfm/uhc/wmj/wmj4.tfm + RELOC/fonts/tfm/uhc/wmj/wmj5.tfm + RELOC/fonts/tfm/uhc/wmj/wmj6.tfm + RELOC/fonts/tfm/uhc/wmj/wmj7.tfm + RELOC/fonts/tfm/uhc/wmj/wmj8.tfm + RELOC/fonts/tfm/uhc/wmj/wmj9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjc9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjco9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjo9.tfm + RELOC/fonts/tfm/uhc/wmj/wmju0.tfm + RELOC/fonts/tfm/uhc/wmj/wmju04.tfm + RELOC/fonts/tfm/uhc/wmj/wmju05.tfm + RELOC/fonts/tfm/uhc/wmj/wmju06.tfm + RELOC/fonts/tfm/uhc/wmj/wmju07.tfm + RELOC/fonts/tfm/uhc/wmj/wmju1.tfm + RELOC/fonts/tfm/uhc/wmj/wmju10.tfm + RELOC/fonts/tfm/uhc/wmj/wmju11.tfm + RELOC/fonts/tfm/uhc/wmj/wmju12.tfm + RELOC/fonts/tfm/uhc/wmj/wmju13.tfm + RELOC/fonts/tfm/uhc/wmj/wmju14.tfm + RELOC/fonts/tfm/uhc/wmj/wmju15.tfm + RELOC/fonts/tfm/uhc/wmj/wmju16.tfm + RELOC/fonts/tfm/uhc/wmj/wmju17.tfm + RELOC/fonts/tfm/uhc/wmj/wmju18.tfm + RELOC/fonts/tfm/uhc/wmj/wmju19.tfm + RELOC/fonts/tfm/uhc/wmj/wmju2.tfm + RELOC/fonts/tfm/uhc/wmj/wmju20.tfm + RELOC/fonts/tfm/uhc/wmj/wmju21.tfm + RELOC/fonts/tfm/uhc/wmj/wmju22.tfm + RELOC/fonts/tfm/uhc/wmj/wmju23.tfm + RELOC/fonts/tfm/uhc/wmj/wmju24.tfm + RELOC/fonts/tfm/uhc/wmj/wmju25.tfm + RELOC/fonts/tfm/uhc/wmj/wmju26.tfm + RELOC/fonts/tfm/uhc/wmj/wmju27.tfm + RELOC/fonts/tfm/uhc/wmj/wmju28.tfm + RELOC/fonts/tfm/uhc/wmj/wmju29.tfm + RELOC/fonts/tfm/uhc/wmj/wmju3.tfm + RELOC/fonts/tfm/uhc/wmj/wmju4.tfm + RELOC/fonts/tfm/uhc/wmj/wmju5.tfm + RELOC/fonts/tfm/uhc/wmj/wmju6.tfm + RELOC/fonts/tfm/uhc/wmj/wmju7.tfm + RELOC/fonts/tfm/uhc/wmj/wmju8.tfm + RELOC/fonts/tfm/uhc/wmj/wmju9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjuo9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjx9.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo0.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo04.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo05.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo06.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo07.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo1.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo10.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo11.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo12.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo13.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo14.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo15.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo16.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo17.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo18.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo19.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo2.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo20.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo21.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo22.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo23.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo24.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo25.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo26.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo27.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo28.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo29.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo3.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo4.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo5.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo6.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo7.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo8.tfm + RELOC/fonts/tfm/uhc/wmj/wmjxo9.tfm + RELOC/fonts/type1/uhc/umj/umj00.pfb + RELOC/fonts/type1/uhc/umj/umj01.pfb + RELOC/fonts/type1/uhc/umj/umj02.pfb + RELOC/fonts/type1/uhc/umj/umj03.pfb + RELOC/fonts/type1/uhc/umj/umj04.pfb + RELOC/fonts/type1/uhc/umj/umj05.pfb + RELOC/fonts/type1/uhc/umj/umj10.pfb + RELOC/fonts/type1/uhc/umj/umj11.pfb + RELOC/fonts/type1/uhc/umj/umj12.pfb + RELOC/fonts/type1/uhc/umj/umj13.pfb + RELOC/fonts/type1/uhc/umj/umj14.pfb + RELOC/fonts/type1/uhc/umj/umj15.pfb + RELOC/fonts/type1/uhc/umj/umj16.pfb + RELOC/fonts/type1/uhc/umj/umj17.pfb + RELOC/fonts/type1/uhc/umj/umj20.pfb + RELOC/fonts/type1/uhc/umj/umj21.pfb + RELOC/fonts/type1/uhc/umj/umj22.pfb + RELOC/fonts/type1/uhc/umj/umj23.pfb + RELOC/fonts/type1/uhc/umj/umj24.pfb + RELOC/fonts/type1/uhc/umj/umj25.pfb + RELOC/fonts/type1/uhc/umj/umj26.pfb + RELOC/fonts/type1/uhc/umj/umj27.pfb + RELOC/fonts/type1/uhc/umj/umj28.pfb + RELOC/fonts/type1/uhc/umj/umj29.pfb + RELOC/fonts/type1/uhc/umj/umj30.pfb + RELOC/fonts/type1/uhc/umj/umj31.pfb + RELOC/fonts/type1/uhc/umj/umj32.pfb + RELOC/fonts/type1/uhc/umj/umj33.pfb + RELOC/fonts/type1/uhc/umj/umj34.pfb + RELOC/fonts/type1/uhc/umj/umj35.pfb + RELOC/fonts/type1/uhc/umj/umj36.pfb + RELOC/fonts/type1/uhc/umj/umj37.pfb + RELOC/fonts/type1/uhc/umj/umj38.pfb + RELOC/fonts/vf/uhc/uwmj/uwmj00.vf + RELOC/fonts/vf/uhc/uwmj/uwmj01.vf + RELOC/fonts/vf/uhc/uwmj/uwmj02.vf + RELOC/fonts/vf/uhc/uwmj/uwmj03.vf + RELOC/fonts/vf/uhc/uwmj/uwmj04.vf + RELOC/fonts/vf/uhc/uwmj/uwmj20.vf + RELOC/fonts/vf/uhc/uwmj/uwmj21.vf + RELOC/fonts/vf/uhc/uwmj/uwmj22.vf + RELOC/fonts/vf/uhc/uwmj/uwmj23.vf + RELOC/fonts/vf/uhc/uwmj/uwmj24.vf + RELOC/fonts/vf/uhc/uwmj/uwmj25.vf + RELOC/fonts/vf/uhc/uwmj/uwmj26.vf + RELOC/fonts/vf/uhc/uwmj/uwmj30.vf + RELOC/fonts/vf/uhc/uwmj/uwmj31.vf + RELOC/fonts/vf/uhc/uwmj/uwmj32.vf + RELOC/fonts/vf/uhc/uwmj/uwmj33.vf + RELOC/fonts/vf/uhc/uwmj/uwmj4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj50.vf + RELOC/fonts/vf/uhc/uwmj/uwmj51.vf + RELOC/fonts/vf/uhc/uwmj/uwmj52.vf + RELOC/fonts/vf/uhc/uwmj/uwmj53.vf + RELOC/fonts/vf/uhc/uwmj/uwmj54.vf + RELOC/fonts/vf/uhc/uwmj/uwmj55.vf + RELOC/fonts/vf/uhc/uwmj/uwmj56.vf + RELOC/fonts/vf/uhc/uwmj/uwmj57.vf + RELOC/fonts/vf/uhc/uwmj/uwmj58.vf + RELOC/fonts/vf/uhc/uwmj/uwmj59.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj60.vf + RELOC/fonts/vf/uhc/uwmj/uwmj61.vf + RELOC/fonts/vf/uhc/uwmj/uwmj62.vf + RELOC/fonts/vf/uhc/uwmj/uwmj63.vf + RELOC/fonts/vf/uhc/uwmj/uwmj64.vf + RELOC/fonts/vf/uhc/uwmj/uwmj65.vf + RELOC/fonts/vf/uhc/uwmj/uwmj66.vf + RELOC/fonts/vf/uhc/uwmj/uwmj67.vf + RELOC/fonts/vf/uhc/uwmj/uwmj68.vf + RELOC/fonts/vf/uhc/uwmj/uwmj69.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj70.vf + RELOC/fonts/vf/uhc/uwmj/uwmj71.vf + RELOC/fonts/vf/uhc/uwmj/uwmj72.vf + RELOC/fonts/vf/uhc/uwmj/uwmj73.vf + RELOC/fonts/vf/uhc/uwmj/uwmj74.vf + RELOC/fonts/vf/uhc/uwmj/uwmj75.vf + RELOC/fonts/vf/uhc/uwmj/uwmj76.vf + RELOC/fonts/vf/uhc/uwmj/uwmj77.vf + RELOC/fonts/vf/uhc/uwmj/uwmj78.vf + RELOC/fonts/vf/uhc/uwmj/uwmj79.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj80.vf + RELOC/fonts/vf/uhc/uwmj/uwmj81.vf + RELOC/fonts/vf/uhc/uwmj/uwmj82.vf + RELOC/fonts/vf/uhc/uwmj/uwmj83.vf + RELOC/fonts/vf/uhc/uwmj/uwmj84.vf + RELOC/fonts/vf/uhc/uwmj/uwmj85.vf + RELOC/fonts/vf/uhc/uwmj/uwmj86.vf + RELOC/fonts/vf/uhc/uwmj/uwmj87.vf + RELOC/fonts/vf/uhc/uwmj/uwmj88.vf + RELOC/fonts/vf/uhc/uwmj/uwmj89.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmj90.vf + RELOC/fonts/vf/uhc/uwmj/uwmj91.vf + RELOC/fonts/vf/uhc/uwmj/uwmj92.vf + RELOC/fonts/vf/uhc/uwmj/uwmj93.vf + RELOC/fonts/vf/uhc/uwmj/uwmj94.vf + RELOC/fonts/vf/uhc/uwmj/uwmj95.vf + RELOC/fonts/vf/uhc/uwmj/uwmj96.vf + RELOC/fonts/vf/uhc/uwmj/uwmj97.vf + RELOC/fonts/vf/uhc/uwmj/uwmj98.vf + RELOC/fonts/vf/uhc/uwmj/uwmj99.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmj9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjb9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjbf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjc9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcb9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcbf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjccb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjccc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjccd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjccf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcd7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcf9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcfa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjco9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcob9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcobf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcocb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcocc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcocd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcocf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcod7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcof9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcofa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjcoff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjd7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjf9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjfa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjo9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjob9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjobf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjocb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjocc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjocd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjocf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjod7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjof9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjofa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjoff.vf + RELOC/fonts/vf/uhc/uwmj/uwmju00.vf + RELOC/fonts/vf/uhc/uwmj/uwmju01.vf + RELOC/fonts/vf/uhc/uwmj/uwmju02.vf + RELOC/fonts/vf/uhc/uwmj/uwmju03.vf + RELOC/fonts/vf/uhc/uwmj/uwmju04.vf + RELOC/fonts/vf/uhc/uwmj/uwmju20.vf + RELOC/fonts/vf/uhc/uwmj/uwmju21.vf + RELOC/fonts/vf/uhc/uwmj/uwmju22.vf + RELOC/fonts/vf/uhc/uwmj/uwmju23.vf + RELOC/fonts/vf/uhc/uwmj/uwmju24.vf + RELOC/fonts/vf/uhc/uwmj/uwmju25.vf + RELOC/fonts/vf/uhc/uwmj/uwmju26.vf + RELOC/fonts/vf/uhc/uwmj/uwmju30.vf + RELOC/fonts/vf/uhc/uwmj/uwmju31.vf + RELOC/fonts/vf/uhc/uwmj/uwmju32.vf + RELOC/fonts/vf/uhc/uwmj/uwmju33.vf + RELOC/fonts/vf/uhc/uwmj/uwmju4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju50.vf + RELOC/fonts/vf/uhc/uwmj/uwmju51.vf + RELOC/fonts/vf/uhc/uwmj/uwmju52.vf + RELOC/fonts/vf/uhc/uwmj/uwmju53.vf + RELOC/fonts/vf/uhc/uwmj/uwmju54.vf + RELOC/fonts/vf/uhc/uwmj/uwmju55.vf + RELOC/fonts/vf/uhc/uwmj/uwmju56.vf + RELOC/fonts/vf/uhc/uwmj/uwmju57.vf + RELOC/fonts/vf/uhc/uwmj/uwmju58.vf + RELOC/fonts/vf/uhc/uwmj/uwmju59.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju60.vf + RELOC/fonts/vf/uhc/uwmj/uwmju61.vf + RELOC/fonts/vf/uhc/uwmj/uwmju62.vf + RELOC/fonts/vf/uhc/uwmj/uwmju63.vf + RELOC/fonts/vf/uhc/uwmj/uwmju64.vf + RELOC/fonts/vf/uhc/uwmj/uwmju65.vf + RELOC/fonts/vf/uhc/uwmj/uwmju66.vf + RELOC/fonts/vf/uhc/uwmj/uwmju67.vf + RELOC/fonts/vf/uhc/uwmj/uwmju68.vf + RELOC/fonts/vf/uhc/uwmj/uwmju69.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju70.vf + RELOC/fonts/vf/uhc/uwmj/uwmju71.vf + RELOC/fonts/vf/uhc/uwmj/uwmju72.vf + RELOC/fonts/vf/uhc/uwmj/uwmju73.vf + RELOC/fonts/vf/uhc/uwmj/uwmju74.vf + RELOC/fonts/vf/uhc/uwmj/uwmju75.vf + RELOC/fonts/vf/uhc/uwmj/uwmju76.vf + RELOC/fonts/vf/uhc/uwmj/uwmju77.vf + RELOC/fonts/vf/uhc/uwmj/uwmju78.vf + RELOC/fonts/vf/uhc/uwmj/uwmju79.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju80.vf + RELOC/fonts/vf/uhc/uwmj/uwmju81.vf + RELOC/fonts/vf/uhc/uwmj/uwmju82.vf + RELOC/fonts/vf/uhc/uwmj/uwmju83.vf + RELOC/fonts/vf/uhc/uwmj/uwmju84.vf + RELOC/fonts/vf/uhc/uwmj/uwmju85.vf + RELOC/fonts/vf/uhc/uwmj/uwmju86.vf + RELOC/fonts/vf/uhc/uwmj/uwmju87.vf + RELOC/fonts/vf/uhc/uwmj/uwmju88.vf + RELOC/fonts/vf/uhc/uwmj/uwmju89.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmju90.vf + RELOC/fonts/vf/uhc/uwmj/uwmju91.vf + RELOC/fonts/vf/uhc/uwmj/uwmju92.vf + RELOC/fonts/vf/uhc/uwmj/uwmju93.vf + RELOC/fonts/vf/uhc/uwmj/uwmju94.vf + RELOC/fonts/vf/uhc/uwmj/uwmju95.vf + RELOC/fonts/vf/uhc/uwmj/uwmju96.vf + RELOC/fonts/vf/uhc/uwmj/uwmju97.vf + RELOC/fonts/vf/uhc/uwmj/uwmju98.vf + RELOC/fonts/vf/uhc/uwmj/uwmju99.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmju9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjub9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjubb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjubc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjubd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjube.vf + RELOC/fonts/vf/uhc/uwmj/uwmjubf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjucb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjucc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjucd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjucf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjud7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuf9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjufa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuo9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuob9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuobf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuocb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuocc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuocd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuocf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuod7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuof9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuofa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjuoff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjx9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxb9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxbf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxcb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxcc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxcd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxcf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxd7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxf9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxfa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxff.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo00.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo01.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo02.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo03.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo04.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo20.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo21.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo22.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo23.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo24.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo25.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo26.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo30.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo31.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo32.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo33.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo4e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo4f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo50.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo51.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo52.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo53.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo54.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo55.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo56.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo57.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo58.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo59.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo5f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo60.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo61.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo62.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo63.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo64.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo65.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo66.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo67.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo68.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo69.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo6f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo70.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo71.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo72.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo73.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo74.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo75.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo76.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo77.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo78.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo79.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo7f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo80.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo81.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo82.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo83.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo84.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo85.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo86.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo87.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo88.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo89.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo8f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo90.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo91.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo92.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo93.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo94.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo95.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo96.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo97.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo98.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo99.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9a.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9b.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9c.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9d.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9e.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxo9f.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoac.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoad.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoae.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoaf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxob9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoba.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobe.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxobf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc8.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoc9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoca.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxocb.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxocc.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxocd.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoce.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxocf.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod0.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod1.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod2.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod3.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod4.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod5.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod6.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxod7.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxof9.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxofa.vf + RELOC/fonts/vf/uhc/uwmj/uwmjxoff.vf + RELOC/fonts/vf/uhc/wmj/wmj0.vf + RELOC/fonts/vf/uhc/wmj/wmj04.vf + RELOC/fonts/vf/uhc/wmj/wmj05.vf + RELOC/fonts/vf/uhc/wmj/wmj06.vf + RELOC/fonts/vf/uhc/wmj/wmj07.vf + RELOC/fonts/vf/uhc/wmj/wmj1.vf + RELOC/fonts/vf/uhc/wmj/wmj10.vf + RELOC/fonts/vf/uhc/wmj/wmj11.vf + RELOC/fonts/vf/uhc/wmj/wmj12.vf + RELOC/fonts/vf/uhc/wmj/wmj13.vf + RELOC/fonts/vf/uhc/wmj/wmj14.vf + RELOC/fonts/vf/uhc/wmj/wmj15.vf + RELOC/fonts/vf/uhc/wmj/wmj16.vf + RELOC/fonts/vf/uhc/wmj/wmj17.vf + RELOC/fonts/vf/uhc/wmj/wmj18.vf + RELOC/fonts/vf/uhc/wmj/wmj19.vf + RELOC/fonts/vf/uhc/wmj/wmj2.vf + RELOC/fonts/vf/uhc/wmj/wmj20.vf + RELOC/fonts/vf/uhc/wmj/wmj21.vf + RELOC/fonts/vf/uhc/wmj/wmj22.vf + RELOC/fonts/vf/uhc/wmj/wmj23.vf + RELOC/fonts/vf/uhc/wmj/wmj24.vf + RELOC/fonts/vf/uhc/wmj/wmj25.vf + RELOC/fonts/vf/uhc/wmj/wmj26.vf + RELOC/fonts/vf/uhc/wmj/wmj27.vf + RELOC/fonts/vf/uhc/wmj/wmj28.vf + RELOC/fonts/vf/uhc/wmj/wmj29.vf + RELOC/fonts/vf/uhc/wmj/wmj3.vf + RELOC/fonts/vf/uhc/wmj/wmj4.vf + RELOC/fonts/vf/uhc/wmj/wmj5.vf + RELOC/fonts/vf/uhc/wmj/wmj6.vf + RELOC/fonts/vf/uhc/wmj/wmj7.vf + RELOC/fonts/vf/uhc/wmj/wmj8.vf + RELOC/fonts/vf/uhc/wmj/wmj9.vf + RELOC/fonts/vf/uhc/wmj/wmjc0.vf + RELOC/fonts/vf/uhc/wmj/wmjc04.vf + RELOC/fonts/vf/uhc/wmj/wmjc05.vf + RELOC/fonts/vf/uhc/wmj/wmjc06.vf + RELOC/fonts/vf/uhc/wmj/wmjc07.vf + RELOC/fonts/vf/uhc/wmj/wmjc1.vf + RELOC/fonts/vf/uhc/wmj/wmjc10.vf + RELOC/fonts/vf/uhc/wmj/wmjc11.vf + RELOC/fonts/vf/uhc/wmj/wmjc12.vf + RELOC/fonts/vf/uhc/wmj/wmjc13.vf + RELOC/fonts/vf/uhc/wmj/wmjc14.vf + RELOC/fonts/vf/uhc/wmj/wmjc15.vf + RELOC/fonts/vf/uhc/wmj/wmjc16.vf + RELOC/fonts/vf/uhc/wmj/wmjc17.vf + RELOC/fonts/vf/uhc/wmj/wmjc18.vf + RELOC/fonts/vf/uhc/wmj/wmjc19.vf + RELOC/fonts/vf/uhc/wmj/wmjc2.vf + RELOC/fonts/vf/uhc/wmj/wmjc20.vf + RELOC/fonts/vf/uhc/wmj/wmjc21.vf + RELOC/fonts/vf/uhc/wmj/wmjc22.vf + RELOC/fonts/vf/uhc/wmj/wmjc23.vf + RELOC/fonts/vf/uhc/wmj/wmjc24.vf + RELOC/fonts/vf/uhc/wmj/wmjc25.vf + RELOC/fonts/vf/uhc/wmj/wmjc26.vf + RELOC/fonts/vf/uhc/wmj/wmjc27.vf + RELOC/fonts/vf/uhc/wmj/wmjc28.vf + RELOC/fonts/vf/uhc/wmj/wmjc29.vf + RELOC/fonts/vf/uhc/wmj/wmjc3.vf + RELOC/fonts/vf/uhc/wmj/wmjc4.vf + RELOC/fonts/vf/uhc/wmj/wmjc5.vf + RELOC/fonts/vf/uhc/wmj/wmjc6.vf + RELOC/fonts/vf/uhc/wmj/wmjc7.vf + RELOC/fonts/vf/uhc/wmj/wmjc8.vf + RELOC/fonts/vf/uhc/wmj/wmjc9.vf + RELOC/fonts/vf/uhc/wmj/wmjco0.vf + RELOC/fonts/vf/uhc/wmj/wmjco04.vf + RELOC/fonts/vf/uhc/wmj/wmjco05.vf + RELOC/fonts/vf/uhc/wmj/wmjco06.vf + RELOC/fonts/vf/uhc/wmj/wmjco07.vf + RELOC/fonts/vf/uhc/wmj/wmjco1.vf + RELOC/fonts/vf/uhc/wmj/wmjco10.vf + RELOC/fonts/vf/uhc/wmj/wmjco11.vf + RELOC/fonts/vf/uhc/wmj/wmjco12.vf + RELOC/fonts/vf/uhc/wmj/wmjco13.vf + RELOC/fonts/vf/uhc/wmj/wmjco14.vf + RELOC/fonts/vf/uhc/wmj/wmjco15.vf + RELOC/fonts/vf/uhc/wmj/wmjco16.vf + RELOC/fonts/vf/uhc/wmj/wmjco17.vf + RELOC/fonts/vf/uhc/wmj/wmjco18.vf + RELOC/fonts/vf/uhc/wmj/wmjco19.vf + RELOC/fonts/vf/uhc/wmj/wmjco2.vf + RELOC/fonts/vf/uhc/wmj/wmjco20.vf + RELOC/fonts/vf/uhc/wmj/wmjco21.vf + RELOC/fonts/vf/uhc/wmj/wmjco22.vf + RELOC/fonts/vf/uhc/wmj/wmjco23.vf + RELOC/fonts/vf/uhc/wmj/wmjco24.vf + RELOC/fonts/vf/uhc/wmj/wmjco25.vf + RELOC/fonts/vf/uhc/wmj/wmjco26.vf + RELOC/fonts/vf/uhc/wmj/wmjco27.vf + RELOC/fonts/vf/uhc/wmj/wmjco28.vf + RELOC/fonts/vf/uhc/wmj/wmjco29.vf + RELOC/fonts/vf/uhc/wmj/wmjco3.vf + RELOC/fonts/vf/uhc/wmj/wmjco4.vf + RELOC/fonts/vf/uhc/wmj/wmjco5.vf + RELOC/fonts/vf/uhc/wmj/wmjco6.vf + RELOC/fonts/vf/uhc/wmj/wmjco7.vf + RELOC/fonts/vf/uhc/wmj/wmjco8.vf + RELOC/fonts/vf/uhc/wmj/wmjco9.vf + RELOC/fonts/vf/uhc/wmj/wmjo0.vf + RELOC/fonts/vf/uhc/wmj/wmjo04.vf + RELOC/fonts/vf/uhc/wmj/wmjo05.vf + RELOC/fonts/vf/uhc/wmj/wmjo06.vf + RELOC/fonts/vf/uhc/wmj/wmjo07.vf + RELOC/fonts/vf/uhc/wmj/wmjo1.vf + RELOC/fonts/vf/uhc/wmj/wmjo10.vf + RELOC/fonts/vf/uhc/wmj/wmjo11.vf + RELOC/fonts/vf/uhc/wmj/wmjo12.vf + RELOC/fonts/vf/uhc/wmj/wmjo13.vf + RELOC/fonts/vf/uhc/wmj/wmjo14.vf + RELOC/fonts/vf/uhc/wmj/wmjo15.vf + RELOC/fonts/vf/uhc/wmj/wmjo16.vf + RELOC/fonts/vf/uhc/wmj/wmjo17.vf + RELOC/fonts/vf/uhc/wmj/wmjo18.vf + RELOC/fonts/vf/uhc/wmj/wmjo19.vf + RELOC/fonts/vf/uhc/wmj/wmjo2.vf + RELOC/fonts/vf/uhc/wmj/wmjo20.vf + RELOC/fonts/vf/uhc/wmj/wmjo21.vf + RELOC/fonts/vf/uhc/wmj/wmjo22.vf + RELOC/fonts/vf/uhc/wmj/wmjo23.vf + RELOC/fonts/vf/uhc/wmj/wmjo24.vf + RELOC/fonts/vf/uhc/wmj/wmjo25.vf + RELOC/fonts/vf/uhc/wmj/wmjo26.vf + RELOC/fonts/vf/uhc/wmj/wmjo27.vf + RELOC/fonts/vf/uhc/wmj/wmjo28.vf + RELOC/fonts/vf/uhc/wmj/wmjo29.vf + RELOC/fonts/vf/uhc/wmj/wmjo3.vf + RELOC/fonts/vf/uhc/wmj/wmjo4.vf + RELOC/fonts/vf/uhc/wmj/wmjo5.vf + RELOC/fonts/vf/uhc/wmj/wmjo6.vf + RELOC/fonts/vf/uhc/wmj/wmjo7.vf + RELOC/fonts/vf/uhc/wmj/wmjo8.vf + RELOC/fonts/vf/uhc/wmj/wmjo9.vf + RELOC/fonts/vf/uhc/wmj/wmju0.vf + RELOC/fonts/vf/uhc/wmj/wmju04.vf + RELOC/fonts/vf/uhc/wmj/wmju05.vf + RELOC/fonts/vf/uhc/wmj/wmju06.vf + RELOC/fonts/vf/uhc/wmj/wmju07.vf + RELOC/fonts/vf/uhc/wmj/wmju1.vf + RELOC/fonts/vf/uhc/wmj/wmju10.vf + RELOC/fonts/vf/uhc/wmj/wmju11.vf + RELOC/fonts/vf/uhc/wmj/wmju12.vf + RELOC/fonts/vf/uhc/wmj/wmju13.vf + RELOC/fonts/vf/uhc/wmj/wmju14.vf + RELOC/fonts/vf/uhc/wmj/wmju15.vf + RELOC/fonts/vf/uhc/wmj/wmju16.vf + RELOC/fonts/vf/uhc/wmj/wmju17.vf + RELOC/fonts/vf/uhc/wmj/wmju18.vf + RELOC/fonts/vf/uhc/wmj/wmju19.vf + RELOC/fonts/vf/uhc/wmj/wmju2.vf + RELOC/fonts/vf/uhc/wmj/wmju20.vf + RELOC/fonts/vf/uhc/wmj/wmju21.vf + RELOC/fonts/vf/uhc/wmj/wmju22.vf + RELOC/fonts/vf/uhc/wmj/wmju23.vf + RELOC/fonts/vf/uhc/wmj/wmju24.vf + RELOC/fonts/vf/uhc/wmj/wmju25.vf + RELOC/fonts/vf/uhc/wmj/wmju26.vf + RELOC/fonts/vf/uhc/wmj/wmju27.vf + RELOC/fonts/vf/uhc/wmj/wmju28.vf + RELOC/fonts/vf/uhc/wmj/wmju29.vf + RELOC/fonts/vf/uhc/wmj/wmju3.vf + RELOC/fonts/vf/uhc/wmj/wmju4.vf + RELOC/fonts/vf/uhc/wmj/wmju5.vf + RELOC/fonts/vf/uhc/wmj/wmju6.vf + RELOC/fonts/vf/uhc/wmj/wmju7.vf + RELOC/fonts/vf/uhc/wmj/wmju8.vf + RELOC/fonts/vf/uhc/wmj/wmju9.vf + RELOC/fonts/vf/uhc/wmj/wmjuo0.vf + RELOC/fonts/vf/uhc/wmj/wmjuo04.vf + RELOC/fonts/vf/uhc/wmj/wmjuo05.vf + RELOC/fonts/vf/uhc/wmj/wmjuo06.vf + RELOC/fonts/vf/uhc/wmj/wmjuo07.vf + RELOC/fonts/vf/uhc/wmj/wmjuo1.vf + RELOC/fonts/vf/uhc/wmj/wmjuo10.vf + RELOC/fonts/vf/uhc/wmj/wmjuo11.vf + RELOC/fonts/vf/uhc/wmj/wmjuo12.vf + RELOC/fonts/vf/uhc/wmj/wmjuo13.vf + RELOC/fonts/vf/uhc/wmj/wmjuo14.vf + RELOC/fonts/vf/uhc/wmj/wmjuo15.vf + RELOC/fonts/vf/uhc/wmj/wmjuo16.vf + RELOC/fonts/vf/uhc/wmj/wmjuo17.vf + RELOC/fonts/vf/uhc/wmj/wmjuo18.vf + RELOC/fonts/vf/uhc/wmj/wmjuo19.vf + RELOC/fonts/vf/uhc/wmj/wmjuo2.vf + RELOC/fonts/vf/uhc/wmj/wmjuo20.vf + RELOC/fonts/vf/uhc/wmj/wmjuo21.vf + RELOC/fonts/vf/uhc/wmj/wmjuo22.vf + RELOC/fonts/vf/uhc/wmj/wmjuo23.vf + RELOC/fonts/vf/uhc/wmj/wmjuo24.vf + RELOC/fonts/vf/uhc/wmj/wmjuo25.vf + RELOC/fonts/vf/uhc/wmj/wmjuo26.vf + RELOC/fonts/vf/uhc/wmj/wmjuo27.vf + RELOC/fonts/vf/uhc/wmj/wmjuo28.vf + RELOC/fonts/vf/uhc/wmj/wmjuo29.vf + RELOC/fonts/vf/uhc/wmj/wmjuo3.vf + RELOC/fonts/vf/uhc/wmj/wmjuo4.vf + RELOC/fonts/vf/uhc/wmj/wmjuo5.vf + RELOC/fonts/vf/uhc/wmj/wmjuo6.vf + RELOC/fonts/vf/uhc/wmj/wmjuo7.vf + RELOC/fonts/vf/uhc/wmj/wmjuo8.vf + RELOC/fonts/vf/uhc/wmj/wmjuo9.vf + RELOC/fonts/vf/uhc/wmj/wmjx0.vf + RELOC/fonts/vf/uhc/wmj/wmjx04.vf + RELOC/fonts/vf/uhc/wmj/wmjx05.vf + RELOC/fonts/vf/uhc/wmj/wmjx06.vf + RELOC/fonts/vf/uhc/wmj/wmjx07.vf + RELOC/fonts/vf/uhc/wmj/wmjx1.vf + RELOC/fonts/vf/uhc/wmj/wmjx10.vf + RELOC/fonts/vf/uhc/wmj/wmjx11.vf + RELOC/fonts/vf/uhc/wmj/wmjx12.vf + RELOC/fonts/vf/uhc/wmj/wmjx13.vf + RELOC/fonts/vf/uhc/wmj/wmjx14.vf + RELOC/fonts/vf/uhc/wmj/wmjx15.vf + RELOC/fonts/vf/uhc/wmj/wmjx16.vf + RELOC/fonts/vf/uhc/wmj/wmjx17.vf + RELOC/fonts/vf/uhc/wmj/wmjx18.vf + RELOC/fonts/vf/uhc/wmj/wmjx19.vf + RELOC/fonts/vf/uhc/wmj/wmjx2.vf + RELOC/fonts/vf/uhc/wmj/wmjx20.vf + RELOC/fonts/vf/uhc/wmj/wmjx21.vf + RELOC/fonts/vf/uhc/wmj/wmjx22.vf + RELOC/fonts/vf/uhc/wmj/wmjx23.vf + RELOC/fonts/vf/uhc/wmj/wmjx24.vf + RELOC/fonts/vf/uhc/wmj/wmjx25.vf + RELOC/fonts/vf/uhc/wmj/wmjx26.vf + RELOC/fonts/vf/uhc/wmj/wmjx27.vf + RELOC/fonts/vf/uhc/wmj/wmjx28.vf + RELOC/fonts/vf/uhc/wmj/wmjx29.vf + RELOC/fonts/vf/uhc/wmj/wmjx3.vf + RELOC/fonts/vf/uhc/wmj/wmjx4.vf + RELOC/fonts/vf/uhc/wmj/wmjx5.vf + RELOC/fonts/vf/uhc/wmj/wmjx6.vf + RELOC/fonts/vf/uhc/wmj/wmjx7.vf + RELOC/fonts/vf/uhc/wmj/wmjx8.vf + RELOC/fonts/vf/uhc/wmj/wmjx9.vf + RELOC/fonts/vf/uhc/wmj/wmjxo0.vf + RELOC/fonts/vf/uhc/wmj/wmjxo04.vf + RELOC/fonts/vf/uhc/wmj/wmjxo05.vf + RELOC/fonts/vf/uhc/wmj/wmjxo06.vf + RELOC/fonts/vf/uhc/wmj/wmjxo07.vf + RELOC/fonts/vf/uhc/wmj/wmjxo1.vf + RELOC/fonts/vf/uhc/wmj/wmjxo10.vf + RELOC/fonts/vf/uhc/wmj/wmjxo11.vf + RELOC/fonts/vf/uhc/wmj/wmjxo12.vf + RELOC/fonts/vf/uhc/wmj/wmjxo13.vf + RELOC/fonts/vf/uhc/wmj/wmjxo14.vf + RELOC/fonts/vf/uhc/wmj/wmjxo15.vf + RELOC/fonts/vf/uhc/wmj/wmjxo16.vf + RELOC/fonts/vf/uhc/wmj/wmjxo17.vf + RELOC/fonts/vf/uhc/wmj/wmjxo18.vf + RELOC/fonts/vf/uhc/wmj/wmjxo19.vf + RELOC/fonts/vf/uhc/wmj/wmjxo2.vf + RELOC/fonts/vf/uhc/wmj/wmjxo20.vf + RELOC/fonts/vf/uhc/wmj/wmjxo21.vf + RELOC/fonts/vf/uhc/wmj/wmjxo22.vf + RELOC/fonts/vf/uhc/wmj/wmjxo23.vf + RELOC/fonts/vf/uhc/wmj/wmjxo24.vf + RELOC/fonts/vf/uhc/wmj/wmjxo25.vf + RELOC/fonts/vf/uhc/wmj/wmjxo26.vf + RELOC/fonts/vf/uhc/wmj/wmjxo27.vf + RELOC/fonts/vf/uhc/wmj/wmjxo28.vf + RELOC/fonts/vf/uhc/wmj/wmjxo29.vf + RELOC/fonts/vf/uhc/wmj/wmjxo3.vf + RELOC/fonts/vf/uhc/wmj/wmjxo4.vf + RELOC/fonts/vf/uhc/wmj/wmjxo5.vf + RELOC/fonts/vf/uhc/wmj/wmjxo6.vf + RELOC/fonts/vf/uhc/wmj/wmjxo7.vf + RELOC/fonts/vf/uhc/wmj/wmjxo8.vf + RELOC/fonts/vf/uhc/wmj/wmjxo9.vf +docfiles size=1 + RELOC/doc/fonts/uhc/umj/README +catalogue-ctan /fonts/korean/HLaTeX +catalogue-date 2012-05-16 13:32:16 +0200 +catalogue-license lppl + +name uiucredborder +category Package +revision 29974 +shortdesc Class for UIUC thesis red-bordered forms. +relocated 1 +longdesc The class offers a means of filling out the "red-bordered form" +longdesc that gets signed by the department head, your advisor, and -- +longdesc for doctoral dissertations -- your thesis committee members. +runfiles size=1 + RELOC/tex/latex/uiucredborder/uiucredborder.cls +docfiles size=89 + RELOC/doc/latex/uiucredborder/uiucredborder.pdf +srcfiles size=4 + RELOC/source/latex/uiucredborder/uiucredborder.dtx + RELOC/source/latex/uiucredborder/uiucredborder.ins +catalogue-ctan /macros/latex/contrib/uiucredborder +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.00 + +name uiucthesis +category Package +revision 15878 +shortdesc UIUC thesis class. +relocated 1 +longdesc The class produces a document that conforms to the format +longdesc described in the University's Handbook for Graduate Students +longdesc Preparing to Deposit. +runfiles size=10 + RELOC/tex/latex/uiucthesis/uiucthesis.cls + RELOC/tex/latex/uiucthesis/uiucthesis.sty +docfiles size=69 + RELOC/doc/latex/uiucthesis/README + RELOC/doc/latex/uiucthesis/thesis-ex.pdf + RELOC/doc/latex/uiucthesis/thesis-ex.tex + RELOC/doc/latex/uiucthesis/uiucthesis.pdf +srcfiles size=16 + RELOC/source/latex/uiucthesis/uiucthesis.dtx + RELOC/source/latex/uiucthesis/uiucthesis.ins +catalogue-ctan /macros/latex/contrib/uiucthesis +catalogue-date 2013-04-14 14:49:48 +0200 +catalogue-license lppl +catalogue-version 2.25 + +name ukrhyph +category Package +revision 21081 +shortdesc Hyphenation Patterns for Ukrainian. +relocated 1 +longdesc A range of patterns, depending on the encoding of the output +longdesc font (including the standard T2A, so one can use the patterns +longdesc with free fonts). +runfiles size=45 + RELOC/tex/generic/ukrhyph/catlcy.tex + RELOC/tex/generic/ukrhyph/lcy2koi.tex + RELOC/tex/generic/ukrhyph/lcy2lcy.tex + RELOC/tex/generic/ukrhyph/lcy2ot2.tex + RELOC/tex/generic/ukrhyph/lcy2t2a.tex + RELOC/tex/generic/ukrhyph/lcy2ucy.tex + RELOC/tex/generic/ukrhyph/rules60.tex + RELOC/tex/generic/ukrhyph/rules90.tex + RELOC/tex/generic/ukrhyph/rules_ph.tex + RELOC/tex/generic/ukrhyph/ukrenhyp.tex + RELOC/tex/generic/ukrhyph/ukrhypfa.tex + RELOC/tex/generic/ukrhyph/ukrhyph.koi + RELOC/tex/generic/ukrhyph/ukrhyph.lcy + RELOC/tex/generic/ukrhyph/ukrhyph.ot2 + RELOC/tex/generic/ukrhyph/ukrhyph.t2a + RELOC/tex/generic/ukrhyph/ukrhyph.tex + RELOC/tex/generic/ukrhyph/ukrhyph.ucy + RELOC/tex/generic/ukrhyph/ukrhypmp.tex + RELOC/tex/generic/ukrhyph/ukrhypmt.tex + RELOC/tex/generic/ukrhyph/ukrhypsm.tex + RELOC/tex/generic/ukrhyph/ukrhypst.tex +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-license lppl + +name ulem +category Package +revision 26785 +shortdesc Package for underlining. +relocated 1 +longdesc The package provides an \ul (underline) command which will +longdesc break over line ends; this technique may be used to replace \em +longdesc (both in that form and as the \emph command), so as to make +longdesc output look as if it comes from a typewriter. The package also +longdesc offers double and wavy underlining, and striking out (line +longdesc through words) and crossing out (/// over words). The package +longdesc works with both Plain TeX and LaTeX. +runfiles size=6 + RELOC/tex/generic/ulem/ulem.sty +docfiles size=31 + RELOC/doc/generic/ulem/README + RELOC/doc/generic/ulem/ulem.ltx + RELOC/doc/generic/ulem/ulem.pdf +catalogue-ctan /macros/latex/contrib/ulem +catalogue-date 2012-06-01 11:43:10 +0200 +catalogue-license other-free + +name ulqda +category Package +revision 26313 +shortdesc Support of Qualitative Data Analysis. +longdesc The package is for use in Qualitative Data Analysis research. +longdesc It supports the integration of Qualitative Data Analysis (QDA) +longdesc research tasks, specifically for Grounded Theory, into the +longdesc LaTeX work flow. It assists in the analysis of textual data +longdesc such as interview transcripts and field notes by providing the +longdesc LaTeX user with macros which are used to markup textual +longdesc information -- for example, in-depth interviews. +depend ulqda.ARCH +runfiles size=5 + texmf-dist/scripts/ulqda/ulqda.pl + texmf-dist/tex/latex/ulqda/ulqda.sty +docfiles size=77 + texmf-dist/doc/latex/ulqda/README + texmf-dist/doc/latex/ulqda/ulqda.pdf +srcfiles size=24 + texmf-dist/source/latex/ulqda/Makefile + texmf-dist/source/latex/ulqda/ulqda.dtx +catalogue-ctan /macros/latex/contrib/ulqda +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name ulqda.i386-linux +category Package +revision 13663 +shortdesc i386-linux files of ulqda +binfiles arch=i386-linux size=1 + bin/i386-linux/ulqda + +name ulthese +category Package +revision 38363 +shortdesc Thesis class and templates for Universite Laval +relocated 1 +longdesc The package provides a class based on memoir to prepare theses +longdesc and memoirs compliant with the presentation rules set forth by +longdesc the Faculty of Graduate Studies of Universite Laval, Quebec, +longdesc Canada. The class also comes with an extensive set of templates +longdesc for the various types of theses and memoirs offered at Laval. +longdesc Please note that the documentation for the class and the +longdesc comments in the templates are all written in French, the +longdesc language of the target audience. +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 + RELOC/doc/latex/ulthese/abstract.tex + RELOC/doc/latex/ulthese/annexe.tex + RELOC/doc/latex/ulthese/avantpropos.tex + RELOC/doc/latex/ulthese/chapitre1.tex + RELOC/doc/latex/ulthese/chapitre2.tex + RELOC/doc/latex/ulthese/conclusion.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-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/source/latex/ulthese/ulthese.dtx + RELOC/source/latex/ulthese/ulthese.ins +catalogue-also memoir babel +catalogue-ctan /macros/latex/contrib/ulthese +catalogue-date 2015-09-11 21:07:42 +0200 +catalogue-license lppl1.3 +catalogue-topics dissertation class french +catalogue-version 4.0 + +name umich-thesis +category Package +revision 15878 +shortdesc University of Michigan Thesis LaTeX class. +relocated 1 +longdesc A LaTeX2e class to create a University of Michigan dissertation +longdesc according to the Rackham dissertation handbook. +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-license lppl +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. +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 +docfiles size=129 + RELOC/doc/latex/uml/Changes + RELOC/doc/latex/uml/README + RELOC/doc/latex/uml/example.tex + RELOC/doc/latex/uml/uml.pdf +srcfiles size=50 + RELOC/source/latex/uml/Makefile + RELOC/source/latex/uml/uml.dtx + RELOC/source/latex/uml/uml.ins +catalogue-ctan /graphics/pstricks/contrib/uml +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.11 + +name umoline +category Package +revision 19085 +shortdesc Underline text allowing line breaking. +relocated 1 +longdesc Provides commands \Underline, \Midline and \Overline for +longdesc underlining, striking out, and overlining their text arguments. +runfiles size=2 + RELOC/tex/latex/umoline/umoline.sty +docfiles size=56 + RELOC/doc/latex/umoline/README + RELOC/doc/latex/umoline/umoline-man.tex + RELOC/doc/latex/umoline/umoline.pdf +srcfiles size=13 + RELOC/source/latex/umoline/umoline.dtx + RELOC/source/latex/umoline/umoline.ins +catalogue-ctan /macros/latex/contrib/umoline +catalogue-date 2011-10-30 13:37:56 +0100 +catalogue-license lppl + +name umthesis +category Package +revision 15878 +shortdesc Dissertations at the University of Michigan. +relocated 1 +longdesc The class loads book class, and makes minimal changes to it; +longdesc its coding aims to be as robust as possible, and as a result it +longdesc has few conflicts with potential add-on packages. +runfiles size=6 + RELOC/tex/latex/umthesis/umthesis.cls +docfiles size=61 + RELOC/doc/latex/umthesis/PDP.tex + RELOC/doc/latex/umthesis/README + RELOC/doc/latex/umthesis/appendix.tex + RELOC/doc/latex/umthesis/conclusion.tex + RELOC/doc/latex/umthesis/example.pdf + RELOC/doc/latex/umthesis/example.tex + RELOC/doc/latex/umthesis/exp1.tex + RELOC/doc/latex/umthesis/exp2.tex + RELOC/doc/latex/umthesis/exp3.tex + RELOC/doc/latex/umthesis/felty.bib + RELOC/doc/latex/umthesis/intro.tex + RELOC/doc/latex/umthesis/mybibstyle.bst +catalogue-ctan /macros/latex/contrib/umthesis +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.2 + +name umtypewriter +category Package +revision 18651 +shortdesc Fonts to typeset with the xgreek package. +relocated 1 +longdesc The UMTypewriter font family is a monospaced font family that +longdesc was built from glyphs from the CB Greek fonts, the CyrTUG +longdesc Cyrillic alphabet fonts ("LH"), and the standard Computer +longdesc Modern font family. It contains four OpenType fonts which are +longdesc required for use of the xgreek package for XeLaTeX. +runfiles size=197 + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Bold.otf + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-BoldItalic.otf + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Italic.otf + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Oblique.otf + RELOC/fonts/opentype/public/umtypewriter/UMTypewriter-Regular.otf +catalogue-ctan /fonts/umtypewriter +catalogue-date 2014-06-05 22:30:35 +0200 +catalogue-license ofl +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 +shortdesc UNAM Thesis LaTeX Template +relocated 1 +longdesc The bundle provides a template for UNAM's College of +longdesc Engineering Theses. The work is based on Harish Bhanderi's +longdesc PhD/MPhil template, and the University of Cambridge Engineering +longdesc Department template. +docfiles size=1563 + RELOC/doc/latex/unamth-template/Agradecimientos/Agradecimientos.tex + RELOC/doc/latex/unamth-template/Agradecimientos/Dedicatoria.tex + RELOC/doc/latex/unamth-template/Apendice1/Apendice1.tex + RELOC/doc/latex/unamth-template/Bibliografia/referencias.bib + RELOC/doc/latex/unamth-template/Capitulo1/introduccion.tex + RELOC/doc/latex/unamth-template/Capitulo2/marco_teorico.tex + RELOC/doc/latex/unamth-template/Capitulo3/diseno_experimento.tex + RELOC/doc/latex/unamth-template/Capitulo3/figs/planta.jpg + RELOC/doc/latex/unamth-template/Capitulo4/resultados_y_analisis.tex + RELOC/doc/latex/unamth-template/Capitulo5/conclusiones.tex + RELOC/doc/latex/unamth-template/Declaracion/Declaracion.tex + RELOC/doc/latex/unamth-template/LICENSE + RELOC/doc/latex/unamth-template/Latex/Classes/CUEDbiblio.bst + RELOC/doc/latex/unamth-template/Latex/Classes/CUEDthesisPSnPDF.texshop + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/fi_azul.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/fi_negro.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/unam_azul.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/unam_azul_5x5cm.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/unam_negro.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/Escudos/unam_negro_5x5cm.pdf + RELOC/doc/latex/unamth-template/Latex/Classes/PhDbiblio-bold.bst + RELOC/doc/latex/unamth-template/Latex/Classes/PhDbiblio-case.bst + RELOC/doc/latex/unamth-template/Latex/Classes/PhDbiblio-url.bst + RELOC/doc/latex/unamth-template/Latex/Classes/PhDbiblio-url2.bst + RELOC/doc/latex/unamth-template/Latex/Classes/PhDthesisPSnPDF.cls + RELOC/doc/latex/unamth-template/Latex/Classes/PhDthesisPSnPDF.cls.bak + RELOC/doc/latex/unamth-template/Latex/Classes/urlbst + RELOC/doc/latex/unamth-template/Latex/Macros/MacroFile1.tex + RELOC/doc/latex/unamth-template/Latex/Macros/MacroFile1.tex.bak + RELOC/doc/latex/unamth-template/README.md + 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.tex +catalogue-ctan /macros/latex/contrib/unamth-template +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license gpl3 +catalogue-version 2.0 + +name underlin +category Package +revision 15878 +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 +docfiles size=21 + RELOC/doc/latex/underlin/underlin.pdf +srcfiles size=2 + RELOC/source/latex/underlin/underlin.dtx + RELOC/source/latex/underlin/underlin.ins +catalogue-ctan /macros/latex/contrib/underlin +catalogue-date 2012-06-26 18:23:46 +0200 +catalogue-license lppl +catalogue-version 1.01 + +name underoverlap +category Package +revision 29019 +shortdesc Position decorations over and under expressions. +relocated 1 +longdesc The package overcomes TeX's inherent limitations in commands +longdesc that place decorations (such as braces) at arbirary positions +longdesc over and under expressions, overlapping as necessary. +runfiles size=4 + RELOC/tex/latex/underoverlap/underoverlap.sty +docfiles size=76 + RELOC/doc/latex/underoverlap/README + RELOC/doc/latex/underoverlap/dry.sty + RELOC/doc/latex/underoverlap/packagedoc.cls + RELOC/doc/latex/underoverlap/underoverlap.pdf + RELOC/doc/latex/underoverlap/underoverlap.tex + RELOC/doc/latex/underoverlap/with.sty +catalogue-ctan /macros/latex/contrib/underoverlap +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.0.1-r1 + +name underscore +category Package +revision 18261 +shortdesc Control the behaviour of "_" in text. +relocated 1 +longdesc With the package, \_ in text mode (i.e., \textunderscore) +longdesc prints an underscore so that hyphenation of words either side +longdesc of it is not affected; a package option controls whether an +longdesc actual hyphenation point appears after the underscore, or +longdesc merely a break point. The package also arranges that, while in +longdesc text, '_' itself behaves as \textunderscore (the behaviour of _ +longdesc in maths mode is not affected). +runfiles size=3 + RELOC/tex/latex/underscore/underscore.sty +docfiles size=65 + RELOC/doc/latex/underscore/miscdoc.sty + RELOC/doc/latex/underscore/underscore.pdf + RELOC/doc/latex/underscore/underscore.tex +catalogue-ctan /macros/latex/contrib/underscore +catalogue-date 2013-09-20 11:57:07 +0200 +catalogue-license lppl + +name undolabl +category Package +revision 36681 +shortdesc Override existing labels. +relocated 1 +longdesc The package allows the user to override existing labels (for +longdesc example, those generated automatically). +runfiles size=2 + RELOC/tex/latex/undolabl/undolabl.sty +docfiles size=91 + RELOC/doc/latex/undolabl/README + RELOC/doc/latex/undolabl/undolabl-example.pdf + RELOC/doc/latex/undolabl/undolabl-example.tex + RELOC/doc/latex/undolabl/undolabl.pdf +srcfiles size=13 + RELOC/source/latex/undolabl/undolabl.drv + RELOC/source/latex/undolabl/undolabl.dtx + RELOC/source/latex/undolabl/undolabl.ins +catalogue-ctan /macros/latex/contrib/undolabl +catalogue-date 2015-03-30 15:49:30 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0l + +name unicode-math +category Package +revision 38337 +shortdesc Unicode mathematics support for XeTeX and LuaTeX +relocated 1 +longdesc This package will provide a complete implementation of unicode +longdesc maths for XeLaTeX and LuaLaTeX. Unicode maths is currently +longdesc supported by the following fonts: Cambria Math (Microsoft), +longdesc Minion Math (Johannes Kuster, typoma GmbH) Latin Modern Math +longdesc (Boguslaw Jackowski, Janusz M. Nowacki) TeX Gyre Pagella Math +longdesc (Boguslaw Jackowski, Janusz M. Nowacki) Asana-Math fonts +longdesc (Apostolos Syropolous), Neo Euler (Khaled Hosny), STIX (STI +longdesc Pub), and XITS Math (Khaled Hosny). As well as running XeTeX or +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 + 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-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 + +name unisugar +category Package +revision 22357 +shortdesc Define syntactic sugar for Unicode LaTeX. +relocated 1 +longdesc The package allows the user to define shorthand aliases for +longdesc single Unicode characters, and also provides support for such +longdesc aliases in RTL-text. The package requires an TeX-alike system +longdesc that uses Unicode input in a native way: current examples are +longdesc XeTeX and LuaTeX. +runfiles size=2 + RELOC/tex/xelatex/unisugar/unisugar.sty +docfiles size=133 + RELOC/doc/xelatex/unisugar/Makefile + RELOC/doc/xelatex/unisugar/README + RELOC/doc/xelatex/unisugar/gedit-mixed-sugar.png + RELOC/doc/xelatex/unisugar/gedit-mixed-traditional.png + RELOC/doc/xelatex/unisugar/sugar.png + RELOC/doc/xelatex/unisugar/traditional.png + RELOC/doc/xelatex/unisugar/unisugar.pdf + RELOC/doc/xelatex/unisugar/unisugar.tex +catalogue-ctan /macros/xetex/latex/unisugar +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.92 + +name unitsdef +category Package +revision 15878 +shortdesc Typesetting units in LaTeX. +relocated 1 +longdesc Many packages for typesetting units have been written for use +longdesc in LaTeX2e. Some define macros to typeset a lot of units but do +longdesc not suit to the actual font settings, some make the characters +longdesc needed available but do not predefine any unit. This package +longdesc tries to comply with both requirements. It predefines common +longdesc units, defines an easy to use interface to define new units and +longdesc changes the output concerning to the surrounding font settings. +runfiles size=14 + RELOC/tex/latex/unitsdef/ampabbrv.cfg + RELOC/tex/latex/unitsdef/enerabbr.cfg + RELOC/tex/latex/unitsdef/freqabbr.cfg + RELOC/tex/latex/unitsdef/lengabbr.cfg + RELOC/tex/latex/unitsdef/molabbrv.cfg + RELOC/tex/latex/unitsdef/timeabbr.cfg + RELOC/tex/latex/unitsdef/unitsdef.sty + RELOC/tex/latex/unitsdef/volabbrv.cfg + RELOC/tex/latex/unitsdef/voltabbr.cfg + RELOC/tex/latex/unitsdef/weigabbr.cfg +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-ctan /macros/latex/contrib/unitsdef +catalogue-date 2012-04-20 15:37:05 +0200 +catalogue-license lppl +catalogue-version 0.2 + +name units +category Package +revision 36944 +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. +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 +catalogue-license gpl +catalogue-version 0.9b + +name universalis +category Package +revision 33860 +shortdesc Universalis font, with support. +relocated 1 +longdesc This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX +longdesc support for the UniversalisADFStd family of fonts, designed by +longdesc Hirwin Harendal. The font is suitable as an alternative to +longdesc fonts such as Adrian Frutiger's Univers and Frutiger. +execute addMap universalis.map +runfiles size=326 + RELOC/fonts/enc/dvips/universalis/unvsl_fe7xck.enc + RELOC/fonts/enc/dvips/universalis/unvsl_qu6a6x.enc + RELOC/fonts/enc/dvips/universalis/unvsl_sjpjw4.enc + RELOC/fonts/enc/dvips/universalis/unvsl_xtabpf.enc + RELOC/fonts/map/dvips/universalis/universalis.map + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-Bold.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldCond.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldCondIt.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-BoldItalic.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-Cond.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-CondItalic.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-Italic.otf + RELOC/fonts/opentype/arkandis/universalis/UniversalisADFStd-Regular.otf + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1--lcdfj.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-t1.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1--base.tfm + RELOC/fonts/tfm/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1.tfm + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-Bold.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCond.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondIt.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondItLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldCondLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldItalic.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-BoldLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-Cond.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-CondItalic.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-CondItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-CondLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-Italic.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-ItalicLCDFJ.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-Regular.pfb + RELOC/fonts/type1/arkandis/universalis/UniversalisADFStd-RegularLCDFJ.pfb + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Bold-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCond-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldCondIt-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-BoldItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Cond-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-CondItalic-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Italic-lf-ts1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ly1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ot1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-t1.vf + RELOC/fonts/vf/arkandis/universalis/UniversalisADFStd-Regular-lf-ts1.vf + RELOC/tex/latex/universalis/LY1UniversalisADFStd-LF.fd + RELOC/tex/latex/universalis/OT1UniversalisADFStd-LF.fd + RELOC/tex/latex/universalis/T1UniversalisADFStd-LF.fd + RELOC/tex/latex/universalis/TS1UniversalisADFStd-LF.fd + RELOC/tex/latex/universalis/UniversalisADFStd.sty + RELOC/tex/latex/universalis/universalis.sty +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-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-license lppl1.3 +catalogue-version 0.2 + +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 + RELOC/source/latex/unravel/unravel.dtx + RELOC/source/latex/unravel/unravel.ins +catalogue-ctan /macros/latex/contrib/unravel +catalogue-date 2013-08-20 11:39:33 +0200 +catalogue-license lppl +catalogue-version 0.0a + +name unswcover +category Package +revision 29476 +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 +docfiles size=43 + RELOC/doc/latex/unswcover/COPYING + RELOC/doc/latex/unswcover/Makefile + RELOC/doc/latex/unswcover/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.tex +catalogue-ctan /macros/latex/contrib/unswcover +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name uothesis +category Package +revision 25355 +shortdesc Class for dissertations and theses at the University of Oregon. +relocated 1 +longdesc The class generates documents that are suitable for submission +longdesc to the Graduate School and conform with the style requirements +longdesc for dissertations and theses as laid out in the Fall 2010 UO +longdesc graduate school student manual. +runfiles size=8 + RELOC/tex/latex/uothesis/uothesis.cls +docfiles size=154 + RELOC/doc/latex/uothesis/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 +srcfiles size=25 + RELOC/source/latex/uothesis/uothesis.dtx + RELOC/source/latex/uothesis/uothesis.ins +catalogue-ctan /macros/latex/contrib/uothesis +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +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. +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. +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-license lppl1.3 +catalogue-version 1.0a + +name upca +category Package +revision 22511 +shortdesc Print UPC-A barcodes. +relocated 1 +longdesc The package defines a single macro \upca, to print UPC-A +longdesc barcodes. +runfiles size=2 + RELOC/tex/generic/upca/upca.tex +docfiles size=2 + RELOC/doc/generic/upca/README + RELOC/doc/generic/upca/test-upca.tex +catalogue-ctan /macros/generic/upca +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name upmethodology +category Package +revision 38094 +shortdesc Writing specifications such as for UP-based methodologies +relocated 1 +longdesc The bundle allows the user to create Unified Process +longdesc methodology (UP or RUP) based documents. The style provides +longdesc document versioning, document history, document authors, +longdesc document validators, specification description, task +longdesc management, and several helping macros. +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 +docfiles size=183 + RELOC/doc/latex/upmethodology/AUTHORS + RELOC/doc/latex/upmethodology/COPYING + RELOC/doc/latex/upmethodology/Changelog + RELOC/doc/latex/upmethodology/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/upmethodology-doc.tex +catalogue-ctan /macros/latex/contrib/upmethodology +catalogue-date 2015-08-10 18:57:07 +0200 +catalogue-license lgpl +catalogue-topics doc-mgmt + +name upquote +category Package +revision 26059 +shortdesc Show "realistic" quotes in verbatim. +relocated 1 +longdesc Typewriter-style fonts are best for program listings, but +longdesc Computer Modern Typewriter prints ` and ' as bent opening and +longdesc closing single quotes. Other fonts, and most programming +longdesc languages, print ` as a grave accent and ' upright; ' is used +longdesc both to open and to close quoted strings. The package switches +longdesc the typewriter font to Computer Modern Typewriter in OT1 +longdesc encoding, and modifies the behaviour of verbatim, verbatim*, +longdesc \verb, and \verb* to print in the "` and ' way". It does +longdesc thisregardless of other fonts or encodings in use, so long as +longdesc the package is loaded after the other fonts were. The package +longdesc does not affect \tt, \texttt, etc. +runfiles size=1 + RELOC/tex/latex/upquote/upquote.sty +docfiles size=44 + RELOC/doc/latex/upquote/README + RELOC/doc/latex/upquote/upquote.pdf +srcfiles size=3 + RELOC/source/latex/upquote/upquote.dtx + RELOC/source/latex/upquote/upquote.ins +catalogue-ctan /macros/latex/contrib/upquote +catalogue-date 2012-04-19 20:55:14 +0200 +catalogue-license lppl1.2 +catalogue-version v1.3 + +name uptex +category Package +revision 36796 +shortdesc Unicode version of pTeX. +longdesc upTeX is an extension of pTeX, using UTF-8 input and producing +longdesc UTF-8 output. It was originally designed to improve support for +longdesc Japanese, but is also useful for documents in Chinese and +longdesc Korean. It can process Chinese simplified, Chinese traditional, +longdesc Japanese, and Korean simultaneously, and can also process +longdesc original LaTeX with \inputenc{utf8} and Babel +longdesc (Latin/Cyrillic/Greek etc.) by switching its \kcatcode tables. +depend ptex +depend hyph-utf8 +depend adobemapping +depend convbkmk +depend ipaex +depend japanese +depend japanese-otf +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 +catalogue-license other-free +catalogue-version 1.20 + +name uptex.i386-linux +category Package +revision 37340 +shortdesc i386-linux files of uptex +binfiles arch=i386-linux size=1715 + bin/i386-linux/euptex + bin/i386-linux/upbibtex + bin/i386-linux/updvitomp + bin/i386-linux/updvitype + bin/i386-linux/uplatex + bin/i386-linux/upmpost + bin/i386-linux/uppltotf + bin/i386-linux/uptex + bin/i386-linux/uptftopl + bin/i386-linux/wovp2ovf + +name urcls +category Package +revision 37550 +shortdesc Beamer and scrlttr2 classes and styles for the University of Regensburg. +relocated 1 +longdesc The bundle provides a beamer-derived class and a theme style +longdesc file for the corporate design of the University of Regensburg. +longdesc It also contains a scrlttr2-derived class for letters using the +longdesc corporate design of the UR. Users may use the class itself +longdesc (URbeamer) or use the theme in the usual way with +longdesc \usetheme{UR}. Examples of using both letters and presentations +longdesc are provided as .tex and .pdf-files. +runfiles size=13 + RELOC/tex/latex/urcls/URbeamer.cls + RELOC/tex/latex/urcls/URcolors.sty + RELOC/tex/latex/urcls/URletter.cls + 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-license lppl +catalogue-topics letter presentation class +catalogue-version 1.1 + +name uri +category Package +revision 21608 +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 + RELOC/doc/latex/uri/uri-example.tex + RELOC/doc/latex/uri/uri.pdf +srcfiles size=14 + RELOC/source/latex/uri/ltxdoc.cfg + RELOC/source/latex/uri/uri.drv + RELOC/source/latex/uri/uri.dtx + RELOC/source/latex/uri/uri.ins +catalogue-ctan /macros/latex/contrib/uri +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0a + +name urlbst +category Package +revision 29803 +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 +docfiles size=86 + texmf-dist/doc/bibtex/urlbst/Makefile.in + texmf-dist/doc/bibtex/urlbst/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.in + texmf-dist/doc/bibtex/urlbst/urlbst.in + texmf-dist/doc/bibtex/urlbst/urlbst.pdf + texmf-dist/doc/bibtex/urlbst/urlbst.tex + texmf-dist/doc/bibtex/urlbst/urlbst.tex.in +srcfiles size=20 + texmf-dist/source/bibtex/urlbst/configure + texmf-dist/source/bibtex/urlbst/configure.ac +catalogue-ctan /biblio/bibtex/contrib/urlbst +catalogue-date 2011-11-15 11:50:22 +0100 +catalogue-license gpl +catalogue-version 0.7 + +name urlbst.i386-linux +category Package +revision 23262 +shortdesc i386-linux files of urlbst +binfiles arch=i386-linux size=1 + bin/i386-linux/urlbst + +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. +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 + +name urwchancal +category Package +revision 21701 +shortdesc Use URW's clone of Zapf Chancery as a maths alphabet. +relocated 1 +longdesc The package allows (the URW clone of) Zapf Chancery to function +longdesc as a maths alphabet, the target of \mathcal or \mathscr, with +longdesc accents appearing where they should, and other spacing +longdesc parameters set to reasonable (not very tight) values. The font +longdesc itself may be found in the URW basic fonts collection. This +longdesc package supersedes the pzccal package. +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-license lppl +catalogue-version 1 + +name usebib +category Package +revision 25969 +shortdesc A simple bibliography processor. +relocated 1 +longdesc The package is described by its author as "a poor person's +longdesc replacement for the more powerful methods provided by biblatex +longdesc to access data from a .bib file". Its principle commands are +longdesc \bibinput (which specifies a database to use) and \usebibdata +longdesc (which typesets a single field from a specified entry in that +longdesc database. +runfiles size=1 + RELOC/tex/latex/usebib/usebib.sty +docfiles size=64 + RELOC/doc/latex/usebib/README + RELOC/doc/latex/usebib/usebib.pdf +srcfiles size=5 + RELOC/source/latex/usebib/usebib.dtx + RELOC/source/latex/usebib/usebib.ins +catalogue-ctan /macros/latex/contrib/usebib +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0a + +name ushort +category Package +revision 32261 +shortdesc Shorter (and longer) underlines and underbars. +relocated 1 +longdesc Some engineers need underlined or twice underlined variables +longdesc for which the usual \underline is too long. This package +longdesc provides a generic command for creating underlines of various +longdesc sizes and types. +runfiles size=1 + RELOC/tex/latex/ushort/ushort.sty +docfiles size=25 + RELOC/doc/latex/ushort/README + RELOC/doc/latex/ushort/ushort.pdf + RELOC/doc/latex/ushort/ushort.tex + RELOC/doc/latex/ushort/ushort.txt +srcfiles size=10 + RELOC/source/latex/ushort/ushort.dtx + RELOC/source/latex/ushort/ushort.ins +catalogue-ctan /macros/latex/contrib/ushort +catalogue-date 2012-04-09 09:24:18 +0200 +catalogue-license lppl +catalogue-version 2.2 + +name uspatent +category Package +revision 27744 +shortdesc U.S. Patent Application Tools for LaTeX and LyX. +relocated 1 +longdesc The package provides a class and other tools for developing a +longdesc beautifully formatted, consistent U.S. Patent Application using +longdesc LaTeX and/or LyX. +runfiles size=5 + RELOC/tex/latex/uspatent/uspatent.cls +docfiles size=776 + RELOC/doc/latex/uspatent/DocumentSettings.png + RELOC/doc/latex/uspatent/DrawingZoomBad.png + RELOC/doc/latex/uspatent/DrawingZoomGood.png + RELOC/doc/latex/uspatent/Drawings.lyx + RELOC/doc/latex/uspatent/Drawings.tex + RELOC/doc/latex/uspatent/LyX.png + RELOC/doc/latex/uspatent/LyXCustomInsets.png + RELOC/doc/latex/uspatent/LyXDocumentSettingsFont.png + RELOC/doc/latex/uspatent/LyXDocumentSettingsOutput.png + RELOC/doc/latex/uspatent/LyXEnvironments.png + RELOC/doc/latex/uspatent/LyXSettings.png + RELOC/doc/latex/uspatent/LyXSettingsDocumentClass.png + RELOC/doc/latex/uspatent/PatentApplication.lyx + RELOC/doc/latex/uspatent/PatentApplication.pdf + RELOC/doc/latex/uspatent/PatentApplication.tex + RELOC/doc/latex/uspatent/PatentApplicationGuide.lyx + RELOC/doc/latex/uspatent/PatentApplicationGuide.pdf + RELOC/doc/latex/uspatent/PatentApplicationGuide.tex + RELOC/doc/latex/uspatent/README + RELOC/doc/latex/uspatent/TeXworks.png + RELOC/doc/latex/uspatent/TpXDrawing.tpx + RELOC/doc/latex/uspatent/TpXSettingsAccess.png + RELOC/doc/latex/uspatent/VisioDrawing.pdf + RELOC/doc/latex/uspatent/VisioDrawing.vsd + RELOC/doc/latex/uspatent/VisioMainDrawing.vsd + RELOC/doc/latex/uspatent/VisioSave.png + RELOC/doc/latex/uspatent/annotationAlignment.png + RELOC/doc/latex/uspatent/uspatent.layout +catalogue-ctan /macros/latex/contrib/uspatent +catalogue-date 2014-09-14 18:18:23 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name utf8mex +category Package +revision 15878 +shortdesc Tools to produce formats that read Polish language input. +relocated 1 +longdesc The bundle provides files for building formats to read input in +longdesc Polish encodings. +runfiles size=3 + RELOC/tex/mex/utf8mex/utf8-pl.tex + RELOC/tex/mex/utf8mex/utf8mex.ini + RELOC/tex/mex/utf8mex/utf8plsq.tex +docfiles size=12 + RELOC/doc/mex/utf8mex/Makefile + RELOC/doc/mex/utf8mex/README + RELOC/doc/mex/utf8mex/examples/Makefile + RELOC/doc/mex/utf8mex/examples/catcode.tex + RELOC/doc/mex/utf8mex/examples/list.tex + RELOC/doc/mex/utf8mex/examples/tilde.tex + RELOC/doc/mex/utf8mex/examples/tilde2.tex + RELOC/doc/mex/utf8mex/test-math.utf8.tex + RELOC/doc/mex/utf8mex/test.utf8.tex + RELOC/doc/mex/utf8mex/utf8math.el +catalogue-ctan /language/polish/utf8mex +catalogue-date 2015-03-30 22:55:45 +0200 +catalogue-license pd + +name utopia +category Package +revision 15878 +shortdesc Adobe Utopia fonts. +relocated 1 +longdesc The Adobe Standard Encoding set (upright and italic shapes, +longdesc medium and bold weights) of the Utopia font family, which Adobe +longdesc donated to the X Consortium. Macro support, and maths fonts +longdesc that match the Utopia family, are provided by the Fourier and +longdesc the Mathdesign font packages. +runfiles size=168 + RELOC/fonts/afm/adobe/utopia/putb8a.afm + RELOC/fonts/afm/adobe/utopia/putbi8a.afm + RELOC/fonts/afm/adobe/utopia/putr8a.afm + RELOC/fonts/afm/adobe/utopia/putri8a.afm + RELOC/fonts/tfm/adobe/utopia/putb7t.tfm + RELOC/fonts/tfm/adobe/utopia/putb8c.tfm + RELOC/fonts/tfm/adobe/utopia/putb8r.tfm + RELOC/fonts/tfm/adobe/utopia/putb8t.tfm + RELOC/fonts/tfm/adobe/utopia/putbc7t.tfm + RELOC/fonts/tfm/adobe/utopia/putbc8t.tfm + RELOC/fonts/tfm/adobe/utopia/putbi7t.tfm + RELOC/fonts/tfm/adobe/utopia/putbi8c.tfm + RELOC/fonts/tfm/adobe/utopia/putbi8r.tfm + RELOC/fonts/tfm/adobe/utopia/putbi8t.tfm + RELOC/fonts/tfm/adobe/utopia/putbo7t.tfm + RELOC/fonts/tfm/adobe/utopia/putbo8c.tfm + RELOC/fonts/tfm/adobe/utopia/putbo8r.tfm + RELOC/fonts/tfm/adobe/utopia/putbo8t.tfm + RELOC/fonts/tfm/adobe/utopia/putr7t.tfm + RELOC/fonts/tfm/adobe/utopia/putr8c.tfm + RELOC/fonts/tfm/adobe/utopia/putr8r.tfm + RELOC/fonts/tfm/adobe/utopia/putr8t.tfm + RELOC/fonts/tfm/adobe/utopia/putrc7t.tfm + RELOC/fonts/tfm/adobe/utopia/putrc8t.tfm + RELOC/fonts/tfm/adobe/utopia/putri7t.tfm + RELOC/fonts/tfm/adobe/utopia/putri8c.tfm + RELOC/fonts/tfm/adobe/utopia/putri8r.tfm + RELOC/fonts/tfm/adobe/utopia/putri8t.tfm + RELOC/fonts/tfm/adobe/utopia/putro7t.tfm + RELOC/fonts/tfm/adobe/utopia/putro8c.tfm + RELOC/fonts/tfm/adobe/utopia/putro8r.tfm + RELOC/fonts/tfm/adobe/utopia/putro8t.tfm + RELOC/fonts/type1/adobe/utopia/putb8a.pfb + RELOC/fonts/type1/adobe/utopia/putbi8a.pfb + RELOC/fonts/type1/adobe/utopia/putr8a.pfb + RELOC/fonts/type1/adobe/utopia/putri8a.pfb + RELOC/fonts/vf/adobe/utopia/putb7t.vf + RELOC/fonts/vf/adobe/utopia/putb8c.vf + RELOC/fonts/vf/adobe/utopia/putb8t.vf + RELOC/fonts/vf/adobe/utopia/putbc7t.vf + RELOC/fonts/vf/adobe/utopia/putbc8t.vf + RELOC/fonts/vf/adobe/utopia/putbi7t.vf + RELOC/fonts/vf/adobe/utopia/putbi8c.vf + RELOC/fonts/vf/adobe/utopia/putbi8t.vf + RELOC/fonts/vf/adobe/utopia/putbo7t.vf + RELOC/fonts/vf/adobe/utopia/putbo8c.vf + RELOC/fonts/vf/adobe/utopia/putbo8t.vf + RELOC/fonts/vf/adobe/utopia/putr7t.vf + RELOC/fonts/vf/adobe/utopia/putr8c.vf + RELOC/fonts/vf/adobe/utopia/putr8t.vf + RELOC/fonts/vf/adobe/utopia/putrc7t.vf + RELOC/fonts/vf/adobe/utopia/putrc8t.vf + RELOC/fonts/vf/adobe/utopia/putri7t.vf + RELOC/fonts/vf/adobe/utopia/putri8c.vf + RELOC/fonts/vf/adobe/utopia/putri8t.vf + RELOC/fonts/vf/adobe/utopia/putro7t.vf + RELOC/fonts/vf/adobe/utopia/putro8c.vf + RELOC/fonts/vf/adobe/utopia/putro8t.vf +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-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 + +name uwmslide +category Package +revision 27354 +shortdesc Slides with a simple Power Point like appearance. +relocated 1 +longdesc A slide format which produces slides with a simple Power Point +longdesc like appearance. Several useful features include: use of +longdesc standard titlepage to produce title slide; several slide +longdesc environments including plain (page with a title), double slide +longdesc (two column page with slide title), item slide (item list with +longdesc title), left item slide, and right item slide. Logos are placed +longdesc in the upper left corner of each slide if the logo file +longdesc logo.eps is present. Preconfigured in landscape mode by default +longdesc and uses Times Roman by default (originally, it was claimed, +longdesc for simple conversion to PDF format). +runfiles size=4 + RELOC/tex/latex/uwmslide/uwmslide.cls +docfiles size=12 + RELOC/doc/latex/uwmslide/README + RELOC/doc/latex/uwmslide/logo.eps + RELOC/doc/latex/uwmslide/test.tex + RELOC/doc/latex/uwmslide/vaux.eps +catalogue-ctan /macros/latex/contrib/uwmslide +catalogue-date 2012-08-13 12:34:19 +0200 +catalogue-license artistic + +name uwthesis +category Package +revision 15878 +shortdesc University of Washington thesis class. +relocated 1 +runfiles size=8 + RELOC/tex/latex/uwthesis/uwthesis.cls +docfiles size=51 + RELOC/doc/latex/uwthesis/LICENSE + RELOC/doc/latex/uwthesis/README + RELOC/doc/latex/uwthesis/uwthesis.bib + RELOC/doc/latex/uwthesis/uwthesis.pdf + RELOC/doc/latex/uwthesis/uwthesis.tex +catalogue-ctan /macros/latex/contrib/uwthesis +catalogue-date 2011-11-23 23:58:18 +0100 +catalogue-license apache2 +catalogue-version 6.13 + +name vak +category Package +revision 23431 +shortdesc BibTeX style for Russian Theses, books, etc. +relocated 1 +longdesc The file can be used to format the bibliographies of PhD +longdesc theses, books etc., according to the latest Russian standards: +longdesc GOST 7.82 - 2001 and GOST 7.1 - 2003. It introduces the minimum +longdesc number of new entries and styles to cover all frequently used +longdesc situations. The style file provides an easy way to perform a +longdesc semiautomatic, or a completely manual sort of the list of the +longdesc references. Processing bibliographies produced by the style +longdesc requires a 8-bit BibTeX system. +runfiles size=8 + RELOC/bibtex/bst/vak/vak.bst +docfiles size=24 + RELOC/doc/bibtex/vak/README + RELOC/doc/bibtex/vak/test-key.zip + RELOC/doc/bibtex/vak/test.zip +catalogue-ctan /biblio/bibtex/contrib/vak +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name vancouver +category Package +revision 34470 +shortdesc Bibliographic style file for Biomedical Journals. +relocated 1 +longdesc This BibTeX style file is generated with the docstrip utility +longdesc and modified manually to meet the Uniform Requirements for +longdesc Manuscripts Submitted to Biomedical Journals as published in N +longdesc Engl J Med 1997;336:309-315 (also known as the Vancouver +longdesc style). The complete set of requirements may be viewed on the +longdesc ICMJE web site. +runfiles size=10 + RELOC/bibtex/bst/vancouver/vancouver.bst +docfiles size=32 + RELOC/doc/bibtex/vancouver/FAQ + RELOC/doc/bibtex/vancouver/README + RELOC/doc/bibtex/vancouver/vancouver.bib + RELOC/doc/bibtex/vancouver/vancouver.pdf + RELOC/doc/bibtex/vancouver/vancouver.tex +catalogue-ctan /biblio/bibtex/contrib/vancouver +catalogue-date 2014-06-28 21:47:21 +0200 +catalogue-license lppl1.3 + +name variations +category Package +revision 15878 +shortdesc Typeset tables of variations of functions. +relocated 1 +longdesc The package provides macros for typesetting tables showing +longdesc variations of functions according to French usage. These macros +longdesc may be used by both LaTeX and plain TeX users. +runfiles size=2 + RELOC/tex/generic/variations/variations.sty + RELOC/tex/generic/variations/variations.tex +docfiles size=29 + RELOC/doc/generic/variations/ALIRE + RELOC/doc/generic/variations/COPYING + RELOC/doc/generic/variations/README + RELOC/doc/generic/variations/docvariations.pdf + RELOC/doc/generic/variations/docvariations.tex +catalogue-ctan /macros/generic/variations +catalogue-date 2012-06-24 22:10:37 +0200 +catalogue-license gpl +catalogue-version 0.3 + +name varindex +category Package +revision 32262 +shortdesc Luxury frontend to the \index command. +relocated 1 +longdesc Provides a convenient front-end for the \index command. For +longdesc example, with it you can generate multiple index entries in +longdesc almost any form by a single command. The package is highly +longdesc customizable, and works with all versions of LaTeX and probably +longdesc most other TeX formats. +runfiles size=8 + RELOC/tex/latex/varindex/varindex.sty +docfiles size=74 + RELOC/doc/latex/varindex/README + RELOC/doc/latex/varindex/varindex.pdf + RELOC/doc/latex/varindex/varindex.tex + RELOC/doc/latex/varindex/varindex.txt +srcfiles size=51 + RELOC/source/latex/varindex/varindex.dtx + RELOC/source/latex/varindex/varindex.ins +catalogue-ctan /macros/latex/contrib/varindex +catalogue-date 2013-11-27 07:34:41 +0100 +catalogue-license lppl +catalogue-version 2.3 + +name varisize +category Package +revision 15878 +shortdesc Change font size in Plain TeX. +relocated 1 +longdesc A series of files, each of which defines a size-change macro. +longdesc Note that 10point.tex is by convention called by one of the +longdesc other files, so that there's always a "way back". +runfiles size=10 + RELOC/tex/plain/varisize/10point.tex + RELOC/tex/plain/varisize/10pointss.tex + RELOC/tex/plain/varisize/11point.tex + RELOC/tex/plain/varisize/12point.tex + RELOC/tex/plain/varisize/14point.tex + RELOC/tex/plain/varisize/17point.tex + RELOC/tex/plain/varisize/20point.tex + RELOC/tex/plain/varisize/7point.tex + RELOC/tex/plain/varisize/8point.tex + RELOC/tex/plain/varisize/9point.tex +docfiles size=1 + RELOC/doc/plain/varisize/README +catalogue-ctan /macros/plain/contrib/varisize +catalogue-date 2012-06-24 22:10:37 +0200 +catalogue-license pd + +name varsfromjobname +category Package +revision 15878 +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 + RELOC/doc/latex/varsfromjobname/varsfromjobname.tex +catalogue-ctan /macros/latex/contrib/varsfromjobname +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.5 + +name varwidth +category Package +revision 24104 +shortdesc A variable-width minipage. +relocated 1 +longdesc The varwidth environment is superficially similar to minipage, +longdesc but the specified width is just a maximum value -- the box may +longdesc get a narrower "natural" width. +runfiles size=3 + RELOC/tex/latex/varwidth/varwidth.sty +docfiles size=10 + RELOC/doc/latex/varwidth/miscdoc.sty + RELOC/doc/latex/varwidth/varwidth-doc.pdf + RELOC/doc/latex/varwidth/varwidth-doc.tex +catalogue-ctan /macros/latex/contrib/varwidth +catalogue-date 2012-06-24 22:10:37 +0200 +catalogue-license lppl +catalogue-version 0.92 + +name vaucanson-g +category Package +revision 15878 +shortdesc PSTricks macros for drawing automata +relocated 1 +longdesc VauCanSon-G is a package that enables the user to draw automata +longdesc within texts written using LaTeX. The package macros make use +longdesc of commands of PStricks +runfiles size=19 + RELOC/tex/generic/vaucanson-g/VCColor-names.def + RELOC/tex/generic/vaucanson-g/VCPref-beamer.tex + RELOC/tex/generic/vaucanson-g/VCPref-default.tex + RELOC/tex/generic/vaucanson-g/VCPref-mystyle.tex + RELOC/tex/generic/vaucanson-g/VCPref-slides.tex + RELOC/tex/generic/vaucanson-g/Vaucanson-G.tex + RELOC/tex/generic/vaucanson-g/vaucanson-g.sty + RELOC/tex/generic/vaucanson-g/vaucanson.sty +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-license lppl +catalogue-version 0.4 + +name vdmlisting +category Package +revision 29944 +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 +docfiles size=22 + RELOC/doc/latex/vdmlisting/README + RELOC/doc/latex/vdmlisting/vdmlisting.pdf + RELOC/doc/latex/vdmlisting/vdmlisting.tex +catalogue-ctan /macros/latex/contrib/vdmlisting +catalogue-date 2013-06-19 11:29:28 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name velthuis +category Package +revision 23224 +catalogue devanagari +shortdesc Typeset Devanagari. +relocated 1 +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 xetex-devanagari +execute addMixedMap dvng.map +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 +catalogue-ctan /language/devanagari/velthuis +catalogue-date 2013-12-13 11:15:58 +0100 +catalogue-license gpl +catalogue-version 2.15.1 + +name venndiagram +category Package +revision 28069 +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 + 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/samples/venn-sample.tex + RELOC/doc/latex/venndiagram/venndiagram.pdf +srcfiles size=14 + RELOC/source/latex/venndiagram/venndiagram.dtx + RELOC/source/latex/venndiagram/venndiagram.ins +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-license lppl + +name venturisadf +category Package +revision 19444 +shortdesc Venturis ADF fonts collection. +relocated 1 +longdesc Serif and sans serif complete text font families, in both Adobe +longdesc Type 1 and OpenType formats for publication. The family is +longdesc based on Utopia family, and has been modified and developed by +longdesc the Arkandis Digital foundry. Support for using the fonts, in +longdesc LaTeX, is also provided (and makes use of the nfssext-cfr +longdesc package). +execute addMap yv1.map +execute addMap yv2.map +execute addMap yv3.map +execute addMap yvo.map +execute addMap yvt.map +runfiles size=2660 + RELOC/fonts/afm/arkandis/venturis/yvtb8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtb8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtbc8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtbc8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtbci8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtbci8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtbd8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtbi8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtbi8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvth8a.afm + RELOC/fonts/afm/arkandis/venturis/yvthi8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtr8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtr8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtrc8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtrc8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtrci8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtrci8ac.afm + RELOC/fonts/afm/arkandis/venturis/yvtrdl8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtri8a.afm + RELOC/fonts/afm/arkandis/venturis/yvtri8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2b8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2b8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2bi8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2bi8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2m8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2mi8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2r8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2r8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2ri8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2ri8ac.afm + RELOC/fonts/afm/arkandis/venturis2/yv2x8a.afm + RELOC/fonts/afm/arkandis/venturis2/yv2xi8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvob8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvobi8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvodd8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvor8a.afm + RELOC/fonts/afm/arkandis/venturisold/yvori8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1b8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1b8ac.afm + RELOC/fonts/afm/arkandis/venturissans/yv1b8ax.afm + RELOC/fonts/afm/arkandis/venturissans/yv1bd8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1bi8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1bi8ac.afm + RELOC/fonts/afm/arkandis/venturissans/yv1bi8ax.afm + RELOC/fonts/afm/arkandis/venturissans/yv1d8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1dd8au.afm + RELOC/fonts/afm/arkandis/venturissans/yv1di8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1h8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1ho8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1l8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1li8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1r8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1r8ac.afm + RELOC/fonts/afm/arkandis/venturissans/yv1r8ax.afm + RELOC/fonts/afm/arkandis/venturissans/yv1ri8a.afm + RELOC/fonts/afm/arkandis/venturissans/yv1ri8ac.afm + RELOC/fonts/afm/arkandis/venturissans/yv1ri8ax.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3b8a.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3b8ac.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3b8ax.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3bi8a.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3bi8ac.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3bi8ax.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3r8a.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3r8ac.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3r8ax.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3ri8a.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3ri8ac.afm + RELOC/fonts/afm/arkandis/venturissans2/yv3ri8ax.afm + RELOC/fonts/enc/dvips/venturisadf/t1-dotalt-f_f-venturisadf.enc + RELOC/fonts/enc/dvips/venturisadf/t1-f_f-venturisadf.enc + RELOC/fonts/enc/dvips/venturisadf/t1-venturis.enc + RELOC/fonts/enc/dvips/venturisadf/t1-venturisold-longs.enc + RELOC/fonts/enc/dvips/venturisadf/ts1-euro-venturisadf.enc + RELOC/fonts/map/dvips/venturis/yvt.map + RELOC/fonts/map/dvips/venturis2/yv2.map + RELOC/fonts/map/dvips/venturisold/yvo.map + RELOC/fonts/map/dvips/venturissans/yv1.map + RELOC/fonts/map/dvips/venturissans2/yv3.map + RELOC/fonts/tfm/arkandis/venturis/t1-yvtb-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtb.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbc.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbci.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbd-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbi-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtbi.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvth.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvthi.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtr-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtr.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrc.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrci.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtrdl.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtri-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1-yvtri.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtbc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtbc.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtbci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtbci.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtrc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtrc.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtrci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/t1alt-yvtrci.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtb-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtb.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbc.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbci.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbd-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbi-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtbi.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvth.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvthi.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtr-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtr.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrc-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrc.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrci-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrci.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtrdl.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtri-c.tfm + RELOC/fonts/tfm/arkandis/venturis/ts1-yvtri.tfm + RELOC/fonts/tfm/arkandis/venturis/vent-yvtr.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtb8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtb8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtb8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtb8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbc8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbc8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbc8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbc8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbci8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbci8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbci8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbci8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcij8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcij8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcijw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcijw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbciw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbciw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcj8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcj8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcjw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcjw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbcw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbd8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbd8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbi8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbi8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbi8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbi8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbij8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbij8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbijw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbijw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbiw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbiw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbj8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbj8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbjw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbjw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtbw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvth8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvth8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvthi8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvthi8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtr8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtr8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtr8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtr8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrajw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtraw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrc8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrc8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrc8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrc8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrci8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrci8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrci8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrci8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcij8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcij8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcijw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcijw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrciw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrciw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcj8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcj8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcjw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcjw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrcw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrdl8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrdl8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtri8c.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtri8cc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtri8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtri8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrij8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrij8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrijw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrijw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtriw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtriw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrj8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrj8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrjw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrjw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrw8t.tfm + RELOC/fonts/tfm/arkandis/venturis/yvtrw8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2b-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2b.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2bi-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2bi.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2m.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2mi.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2r-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2r.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2ri-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2ri.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2x.tfm + RELOC/fonts/tfm/arkandis/venturis2/t1-yv2xi.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2b-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2b.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2bi-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2bi.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2m.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2mi.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2r-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2r.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2ri-c.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2ri.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2x.tfm + RELOC/fonts/tfm/arkandis/venturis2/ts1-yv2xi.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2b8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2b8cc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2b8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2b8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2bi8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2bi8cc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2bi8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2bi8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2m8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2m8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2mi8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2mi8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2r8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2r8cc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2r8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2r8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2ri8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2ri8cc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2ri8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2ri8tc.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2x8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2x8t.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2xi8c.tfm + RELOC/fonts/tfm/arkandis/venturis2/yv2xi8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvob.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvobi.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvodd.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvor.tfm + RELOC/fonts/tfm/arkandis/venturisold/t1-yvori.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvob.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvobi.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvodd.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvor.tfm + RELOC/fonts/tfm/arkandis/venturisold/ts1-yvori.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvoab8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvoabi8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvoar8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvoari8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvob8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvob8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvobi8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvobi8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvodd8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvodd8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvor8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvor8t.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvori8c.tfm + RELOC/fonts/tfm/arkandis/venturisold/yvori8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1b-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1b-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1b.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1bd.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1bi-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1bi-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1bi.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1d.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1dd-u.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1di.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1h.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1ho.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1l.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1li.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1r-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1r-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1r.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1ri-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1ri-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/t1-yv1ri.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1b-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1b-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1b.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1bd.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1bi-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1bi-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1bi.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1d.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1dd-u.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1di.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1h.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1ho.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1l.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1li.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1r-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1r-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1r.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1ri-c.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1ri-x.tfm + RELOC/fonts/tfm/arkandis/venturissans/ts1-yv1ri.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1b8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bd8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bd8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1bi8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1d8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1d8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1dd8cu.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1dd8tu.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1di8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1di8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1h8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1h8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ho8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ho8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1l8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1l8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1li8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1li8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1r8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8c.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8t.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans/yv1ri8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3b-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3b-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3b.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3bi-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3bi-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3bi.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3r-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3r-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3r.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3ri-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3ri-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/t1-yv3ri.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3b-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3b-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3b.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3bi-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3bi-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3bi.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3r-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3r-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3r.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3ri-c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3ri-x.tfm + RELOC/fonts/tfm/arkandis/venturissans2/ts1-yv3ri.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8t.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3b8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8t.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3bi8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8t.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3r8tx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8c.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8cc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8cx.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8t.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8tc.tfm + RELOC/fonts/tfm/arkandis/venturissans2/yv3ri8tx.tfm + RELOC/fonts/type1/arkandis/venturis/yvtb8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtb8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtb8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtb8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbc8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbc8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbc8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbc8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbci8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbci8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbci8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbci8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbd8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbd8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbi8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbi8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtbi8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtbi8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvth8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvth8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvthi8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvthi8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtr8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtr8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtr8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtr8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrc8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrc8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrc8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrc8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrci8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrci8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrci8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrci8ac.pfm + RELOC/fonts/type1/arkandis/venturis/yvtrdl8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtrdl8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtri8a.pfb + RELOC/fonts/type1/arkandis/venturis/yvtri8a.pfm + RELOC/fonts/type1/arkandis/venturis/yvtri8ac.pfb + RELOC/fonts/type1/arkandis/venturis/yvtri8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2b8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2b8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2b8ac.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2b8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2bi8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2bi8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2bi8ac.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2bi8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2m8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2m8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2mi8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2mi8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2r8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2r8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2r8ac.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2r8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2ri8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2ri8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2ri8ac.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2ri8ac.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2x8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2x8a.pfm + RELOC/fonts/type1/arkandis/venturis2/yv2xi8a.pfb + RELOC/fonts/type1/arkandis/venturis2/yv2xi8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvob8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvob8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvobi8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvobi8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvodd8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvodd8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvor8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvor8a.pfm + RELOC/fonts/type1/arkandis/venturisold/yvori8a.pfb + RELOC/fonts/type1/arkandis/venturisold/yvori8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1b8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1b8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1b8ac.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1b8ac.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1b8ax.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1b8ax.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1bd8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1bd8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1bi8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1bi8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1bi8ac.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1bi8ac.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1bi8ax.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1bi8ax.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1d8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1d8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1dd8au.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1dd8au.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1di8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1di8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1h8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1h8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1ho8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1ho8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1l8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1l8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1li8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1li8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1r8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1r8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1r8ac.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1r8ac.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1r8ax.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1r8ax.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1ri8a.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1ri8a.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1ri8ac.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1ri8ac.pfm + RELOC/fonts/type1/arkandis/venturissans/yv1ri8ax.pfb + RELOC/fonts/type1/arkandis/venturissans/yv1ri8ax.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3b8a.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3b8a.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3b8ac.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3b8ac.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3b8ax.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3b8ax.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8a.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8a.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8ac.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8ac.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8ax.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3bi8ax.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3r8a.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3r8a.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3r8ac.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3r8ac.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3r8ax.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3r8ax.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8a.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8a.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8ac.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8ac.pfm + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8ax.pfb + RELOC/fonts/type1/arkandis/venturissans2/yv3ri8ax.pfm + RELOC/fonts/vf/arkandis/venturis/yvtb8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtb8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtb8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtb8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbc8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtbc8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbc8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbc8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbci8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtbci8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbci8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbci8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcij8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcij8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcijw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcijw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbciw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbciw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcj8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcj8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcjw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcjw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbcw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbd8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbd8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbi8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtbi8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbi8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbi8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbij8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbij8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbijw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbijw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbiw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbiw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbj8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbj8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbjw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbjw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtbw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtbw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvth8c.vf + RELOC/fonts/vf/arkandis/venturis/yvth8t.vf + RELOC/fonts/vf/arkandis/venturis/yvthi8c.vf + RELOC/fonts/vf/arkandis/venturis/yvthi8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtr8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtr8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtr8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtr8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrajw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtraw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrc8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtrc8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrc8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrc8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrci8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtrci8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrci8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrci8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcij8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcij8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcijw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcijw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrciw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrciw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcj8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcj8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcjw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcjw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrcw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrdl8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtrdl8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtri8c.vf + RELOC/fonts/vf/arkandis/venturis/yvtri8cc.vf + RELOC/fonts/vf/arkandis/venturis/yvtri8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtri8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrij8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrij8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrijw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrijw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtriw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtriw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrj8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrj8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrjw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrjw8tc.vf + RELOC/fonts/vf/arkandis/venturis/yvtrw8t.vf + RELOC/fonts/vf/arkandis/venturis/yvtrw8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2b8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2b8cc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2b8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2b8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2bi8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2bi8cc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2bi8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2bi8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2m8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2m8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2mi8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2mi8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2r8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2r8cc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2r8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2r8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2ri8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2ri8cc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2ri8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2ri8tc.vf + RELOC/fonts/vf/arkandis/venturis2/yv2x8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2x8t.vf + RELOC/fonts/vf/arkandis/venturis2/yv2xi8c.vf + RELOC/fonts/vf/arkandis/venturis2/yv2xi8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvoab8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvoabi8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvoar8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvoari8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvob8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvob8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvobi8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvobi8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvodd8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvodd8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvor8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvor8t.vf + RELOC/fonts/vf/arkandis/venturisold/yvori8c.vf + RELOC/fonts/vf/arkandis/venturisold/yvori8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8cc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8cx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8tc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1b8tx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bd8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bd8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8cc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8cx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8tc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1bi8tx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1d8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1d8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1dd8cu.vf + RELOC/fonts/vf/arkandis/venturissans/yv1dd8tu.vf + RELOC/fonts/vf/arkandis/venturissans/yv1di8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1di8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1h8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1h8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ho8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ho8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1l8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1l8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1li8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1li8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8cc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8cx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8tc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1r8tx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8c.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8cc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8cx.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8t.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8tc.vf + RELOC/fonts/vf/arkandis/venturissans/yv1ri8tx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8c.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8cc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8cx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8t.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8tc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3b8tx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8c.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8cc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8cx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8t.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8tc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3bi8tx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8c.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8cc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8cx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8t.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8tc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3r8tx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8c.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8cc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8cx.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8t.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8tc.vf + RELOC/fonts/vf/arkandis/venturissans2/yv3ri8tx.vf + RELOC/tex/latex/venturis/t1yvt.fd + RELOC/tex/latex/venturis/t1yvtajw.fd + RELOC/tex/latex/venturis/t1yvtaw.fd + RELOC/tex/latex/venturis/t1yvtd.fd + RELOC/tex/latex/venturis/t1yvtj.fd + RELOC/tex/latex/venturis/t1yvtjw.fd + RELOC/tex/latex/venturis/t1yvtw.fd + RELOC/tex/latex/venturis/ts1yvt.fd + RELOC/tex/latex/venturis/ts1yvtajw.fd + RELOC/tex/latex/venturis/ts1yvtaw.fd + RELOC/tex/latex/venturis/ts1yvtd.fd + RELOC/tex/latex/venturis/ts1yvtj.fd + RELOC/tex/latex/venturis/ts1yvtjw.fd + RELOC/tex/latex/venturis/ts1yvtw.fd + RELOC/tex/latex/venturis2/t1yv2.fd + RELOC/tex/latex/venturis2/ts1yv2.fd + RELOC/tex/latex/venturisadf/venturis.sty + RELOC/tex/latex/venturisadf/venturis2.sty + RELOC/tex/latex/venturisadf/venturisold.sty + RELOC/tex/latex/venturisold/t1yvo.fd + RELOC/tex/latex/venturisold/t1yvoa.fd + RELOC/tex/latex/venturisold/t1yvoad.fd + RELOC/tex/latex/venturisold/t1yvod.fd + RELOC/tex/latex/venturisold/ts1yvo.fd + RELOC/tex/latex/venturisold/ts1yvoa.fd + RELOC/tex/latex/venturisold/ts1yvoad.fd + RELOC/tex/latex/venturisold/ts1yvod.fd + RELOC/tex/latex/venturissans/t1yv1.fd + RELOC/tex/latex/venturissans/t1yv1d.fd + RELOC/tex/latex/venturissans/ts1yv1.fd + RELOC/tex/latex/venturissans/ts1yv1d.fd + RELOC/tex/latex/venturissans2/t1yv3.fd + RELOC/tex/latex/venturissans2/ts1yv3.fd +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-ctan /fonts/venturisadf +catalogue-date 2014-05-21 17:41:13 +0200 +catalogue-license other-free +catalogue-version 1.005 + +name verbasef +category Package +revision 21922 +shortdesc VERBatim Automatic Splitting of External Files. +relocated 1 +longdesc The package allows you to input (subsections of a) file, print +longdesc them in verbatim mode, while automatically breaking up the +longdesc input lines into pieces of a given length, which are output as +longdesc figures. These figures are posted using the [H] specification, +longdesc which forces LaTeX to place the figure at the spot of +longdesc invocation, rather than floating the figures to the top of the +longdesc next page. The package requires the verbatim, here and vrbexin +longdesc packages. +runfiles size=4 + RELOC/tex/latex/verbasef/verbasef.sty +docfiles size=84 + RELOC/doc/latex/verbasef/verbasef-doc.pdf + RELOC/doc/latex/verbasef/verbasef-doc.tex +catalogue-ctan /macros/latex/contrib/verbasef +catalogue-date 2012-04-10 18:37:25 +0200 +catalogue-license gpl +catalogue-version 1.1 + +name verbatimbox +category Package +revision 33197 +shortdesc Deposit verbatim text in a box. +relocated 1 +longdesc The package provides a verbbox environment (which uses +longdesc techniques similar to those of the boxedverbatim environment of +longdesc the moreverb package) to place its contents into a globally +longdesc available box, or into a box specified by the user. The global +longdesc box may then be used in a variety of situations (for example, +longdesc providing a replica of the boxedverbatim environment itself). A +longdesc valuable use is in places where the standard verbatim +longdesc environment (which is based on a trivlist) may not appear. The +longdesc package makes use of the verbatim package (which is a required +longdesc part of any LaTeX distribution). +runfiles size=3 + RELOC/tex/latex/verbatimbox/verbatimbox.sty +docfiles size=69 + RELOC/doc/latex/verbatimbox/README + RELOC/doc/latex/verbatimbox/verbatimbox.pdf + RELOC/doc/latex/verbatimbox/verbatimbox.tex +catalogue-ctan /macros/latex/contrib/verbatimbox +catalogue-date 2014-03-12 19:18:01 +0100 +catalogue-license lppl +catalogue-version 3.13 + +name verbatimcopy +category Package +revision 15878 +shortdesc Make copies of text documents from within LaTeX. +relocated 1 +longdesc This package provides \VerbatimCopy{in}{out} that will enable +longdesc LaTeX to take a verbatim copy of one text file, and save it +longdesc under another name. The package provides a means to specify the +longdesc output directory to be used, but does no checking and may +longdesc therefore overwrite an important file if used injudiciously. +runfiles size=2 + RELOC/tex/latex/verbatimcopy/verbatimcopy.sty +docfiles size=46 + RELOC/doc/latex/verbatimcopy/README + RELOC/doc/latex/verbatimcopy/verbatimcopy.pdf + RELOC/doc/latex/verbatimcopy/verbatimcopy.tex +catalogue-ctan /macros/latex/contrib/verbatimcopy +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 0.06 + +name verbdef +category Package +revision 17177 +shortdesc Define commands which expand to verbatim text +relocated 1 +longdesc The package defines a single command \verbdef (which has a *- +longdesc form, like \verb). \verbdef will define a robust command whose +longdesc body expands to verbatim text. By using commands defined by +longdesc \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 +docfiles size=17 + RELOC/doc/latex/verbdef/verbdef.pdf + RELOC/doc/latex/verbdef/verbdef.tex +catalogue-ctan /macros/latex/contrib/verbdef +catalogue-date 2012-08-16 22:32:31 +0200 +catalogue-license lppl +catalogue-version 0.2 + +name verbments +category Package +revision 23670 +shortdesc Syntax highlighting of source code in LaTeX documents. +relocated 1 +longdesc The package provides an environment for syntax highlighting +longdesc source code in LaTeX documents. The highlighted source code +longdesc output is formatted via powerful Pygments library of the Python +longdesc language. +runfiles size=2 + RELOC/tex/latex/verbments/verbments.sty +docfiles size=28 + RELOC/doc/latex/verbments/README + RELOC/doc/latex/verbments/verbments.pdf + RELOC/doc/latex/verbments/verbments.tex +catalogue-ctan /macros/latex/contrib/verbments +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.2 + +name verse +category Package +revision 34017 +shortdesc Aids for typesetting simple verse. +relocated 1 +longdesc The package documentation discusses approaches to the problem; +longdesc the package is strong on layout, from simple alternate-line +longdesc indentation to the Mouse's tale from Alice in Wonderland. +runfiles size=3 + RELOC/tex/latex/verse/verse.sty +docfiles size=105 + RELOC/doc/latex/verse/README + RELOC/doc/latex/verse/verse.pdf +srcfiles size=16 + RELOC/source/latex/verse/verse.dtx + RELOC/source/latex/verse/verse.ins +catalogue-ctan /macros/latex/contrib/verse +catalogue-date 2014-05-10 11:58:31 +0200 +catalogue-license lppl +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. +relocated 1 +longdesc Defines macros \includeversion{NAME} and \excludeversion{NAME}, +longdesc each of which defines an environment NAME whose text is to be +longdesc included or excluded from compilation. Although the command +longdesc syntax is very similar to that of comment, comment.sty is to be +longdesc preferred to version.sty for documents where significant chunks +longdesc of text may be excluded. +runfiles size=2 + RELOC/tex/latex/version/version.sty +docfiles size=75 + RELOC/doc/latex/version/version-doc.pdf + RELOC/doc/latex/version/version-doc.tex +catalogue-ctan /macros/latex/contrib/version +catalogue-date 2011-09-30 22:48:48 +0200 +catalogue-license other-free +catalogue-version 2.0 + +name versonotes +category Package +revision 36310 +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 +docfiles size=54 + RELOC/doc/latex/versonotes/LICENCE.txt + RELOC/doc/latex/versonotes/README + RELOC/doc/latex/versonotes/sample.pdf + RELOC/doc/latex/versonotes/sample.tex + RELOC/doc/latex/versonotes/versonotes.pdf +srcfiles size=7 + RELOC/source/latex/versonotes/versonotes.drv + RELOC/source/latex/versonotes/versonotes.dtx + RELOC/source/latex/versonotes/versonotes.ins +catalogue-ctan /macros/latex/contrib/versonotes +catalogue-date 2015-03-01 06:19:26 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name vertbars +category Package +revision 20589 +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. +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-ctan /macros/latex/contrib/vertbars +catalogue-date 2012-08-17 13:10:56 +0200 +catalogue-license lppl1.3 +catalogue-version 1.0b + +name vgrid +category Package +revision 32457 +shortdesc Overlay a grid on the printed page. +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 +docfiles size=6 + RELOC/doc/latex/vgrid/vgrid.pdf +srcfiles size=3 + RELOC/source/latex/vgrid/vgrid.dtx + RELOC/source/latex/vgrid/vgrid.ins +catalogue-ctan /macros/latex/contrib/vgrid +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name vhistory +category Package +revision 30080 +shortdesc Support for creating a change log. +relocated 1 +longdesc Vhistory simplifies the creation of a history of versions of a +longdesc document. You can easily extract information like the current +longdesc version of a list of authors from that history. It helps you to +longdesc get consistent documents. The package sets, which is used by +longdesc vhistory, allows you to use sets containing text. You can use +longdesc the usual operations to create the union of sets or the +longdesc intersection of sets etc. +runfiles size=9 + RELOC/tex/latex/vhistory/sets.sty + RELOC/tex/latex/vhistory/vhistory.sty +docfiles size=122 + RELOC/doc/latex/vhistory/CHANGES + RELOC/doc/latex/vhistory/README + RELOC/doc/latex/vhistory/README.doc + RELOC/doc/latex/vhistory/de_beispiel.tex + RELOC/doc/latex/vhistory/de_einleitung.tex + RELOC/doc/latex/vhistory/de_sets.tex + RELOC/doc/latex/vhistory/de_vhistory.tex + RELOC/doc/latex/vhistory/en_example.tex + RELOC/doc/latex/vhistory/en_introduction.tex + RELOC/doc/latex/vhistory/en_sets.tex + RELOC/doc/latex/vhistory/en_vhistory.tex + RELOC/doc/latex/vhistory/hyperref.cfg + RELOC/doc/latex/vhistory/vh_set_example.pdf + RELOC/doc/latex/vhistory/vh_set_example.tex + RELOC/doc/latex/vhistory/vh_sets_de.pdf + RELOC/doc/latex/vhistory/vh_sets_de.tex + RELOC/doc/latex/vhistory/vh_sets_en.pdf + RELOC/doc/latex/vhistory/vh_sets_en.tex +catalogue-ctan /macros/latex/contrib/vhistory +catalogue-date 2013-04-21 16:55:16 +0200 +catalogue-license lppl1.2 +catalogue-version 1.6.1 + +name visualfaq +category Package +revision 19677 +shortdesc A Visual LaTeX FAQ. +relocated 1 +longdesc Having trouble finding the answer to a LaTeX question? The +longdesc Visual LaTeX FAQ is an innovative new search interface that +longdesc presents over a hundred typeset samples of frequently requested +longdesc document formatting. Simply click on a hyperlinked piece of +longdesc text and the Visual LaTeX FAQ will send your Web browser to the +longdesc appropriate page in the UK TeX FAQ. +docfiles size=490 + RELOC/doc/latex/visualfaq/README + RELOC/doc/latex/visualfaq/source/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/labelgraph.pdf + RELOC/doc/latex/visualfaq/source/lorem-ipsum-logo.png + 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 +catalogue-ctan /info/visualFAQ +catalogue-date 2012-06-07 00:20:13 +0200 +catalogue-license lppl + +name vlna +category TLCore +revision 37078 +depend vlna.ARCH +docfiles size=38 + texmf-dist/doc/man/man1/vlna.1 + texmf-dist/doc/man/man1/vlna.man1.pdf + texmf-dist/doc/vlna/vlna.pdf + +name vlna.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of vlna +binfiles arch=i386-linux size=4 + bin/i386-linux/vlna + +name vmargin +category Package +revision 15878 +shortdesc Set various page dimensions. +relocated 1 +longdesc Provides a macro to set various margins as well as dimensions +longdesc for header/footer and page dimensions. Most common paper sizes, +longdesc paper orientation, disabling of headers and footers, and two +longdesc sided printing are supported. The vmargin package does not rely +longdesc on other packages and was designed with speed and size in mind. +longdesc Its user interface might not be very fancy, but it's fast, +longdesc small, and gets the job done. If you are looking for something +longdesc more elaborate try the geometry package. +runfiles size=2 + RELOC/tex/latex/vmargin/vmargin.sty +docfiles size=44 + RELOC/doc/latex/vmargin/vmargin.pdf +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 +catalogue-ctan /macros/latex/contrib/vmargin +catalogue-date 2011-10-04 11:41:19 +0200 +catalogue-license lppl +catalogue-version 2.5 + +name vntex +category Package +revision 30579 +shortdesc Support for Vietnamese. +relocated 1 +longdesc The vntex bundle provides fonts, Plain TeX, texinfo and LaTeX +longdesc macros for typesetting documents in Vietnamese. Users of the +longdesc fonts (in both Metafont and Adobe Type 1 format) of this bundle +longdesc may alternatively use the lm fonts bundle, for which map files +longdesc are available to provide a Vietnamese version. +execute addMap arevvn.map +execute addMap chartervn.map +execute addMap cmbrightvn.map +execute addMap concretevn.map +execute addMap grotesqvn.map +execute addMap txttvn.map +execute addMap urwvn.map +execute addMixedMap vnrother.map +execute addMixedMap vnrtext.map +execute addMap vntopia.map +runfiles size=2501 + RELOC/fonts/afm/vntex/chartervn/bchb8v.afm + RELOC/fonts/afm/vntex/chartervn/bchbi8v.afm + RELOC/fonts/afm/vntex/chartervn/bchr8v.afm + RELOC/fonts/afm/vntex/chartervn/bchri8v.afm + RELOC/fonts/afm/vntex/grotesqvn/ugqb8v.afm + RELOC/fonts/afm/vntex/urwvn/fplrc8v.afm + RELOC/fonts/afm/vntex/urwvn/uagd8v.afm + RELOC/fonts/afm/vntex/urwvn/uagdo8v.afm + RELOC/fonts/afm/vntex/urwvn/uagk8v.afm + RELOC/fonts/afm/vntex/urwvn/uagko8v.afm + RELOC/fonts/afm/vntex/urwvn/ubkd8v.afm + RELOC/fonts/afm/vntex/urwvn/ubkdi8v.afm + RELOC/fonts/afm/vntex/urwvn/ubkl8v.afm + RELOC/fonts/afm/vntex/urwvn/ubkli8v.afm + RELOC/fonts/afm/vntex/urwvn/ucrb8v.afm + RELOC/fonts/afm/vntex/urwvn/ucrbo8v.afm + RELOC/fonts/afm/vntex/urwvn/ucrr8v.afm + RELOC/fonts/afm/vntex/urwvn/ucrro8v.afm + RELOC/fonts/afm/vntex/urwvn/uhvb8v.afm + RELOC/fonts/afm/vntex/urwvn/uhvbo8v.afm + RELOC/fonts/afm/vntex/urwvn/uhvr8v.afm + RELOC/fonts/afm/vntex/urwvn/uhvro8v.afm + RELOC/fonts/afm/vntex/urwvn/uncb8v.afm + RELOC/fonts/afm/vntex/urwvn/uncbi8v.afm + RELOC/fonts/afm/vntex/urwvn/uncr8v.afm + RELOC/fonts/afm/vntex/urwvn/uncri8v.afm + RELOC/fonts/afm/vntex/urwvn/uplb8v.afm + RELOC/fonts/afm/vntex/urwvn/uplbi8v.afm + RELOC/fonts/afm/vntex/urwvn/uplr8v.afm + RELOC/fonts/afm/vntex/urwvn/uplri8v.afm + RELOC/fonts/afm/vntex/urwvn/utmb8v.afm + RELOC/fonts/afm/vntex/urwvn/utmbi8v.afm + RELOC/fonts/afm/vntex/urwvn/utmr8v.afm + RELOC/fonts/afm/vntex/urwvn/utmri8v.afm + RELOC/fonts/afm/vntex/urwvn/uzcmi8v.afm + RELOC/fonts/afm/vntex/vntopia/putb8v.afm + RELOC/fonts/afm/vntex/vntopia/putbi8v.afm + RELOC/fonts/afm/vntex/vntopia/putr8v.afm + RELOC/fonts/afm/vntex/vntopia/putri8v.afm + RELOC/fonts/enc/dvips/vntex/t5.enc + RELOC/fonts/enc/pdftex/vntex/t5d.enc + RELOC/fonts/enc/pdftex/vntex/t5uni.enc + RELOC/fonts/map/dvips/vntex/arevvn.map + RELOC/fonts/map/dvips/vntex/chartervn.map + RELOC/fonts/map/dvips/vntex/cmbrightvn.map + RELOC/fonts/map/dvips/vntex/concretevn.map + RELOC/fonts/map/dvips/vntex/grotesqvn.map + RELOC/fonts/map/dvips/vntex/txttvn.map + RELOC/fonts/map/dvips/vntex/urwvn.map + RELOC/fonts/map/dvips/vntex/vnrother.map + RELOC/fonts/map/dvips/vntex/vnrtext.map + RELOC/fonts/map/dvips/vntex/vntopia.map + RELOC/fonts/source/vntex/vnr/vnaccent.mf + RELOC/fonts/source/vntex/vnr/vnacomp.mf + RELOC/fonts/source/vntex/vnr/vnb10.mf + RELOC/fonts/source/vntex/vnr/vnbase.mf + RELOC/fonts/source/vntex/vnr/vnbx10.mf + RELOC/fonts/source/vntex/vnr/vnbx12.mf + RELOC/fonts/source/vntex/vnr/vnbx5.mf + RELOC/fonts/source/vntex/vnr/vnbx6.mf + RELOC/fonts/source/vntex/vnr/vnbx7.mf + RELOC/fonts/source/vntex/vnr/vnbx8.mf + RELOC/fonts/source/vntex/vnr/vnbx9.mf + RELOC/fonts/source/vntex/vnr/vnbxsl10.mf + RELOC/fonts/source/vntex/vnr/vnbxti10.mf + RELOC/fonts/source/vntex/vnr/vncligtb.mf + RELOC/fonts/source/vntex/vnr/vncode.mf + RELOC/fonts/source/vntex/vnr/vncombac.mf + RELOC/fonts/source/vntex/vnr/vncsc.mf + RELOC/fonts/source/vntex/vnr/vncsc10.mf + RELOC/fonts/source/vntex/vnr/vndothook.mf + RELOC/fonts/source/vntex/vnr/vndunh10.mf + RELOC/fonts/source/vntex/vnr/vnecomp.mf + RELOC/fonts/source/vntex/vnr/vnff10.mf + RELOC/fonts/source/vntex/vnr/vnfi10.mf + RELOC/fonts/source/vntex/vnr/vnfib8.mf + RELOC/fonts/source/vntex/vnr/vnicomp.mf + RELOC/fonts/source/vntex/vnr/vniligtb.mf + RELOC/fonts/source/vntex/vnr/vnitt10.mf + RELOC/fonts/source/vntex/vnr/vnlacc.mf + RELOC/fonts/source/vntex/vnr/vnlai.mf + RELOC/fonts/source/vntex/vnr/vnlar.mf + RELOC/fonts/source/vntex/vnr/vnldi.mf + RELOC/fonts/source/vntex/vnr/vnldr.mf + RELOC/fonts/source/vntex/vnr/vnlei.mf + RELOC/fonts/source/vntex/vnr/vnler.mf + RELOC/fonts/source/vntex/vnr/vnlii.mf + RELOC/fonts/source/vntex/vnr/vnlir.mf + RELOC/fonts/source/vntex/vnr/vnloi.mf + RELOC/fonts/source/vntex/vnr/vnlor.mf + RELOC/fonts/source/vntex/vnr/vnlui.mf + RELOC/fonts/source/vntex/vnr/vnlur.mf + RELOC/fonts/source/vntex/vnr/vnlyi.mf + RELOC/fonts/source/vntex/vnr/vnlyr.mf + RELOC/fonts/source/vntex/vnr/vnminus.mf + RELOC/fonts/source/vntex/vnr/vnmligtb.mf + RELOC/fonts/source/vntex/vnr/vnocomp.mf + RELOC/fonts/source/vntex/vnr/vnr10.mf + RELOC/fonts/source/vntex/vnr/vnr12.mf + RELOC/fonts/source/vntex/vnr/vnr17.mf + RELOC/fonts/source/vntex/vnr/vnr5.mf + RELOC/fonts/source/vntex/vnr/vnr6.mf + RELOC/fonts/source/vntex/vnr/vnr7.mf + RELOC/fonts/source/vntex/vnr/vnr8.mf + RELOC/fonts/source/vntex/vnr/vnr9.mf + RELOC/fonts/source/vntex/vnr/vnrligtb.mf + RELOC/fonts/source/vntex/vnr/vnrm.mf + RELOC/fonts/source/vntex/vnr/vnroman.mf + RELOC/fonts/source/vntex/vnr/vnsl10.mf + RELOC/fonts/source/vntex/vnr/vnsl12.mf + RELOC/fonts/source/vntex/vnr/vnsl8.mf + RELOC/fonts/source/vntex/vnr/vnsl9.mf + RELOC/fonts/source/vntex/vnr/vnsltt10.mf + RELOC/fonts/source/vntex/vnr/vnss10.mf + RELOC/fonts/source/vntex/vnr/vnss12.mf + RELOC/fonts/source/vntex/vnr/vnss17.mf + RELOC/fonts/source/vntex/vnr/vnss8.mf + RELOC/fonts/source/vntex/vnr/vnss9.mf + RELOC/fonts/source/vntex/vnr/vnssbx10.mf + RELOC/fonts/source/vntex/vnr/vnssdc10.mf + RELOC/fonts/source/vntex/vnr/vnssi10.mf + RELOC/fonts/source/vntex/vnr/vnssi12.mf + RELOC/fonts/source/vntex/vnr/vnssi17.mf + RELOC/fonts/source/vntex/vnr/vnssi8.mf + RELOC/fonts/source/vntex/vnr/vnssi9.mf + RELOC/fonts/source/vntex/vnr/vnssq8.mf + RELOC/fonts/source/vntex/vnr/vnssqi8.mf + RELOC/fonts/source/vntex/vnr/vntcsc10.mf + RELOC/fonts/source/vntex/vnr/vntextit.mf + RELOC/fonts/source/vntex/vnr/vnti10.mf + RELOC/fonts/source/vntex/vnr/vnti12.mf + RELOC/fonts/source/vntex/vnr/vnti7.mf + RELOC/fonts/source/vntex/vnr/vnti8.mf + RELOC/fonts/source/vntex/vnr/vnti9.mf + RELOC/fonts/source/vntex/vnr/vntt10.mf + RELOC/fonts/source/vntex/vnr/vntt12.mf + RELOC/fonts/source/vntex/vnr/vntt8.mf + RELOC/fonts/source/vntex/vnr/vntt9.mf + RELOC/fonts/source/vntex/vnr/vnu10.mf + RELOC/fonts/source/vntex/vnr/vnuacc.mf + RELOC/fonts/source/vntex/vnr/vnuar.mf + RELOC/fonts/source/vntex/vnr/vnucomp.mf + RELOC/fonts/source/vntex/vnr/vnudr.mf + RELOC/fonts/source/vntex/vnr/vnuer.mf + RELOC/fonts/source/vntex/vnr/vnuir.mf + RELOC/fonts/source/vntex/vnr/vnuor.mf + RELOC/fonts/source/vntex/vnr/vnuur.mf + RELOC/fonts/source/vntex/vnr/vnuyr.mf + RELOC/fonts/source/vntex/vnr/vnvtt10.mf + RELOC/fonts/source/vntex/vnr/vnycomp.mf + RELOC/fonts/tfm/vntex/arevvn/favb8v.tfm + RELOC/fonts/tfm/vntex/arevvn/favbi8v.tfm + RELOC/fonts/tfm/vntex/arevvn/favr8v.tfm + RELOC/fonts/tfm/vntex/arevvn/favri8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchb8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchbc8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchbi8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchbo8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchr8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchrc8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchri8v.tfm + RELOC/fonts/tfm/vntex/chartervn/bchro8v.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbr10.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbr17.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbr8.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbr9.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrbx10.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrsl10.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrsl17.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrsl8.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmbrsl9.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmsltl10.tfm + RELOC/fonts/tfm/vntex/cmbrightvn/vncmtl10.tfm + RELOC/fonts/tfm/vntex/concretevn/vncccsc10.tfm + RELOC/fonts/tfm/vntex/concretevn/vnccr10.tfm + RELOC/fonts/tfm/vntex/concretevn/vnccsl10.tfm + RELOC/fonts/tfm/vntex/concretevn/vnccti10.tfm + RELOC/fonts/tfm/vntex/grotesqvn/ugqb8v.tfm + RELOC/fonts/tfm/vntex/grotesqvn/ugqbo8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txbtt8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txbttsc8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txbttsl8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txtt8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txttsc8v.tfm + RELOC/fonts/tfm/vntex/txttvn/txttsl8v.tfm + RELOC/fonts/tfm/vntex/urwvn/fplrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagd8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagdc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagdo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagk8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagkc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uagko8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkd8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkdc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkdi8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkdo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkl8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubklc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubkli8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ubklo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/ucrro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uhvro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncbi8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncri8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uncro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplbi8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplri8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uplro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmb8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmbc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmbi8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmbo8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmr8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmrc8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmri8v.tfm + RELOC/fonts/tfm/vntex/urwvn/utmro8v.tfm + RELOC/fonts/tfm/vntex/urwvn/uzcmi8v.tfm + RELOC/fonts/tfm/vntex/vnr/vnb10.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx10.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx12.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx5.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx6.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx7.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx8.tfm + RELOC/fonts/tfm/vntex/vnr/vnbx9.tfm + RELOC/fonts/tfm/vntex/vnr/vnbxsl10.tfm + RELOC/fonts/tfm/vntex/vnr/vnbxti10.tfm + RELOC/fonts/tfm/vntex/vnr/vncsc10.tfm + RELOC/fonts/tfm/vntex/vnr/vndunh10.tfm + RELOC/fonts/tfm/vntex/vnr/vnff10.tfm + RELOC/fonts/tfm/vntex/vnr/vnfi10.tfm + RELOC/fonts/tfm/vntex/vnr/vnfib8.tfm + RELOC/fonts/tfm/vntex/vnr/vnitt10.tfm + RELOC/fonts/tfm/vntex/vnr/vnr10.tfm + RELOC/fonts/tfm/vntex/vnr/vnr12.tfm + RELOC/fonts/tfm/vntex/vnr/vnr17.tfm + RELOC/fonts/tfm/vntex/vnr/vnr5.tfm + RELOC/fonts/tfm/vntex/vnr/vnr6.tfm + RELOC/fonts/tfm/vntex/vnr/vnr7.tfm + RELOC/fonts/tfm/vntex/vnr/vnr8.tfm + RELOC/fonts/tfm/vntex/vnr/vnr9.tfm + RELOC/fonts/tfm/vntex/vnr/vnsl10.tfm + RELOC/fonts/tfm/vntex/vnr/vnsl12.tfm + RELOC/fonts/tfm/vntex/vnr/vnsl8.tfm + RELOC/fonts/tfm/vntex/vnr/vnsl9.tfm + RELOC/fonts/tfm/vntex/vnr/vnsltt10.tfm + RELOC/fonts/tfm/vntex/vnr/vnss10.tfm + RELOC/fonts/tfm/vntex/vnr/vnss12.tfm + RELOC/fonts/tfm/vntex/vnr/vnss17.tfm + RELOC/fonts/tfm/vntex/vnr/vnss8.tfm + RELOC/fonts/tfm/vntex/vnr/vnss9.tfm + RELOC/fonts/tfm/vntex/vnr/vnssbx10.tfm + RELOC/fonts/tfm/vntex/vnr/vnssdc10.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi10.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi12.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi17.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi8.tfm + RELOC/fonts/tfm/vntex/vnr/vnssi9.tfm + RELOC/fonts/tfm/vntex/vnr/vnssq8.tfm + RELOC/fonts/tfm/vntex/vnr/vnssqi8.tfm + RELOC/fonts/tfm/vntex/vnr/vntcsc10.tfm + RELOC/fonts/tfm/vntex/vnr/vnti10.tfm + RELOC/fonts/tfm/vntex/vnr/vnti12.tfm + RELOC/fonts/tfm/vntex/vnr/vnti7.tfm + RELOC/fonts/tfm/vntex/vnr/vnti8.tfm + RELOC/fonts/tfm/vntex/vnr/vnti9.tfm + RELOC/fonts/tfm/vntex/vnr/vntt10.tfm + RELOC/fonts/tfm/vntex/vnr/vntt12.tfm + RELOC/fonts/tfm/vntex/vnr/vntt8.tfm + RELOC/fonts/tfm/vntex/vnr/vntt9.tfm + RELOC/fonts/tfm/vntex/vnr/vnu10.tfm + RELOC/fonts/tfm/vntex/vnr/vnvtt10.tfm + RELOC/fonts/tfm/vntex/vntopia/putb8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putbc8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putbi8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putbo8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putr8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putrc8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putri8v.tfm + RELOC/fonts/tfm/vntex/vntopia/putro8v.tfm + RELOC/fonts/type1/vntex/arevvn/ArevSans-Bold-T5.pfb + RELOC/fonts/type1/vntex/arevvn/ArevSans-BoldOblique-T5.pfb + RELOC/fonts/type1/vntex/arevvn/ArevSans-Oblique-T5.pfb + RELOC/fonts/type1/vntex/arevvn/ArevSans-Roman-T5.pfb + RELOC/fonts/type1/vntex/chartervn/bchb8v.pfb + RELOC/fonts/type1/vntex/chartervn/bchbi8v.pfb + RELOC/fonts/type1/vntex/chartervn/bchr8v.pfb + RELOC/fonts/type1/vntex/chartervn/bchri8v.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbr10.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbr17.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbr8.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbr9.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrbx10.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrsl10.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrsl17.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrsl8.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmbrsl9.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmsltl10.pfb + RELOC/fonts/type1/vntex/cmbrightvn/vncmtl10.pfb + RELOC/fonts/type1/vntex/concretevn/CMConcrete8v.pfb + RELOC/fonts/type1/vntex/concretevn/CMConcreteItalic8v.pfb + RELOC/fonts/type1/vntex/concretevn/CMConcreteSlanted8v.pfb + RELOC/fonts/type1/vntex/concretevn/CMConcreteSmallCaps8v.pfb + RELOC/fonts/type1/vntex/grotesqvn/ugqb8v.pfb + RELOC/fonts/type1/vntex/txttvn/txbtt8v.pfb + RELOC/fonts/type1/vntex/txttvn/txbttsc8v.pfb + RELOC/fonts/type1/vntex/txttvn/txtt8v.pfb + RELOC/fonts/type1/vntex/txttvn/txttsc8v.pfb + RELOC/fonts/type1/vntex/urwvn/fplrc8v.pfb + RELOC/fonts/type1/vntex/urwvn/uagd8v.pfb + RELOC/fonts/type1/vntex/urwvn/uagdo8v.pfb + RELOC/fonts/type1/vntex/urwvn/uagk8v.pfb + RELOC/fonts/type1/vntex/urwvn/uagko8v.pfb + RELOC/fonts/type1/vntex/urwvn/ubkd8v.pfb + RELOC/fonts/type1/vntex/urwvn/ubkdi8v.pfb + RELOC/fonts/type1/vntex/urwvn/ubkl8v.pfb + RELOC/fonts/type1/vntex/urwvn/ubkli8v.pfb + RELOC/fonts/type1/vntex/urwvn/ucrb8v.pfb + RELOC/fonts/type1/vntex/urwvn/ucrbo8v.pfb + RELOC/fonts/type1/vntex/urwvn/ucrr8v.pfb + RELOC/fonts/type1/vntex/urwvn/ucrro8v.pfb + RELOC/fonts/type1/vntex/urwvn/uhvb8v.pfb + RELOC/fonts/type1/vntex/urwvn/uhvbo8v.pfb + RELOC/fonts/type1/vntex/urwvn/uhvr8v.pfb + RELOC/fonts/type1/vntex/urwvn/uhvro8v.pfb + RELOC/fonts/type1/vntex/urwvn/uncb8v.pfb + RELOC/fonts/type1/vntex/urwvn/uncbi8v.pfb + RELOC/fonts/type1/vntex/urwvn/uncr8v.pfb + RELOC/fonts/type1/vntex/urwvn/uncri8v.pfb + RELOC/fonts/type1/vntex/urwvn/uplb8v.pfb + RELOC/fonts/type1/vntex/urwvn/uplbi8v.pfb + RELOC/fonts/type1/vntex/urwvn/uplr8v.pfb + RELOC/fonts/type1/vntex/urwvn/uplri8v.pfb + RELOC/fonts/type1/vntex/urwvn/utmb8v.pfb + RELOC/fonts/type1/vntex/urwvn/utmbi8v.pfb + RELOC/fonts/type1/vntex/urwvn/utmr8v.pfb + RELOC/fonts/type1/vntex/urwvn/utmri8v.pfb + RELOC/fonts/type1/vntex/urwvn/uzcmi8v.pfb + RELOC/fonts/type1/vntex/vnr/vnb10.pfb + RELOC/fonts/type1/vntex/vnr/vnbx10.pfb + RELOC/fonts/type1/vntex/vnr/vnbx12.pfb + RELOC/fonts/type1/vntex/vnr/vnbx5.pfb + RELOC/fonts/type1/vntex/vnr/vnbx6.pfb + RELOC/fonts/type1/vntex/vnr/vnbx7.pfb + RELOC/fonts/type1/vntex/vnr/vnbx8.pfb + RELOC/fonts/type1/vntex/vnr/vnbx9.pfb + RELOC/fonts/type1/vntex/vnr/vnbxsl10.pfb + RELOC/fonts/type1/vntex/vnr/vnbxti10.pfb + RELOC/fonts/type1/vntex/vnr/vncsc10.pfb + RELOC/fonts/type1/vntex/vnr/vndunh10.pfb + RELOC/fonts/type1/vntex/vnr/vnff10.pfb + RELOC/fonts/type1/vntex/vnr/vnfi10.pfb + RELOC/fonts/type1/vntex/vnr/vnfib8.pfb + RELOC/fonts/type1/vntex/vnr/vnitt10.pfb + RELOC/fonts/type1/vntex/vnr/vnr10.pfb + RELOC/fonts/type1/vntex/vnr/vnr12.pfb + RELOC/fonts/type1/vntex/vnr/vnr17.pfb + RELOC/fonts/type1/vntex/vnr/vnr5.pfb + RELOC/fonts/type1/vntex/vnr/vnr6.pfb + RELOC/fonts/type1/vntex/vnr/vnr7.pfb + RELOC/fonts/type1/vntex/vnr/vnr8.pfb + RELOC/fonts/type1/vntex/vnr/vnr9.pfb + RELOC/fonts/type1/vntex/vnr/vnsl10.pfb + RELOC/fonts/type1/vntex/vnr/vnsl12.pfb + RELOC/fonts/type1/vntex/vnr/vnsl8.pfb + RELOC/fonts/type1/vntex/vnr/vnsl9.pfb + RELOC/fonts/type1/vntex/vnr/vnsltt10.pfb + RELOC/fonts/type1/vntex/vnr/vnss10.pfb + RELOC/fonts/type1/vntex/vnr/vnss12.pfb + RELOC/fonts/type1/vntex/vnr/vnss17.pfb + RELOC/fonts/type1/vntex/vnr/vnss8.pfb + RELOC/fonts/type1/vntex/vnr/vnss9.pfb + RELOC/fonts/type1/vntex/vnr/vnssbx10.pfb + RELOC/fonts/type1/vntex/vnr/vnssdc10.pfb + RELOC/fonts/type1/vntex/vnr/vnssi10.pfb + RELOC/fonts/type1/vntex/vnr/vnssi12.pfb + RELOC/fonts/type1/vntex/vnr/vnssi17.pfb + RELOC/fonts/type1/vntex/vnr/vnssi8.pfb + RELOC/fonts/type1/vntex/vnr/vnssi9.pfb + RELOC/fonts/type1/vntex/vnr/vnssq8.pfb + RELOC/fonts/type1/vntex/vnr/vnssqi8.pfb + RELOC/fonts/type1/vntex/vnr/vntcsc10.pfb + RELOC/fonts/type1/vntex/vnr/vnti10.pfb + RELOC/fonts/type1/vntex/vnr/vnti12.pfb + RELOC/fonts/type1/vntex/vnr/vnti7.pfb + RELOC/fonts/type1/vntex/vnr/vnti8.pfb + RELOC/fonts/type1/vntex/vnr/vnti9.pfb + RELOC/fonts/type1/vntex/vnr/vntt10.pfb + RELOC/fonts/type1/vntex/vnr/vntt12.pfb + RELOC/fonts/type1/vntex/vnr/vntt8.pfb + RELOC/fonts/type1/vntex/vnr/vntt9.pfb + RELOC/fonts/type1/vntex/vnr/vnu10.pfb + RELOC/fonts/type1/vntex/vnr/vnvtt10.pfb + RELOC/fonts/type1/vntex/vntopia/putb8v.pfb + RELOC/fonts/type1/vntex/vntopia/putbi8v.pfb + RELOC/fonts/type1/vntex/vntopia/putr8v.pfb + RELOC/fonts/type1/vntex/vntopia/putri8v.pfb + RELOC/fonts/vf/vntex/chartervn/bchbc8v.vf + RELOC/fonts/vf/vntex/chartervn/bchrc8v.vf + RELOC/fonts/vf/vntex/urwvn/uagdc8v.vf + RELOC/fonts/vf/vntex/urwvn/uagkc8v.vf + RELOC/fonts/vf/vntex/urwvn/ubkdc8v.vf + RELOC/fonts/vf/vntex/urwvn/ubklc8v.vf + RELOC/fonts/vf/vntex/urwvn/ucrbc8v.vf + RELOC/fonts/vf/vntex/urwvn/ucrrc8v.vf + RELOC/fonts/vf/vntex/urwvn/uhvbc8v.vf + RELOC/fonts/vf/vntex/urwvn/uhvrc8v.vf + RELOC/fonts/vf/vntex/urwvn/uncbc8v.vf + RELOC/fonts/vf/vntex/urwvn/uncrc8v.vf + RELOC/fonts/vf/vntex/urwvn/uplbc8v.vf + RELOC/fonts/vf/vntex/urwvn/uplrc8v.vf + RELOC/fonts/vf/vntex/urwvn/utmbc8v.vf + RELOC/fonts/vf/vntex/urwvn/utmrc8v.vf + RELOC/fonts/vf/vntex/vntopia/putbc8v.vf + RELOC/fonts/vf/vntex/vntopia/putrc8v.vf + RELOC/tex/latex/vntex/dblaccnt.sty + RELOC/tex/latex/vntex/mcviscii.def + RELOC/tex/latex/vntex/pd1supp.def + RELOC/tex/latex/vntex/swpvntex.sty + RELOC/tex/latex/vntex/t5bch.fd + RELOC/tex/latex/vntex/t5ccr.fd + RELOC/tex/latex/vntex/t5cmbr.fd + RELOC/tex/latex/vntex/t5cmdh.fd + RELOC/tex/latex/vntex/t5cmfib.fd + RELOC/tex/latex/vntex/t5cmfr.fd + RELOC/tex/latex/vntex/t5cmr.fd + RELOC/tex/latex/vntex/t5cmss.fd + RELOC/tex/latex/vntex/t5cmssq.fd + RELOC/tex/latex/vntex/t5cmtl.fd + RELOC/tex/latex/vntex/t5cmtt.fd + RELOC/tex/latex/vntex/t5cmvtt.fd + RELOC/tex/latex/vntex/t5enc.def + RELOC/tex/latex/vntex/t5enc.dfu + RELOC/tex/latex/vntex/t5fav.fd + RELOC/tex/latex/vntex/t5fnc.fd + RELOC/tex/latex/vntex/t5fpl.fd + RELOC/tex/latex/vntex/t5futs.fd + RELOC/tex/latex/vntex/t5mak.fd + RELOC/tex/latex/vntex/t5mdbch.fd + RELOC/tex/latex/vntex/t5mdput.fd + RELOC/tex/latex/vntex/t5mdugm.fd + RELOC/tex/latex/vntex/t5pag.fd + RELOC/tex/latex/vntex/t5pbk.fd + RELOC/tex/latex/vntex/t5pcr.fd + RELOC/tex/latex/vntex/t5phv.fd + RELOC/tex/latex/vntex/t5pnc.fd + RELOC/tex/latex/vntex/t5ppl.fd + RELOC/tex/latex/vntex/t5ptm.fd + RELOC/tex/latex/vntex/t5ptmom.fd + RELOC/tex/latex/vntex/t5put.fd + RELOC/tex/latex/vntex/t5pxr.fd + RELOC/tex/latex/vntex/t5txr.fd + RELOC/tex/latex/vntex/t5txtt.fd + RELOC/tex/latex/vntex/t5uag.fd + RELOC/tex/latex/vntex/t5ubk.fd + RELOC/tex/latex/vntex/t5ucr.fd + RELOC/tex/latex/vntex/t5ugq.fd + RELOC/tex/latex/vntex/t5uhv.fd + RELOC/tex/latex/vntex/t5unc.fd + RELOC/tex/latex/vntex/t5upl.fd + RELOC/tex/latex/vntex/t5utm.fd + RELOC/tex/latex/vntex/t5uzcm.fd + RELOC/tex/latex/vntex/tcvn.def + RELOC/tex/latex/vntex/varioref-vi.sty + RELOC/tex/latex/vntex/vietnam.sty + RELOC/tex/latex/vntex/viscii.def + RELOC/tex/latex/vntex/vncaps.tex + RELOC/tex/latex/vntex/vntex.sty + RELOC/tex/latex/vntex/vps.def + RELOC/tex/plain/vntex/dblaccnt.tex + RELOC/tex/plain/vntex/t5code.tex + RELOC/tex/plain/vntex/vntexinfo.tex +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-ctan /language/vietnamese/vntex +catalogue-date 2013-05-19 14:33:40 +0200 +catalogue-license other-free +catalogue-version 3.2 + +name vocaltract +category Package +revision 25629 +shortdesc Visualise the vocal tract using LaTeX and PStricks. +relocated 1 +longdesc The package enables the user to visualise the vocal tract. The +longdesc vocal tract (in the package) is manipulated by a vector of +longdesc articulation parameters according to the S. Maeda model. +longdesc Animation may be achieved by providing a sequence of vectors +longdesc over time (e.g., from Matlab). A sequence of vectors for +longdesc certain German phonemes is embedded in the package, which +longdesc allows for animation when no other vector is available. The +longdesc package's graphics are produced using pstricks. +runfiles size=11 + RELOC/tex/latex/vocaltract/VocalTract.sty +docfiles size=13 + RELOC/doc/latex/vocaltract/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.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 +catalogue-ctan /graphics/pstricks/contrib/vocaltract +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1 + +name volumes +category Package +revision 15878 +shortdesc Typeset only parts of a document, with complete indexes etc. +relocated 1 +longdesc This package helps you if you want to produce separate printed +longdesc volumes from one LaTeX document, as well as one comprehensive, +longdesc "all-inclusive" version. It suppresses the part of the table of +longdesc contents that are not typeset, while counters, definitions, +longdesc index entries etc. are kept consistent throughout the input +longdesc file. +runfiles size=3 + RELOC/tex/latex/volumes/nowtoaux.sty + RELOC/tex/latex/volumes/volumes.sty +docfiles size=43 + RELOC/doc/latex/volumes/README + RELOC/doc/latex/volumes/volumes.pdf +srcfiles size=9 + RELOC/source/latex/volumes/volumes.dtx + RELOC/source/latex/volumes/volumes.ins +catalogue-ctan /macros/latex/contrib/volumes +catalogue-date 2012-06-07 00:20:13 +0200 +catalogue-license lppl +catalogue-version 1.0 + +name voss-mathcol +category Package +revision 32954 +shortdesc Typesetting mathematics in colour, in (La)TeX. +relocated 1 +longdesc This is a short paper from the TeXnische Komodie, in German. +longdesc Since the body of the paper is dominated by clear LaTeX coding +longdesc examples, most LaTeX programmers will understand how to achieve +longdesc the results shown in the diagrams, even if they don't +longdesc understand German. +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.tex + RELOC/doc/latex/voss-mathcol/run.doc +catalogue-ctan /info/math/voss/mathCol +catalogue-date 2014-02-16 23:23:15 +0100 +catalogue-license lppl +catalogue-version 0.1 + +name voss-mathmode +category Package +revision 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. +longdesc VPE is a system to make the equivalent of "source special" +longdesc marks in a PDF file. Clicking on a mark will activate an +longdesc editor, pointing at the source line that produced the text that +longdesc was marked. The system comprises a perl file (vpe.pl) and a +longdesc LaTeX package (vpe.sty); it will work with PDF files generated +longdesc via LaTeX/dvips, pdfTeX (version 0.14 or better), and +longdesc LaTeX/VTeX. Using the LaTeX/dvips or pdfLaTeX routes, the +longdesc (pdf)TeX processor should be run with shell escapes enabled. +depend vpe.ARCH +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-license lppl +catalogue-version 0.2 + +name vpe.i386-linux +category Package +revision 6897 +shortdesc i386-linux files of vpe +binfiles arch=i386-linux size=1 + bin/i386-linux/vpe + +name vruler +category Package +revision 21598 +shortdesc Numbering text. +relocated 1 +longdesc The package offers facilities for adding a columns of numbering +longdesc to the general text so that the text can be properly +longdesc referenced. The vertical ruler can be scaled and moved freely. +longdesc The package may be used either with LaTeX or with plain TeX. +runfiles size=5 + RELOC/tex/latex/vruler/vruler.sty +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.tex +catalogue-ctan /macros/latex/contrib/vruler +catalogue-date 2012-04-10 18:37:25 +0200 +catalogue-license lppl1 +catalogue-version 2.3 + +name vwcol +category Package +revision 36254 +shortdesc Variable-width multiple text columns. +relocated 1 +longdesc The package provides a crude environment (vwcol) for +longdesc typesetting multicolumn paragraph text of various column widths +longdesc on a single page. +runfiles size=3 + RELOC/tex/latex/vwcol/vwcol.sty +docfiles size=68 + RELOC/doc/latex/vwcol/README + RELOC/doc/latex/vwcol/vwcol.pdf +srcfiles size=12 + RELOC/source/latex/vwcol/vwcol.dtx + RELOC/source/latex/vwcol/vwcol.ins +catalogue-ctan /macros/latex/contrib/vwcol +catalogue-date 2015-02-10 13:01:05 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name wadalab +category Package +revision 22576 +shortdesc Wadalab (Japanese) font packages. +relocated 1 +longdesc These are font bundles for the Japanese Wadalab fonts which +longdesc work with the CJK package. All subfonts now have glyph names +longdesc compliant to the Adobe Glyph List, making ToUnicode CMaps in +longdesc PDF documents (created automatically by dvipdfmx) work +longdesc correctly. All font bundles now contain virtual Unicode +longdesc subfonts. +execute addMap dgj.map +execute addMap dmj.map +execute addMap mc2j.map +execute addMap mcj.map +execute addMap mr2j.map +execute addMap mrj.map +runfiles size=6262 + RELOC/fonts/afm/wadalab/dgj/dgjgreek.afm + RELOC/fonts/afm/wadalab/dgj/dgjhira.afm + RELOC/fonts/afm/wadalab/dgj/dgjhw.afm + RELOC/fonts/afm/wadalab/dgj/dgjka.afm + RELOC/fonts/afm/wadalab/dgj/dgjkata.afm + RELOC/fonts/afm/wadalab/dgj/dgjkb.afm + RELOC/fonts/afm/wadalab/dgj/dgjkc.afm + RELOC/fonts/afm/wadalab/dgj/dgjkd.afm + RELOC/fonts/afm/wadalab/dgj/dgjke.afm + RELOC/fonts/afm/wadalab/dgj/dgjkeisen.afm + RELOC/fonts/afm/wadalab/dgj/dgjkf.afm + RELOC/fonts/afm/wadalab/dgj/dgjkg.afm + RELOC/fonts/afm/wadalab/dgj/dgjkh.afm + RELOC/fonts/afm/wadalab/dgj/dgjki.afm + RELOC/fonts/afm/wadalab/dgj/dgjkj.afm + RELOC/fonts/afm/wadalab/dgj/dgjkk.afm + RELOC/fonts/afm/wadalab/dgj/dgjkl.afm + RELOC/fonts/afm/wadalab/dgj/dgjkm.afm + RELOC/fonts/afm/wadalab/dgj/dgjkn.afm + RELOC/fonts/afm/wadalab/dgj/dgjko.afm + RELOC/fonts/afm/wadalab/dgj/dgjkp.afm + RELOC/fonts/afm/wadalab/dgj/dgjkq.afm + RELOC/fonts/afm/wadalab/dgj/dgjkr.afm + RELOC/fonts/afm/wadalab/dgj/dgjks.afm + RELOC/fonts/afm/wadalab/dgj/dgjkt.afm + RELOC/fonts/afm/wadalab/dgj/dgjku.afm + RELOC/fonts/afm/wadalab/dgj/dgjkv.afm + RELOC/fonts/afm/wadalab/dgj/dgjkw.afm + RELOC/fonts/afm/wadalab/dgj/dgjkx.afm + RELOC/fonts/afm/wadalab/dgj/dgjky.afm + RELOC/fonts/afm/wadalab/dgj/dgjkz.afm + RELOC/fonts/afm/wadalab/dgj/dgjroma.afm + RELOC/fonts/afm/wadalab/dgj/dgjrussian.afm + RELOC/fonts/afm/wadalab/dgj/dgjsy.afm + RELOC/fonts/afm/wadalab/dmj/dmjgreek.afm + RELOC/fonts/afm/wadalab/dmj/dmjhira.afm + RELOC/fonts/afm/wadalab/dmj/dmjhw.afm + RELOC/fonts/afm/wadalab/dmj/dmjka.afm + RELOC/fonts/afm/wadalab/dmj/dmjkata.afm + RELOC/fonts/afm/wadalab/dmj/dmjkb.afm + RELOC/fonts/afm/wadalab/dmj/dmjkc.afm + RELOC/fonts/afm/wadalab/dmj/dmjkd.afm + RELOC/fonts/afm/wadalab/dmj/dmjke.afm + RELOC/fonts/afm/wadalab/dmj/dmjkeisen.afm + RELOC/fonts/afm/wadalab/dmj/dmjkf.afm + RELOC/fonts/afm/wadalab/dmj/dmjkg.afm + RELOC/fonts/afm/wadalab/dmj/dmjkh.afm + RELOC/fonts/afm/wadalab/dmj/dmjki.afm + RELOC/fonts/afm/wadalab/dmj/dmjkj.afm + RELOC/fonts/afm/wadalab/dmj/dmjkk.afm + RELOC/fonts/afm/wadalab/dmj/dmjkl.afm + RELOC/fonts/afm/wadalab/dmj/dmjkm.afm + RELOC/fonts/afm/wadalab/dmj/dmjkn.afm + RELOC/fonts/afm/wadalab/dmj/dmjko.afm + RELOC/fonts/afm/wadalab/dmj/dmjkp.afm + RELOC/fonts/afm/wadalab/dmj/dmjkq.afm + RELOC/fonts/afm/wadalab/dmj/dmjkr.afm + RELOC/fonts/afm/wadalab/dmj/dmjks.afm + RELOC/fonts/afm/wadalab/dmj/dmjkt.afm + RELOC/fonts/afm/wadalab/dmj/dmjku.afm + RELOC/fonts/afm/wadalab/dmj/dmjkv.afm + RELOC/fonts/afm/wadalab/dmj/dmjkw.afm + RELOC/fonts/afm/wadalab/dmj/dmjkx.afm + RELOC/fonts/afm/wadalab/dmj/dmjky.afm + RELOC/fonts/afm/wadalab/dmj/dmjkz.afm + RELOC/fonts/afm/wadalab/dmj/dmjroma.afm + RELOC/fonts/afm/wadalab/dmj/dmjrussian.afm + RELOC/fonts/afm/wadalab/dmj/dmjsy.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jka.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkb.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkc.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkd.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jke.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkf.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkg.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkh.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jki.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkj.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkk.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkl.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkm.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkn.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jko.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkp.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkq.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkr.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jks.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkt.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jku.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkv.afm + RELOC/fonts/afm/wadalab/mc2j/mc2jkw.afm + RELOC/fonts/afm/wadalab/mcj/mcjgreek.afm + RELOC/fonts/afm/wadalab/mcj/mcjhira.afm + RELOC/fonts/afm/wadalab/mcj/mcjhw.afm + RELOC/fonts/afm/wadalab/mcj/mcjka.afm + RELOC/fonts/afm/wadalab/mcj/mcjkata.afm + RELOC/fonts/afm/wadalab/mcj/mcjkb.afm + RELOC/fonts/afm/wadalab/mcj/mcjkc.afm + RELOC/fonts/afm/wadalab/mcj/mcjkd.afm + RELOC/fonts/afm/wadalab/mcj/mcjke.afm + RELOC/fonts/afm/wadalab/mcj/mcjkeisen.afm + RELOC/fonts/afm/wadalab/mcj/mcjkf.afm + RELOC/fonts/afm/wadalab/mcj/mcjkg.afm + RELOC/fonts/afm/wadalab/mcj/mcjkh.afm + RELOC/fonts/afm/wadalab/mcj/mcjki.afm + RELOC/fonts/afm/wadalab/mcj/mcjkj.afm + RELOC/fonts/afm/wadalab/mcj/mcjkk.afm + RELOC/fonts/afm/wadalab/mcj/mcjkl.afm + RELOC/fonts/afm/wadalab/mcj/mcjkm.afm + RELOC/fonts/afm/wadalab/mcj/mcjkn.afm + RELOC/fonts/afm/wadalab/mcj/mcjko.afm + RELOC/fonts/afm/wadalab/mcj/mcjkp.afm + RELOC/fonts/afm/wadalab/mcj/mcjkq.afm + RELOC/fonts/afm/wadalab/mcj/mcjkr.afm + RELOC/fonts/afm/wadalab/mcj/mcjks.afm + RELOC/fonts/afm/wadalab/mcj/mcjkt.afm + RELOC/fonts/afm/wadalab/mcj/mcjku.afm + RELOC/fonts/afm/wadalab/mcj/mcjkv.afm + RELOC/fonts/afm/wadalab/mcj/mcjkw.afm + RELOC/fonts/afm/wadalab/mcj/mcjkx.afm + RELOC/fonts/afm/wadalab/mcj/mcjky.afm + RELOC/fonts/afm/wadalab/mcj/mcjkz.afm + RELOC/fonts/afm/wadalab/mcj/mcjroma.afm + RELOC/fonts/afm/wadalab/mcj/mcjrussian.afm + RELOC/fonts/afm/wadalab/mcj/mcjsy.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jka.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkb.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkc.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkd.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jke.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkf.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkg.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkh.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jki.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkj.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkk.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkl.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkm.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkn.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jko.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkp.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkq.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkr.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jks.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkt.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jku.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkv.afm + RELOC/fonts/afm/wadalab/mr2j/mr2jkw.afm + RELOC/fonts/afm/wadalab/mrj/mrjgreek.afm + RELOC/fonts/afm/wadalab/mrj/mrjhira.afm + RELOC/fonts/afm/wadalab/mrj/mrjhw.afm + RELOC/fonts/afm/wadalab/mrj/mrjka.afm + RELOC/fonts/afm/wadalab/mrj/mrjkata.afm + RELOC/fonts/afm/wadalab/mrj/mrjkb.afm + RELOC/fonts/afm/wadalab/mrj/mrjkc.afm + RELOC/fonts/afm/wadalab/mrj/mrjkd.afm + RELOC/fonts/afm/wadalab/mrj/mrjke.afm + RELOC/fonts/afm/wadalab/mrj/mrjkeisen.afm + RELOC/fonts/afm/wadalab/mrj/mrjkf.afm + RELOC/fonts/afm/wadalab/mrj/mrjkg.afm + RELOC/fonts/afm/wadalab/mrj/mrjkh.afm + RELOC/fonts/afm/wadalab/mrj/mrjki.afm + RELOC/fonts/afm/wadalab/mrj/mrjkj.afm + RELOC/fonts/afm/wadalab/mrj/mrjkk.afm + RELOC/fonts/afm/wadalab/mrj/mrjkl.afm + RELOC/fonts/afm/wadalab/mrj/mrjkm.afm + RELOC/fonts/afm/wadalab/mrj/mrjkn.afm + RELOC/fonts/afm/wadalab/mrj/mrjko.afm + RELOC/fonts/afm/wadalab/mrj/mrjkp.afm + RELOC/fonts/afm/wadalab/mrj/mrjkq.afm + RELOC/fonts/afm/wadalab/mrj/mrjkr.afm + RELOC/fonts/afm/wadalab/mrj/mrjks.afm + RELOC/fonts/afm/wadalab/mrj/mrjkt.afm + RELOC/fonts/afm/wadalab/mrj/mrjku.afm + RELOC/fonts/afm/wadalab/mrj/mrjkv.afm + RELOC/fonts/afm/wadalab/mrj/mrjkw.afm + RELOC/fonts/afm/wadalab/mrj/mrjkx.afm + RELOC/fonts/afm/wadalab/mrj/mrjky.afm + RELOC/fonts/afm/wadalab/mrj/mrjkz.afm + RELOC/fonts/afm/wadalab/mrj/mrjroma.afm + RELOC/fonts/afm/wadalab/mrj/mrjrussian.afm + RELOC/fonts/afm/wadalab/mrj/mrjsy.afm + RELOC/fonts/map/dvips/wadalab/dgj.map + RELOC/fonts/map/dvips/wadalab/dmj.map + RELOC/fonts/map/dvips/wadalab/mc2j.map + RELOC/fonts/map/dvips/wadalab/mcj.map + RELOC/fonts/map/dvips/wadalab/mr2j.map + RELOC/fonts/map/dvips/wadalab/mrj.map + RELOC/fonts/tfm/wadalab/dgj/dgjgreek.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjhira.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjhw.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjka.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkata.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkb.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkc.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkd.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjke.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkeisen.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkf.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkg.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkh.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjki.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkj.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkk.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkl.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkm.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkn.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjko.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkp.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkq.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkr.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjks.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkt.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjku.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkv.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkw.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkx.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjky.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjkz.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjroma.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjrussian.tfm + RELOC/fonts/tfm/wadalab/dgj/dgjsy.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjgreek.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjhira.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjhw.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjka.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkata.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkb.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkc.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkd.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjke.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkeisen.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkf.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkg.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkh.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjki.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkj.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkk.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkl.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkm.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkn.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjko.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkp.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkq.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkr.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjks.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkt.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjku.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkv.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkw.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkx.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjky.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjkz.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjroma.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjrussian.tfm + RELOC/fonts/tfm/wadalab/dmj/dmjsy.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jka.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkb.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkc.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkd.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jke.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkf.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkg.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkh.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jki.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkj.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkk.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkl.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkm.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkn.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jko.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkp.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkq.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkr.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jks.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkt.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jku.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkv.tfm + RELOC/fonts/tfm/wadalab/mc2j/mc2jkw.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjgreek.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjhira.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjhw.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjka.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkata.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkb.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkc.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkd.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjke.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkeisen.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkf.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkg.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkh.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjki.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkj.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkk.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkl.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkm.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkn.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjko.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkp.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkq.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkr.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjks.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkt.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjku.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkv.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkw.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkx.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjky.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjkz.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjroma.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjrussian.tfm + RELOC/fonts/tfm/wadalab/mcj/mcjsy.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jka.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkb.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkc.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkd.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jke.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkf.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkg.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkh.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jki.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkj.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkk.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkl.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkm.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkn.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jko.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkp.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkq.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkr.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jks.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkt.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jku.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkv.tfm + RELOC/fonts/tfm/wadalab/mr2j/mr2jkw.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjgreek.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjhira.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjhw.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjka.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkata.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkb.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkc.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkd.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjke.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkeisen.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkf.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkg.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkh.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjki.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkj.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkk.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkl.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkm.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkn.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjko.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkp.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkq.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkr.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjks.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkt.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjku.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkv.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkw.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkx.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjky.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjkz.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjroma.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjrussian.tfm + RELOC/fonts/tfm/wadalab/mrj/mrjsy.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj00.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj03.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj04.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj20.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj21.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj22.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj23.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj25.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj26.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj30.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj4e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj4f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj50.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj51.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj52.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj53.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj54.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj55.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj56.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj57.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj58.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj59.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj5f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj60.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj61.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj62.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj63.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj64.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj65.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj66.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj67.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj68.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj69.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj6f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj70.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj71.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj72.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj73.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj74.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj75.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj76.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj77.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj78.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj79.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj7f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj80.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj81.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj82.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj83.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj84.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj85.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj86.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj87.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj88.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj89.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj8f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj90.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj91.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj92.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj93.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj94.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj95.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj96.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj97.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj98.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj99.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9a.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9b.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9c.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9d.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9e.tfm + RELOC/fonts/tfm/wadalab/udgj/udgj9f.tfm + RELOC/fonts/tfm/wadalab/udgj/udgjff.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj00.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj03.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj04.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj20.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj21.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj22.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj23.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj25.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj26.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj30.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj4e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj4f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj50.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj51.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj52.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj53.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj54.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj55.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj56.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj57.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj58.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj59.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj5f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj60.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj61.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj62.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj63.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj64.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj65.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj66.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj67.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj68.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj69.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj6f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj70.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj71.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj72.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj73.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj74.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj75.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj76.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj77.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj78.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj79.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj7f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj80.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj81.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj82.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj83.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj84.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj85.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj86.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj87.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj88.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj89.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj8f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj90.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj91.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj92.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj93.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj94.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj95.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj96.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj97.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj98.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj99.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9a.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9b.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9c.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9d.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9e.tfm + RELOC/fonts/tfm/wadalab/udmj/udmj9f.tfm + RELOC/fonts/tfm/wadalab/udmj/udmjff.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj00.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj03.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj04.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj20.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj21.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj22.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj23.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj25.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj26.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj30.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj4e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj4f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj50.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj51.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj52.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj53.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj54.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj55.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj56.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj57.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj58.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj59.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj5f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj60.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj61.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj62.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj63.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj64.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj65.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj66.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj67.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj68.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj69.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj6f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj70.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj71.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj72.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj73.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj74.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj75.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj76.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj77.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj78.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj79.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj7f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj80.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj81.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj82.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj83.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj84.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj85.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj86.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj87.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj88.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj89.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj8f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj90.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj91.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj92.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj93.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj94.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj95.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj96.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj97.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj98.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj99.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9a.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9b.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9c.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9d.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9e.tfm + RELOC/fonts/tfm/wadalab/umcj/umcj9f.tfm + RELOC/fonts/tfm/wadalab/umcj/umcjff.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj00.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj03.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj04.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj20.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj21.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj22.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj23.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj25.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj26.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj30.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj4e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj4f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj50.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj51.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj52.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj53.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj54.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj55.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj56.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj57.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj58.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj59.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj5f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj60.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj61.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj62.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj63.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj64.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj65.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj66.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj67.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj68.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj69.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj6f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj70.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj71.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj72.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj73.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj74.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj75.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj76.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj77.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj78.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj79.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj7f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj80.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj81.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj82.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj83.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj84.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj85.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj86.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj87.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj88.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj89.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj8f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj90.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj91.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj92.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj93.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj94.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj95.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj96.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj97.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj98.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj99.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9a.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9b.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9c.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9d.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9e.tfm + RELOC/fonts/tfm/wadalab/umrj/umrj9f.tfm + RELOC/fonts/tfm/wadalab/umrj/umrjff.tfm + RELOC/fonts/type1/wadalab/dgj/dgjgreek.pfb + RELOC/fonts/type1/wadalab/dgj/dgjhira.pfb + RELOC/fonts/type1/wadalab/dgj/dgjhw.pfb + RELOC/fonts/type1/wadalab/dgj/dgjka.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkata.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkb.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkc.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkd.pfb + RELOC/fonts/type1/wadalab/dgj/dgjke.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkeisen.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkf.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkg.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkh.pfb + RELOC/fonts/type1/wadalab/dgj/dgjki.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkj.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkk.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkl.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkm.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkn.pfb + RELOC/fonts/type1/wadalab/dgj/dgjko.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkp.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkq.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkr.pfb + RELOC/fonts/type1/wadalab/dgj/dgjks.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkt.pfb + RELOC/fonts/type1/wadalab/dgj/dgjku.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkv.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkw.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkx.pfb + RELOC/fonts/type1/wadalab/dgj/dgjky.pfb + RELOC/fonts/type1/wadalab/dgj/dgjkz.pfb + RELOC/fonts/type1/wadalab/dgj/dgjroma.pfb + RELOC/fonts/type1/wadalab/dgj/dgjrussian.pfb + RELOC/fonts/type1/wadalab/dgj/dgjsy.pfb + RELOC/fonts/type1/wadalab/dmj/dmjgreek.pfb + RELOC/fonts/type1/wadalab/dmj/dmjhira.pfb + RELOC/fonts/type1/wadalab/dmj/dmjhw.pfb + RELOC/fonts/type1/wadalab/dmj/dmjka.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkata.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkb.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkc.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkd.pfb + RELOC/fonts/type1/wadalab/dmj/dmjke.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkeisen.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkf.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkg.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkh.pfb + RELOC/fonts/type1/wadalab/dmj/dmjki.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkj.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkk.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkl.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkm.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkn.pfb + RELOC/fonts/type1/wadalab/dmj/dmjko.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkp.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkq.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkr.pfb + RELOC/fonts/type1/wadalab/dmj/dmjks.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkt.pfb + RELOC/fonts/type1/wadalab/dmj/dmjku.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkv.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkw.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkx.pfb + RELOC/fonts/type1/wadalab/dmj/dmjky.pfb + RELOC/fonts/type1/wadalab/dmj/dmjkz.pfb + RELOC/fonts/type1/wadalab/dmj/dmjroma.pfb + RELOC/fonts/type1/wadalab/dmj/dmjrussian.pfb + RELOC/fonts/type1/wadalab/dmj/dmjsy.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jka.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkb.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkc.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkd.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jke.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkf.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkg.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkh.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jki.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkj.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkk.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkl.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkm.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkn.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jko.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkp.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkq.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkr.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jks.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkt.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jku.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkv.pfb + RELOC/fonts/type1/wadalab/mc2j/mc2jkw.pfb + RELOC/fonts/type1/wadalab/mcj/mcjgreek.pfb + RELOC/fonts/type1/wadalab/mcj/mcjhira.pfb + RELOC/fonts/type1/wadalab/mcj/mcjhw.pfb + RELOC/fonts/type1/wadalab/mcj/mcjka.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkata.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkb.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkc.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkd.pfb + RELOC/fonts/type1/wadalab/mcj/mcjke.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkeisen.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkf.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkg.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkh.pfb + RELOC/fonts/type1/wadalab/mcj/mcjki.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkj.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkk.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkl.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkm.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkn.pfb + RELOC/fonts/type1/wadalab/mcj/mcjko.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkp.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkq.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkr.pfb + RELOC/fonts/type1/wadalab/mcj/mcjks.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkt.pfb + RELOC/fonts/type1/wadalab/mcj/mcjku.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkv.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkw.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkx.pfb + RELOC/fonts/type1/wadalab/mcj/mcjky.pfb + RELOC/fonts/type1/wadalab/mcj/mcjkz.pfb + RELOC/fonts/type1/wadalab/mcj/mcjroma.pfb + RELOC/fonts/type1/wadalab/mcj/mcjrussian.pfb + RELOC/fonts/type1/wadalab/mcj/mcjsy.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jka.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkb.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkc.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkd.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jke.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkf.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkg.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkh.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jki.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkj.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkk.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkl.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkm.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkn.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jko.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkp.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkq.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkr.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jks.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkt.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jku.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkv.pfb + RELOC/fonts/type1/wadalab/mr2j/mr2jkw.pfb + RELOC/fonts/type1/wadalab/mrj/mrjgreek.pfb + RELOC/fonts/type1/wadalab/mrj/mrjhira.pfb + RELOC/fonts/type1/wadalab/mrj/mrjhw.pfb + RELOC/fonts/type1/wadalab/mrj/mrjka.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkata.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkb.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkc.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkd.pfb + RELOC/fonts/type1/wadalab/mrj/mrjke.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkeisen.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkf.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkg.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkh.pfb + RELOC/fonts/type1/wadalab/mrj/mrjki.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkj.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkk.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkl.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkm.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkn.pfb + RELOC/fonts/type1/wadalab/mrj/mrjko.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkp.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkq.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkr.pfb + RELOC/fonts/type1/wadalab/mrj/mrjks.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkt.pfb + RELOC/fonts/type1/wadalab/mrj/mrjku.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkv.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkw.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkx.pfb + RELOC/fonts/type1/wadalab/mrj/mrjky.pfb + RELOC/fonts/type1/wadalab/mrj/mrjkz.pfb + RELOC/fonts/type1/wadalab/mrj/mrjroma.pfb + RELOC/fonts/type1/wadalab/mrj/mrjrussian.pfb + RELOC/fonts/type1/wadalab/mrj/mrjsy.pfb + RELOC/fonts/vf/wadalab/udgj/udgj00.vf + RELOC/fonts/vf/wadalab/udgj/udgj03.vf + RELOC/fonts/vf/wadalab/udgj/udgj04.vf + RELOC/fonts/vf/wadalab/udgj/udgj20.vf + RELOC/fonts/vf/wadalab/udgj/udgj21.vf + RELOC/fonts/vf/wadalab/udgj/udgj22.vf + RELOC/fonts/vf/wadalab/udgj/udgj23.vf + RELOC/fonts/vf/wadalab/udgj/udgj25.vf + RELOC/fonts/vf/wadalab/udgj/udgj26.vf + RELOC/fonts/vf/wadalab/udgj/udgj30.vf + RELOC/fonts/vf/wadalab/udgj/udgj4e.vf + RELOC/fonts/vf/wadalab/udgj/udgj4f.vf + RELOC/fonts/vf/wadalab/udgj/udgj50.vf + RELOC/fonts/vf/wadalab/udgj/udgj51.vf + RELOC/fonts/vf/wadalab/udgj/udgj52.vf + RELOC/fonts/vf/wadalab/udgj/udgj53.vf + RELOC/fonts/vf/wadalab/udgj/udgj54.vf + RELOC/fonts/vf/wadalab/udgj/udgj55.vf + RELOC/fonts/vf/wadalab/udgj/udgj56.vf + RELOC/fonts/vf/wadalab/udgj/udgj57.vf + RELOC/fonts/vf/wadalab/udgj/udgj58.vf + RELOC/fonts/vf/wadalab/udgj/udgj59.vf + RELOC/fonts/vf/wadalab/udgj/udgj5a.vf + RELOC/fonts/vf/wadalab/udgj/udgj5b.vf + RELOC/fonts/vf/wadalab/udgj/udgj5c.vf + RELOC/fonts/vf/wadalab/udgj/udgj5d.vf + RELOC/fonts/vf/wadalab/udgj/udgj5e.vf + RELOC/fonts/vf/wadalab/udgj/udgj5f.vf + RELOC/fonts/vf/wadalab/udgj/udgj60.vf + RELOC/fonts/vf/wadalab/udgj/udgj61.vf + RELOC/fonts/vf/wadalab/udgj/udgj62.vf + RELOC/fonts/vf/wadalab/udgj/udgj63.vf + RELOC/fonts/vf/wadalab/udgj/udgj64.vf + RELOC/fonts/vf/wadalab/udgj/udgj65.vf + RELOC/fonts/vf/wadalab/udgj/udgj66.vf + RELOC/fonts/vf/wadalab/udgj/udgj67.vf + RELOC/fonts/vf/wadalab/udgj/udgj68.vf + RELOC/fonts/vf/wadalab/udgj/udgj69.vf + RELOC/fonts/vf/wadalab/udgj/udgj6a.vf + RELOC/fonts/vf/wadalab/udgj/udgj6b.vf + RELOC/fonts/vf/wadalab/udgj/udgj6c.vf + RELOC/fonts/vf/wadalab/udgj/udgj6d.vf + RELOC/fonts/vf/wadalab/udgj/udgj6e.vf + RELOC/fonts/vf/wadalab/udgj/udgj6f.vf + RELOC/fonts/vf/wadalab/udgj/udgj70.vf + RELOC/fonts/vf/wadalab/udgj/udgj71.vf + RELOC/fonts/vf/wadalab/udgj/udgj72.vf + RELOC/fonts/vf/wadalab/udgj/udgj73.vf + RELOC/fonts/vf/wadalab/udgj/udgj74.vf + RELOC/fonts/vf/wadalab/udgj/udgj75.vf + RELOC/fonts/vf/wadalab/udgj/udgj76.vf + RELOC/fonts/vf/wadalab/udgj/udgj77.vf + RELOC/fonts/vf/wadalab/udgj/udgj78.vf + RELOC/fonts/vf/wadalab/udgj/udgj79.vf + RELOC/fonts/vf/wadalab/udgj/udgj7a.vf + RELOC/fonts/vf/wadalab/udgj/udgj7b.vf + RELOC/fonts/vf/wadalab/udgj/udgj7c.vf + RELOC/fonts/vf/wadalab/udgj/udgj7d.vf + RELOC/fonts/vf/wadalab/udgj/udgj7e.vf + RELOC/fonts/vf/wadalab/udgj/udgj7f.vf + RELOC/fonts/vf/wadalab/udgj/udgj80.vf + RELOC/fonts/vf/wadalab/udgj/udgj81.vf + RELOC/fonts/vf/wadalab/udgj/udgj82.vf + RELOC/fonts/vf/wadalab/udgj/udgj83.vf + RELOC/fonts/vf/wadalab/udgj/udgj84.vf + RELOC/fonts/vf/wadalab/udgj/udgj85.vf + RELOC/fonts/vf/wadalab/udgj/udgj86.vf + RELOC/fonts/vf/wadalab/udgj/udgj87.vf + RELOC/fonts/vf/wadalab/udgj/udgj88.vf + RELOC/fonts/vf/wadalab/udgj/udgj89.vf + RELOC/fonts/vf/wadalab/udgj/udgj8a.vf + RELOC/fonts/vf/wadalab/udgj/udgj8b.vf + RELOC/fonts/vf/wadalab/udgj/udgj8c.vf + RELOC/fonts/vf/wadalab/udgj/udgj8d.vf + RELOC/fonts/vf/wadalab/udgj/udgj8e.vf + RELOC/fonts/vf/wadalab/udgj/udgj8f.vf + RELOC/fonts/vf/wadalab/udgj/udgj90.vf + RELOC/fonts/vf/wadalab/udgj/udgj91.vf + RELOC/fonts/vf/wadalab/udgj/udgj92.vf + RELOC/fonts/vf/wadalab/udgj/udgj93.vf + RELOC/fonts/vf/wadalab/udgj/udgj94.vf + RELOC/fonts/vf/wadalab/udgj/udgj95.vf + RELOC/fonts/vf/wadalab/udgj/udgj96.vf + RELOC/fonts/vf/wadalab/udgj/udgj97.vf + RELOC/fonts/vf/wadalab/udgj/udgj98.vf + RELOC/fonts/vf/wadalab/udgj/udgj99.vf + RELOC/fonts/vf/wadalab/udgj/udgj9a.vf + RELOC/fonts/vf/wadalab/udgj/udgj9b.vf + RELOC/fonts/vf/wadalab/udgj/udgj9c.vf + RELOC/fonts/vf/wadalab/udgj/udgj9d.vf + RELOC/fonts/vf/wadalab/udgj/udgj9e.vf + RELOC/fonts/vf/wadalab/udgj/udgj9f.vf + RELOC/fonts/vf/wadalab/udgj/udgjff.vf + RELOC/fonts/vf/wadalab/udmj/udmj00.vf + RELOC/fonts/vf/wadalab/udmj/udmj03.vf + RELOC/fonts/vf/wadalab/udmj/udmj04.vf + RELOC/fonts/vf/wadalab/udmj/udmj20.vf + RELOC/fonts/vf/wadalab/udmj/udmj21.vf + RELOC/fonts/vf/wadalab/udmj/udmj22.vf + RELOC/fonts/vf/wadalab/udmj/udmj23.vf + RELOC/fonts/vf/wadalab/udmj/udmj25.vf + RELOC/fonts/vf/wadalab/udmj/udmj26.vf + RELOC/fonts/vf/wadalab/udmj/udmj30.vf + RELOC/fonts/vf/wadalab/udmj/udmj4e.vf + RELOC/fonts/vf/wadalab/udmj/udmj4f.vf + RELOC/fonts/vf/wadalab/udmj/udmj50.vf + RELOC/fonts/vf/wadalab/udmj/udmj51.vf + RELOC/fonts/vf/wadalab/udmj/udmj52.vf + RELOC/fonts/vf/wadalab/udmj/udmj53.vf + RELOC/fonts/vf/wadalab/udmj/udmj54.vf + RELOC/fonts/vf/wadalab/udmj/udmj55.vf + RELOC/fonts/vf/wadalab/udmj/udmj56.vf + RELOC/fonts/vf/wadalab/udmj/udmj57.vf + RELOC/fonts/vf/wadalab/udmj/udmj58.vf + RELOC/fonts/vf/wadalab/udmj/udmj59.vf + RELOC/fonts/vf/wadalab/udmj/udmj5a.vf + RELOC/fonts/vf/wadalab/udmj/udmj5b.vf + RELOC/fonts/vf/wadalab/udmj/udmj5c.vf + RELOC/fonts/vf/wadalab/udmj/udmj5d.vf + RELOC/fonts/vf/wadalab/udmj/udmj5e.vf + RELOC/fonts/vf/wadalab/udmj/udmj5f.vf + RELOC/fonts/vf/wadalab/udmj/udmj60.vf + RELOC/fonts/vf/wadalab/udmj/udmj61.vf + RELOC/fonts/vf/wadalab/udmj/udmj62.vf + RELOC/fonts/vf/wadalab/udmj/udmj63.vf + RELOC/fonts/vf/wadalab/udmj/udmj64.vf + RELOC/fonts/vf/wadalab/udmj/udmj65.vf + RELOC/fonts/vf/wadalab/udmj/udmj66.vf + RELOC/fonts/vf/wadalab/udmj/udmj67.vf + RELOC/fonts/vf/wadalab/udmj/udmj68.vf + RELOC/fonts/vf/wadalab/udmj/udmj69.vf + RELOC/fonts/vf/wadalab/udmj/udmj6a.vf + RELOC/fonts/vf/wadalab/udmj/udmj6b.vf + RELOC/fonts/vf/wadalab/udmj/udmj6c.vf + RELOC/fonts/vf/wadalab/udmj/udmj6d.vf + RELOC/fonts/vf/wadalab/udmj/udmj6e.vf + RELOC/fonts/vf/wadalab/udmj/udmj6f.vf + RELOC/fonts/vf/wadalab/udmj/udmj70.vf + RELOC/fonts/vf/wadalab/udmj/udmj71.vf + RELOC/fonts/vf/wadalab/udmj/udmj72.vf + RELOC/fonts/vf/wadalab/udmj/udmj73.vf + RELOC/fonts/vf/wadalab/udmj/udmj74.vf + RELOC/fonts/vf/wadalab/udmj/udmj75.vf + RELOC/fonts/vf/wadalab/udmj/udmj76.vf + RELOC/fonts/vf/wadalab/udmj/udmj77.vf + RELOC/fonts/vf/wadalab/udmj/udmj78.vf + RELOC/fonts/vf/wadalab/udmj/udmj79.vf + RELOC/fonts/vf/wadalab/udmj/udmj7a.vf + RELOC/fonts/vf/wadalab/udmj/udmj7b.vf + RELOC/fonts/vf/wadalab/udmj/udmj7c.vf + RELOC/fonts/vf/wadalab/udmj/udmj7d.vf + RELOC/fonts/vf/wadalab/udmj/udmj7e.vf + RELOC/fonts/vf/wadalab/udmj/udmj7f.vf + RELOC/fonts/vf/wadalab/udmj/udmj80.vf + RELOC/fonts/vf/wadalab/udmj/udmj81.vf + RELOC/fonts/vf/wadalab/udmj/udmj82.vf + RELOC/fonts/vf/wadalab/udmj/udmj83.vf + RELOC/fonts/vf/wadalab/udmj/udmj84.vf + RELOC/fonts/vf/wadalab/udmj/udmj85.vf + RELOC/fonts/vf/wadalab/udmj/udmj86.vf + RELOC/fonts/vf/wadalab/udmj/udmj87.vf + RELOC/fonts/vf/wadalab/udmj/udmj88.vf + RELOC/fonts/vf/wadalab/udmj/udmj89.vf + RELOC/fonts/vf/wadalab/udmj/udmj8a.vf + RELOC/fonts/vf/wadalab/udmj/udmj8b.vf + RELOC/fonts/vf/wadalab/udmj/udmj8c.vf + RELOC/fonts/vf/wadalab/udmj/udmj8d.vf + RELOC/fonts/vf/wadalab/udmj/udmj8e.vf + RELOC/fonts/vf/wadalab/udmj/udmj8f.vf + RELOC/fonts/vf/wadalab/udmj/udmj90.vf + RELOC/fonts/vf/wadalab/udmj/udmj91.vf + RELOC/fonts/vf/wadalab/udmj/udmj92.vf + RELOC/fonts/vf/wadalab/udmj/udmj93.vf + RELOC/fonts/vf/wadalab/udmj/udmj94.vf + RELOC/fonts/vf/wadalab/udmj/udmj95.vf + RELOC/fonts/vf/wadalab/udmj/udmj96.vf + RELOC/fonts/vf/wadalab/udmj/udmj97.vf + RELOC/fonts/vf/wadalab/udmj/udmj98.vf + RELOC/fonts/vf/wadalab/udmj/udmj99.vf + RELOC/fonts/vf/wadalab/udmj/udmj9a.vf + RELOC/fonts/vf/wadalab/udmj/udmj9b.vf + RELOC/fonts/vf/wadalab/udmj/udmj9c.vf + RELOC/fonts/vf/wadalab/udmj/udmj9d.vf + RELOC/fonts/vf/wadalab/udmj/udmj9e.vf + RELOC/fonts/vf/wadalab/udmj/udmj9f.vf + RELOC/fonts/vf/wadalab/udmj/udmjff.vf + RELOC/fonts/vf/wadalab/umcj/umcj00.vf + RELOC/fonts/vf/wadalab/umcj/umcj03.vf + RELOC/fonts/vf/wadalab/umcj/umcj04.vf + RELOC/fonts/vf/wadalab/umcj/umcj20.vf + RELOC/fonts/vf/wadalab/umcj/umcj21.vf + RELOC/fonts/vf/wadalab/umcj/umcj22.vf + RELOC/fonts/vf/wadalab/umcj/umcj23.vf + RELOC/fonts/vf/wadalab/umcj/umcj25.vf + RELOC/fonts/vf/wadalab/umcj/umcj26.vf + RELOC/fonts/vf/wadalab/umcj/umcj30.vf + RELOC/fonts/vf/wadalab/umcj/umcj4e.vf + RELOC/fonts/vf/wadalab/umcj/umcj4f.vf + RELOC/fonts/vf/wadalab/umcj/umcj50.vf + RELOC/fonts/vf/wadalab/umcj/umcj51.vf + RELOC/fonts/vf/wadalab/umcj/umcj52.vf + RELOC/fonts/vf/wadalab/umcj/umcj53.vf + RELOC/fonts/vf/wadalab/umcj/umcj54.vf + RELOC/fonts/vf/wadalab/umcj/umcj55.vf + RELOC/fonts/vf/wadalab/umcj/umcj56.vf + RELOC/fonts/vf/wadalab/umcj/umcj57.vf + RELOC/fonts/vf/wadalab/umcj/umcj58.vf + RELOC/fonts/vf/wadalab/umcj/umcj59.vf + RELOC/fonts/vf/wadalab/umcj/umcj5a.vf + RELOC/fonts/vf/wadalab/umcj/umcj5b.vf + RELOC/fonts/vf/wadalab/umcj/umcj5c.vf + RELOC/fonts/vf/wadalab/umcj/umcj5d.vf + RELOC/fonts/vf/wadalab/umcj/umcj5e.vf + RELOC/fonts/vf/wadalab/umcj/umcj5f.vf + RELOC/fonts/vf/wadalab/umcj/umcj60.vf + RELOC/fonts/vf/wadalab/umcj/umcj61.vf + RELOC/fonts/vf/wadalab/umcj/umcj62.vf + RELOC/fonts/vf/wadalab/umcj/umcj63.vf + RELOC/fonts/vf/wadalab/umcj/umcj64.vf + RELOC/fonts/vf/wadalab/umcj/umcj65.vf + RELOC/fonts/vf/wadalab/umcj/umcj66.vf + RELOC/fonts/vf/wadalab/umcj/umcj67.vf + RELOC/fonts/vf/wadalab/umcj/umcj68.vf + RELOC/fonts/vf/wadalab/umcj/umcj69.vf + RELOC/fonts/vf/wadalab/umcj/umcj6a.vf + RELOC/fonts/vf/wadalab/umcj/umcj6b.vf + RELOC/fonts/vf/wadalab/umcj/umcj6c.vf + RELOC/fonts/vf/wadalab/umcj/umcj6d.vf + RELOC/fonts/vf/wadalab/umcj/umcj6e.vf + RELOC/fonts/vf/wadalab/umcj/umcj6f.vf + RELOC/fonts/vf/wadalab/umcj/umcj70.vf + RELOC/fonts/vf/wadalab/umcj/umcj71.vf + RELOC/fonts/vf/wadalab/umcj/umcj72.vf + RELOC/fonts/vf/wadalab/umcj/umcj73.vf + RELOC/fonts/vf/wadalab/umcj/umcj74.vf + RELOC/fonts/vf/wadalab/umcj/umcj75.vf + RELOC/fonts/vf/wadalab/umcj/umcj76.vf + RELOC/fonts/vf/wadalab/umcj/umcj77.vf + RELOC/fonts/vf/wadalab/umcj/umcj78.vf + RELOC/fonts/vf/wadalab/umcj/umcj79.vf + RELOC/fonts/vf/wadalab/umcj/umcj7a.vf + RELOC/fonts/vf/wadalab/umcj/umcj7b.vf + RELOC/fonts/vf/wadalab/umcj/umcj7c.vf + RELOC/fonts/vf/wadalab/umcj/umcj7d.vf + RELOC/fonts/vf/wadalab/umcj/umcj7e.vf + RELOC/fonts/vf/wadalab/umcj/umcj7f.vf + RELOC/fonts/vf/wadalab/umcj/umcj80.vf + RELOC/fonts/vf/wadalab/umcj/umcj81.vf + RELOC/fonts/vf/wadalab/umcj/umcj82.vf + RELOC/fonts/vf/wadalab/umcj/umcj83.vf + RELOC/fonts/vf/wadalab/umcj/umcj84.vf + RELOC/fonts/vf/wadalab/umcj/umcj85.vf + RELOC/fonts/vf/wadalab/umcj/umcj86.vf + RELOC/fonts/vf/wadalab/umcj/umcj87.vf + RELOC/fonts/vf/wadalab/umcj/umcj88.vf + RELOC/fonts/vf/wadalab/umcj/umcj89.vf + RELOC/fonts/vf/wadalab/umcj/umcj8a.vf + RELOC/fonts/vf/wadalab/umcj/umcj8b.vf + RELOC/fonts/vf/wadalab/umcj/umcj8c.vf + RELOC/fonts/vf/wadalab/umcj/umcj8d.vf + RELOC/fonts/vf/wadalab/umcj/umcj8e.vf + RELOC/fonts/vf/wadalab/umcj/umcj8f.vf + RELOC/fonts/vf/wadalab/umcj/umcj90.vf + RELOC/fonts/vf/wadalab/umcj/umcj91.vf + RELOC/fonts/vf/wadalab/umcj/umcj92.vf + RELOC/fonts/vf/wadalab/umcj/umcj93.vf + RELOC/fonts/vf/wadalab/umcj/umcj94.vf + RELOC/fonts/vf/wadalab/umcj/umcj95.vf + RELOC/fonts/vf/wadalab/umcj/umcj96.vf + RELOC/fonts/vf/wadalab/umcj/umcj97.vf + RELOC/fonts/vf/wadalab/umcj/umcj98.vf + RELOC/fonts/vf/wadalab/umcj/umcj99.vf + RELOC/fonts/vf/wadalab/umcj/umcj9a.vf + RELOC/fonts/vf/wadalab/umcj/umcj9b.vf + RELOC/fonts/vf/wadalab/umcj/umcj9c.vf + RELOC/fonts/vf/wadalab/umcj/umcj9d.vf + RELOC/fonts/vf/wadalab/umcj/umcj9e.vf + RELOC/fonts/vf/wadalab/umcj/umcj9f.vf + RELOC/fonts/vf/wadalab/umcj/umcjff.vf + RELOC/fonts/vf/wadalab/umrj/umrj00.vf + RELOC/fonts/vf/wadalab/umrj/umrj03.vf + RELOC/fonts/vf/wadalab/umrj/umrj04.vf + RELOC/fonts/vf/wadalab/umrj/umrj20.vf + RELOC/fonts/vf/wadalab/umrj/umrj21.vf + RELOC/fonts/vf/wadalab/umrj/umrj22.vf + RELOC/fonts/vf/wadalab/umrj/umrj23.vf + RELOC/fonts/vf/wadalab/umrj/umrj25.vf + RELOC/fonts/vf/wadalab/umrj/umrj26.vf + RELOC/fonts/vf/wadalab/umrj/umrj30.vf + RELOC/fonts/vf/wadalab/umrj/umrj4e.vf + RELOC/fonts/vf/wadalab/umrj/umrj4f.vf + RELOC/fonts/vf/wadalab/umrj/umrj50.vf + RELOC/fonts/vf/wadalab/umrj/umrj51.vf + RELOC/fonts/vf/wadalab/umrj/umrj52.vf + RELOC/fonts/vf/wadalab/umrj/umrj53.vf + RELOC/fonts/vf/wadalab/umrj/umrj54.vf + RELOC/fonts/vf/wadalab/umrj/umrj55.vf + RELOC/fonts/vf/wadalab/umrj/umrj56.vf + RELOC/fonts/vf/wadalab/umrj/umrj57.vf + RELOC/fonts/vf/wadalab/umrj/umrj58.vf + RELOC/fonts/vf/wadalab/umrj/umrj59.vf + RELOC/fonts/vf/wadalab/umrj/umrj5a.vf + RELOC/fonts/vf/wadalab/umrj/umrj5b.vf + RELOC/fonts/vf/wadalab/umrj/umrj5c.vf + RELOC/fonts/vf/wadalab/umrj/umrj5d.vf + RELOC/fonts/vf/wadalab/umrj/umrj5e.vf + RELOC/fonts/vf/wadalab/umrj/umrj5f.vf + RELOC/fonts/vf/wadalab/umrj/umrj60.vf + RELOC/fonts/vf/wadalab/umrj/umrj61.vf + RELOC/fonts/vf/wadalab/umrj/umrj62.vf + RELOC/fonts/vf/wadalab/umrj/umrj63.vf + RELOC/fonts/vf/wadalab/umrj/umrj64.vf + RELOC/fonts/vf/wadalab/umrj/umrj65.vf + RELOC/fonts/vf/wadalab/umrj/umrj66.vf + RELOC/fonts/vf/wadalab/umrj/umrj67.vf + RELOC/fonts/vf/wadalab/umrj/umrj68.vf + RELOC/fonts/vf/wadalab/umrj/umrj69.vf + RELOC/fonts/vf/wadalab/umrj/umrj6a.vf + RELOC/fonts/vf/wadalab/umrj/umrj6b.vf + RELOC/fonts/vf/wadalab/umrj/umrj6c.vf + RELOC/fonts/vf/wadalab/umrj/umrj6d.vf + RELOC/fonts/vf/wadalab/umrj/umrj6e.vf + RELOC/fonts/vf/wadalab/umrj/umrj6f.vf + RELOC/fonts/vf/wadalab/umrj/umrj70.vf + RELOC/fonts/vf/wadalab/umrj/umrj71.vf + RELOC/fonts/vf/wadalab/umrj/umrj72.vf + RELOC/fonts/vf/wadalab/umrj/umrj73.vf + RELOC/fonts/vf/wadalab/umrj/umrj74.vf + RELOC/fonts/vf/wadalab/umrj/umrj75.vf + RELOC/fonts/vf/wadalab/umrj/umrj76.vf + RELOC/fonts/vf/wadalab/umrj/umrj77.vf + RELOC/fonts/vf/wadalab/umrj/umrj78.vf + RELOC/fonts/vf/wadalab/umrj/umrj79.vf + RELOC/fonts/vf/wadalab/umrj/umrj7a.vf + RELOC/fonts/vf/wadalab/umrj/umrj7b.vf + RELOC/fonts/vf/wadalab/umrj/umrj7c.vf + RELOC/fonts/vf/wadalab/umrj/umrj7d.vf + RELOC/fonts/vf/wadalab/umrj/umrj7e.vf + RELOC/fonts/vf/wadalab/umrj/umrj7f.vf + RELOC/fonts/vf/wadalab/umrj/umrj80.vf + RELOC/fonts/vf/wadalab/umrj/umrj81.vf + RELOC/fonts/vf/wadalab/umrj/umrj82.vf + RELOC/fonts/vf/wadalab/umrj/umrj83.vf + RELOC/fonts/vf/wadalab/umrj/umrj84.vf + RELOC/fonts/vf/wadalab/umrj/umrj85.vf + RELOC/fonts/vf/wadalab/umrj/umrj86.vf + RELOC/fonts/vf/wadalab/umrj/umrj87.vf + RELOC/fonts/vf/wadalab/umrj/umrj88.vf + RELOC/fonts/vf/wadalab/umrj/umrj89.vf + RELOC/fonts/vf/wadalab/umrj/umrj8a.vf + RELOC/fonts/vf/wadalab/umrj/umrj8b.vf + RELOC/fonts/vf/wadalab/umrj/umrj8c.vf + RELOC/fonts/vf/wadalab/umrj/umrj8d.vf + RELOC/fonts/vf/wadalab/umrj/umrj8e.vf + RELOC/fonts/vf/wadalab/umrj/umrj8f.vf + RELOC/fonts/vf/wadalab/umrj/umrj90.vf + RELOC/fonts/vf/wadalab/umrj/umrj91.vf + RELOC/fonts/vf/wadalab/umrj/umrj92.vf + RELOC/fonts/vf/wadalab/umrj/umrj93.vf + RELOC/fonts/vf/wadalab/umrj/umrj94.vf + RELOC/fonts/vf/wadalab/umrj/umrj95.vf + RELOC/fonts/vf/wadalab/umrj/umrj96.vf + RELOC/fonts/vf/wadalab/umrj/umrj97.vf + RELOC/fonts/vf/wadalab/umrj/umrj98.vf + RELOC/fonts/vf/wadalab/umrj/umrj99.vf + RELOC/fonts/vf/wadalab/umrj/umrj9a.vf + RELOC/fonts/vf/wadalab/umrj/umrj9b.vf + RELOC/fonts/vf/wadalab/umrj/umrj9c.vf + RELOC/fonts/vf/wadalab/umrj/umrj9d.vf + RELOC/fonts/vf/wadalab/umrj/umrj9e.vf + RELOC/fonts/vf/wadalab/umrj/umrj9f.vf + RELOC/fonts/vf/wadalab/umrj/umrjff.vf +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-ctan /fonts/wadalab +catalogue-date 2014-05-20 15:07:59 +0200 +catalogue-license other-free + +name wallpaper +category Package +revision 15878 +shortdesc Easy addition of wallpapers (background images) to LaTeX documents, including tiling. +relocated 1 +longdesc This collection contains files to add wallpapers (background +longdesc images) to LaTeX documents. It uses the eso-pic package, but +longdesc provides simple commands to include effects such as tiling. An +longdesc example is provided, which works under both LaTeX and pdfLaTeX. +runfiles size=2 + RELOC/tex/latex/wallpaper/wallpaper.sty +docfiles size=317 + RELOC/doc/latex/wallpaper/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 +catalogue-ctan /macros/latex/contrib/wallpaper +catalogue-date 2012-05-04 12:49:06 +0200 +catalogue-license lppl +catalogue-version 1.10 + +name warning +category Package +revision 22028 +shortdesc Global warnings at the end of the logfile. +relocated 1 +longdesc This package provides a command that generates a list of +longdesc warnings that are printed out at the very end of the logfile. +longdesc This is useful for warnings such as 'Rerun for this or that +longdesc reason' or 'This is a draft, change it before the final run'. +runfiles size=1 + RELOC/tex/latex/warning/warning.sty +docfiles size=64 + RELOC/doc/latex/warning/warning-doc.pdf + RELOC/doc/latex/warning/warning-doc.tex +catalogue-ctan /macros/latex/contrib/warning +catalogue-date 2012-05-04 12:49:06 +0200 +catalogue-license lppl +catalogue-version 0.01 + +name warpcol +category Package +revision 15878 +shortdesc Relative alignment of rows in numeric columns in tabulars. +relocated 1 +longdesc Defines a tabular column type for formatting numerical columns +longdesc in LaTeX. The column type enables numerical items to be right +longdesc justified relative to each other, while centred beneath the +longdesc column label. In addition, macros are provided to enable +longdesc variations on this column type to be defined. Usage of the +longdesc package is superficially similar to that of dcolumn; however, +longdesc the alignment scheme is different, and the packages have +longdesc different, though overlapping, applications. +runfiles size=1 + RELOC/tex/latex/warpcol/warpcol.sty +docfiles size=25 + RELOC/doc/latex/warpcol/README + RELOC/doc/latex/warpcol/warpcol.pdf +srcfiles size=4 + RELOC/source/latex/warpcol/warpcol.dtx + RELOC/source/latex/warpcol/warpcol.ins +catalogue-ctan /macros/latex/contrib/warpcol +catalogue-date 2012-05-04 12:49:06 +0200 +catalogue-license lppl +catalogue-version 1.0c + +name was +category Package +revision 21439 +shortdesc A collection of small packages by Walter Schmidt. +relocated 1 +longdesc A bundle of packages that arise in the author's area of +longdesc interest: compliance of maths typesetting with ISO standards; +longdesc symbols that work in both maths and text modes commas for both +longdesc decimal separator and maths; and upright Greek letters in +longdesc maths. +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 +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 +srcfiles size=16 + RELOC/source/latex/was/fixmath.dtx + RELOC/source/latex/was/fixmath.ins + RELOC/source/latex/was/gensymb.dtx + RELOC/source/latex/was/gensymb.ins + RELOC/source/latex/was/icomma.dtx + RELOC/source/latex/was/icomma.ins + RELOC/source/latex/was/upgreek.dtx + RELOC/source/latex/was/upgreek.ins +catalogue-ctan /macros/latex/contrib/was +catalogue-date 2014-10-16 09:10:04 +0200 +catalogue-license collection + +name wasy2-ps +category Package +revision 35830 +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 +runfiles size=83 + RELOC/fonts/afm/public/wasy2-ps/wasy10.afm + RELOC/fonts/afm/public/wasy2-ps/wasy5.afm + RELOC/fonts/afm/public/wasy2-ps/wasy6.afm + RELOC/fonts/afm/public/wasy2-ps/wasy7.afm + RELOC/fonts/afm/public/wasy2-ps/wasy8.afm + RELOC/fonts/afm/public/wasy2-ps/wasy9.afm + RELOC/fonts/afm/public/wasy2-ps/wasyb10.afm + RELOC/fonts/map/dvips/wasy2-ps/wasy.map + RELOC/fonts/type1/public/wasy2-ps/wasy10.pfb + RELOC/fonts/type1/public/wasy2-ps/wasy10.pfm + RELOC/fonts/type1/public/wasy2-ps/wasy5.pfb + RELOC/fonts/type1/public/wasy2-ps/wasy5.pfm + RELOC/fonts/type1/public/wasy2-ps/wasy6.pfb + RELOC/fonts/type1/public/wasy2-ps/wasy6.pfm + RELOC/fonts/type1/public/wasy2-ps/wasy7.pfb + RELOC/fonts/type1/public/wasy2-ps/wasy7.pfm + RELOC/fonts/type1/public/wasy2-ps/wasy8.pfb + RELOC/fonts/type1/public/wasy2-ps/wasy8.pfm + RELOC/fonts/type1/public/wasy2-ps/wasy9.pfb + 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-license pd + +name wasysym +category Package +revision 15878 +shortdesc LaTeX support file to use the WASY2 fonts +relocated 1 +longdesc The WASY2 (Waldi Symbol) font by Roland Waldi provides many +longdesc glyphs like male and female symbols and astronomical symbols, +longdesc as well as the complete lasy font set and other odds and ends. +longdesc 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 +docfiles size=27 + RELOC/doc/latex/wasysym/wasysym.pdf + RELOC/doc/latex/wasysym/wasysym.upl + RELOC/doc/latex/wasysym/wasysym.xml +srcfiles size=8 + RELOC/source/latex/wasysym/wasysym.dtx + RELOC/source/latex/wasysym/wasysym.ins +catalogue-ctan /macros/latex/contrib/wasysym +catalogue-date 2012-06-08 12:16:32 +0200 +catalogue-license lppl +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 +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 + 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-license knuth +catalogue-version 4.5 + +name web.i386-linux +category TLCore +revision 36790 +shortdesc i386-linux files of web +binfiles arch=i386-linux size=77 + bin/i386-linux/tangle + bin/i386-linux/weave + +name widetable +category Package +revision 16082 +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 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 + RELOC/doc/latex/widetable/manifest.txt + RELOC/doc/latex/widetable/widetable.pdf +srcfiles size=9 + RELOC/source/latex/widetable/widetable.dtx + RELOC/source/latex/widetable/widetable.ins +catalogue-ctan /macros/latex/contrib/widetable +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.1 + +name williams +category Package +revision 15878 +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 implementation of Knuth's token list macros, to be found on +longdesc pp.378-379 of the TeXbook. +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-license lppl + +name withargs +category Package +revision 38320 +shortdesc Ephemeral macro use +relocated 1 +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-ctan /macros/latex/contrib/withargs +catalogue-date 2015-09-07 15:13:20 +0200 +catalogue-license lppl1.3 +catalogue-topics macro-supp +catalogue-version 0.1.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 wnri +category Package +revision 22459 +shortdesc Ridgeway's fonts. +relocated 1 +longdesc Fonts (as Metafont source) for Old English, Indic languages in +longdesc Roman transliteration and Puget Salish (Lushootseed) and other +longdesc Native American languages. +runfiles size=132 + RELOC/fonts/source/public/wnri/acctmax.mf + RELOC/fonts/source/public/wnri/acutacct.mf + RELOC/fonts/source/public/wnri/addpunc.mf + RELOC/fonts/source/public/wnri/baraacct.mf + RELOC/fonts/source/public/wnri/bargacct.mf + RELOC/fonts/source/public/wnri/bnduacct.mf + RELOC/fonts/source/public/wnri/brbracct.mf + RELOC/fonts/source/public/wnri/brevacct.mf + RELOC/fonts/source/public/wnri/cdilacct.mf + RELOC/fonts/source/public/wnri/facutact.mf + RELOC/fonts/source/public/wnri/fbaraact.mf + RELOC/fonts/source/public/wnri/fbargact.mf + RELOC/fonts/source/public/wnri/fbrevact.mf + RELOC/fonts/source/public/wnri/fgravact.mf + RELOC/fonts/source/public/wnri/fhachact.mf + RELOC/fonts/source/public/wnri/fhattact.mf + RELOC/fonts/source/public/wnri/fubrvact.mf + RELOC/fonts/source/public/wnri/fudacact.mf + RELOC/fonts/source/public/wnri/fudgract.mf + RELOC/fonts/source/public/wnri/gamma.mf + RELOC/fonts/source/public/wnri/gram_max.mf + RELOC/fonts/source/public/wnri/grampunc.mf + RELOC/fonts/source/public/wnri/gravacct.mf + RELOC/fonts/source/public/wnri/greeks.mf + RELOC/fonts/source/public/wnri/haccbase.mf + RELOC/fonts/source/public/wnri/hachacct.mf + RELOC/fonts/source/public/wnri/hattacct.mf + RELOC/fonts/source/public/wnri/iaesc.mf + RELOC/fonts/source/public/wnri/ibrvacct.mf + RELOC/fonts/source/public/wnri/igamma.mf + RELOC/fonts/source/public/wnri/italcskt.mf + RELOC/fonts/source/public/wnri/italla.mf + RELOC/fonts/source/public/wnri/ligature.mf + RELOC/fonts/source/public/wnri/ligaturi.mf + RELOC/fonts/source/public/wnri/macracct.mf + RELOC/fonts/source/public/wnri/mudaacct.mf + RELOC/fonts/source/public/wnri/odotacct.mf + RELOC/fonts/source/public/wnri/orngacct.mf + RELOC/fonts/source/public/wnri/product.mf + RELOC/fonts/source/public/wnri/romanla.mf + RELOC/fonts/source/public/wnri/romanskt.mf + RELOC/fonts/source/public/wnri/romanua.mf + RELOC/fonts/source/public/wnri/sktmisc.mf + RELOC/fonts/source/public/wnri/tildacct.mf + RELOC/fonts/source/public/wnri/u-ring.mf + RELOC/fonts/source/public/wnri/ubaracct.mf + RELOC/fonts/source/public/wnri/ubrvacct.mf + RELOC/fonts/source/public/wnri/udacacct.mf + RELOC/fonts/source/public/wnri/udgracct.mf + RELOC/fonts/source/public/wnri/udmcacct.mf + RELOC/fonts/source/public/wnri/udotacct.mf + RELOC/fonts/source/public/wnri/uibvacct.mf + RELOC/fonts/source/public/wnri/umlaacct.mf + RELOC/fonts/source/public/wnri/urmcacct.mf + RELOC/fonts/source/public/wnri/urngacct.mf + RELOC/fonts/source/public/wnri/uumlacct.mf + RELOC/fonts/source/public/wnri/wnindic.map + RELOC/fonts/source/public/wnri/wnrib10.mf + RELOC/fonts/source/public/wnri/wnrib8.mf + RELOC/fonts/source/public/wnri/wnribi10.mf + RELOC/fonts/source/public/wnri/wnrii10.mf + RELOC/fonts/source/public/wnri/wnrii8.mf + RELOC/fonts/source/public/wnri/wnrir10.mf + RELOC/fonts/source/public/wnri/wnrir8.mf + RELOC/fonts/source/public/wnri/wnris10.mf + RELOC/fonts/source/public/wnri/wnris8.mf + RELOC/fonts/source/public/wnri/wnrit10.mf + RELOC/fonts/source/public/wnri/wnrit8.mf + RELOC/fonts/tfm/public/wnri/wnrib10.tfm + RELOC/fonts/tfm/public/wnri/wnrib8.tfm + RELOC/fonts/tfm/public/wnri/wnribi10.tfm + RELOC/fonts/tfm/public/wnri/wnrii10.tfm + RELOC/fonts/tfm/public/wnri/wnrii8.tfm + RELOC/fonts/tfm/public/wnri/wnrir10.tfm + RELOC/fonts/tfm/public/wnri/wnrir8.tfm + RELOC/fonts/tfm/public/wnri/wnris10.tfm + RELOC/fonts/tfm/public/wnri/wnris8.tfm + RELOC/fonts/tfm/public/wnri/wnrit10.tfm + RELOC/fonts/tfm/public/wnri/wnrit8.tfm +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-license gpl + +name wordlike +category Package +revision 15878 +shortdesc Simulating word processor layout. +relocated 1 +longdesc The package simulates typical word processor layout: narrow +longdesc page margins, Times, Helvetica and Courier fonts, \LARGE or +longdesc \Large headings, and \sloppy typesetting. The package aims at +longdesc making life easier for users who are discontent with LaTeX's +longdesc standard layout settings because they need a layout that +longdesc resembles the usual "wordlike" output. The design of the +longdesc package draws on several discussions in the de.comp.text.tex +longdesc and comp.text.tex newsgroups that are referred to in the +longdesc manual. +runfiles size=1 + RELOC/tex/latex/wordlike/wordlike.sty +docfiles size=31 + RELOC/doc/latex/wordlike/README + RELOC/doc/latex/wordlike/wordlike.pdf +srcfiles size=5 + RELOC/source/latex/wordlike/wordlike.dtx + RELOC/source/latex/wordlike/wordlike.ins +catalogue-ctan /macros/latex/contrib/wordlike +catalogue-date 2012-06-08 12:16:32 +0200 +catalogue-license lppl +catalogue-version 1.2b + +name wrapfig +category Package +revision 22048 +shortdesc Produces figures which text can flow around. +relocated 1 +longdesc Allows figures or tables to have text wrapped around them. Does +longdesc not work in combination with list environments, but can be used +longdesc in a parbox or minipage, and in twocolumn format. Supports the +longdesc float package. +runfiles size=7 + RELOC/tex/latex/wrapfig/wrapfig.sty +docfiles size=87 + RELOC/doc/latex/wrapfig/multiple-span.txt + RELOC/doc/latex/wrapfig/wrapfig-doc.pdf + RELOC/doc/latex/wrapfig/wrapfig-doc.tex +catalogue-ctan /macros/latex/contrib/wrapfig +catalogue-date 2012-05-30 14:33:40 +0200 +catalogue-license lppl +catalogue-version 3.6 + +name wsemclassic +category Package +revision 31532 +shortdesc LaTeX class for Bavarian school w-seminar papers. +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 +docfiles size=106 + RELOC/doc/latex/wsemclassic/LICENSE + RELOC/doc/latex/wsemclassic/Makefile + RELOC/doc/latex/wsemclassic/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 +srcfiles size=7 + RELOC/source/latex/wsemclassic/wsemclassic.dtx + RELOC/source/latex/wsemclassic/wsemclassic.ins +catalogue-ctan /macros/latex/contrib/wsemclassic +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license bsd +catalogue-version 1.0.1 + +name wsuipa +category Package +revision 25469 +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. +runfiles size=102 + RELOC/fonts/source/public/wsuipa/iaccent.mf + RELOC/fonts/source/public/wsuipa/igreekl.mf + RELOC/fonts/source/public/wsuipa/iparoman.mf + RELOC/fonts/source/public/wsuipa/iromanl.mf + RELOC/fonts/source/public/wsuipa/iromanp.mf + RELOC/fonts/source/public/wsuipa/iromanu.mf + RELOC/fonts/source/public/wsuipa/wbxipa10.mf + RELOC/fonts/source/public/wsuipa/wbxipa11.mf + RELOC/fonts/source/public/wsuipa/wbxipa12.mf + RELOC/fonts/source/public/wsuipa/wbxipa17.mf + RELOC/fonts/source/public/wsuipa/wbxipa8.mf + RELOC/fonts/source/public/wsuipa/wbxipa9.mf + RELOC/fonts/source/public/wsuipa/wslipa10.mf + RELOC/fonts/source/public/wsuipa/wslipa11.mf + RELOC/fonts/source/public/wsuipa/wslipa12.mf + RELOC/fonts/source/public/wsuipa/wslipa17.mf + RELOC/fonts/source/public/wsuipa/wslipa8.mf + RELOC/fonts/source/public/wsuipa/wslipa9.mf + RELOC/fonts/source/public/wsuipa/wsuipa10.mf + RELOC/fonts/source/public/wsuipa/wsuipa11.mf + RELOC/fonts/source/public/wsuipa/wsuipa12.mf + RELOC/fonts/source/public/wsuipa/wsuipa17.mf + RELOC/fonts/source/public/wsuipa/wsuipa8.mf + RELOC/fonts/source/public/wsuipa/wsuipa9.mf + RELOC/fonts/tfm/public/wsuipa/wbxipa10.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa11.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa12.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa17.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa8.tfm + RELOC/fonts/tfm/public/wsuipa/wbxipa9.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa10.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa11.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa12.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa17.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa8.tfm + RELOC/fonts/tfm/public/wsuipa/wslipa9.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa10.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa11.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa12.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa17.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa8.tfm + RELOC/fonts/tfm/public/wsuipa/wsuipa9.tfm + RELOC/tex/latex/wsuipa/ipa.sty + RELOC/tex/latex/wsuipa/ipalmacs.sty + RELOC/tex/latex/wsuipa/uipa.fd +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-ctan /fonts/wsuipa +catalogue-date 2012-01-27 13:33:18 +0100 +catalogue-license other-free + +name xargs +category Package +revision 15878 +shortdesc Define commands with many optional arguments. +relocated 1 +longdesc The package provides extended versions of \newcommand and +longdesc related LaTeX commands, which allow easy and robust definition +longdesc of macros with many optional arguments, using a clear and +longdesc simple xkeyval-style syntax. +runfiles size=4 + RELOC/tex/latex/xargs/xargs.sty +docfiles size=58 + RELOC/doc/latex/xargs/README + RELOC/doc/latex/xargs/xargs-fr.pdf + RELOC/doc/latex/xargs/xargs.pdf +srcfiles size=15 + RELOC/source/latex/xargs/xargs.dtx +catalogue-ctan /macros/latex/contrib/xargs +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name xcharter +category Package +revision 37962 +shortdesc Extension of Bitstream Charter fonts. +relocated 1 +longdesc The package presents an extension of Bitstream Charter, which +longdesc provides small caps, oldstyle figures and superior figures in +longdesc all four styles, accompanied by LaTeX font support files. The +longdesc fonts themselves are provided in both Adobe Type 1 and OTF +longdesc formats, with supporting files as necessary. +execute addMap XCharter.map +runfiles size=943 + RELOC/fonts/afm/public/xcharter/XCharter-Bold.afm + RELOC/fonts/afm/public/xcharter/XCharter-BoldItalic.afm + RELOC/fonts/afm/public/xcharter/XCharter-Italic.afm + RELOC/fonts/afm/public/xcharter/XCharter-Roman.afm + RELOC/fonts/enc/dvips/xcharter/chalph.enc + RELOC/fonts/enc/dvips/xcharter/chtabosf.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/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_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/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-Italic.otf + RELOC/fonts/opentype/public/xcharter/XCharter-Roman.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-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-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-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-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tlf-t1.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 + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Bold-tosf-t1.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-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-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-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-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tlf-t1.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 + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-BoldItalic-tosf-t1.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-Ita-alph.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-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-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-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tlf-t1.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 + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Italic-tosf-t1.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-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-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-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-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tlf-t1.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 + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ly1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ot1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-ot1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-sc-t1.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter-Roman-tosf-t1.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-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-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-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Bold-tosf-t1.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-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-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-BoldItalic-tosf-t1.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-Italic-tosf-ly1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-ly1.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-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Italic-tosf-t1.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-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-t1--base.tfm + RELOC/fonts/tfm/public/xcharter/XCharter1-Roman-tosf-t1.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/zchbmi.tfm + RELOC/fonts/tfm/public/xcharter/zchmi.tfm + RELOC/fonts/type1/public/xcharter/XCharter-Bold.pfb + RELOC/fonts/type1/public/xcharter/XCharter-BoldItalic.pfb + RELOC/fonts/type1/public/xcharter/XCharter-Italic.pfb + RELOC/fonts/type1/public/xcharter/XCharter-Roman.pfb + RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-ot1G.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tlf-t1.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-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Bold-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-ot1G.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tlf-t1.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-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-BoldItalic-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-ot1G.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tlf-t1.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-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Italic-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-sup-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-ot1G.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-ly1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-ot1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-sc-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter-Roman-tlf-t1.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-t1.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/XCharter1-Bold-tosf-ly1.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-t1.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-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-t1.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-Italic-tosf-ly1.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-t1.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-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-t1.vf + RELOC/fonts/vf/public/xcharter/XCharter1-Roman-tosf-ts1.vf + RELOC/fonts/vf/public/xcharter/zchbmi.vf + RELOC/fonts/vf/public/xcharter/zchmi.vf + 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-Sup.fd + RELOC/tex/latex/xcharter/OT1XCharter-TLF.fd + RELOC/tex/latex/xcharter/OT1XCharter-TOsF.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/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 +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 + +name xcite +category Package +revision 23783 +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 +docfiles size=52 + RELOC/doc/latex/xcite/README + RELOC/doc/latex/xcite/xcite.pdf +srcfiles size=3 + RELOC/source/latex/xcite/xcite.dtx + RELOC/source/latex/xcite/xcite.ins +catalogue-ctan /macros/latex/contrib/xcite +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name xcjk2uni +category Package +revision 34382 +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 + RELOC/tex/latex/xcjk2uni/cmap/c0001.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0002.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0003.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0004.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0005.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0006.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0007.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0008.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0009.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0010.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0011.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0012.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0013.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0014.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0015.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0016.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0017.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0018.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0019.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0020.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0021.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0022.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0023.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0024.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0025.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0026.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0027.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0028.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0029.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0030.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0031.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0032.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0033.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0034.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0035.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0036.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0037.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0038.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0039.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0040.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0041.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0042.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0043.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0044.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0045.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0046.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0047.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0048.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0049.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0050.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0051.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0052.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0053.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0054.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0055.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0056.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0057.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0058.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0901.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0902.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0903.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0904.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0905.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0906.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0907.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0908.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0909.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0910.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0911.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0912.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0913.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0914.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0915.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0916.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0917.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0918.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0919.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0920.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0921.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0922.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0923.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0924.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0925.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0926.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0927.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0928.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0929.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0930.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0931.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0932.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0933.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0934.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0935.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0936.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0937.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0938.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0939.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0940.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0941.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0942.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0943.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0944.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0945.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0946.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0947.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0948.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0949.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0950.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0951.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0952.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0953.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0954.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0955.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0956.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0957.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0958.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0959.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0960.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0961.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0962.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0963.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0964.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0965.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0966.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0967.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0968.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0969.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0970.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0971.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0972.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0973.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0974.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0975.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0976.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0977.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0978.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0979.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0980.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0981.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0982.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0983.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0984.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0985.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0986.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0987.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0988.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0989.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0990.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0991.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0992.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0993.cmap + RELOC/tex/latex/xcjk2uni/cmap/c0994.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1001.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1002.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1003.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1004.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1005.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1006.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1007.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1008.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1009.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1010.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1011.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1012.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1013.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1014.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1015.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1016.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1017.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1018.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1019.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1020.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1021.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1022.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1023.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1024.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1025.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1026.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1027.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1028.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1029.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1030.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1031.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1032.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1033.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1034.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1035.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1901.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1902.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1903.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1904.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1905.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1906.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1907.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1908.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1909.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1910.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1911.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1912.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1913.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1914.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1915.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1916.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1917.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1918.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1919.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1920.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1921.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1922.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1923.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1924.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1925.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1926.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1927.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1928.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1929.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1930.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1931.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1932.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1933.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1934.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1935.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1936.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1937.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1938.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1939.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1940.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1941.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1942.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1943.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1944.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1945.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1946.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1947.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1948.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1949.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1950.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1951.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1952.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1953.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1954.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1955.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1956.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1957.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1958.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1959.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1960.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1961.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1962.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1963.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1964.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1965.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1966.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1967.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1968.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1969.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1970.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1971.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1972.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1973.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1974.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1975.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1976.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1977.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1978.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1979.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1980.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1981.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1982.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1983.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1984.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1985.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1986.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1987.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1988.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1989.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1990.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1991.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1992.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1993.cmap + RELOC/tex/latex/xcjk2uni/cmap/c1994.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4001.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4002.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4003.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4004.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4005.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4006.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4007.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4008.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4009.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4010.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4011.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4012.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4013.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4014.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4015.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4016.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4017.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4018.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4019.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4020.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4021.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4022.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4023.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4024.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4025.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4026.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4027.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4028.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4029.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4030.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4031.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4032.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4033.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4034.cmap + RELOC/tex/latex/xcjk2uni/cmap/c4035.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6001.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6002.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6003.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6004.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6005.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6006.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6007.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6008.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6009.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6010.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6011.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6012.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6013.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6014.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6015.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6016.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6017.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6018.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6019.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6020.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6021.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6022.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6023.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6024.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6025.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6026.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6027.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6028.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6029.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6030.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6031.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6032.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6033.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6034.cmap + RELOC/tex/latex/xcjk2uni/cmap/c6035.cmap + RELOC/tex/latex/xcjk2uni/xCJK2uni-UBg5plus.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UBig5.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UGB.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UGBK.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UJIS.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-UKS.def + RELOC/tex/latex/xcjk2uni/xCJK2uni-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 + +name xcolor-solarized +category Package +revision 36318 +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. +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 +catalogue-license lppl1.3 +catalogue-version 0.3 + +name xcolor +category Package +revision 15878 +shortdesc Driver-independent color extensions for LaTeX and pdfLaTeX. +relocated 1 +longdesc The package starts from the basic facilities of the color +longdesc package, and provides easy driver-independent access to several +longdesc kinds of color tints, shades, tones, and mixes of arbitrary +longdesc colors. It allows a user to select a document-wide target color +longdesc model and offers complete tools for conversion between eight +longdesc color models. Additionally, there is a command for alternating +longdesc row colors plus repeated non-aligned material (like horizontal +longdesc lines) in tables. Colors can be mixed like +longdesc \color{red!30!green!40!blue}. +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 +docfiles size=211 + RELOC/doc/latex/xcolor/ChangeLog + RELOC/doc/latex/xcolor/README + RELOC/doc/latex/xcolor/xcolor.lox + RELOC/doc/latex/xcolor/xcolor.pdf + RELOC/doc/latex/xcolor/xcolor1.tex + RELOC/doc/latex/xcolor/xcolor2.pdf + RELOC/doc/latex/xcolor/xcolor2.tex + RELOC/doc/latex/xcolor/xcolor3.tex + RELOC/doc/latex/xcolor/xcolor4.tex +srcfiles size=85 + RELOC/source/latex/xcolor/xcolor.dtx + RELOC/source/latex/xcolor/xcolor.ins +catalogue-ctan /macros/latex/contrib/xcolor +catalogue-date 2011-11-28 13:31:05 +0100 +catalogue-license lppl +catalogue-version 2.11 + +name xcomment +category Package +revision 20031 +shortdesc Allows selected environments to be included/excluded. +relocated 1 +longdesc The package defines an environment that only typesets specified +longdesc environments within its scope. So, for example, if you want +longdesc nothing but the figure and table environments in your document, +longdesc you can enclose the whole document with an xcomment environment +longdesc that excludes everything but. This is a lot easier than +longdesc excluding the chunks of text between the environments you want, +longdesc or creating an entire document containing only those +longdesc environments. The package was previously part of the seminar +longdesc bundle for typesetting presentations. +runfiles size=3 + RELOC/tex/generic/xcomment/xcomment.sty + RELOC/tex/generic/xcomment/xcomment.tex +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/xcomment-doc.tex +catalogue-ctan /macros/generic/xcomment +catalogue-date 2011-09-30 22:48:48 +0200 +catalogue-license lppl +catalogue-version 1.3 + +name xcookybooky +category Package +revision 36435 +shortdesc Typeset (potentially long) recipes. +relocated 1 +longdesc The package enables the user to typeset recipes, which could be +longdesc greater than one page. Above the recipe text two (optional) +longdesc pictures can be displayed. Other features are recipe name, +longdesc energy content, portions, preparation and baking time, baking +longdesc temperatures, recipe source and of course preparation steps and +longdesc required ingredients. At the bottom you may insert an optional +longdesc hint. The package depends on the Emerald fonts. +runfiles size=8 + RELOC/tex/latex/xcookybooky/xcookybooky.cfg + RELOC/tex/latex/xcookybooky/xcookybooky.sty +docfiles size=320 + RELOC/doc/latex/xcookybooky/README + RELOC/doc/latex/xcookybooky/example/example.pdf + RELOC/doc/latex/xcookybooky/example/example.tex + RELOC/doc/latex/xcookybooky/example/pic/background.pdf + RELOC/doc/latex/xcookybooky/example/pic/glass.jpg + RELOC/doc/latex/xcookybooky/example/pic/ingredients.jpg + RELOC/doc/latex/xcookybooky/example/tex/Complete_Recipe.tex + RELOC/doc/latex/xcookybooky/example/tex/Mousse_au_Chocolat.tex + RELOC/doc/latex/xcookybooky/xcookybooky.pdf +srcfiles size=17 + RELOC/source/latex/xcookybooky/xcookybooky.dtx + RELOC/source/latex/xcookybooky/xcookybooky.ins +catalogue-ctan /macros/latex/contrib/xcookybooky +catalogue-date 2015-03-04 06:01:53 +0100 +catalogue-license lppl1.3 +catalogue-version 1.5 + +name xdoc +category Package +revision 15878 +shortdesc Extending the LaTeX doc system. +relocated 1 +longdesc Xdoc is a project to rewrite the implementation of the LaTeX +longdesc doc package (in a broader sense) to make its features more +longdesc general and flexible. For example, where doc only provides +longdesc commands for documenting macros and environments, xdoc also +longdesc provides commands for similarly documenting package options and +longdesc switches. This is furthermore done in such a way that it is +longdesc very easy to add more such commands for documenting things, +longdesc such as e.g., templates (an important concept in the future +longdesc LaTeX3) and program components for other languages (functions, +longdesc classes, procedures, etc.). A side effect is that many minor +longdesc bugs in doc are fixed. The design aims to take advantage of +longdesc many still experimental features of future versions of LaTeX, +longdesc but since these are neither reasonably stable nor widely +longdesc available, the configuration interfaces and package author +longdesc commands of xdoc are likely to change. To still provide a +longdesc stable interface for other packages to build upon, the actual +longdesc package names include a "major version number" of sorts. The +longdesc drop-in replacement package for standard doc is xdoc2; it +longdesc requires nothing outside standard LaTeX2e. The +longdesc docindex/docidx2e package changes the index and list of changes +longdesc typesetting so that none of the formatting has to be controlled +longdesc via the index style file. The docindex package provides control +longdesc of formatting via templates (nice interface, but requires +longdesc several experimental packages), whereas the docidx2e package +longdesc has traditional raw macro interfaces and works with standard +longdesc LaTeX2e. +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 +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/xdocdemo.tex +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 +catalogue-ctan /macros/latex/contrib/xdoc +catalogue-date 2014-10-02 11:45:28 +0200 +catalogue-license lppl +catalogue-version prot2.5 + +name xdvi +category TLCore +revision 37078 +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. +depend xdvi.ARCH +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-ctan /dviware/xdvi +catalogue-date 2014-04-22 11:35:25 +0200 +catalogue-license other-free +catalogue-version 22.87 + +name xdvi.i386-linux +category TLCore +revision 37100 +shortdesc i386-linux files of xdvi +binfiles arch=i386-linux size=366 + bin/i386-linux/xdvi + bin/i386-linux/xdvi-xaw + +name xebaposter +category Package +revision 38350 +shortdesc Creates 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 + 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/fig3.pdf + RELOC/doc/latex/xebaposter/images/fig4.pdf + RELOC/doc/latex/xebaposter/images/fig5.pdf + RELOC/doc/latex/xebaposter/images/fig6.pdf + RELOC/doc/latex/xebaposter/images/logo.png + RELOC/doc/latex/xebaposter/images/shariflogo.png + RELOC/doc/latex/xebaposter/poster-fa.pdf + RELOC/doc/latex/xebaposter/poster-fa.tex + RELOC/doc/latex/xebaposter/xebaposter-doc.pdf + RELOC/doc/latex/xebaposter/xebaposter-doc.tex +catalogue-ctan /graphics/pgf/contrib/xebaposter +catalogue-date 2015-09-11 13:53:06 +0200 +catalogue-license lppl1.3 +catalogue-topics poster class +catalogue-version 2.21 + +name xecjk +category Package +revision 37409 +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 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 + RELOC/doc/xelatex/xecjk/example/xeCJK-example-CJKecglue.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-CJKfntef.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-CM.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-autofake.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-checksingle.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-fallback.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-listings.tex + RELOC/doc/xelatex/xecjk/example/xeCJK-example-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/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 + RELOC/source/xelatex/xecjk/xeCJK.dtx + RELOC/source/xelatex/xecjk/xeCJK.ins +catalogue-ctan /macros/xetex/latex/xecjk +catalogue-date 2015-05-15 18:47:04 +0200 +catalogue-license lppl1.3 +catalogue-version 3.3.2 + +name xecolor +category Package +revision 29660 +shortdesc Support for color in XeLaTeX. +relocated 1 +longdesc This is a simple package which defines about 140 different +longdesc colours using XeTeX's colour feature. The colours can be used +longdesc in bidirectional texts without any problem. +runfiles size=2 + RELOC/tex/xelatex/xecolor/xecolor.sty +docfiles size=1 + RELOC/doc/xelatex/xecolor/README +catalogue-ctan /macros/xetex/latex/xecolor +catalogue-date 2014-09-06 11:51:29 +0200 +catalogue-license lppl1.3 +catalogue-version 0.1 + +name xecyr +category Package +revision 20221 +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 +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/iso.tex + texmf-dist/doc/xelatex/xecyr/koi8-r.tex + texmf-dist/doc/xelatex/xecyr/language.dat.add + texmf-dist/doc/xelatex/xecyr/listings-utf8-ex.pdf + texmf-dist/doc/xelatex/xecyr/listings-utf8-ex.tex + texmf-dist/doc/xelatex/xecyr/pict2e-ex.pdf + texmf-dist/doc/xelatex/xecyr/pict2e-ex.tex + texmf-dist/doc/xelatex/xecyr/rubibtex-ex-x.pdf + texmf-dist/doc/xelatex/xecyr/rubibtex-ex-x.tex + 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.tex + texmf-dist/doc/xelatex/xecyr/xecyr-ex1-ru-x.pdf + texmf-dist/doc/xelatex/xecyr/xecyr-ex1-ru-x.tex + texmf-dist/doc/xelatex/xecyr/xecyr-ex2-ru-x.pdf + texmf-dist/doc/xelatex/xecyr/xecyr-ex2-ru-x.tex + texmf-dist/doc/xelatex/xecyr/xecyr-ex3-ru-x.pdf + texmf-dist/doc/xelatex/xecyr/xecyr-ex3-ru-x.tex + texmf-dist/doc/xelatex/xecyr/xecyr-ex4-ru-x.pdf + texmf-dist/doc/xelatex/xecyr/xecyr-ex4-ru-x.tex + texmf-dist/doc/xelatex/xecyr/xecyr-ex5-ru-x.pdf + texmf-dist/doc/xelatex/xecyr/xecyr-ex5-ru-x.tex + texmf-dist/doc/xelatex/xecyr/xecyr-ex6-ru-x.pdf + 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 +catalogue-ctan /macros/xetex/latex/xecyr +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.1 + +name xeindex +category Package +revision 35756 +shortdesc Automatic index generation for XeLaTeX. +relocated 1 +longdesc The package is based on XeSearch, and will automatically index +longdesc words or phrases in an XeLaTeX document. Words are declared in +longdesc a list, and every occurrence then creates an index entry whose +longdesc content can be fully specified beforehand. +runfiles size=2 + RELOC/tex/xelatex/xeindex/xeindex.sty +docfiles size=24 + RELOC/doc/xelatex/xeindex/README + RELOC/doc/xelatex/xeindex/xeindex.pdf + RELOC/doc/xelatex/xeindex/xeindex.tex +catalogue-ctan /macros/xetex/latex/xeindex +catalogue-date 2014-12-05 12:42:13 +0100 +catalogue-license lppl +catalogue-version 0.3 + +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 + RELOC/tex/xelatex/xepersian/algorithm-xepersian.def + RELOC/tex/xelatex/xepersian/algorithmic-xepersian.def + RELOC/tex/xelatex/xepersian/amsart-xepersian.def + RELOC/tex/xelatex/xepersian/amsbook-xepersian.def + RELOC/tex/xelatex/xepersian/appendix-xepersian.def + RELOC/tex/xelatex/xepersian/article-xepersian.def + RELOC/tex/xelatex/xepersian/artikel1-xepersian.def + RELOC/tex/xelatex/xepersian/artikel2-xepersian.def + RELOC/tex/xelatex/xepersian/artikel3-xepersian.def + RELOC/tex/xelatex/xepersian/backref-xepersian.def + RELOC/tex/xelatex/xepersian/bidimoderncv-xepersian.def + RELOC/tex/xelatex/xepersian/bidituftesidenote-xepersian.def + RELOC/tex/xelatex/xepersian/boek-xepersian.def + RELOC/tex/xelatex/xepersian/boek3-xepersian.def + RELOC/tex/xelatex/xepersian/book-xepersian.def + RELOC/tex/xelatex/xepersian/bookest-xepersian.def + RELOC/tex/xelatex/xepersian/breqn-xepersian.def + RELOC/tex/xelatex/xepersian/color-localise-xepersian.def + RELOC/tex/xelatex/xepersian/enumerate-xepersian.def + RELOC/tex/xelatex/xepersian/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/footnote-xepersian.def + RELOC/tex/xelatex/xepersian/framed-xepersian.def + RELOC/tex/xelatex/xepersian/glossaries-xepersian.def + RELOC/tex/xelatex/xepersian/hyperref-xepersian.def + RELOC/tex/xelatex/xepersian/imsproc-xepersian.def + RELOC/tex/xelatex/xepersian/kashida-xepersian.def + RELOC/tex/xelatex/xepersian/latex-localise-commands-xepersian.def + RELOC/tex/xelatex/xepersian/latex-localise-environments-xepersian.def + RELOC/tex/xelatex/xepersian/latex-localise-messages-xepersian.def + RELOC/tex/xelatex/xepersian/latex-localise-misc-xepersian.def + RELOC/tex/xelatex/xepersian/listings-xepersian.def + RELOC/tex/xelatex/xepersian/loadingorder-xepersian.def + RELOC/tex/xelatex/xepersian/localise-xepersian.def + RELOC/tex/xelatex/xepersian/memoir-xepersian.def + RELOC/tex/xelatex/xepersian/minitoc-xepersian.def + RELOC/tex/xelatex/xepersian/natbib-xepersian.def + RELOC/tex/xelatex/xepersian/packages-localise-xepersian.def + RELOC/tex/xelatex/xepersian/rapport1-xepersian.def + RELOC/tex/xelatex/xepersian/rapport3-xepersian.def + RELOC/tex/xelatex/xepersian/refrep-xepersian.def + RELOC/tex/xelatex/xepersian/report-xepersian.def + RELOC/tex/xelatex/xepersian/scrartcl-xepersian.def + RELOC/tex/xelatex/xepersian/scrbook-xepersian.def + RELOC/tex/xelatex/xepersian/scrreprt-xepersian.def + RELOC/tex/xelatex/xepersian/tkz-linknodes-xepersian.def + RELOC/tex/xelatex/xepersian/tocloft-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-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-ctan /macros/xetex/latex/xepersian +catalogue-date 2015-04-30 19:05:58 +0200 +catalogue-license lppl1.3 +catalogue-version 16.1 + +name xesearch +category Package +revision 16041 +shortdesc A string finder for XeTeX. +relocated 1 +longdesc The package finds strings (e.g. (parts of) words or phrases) +longdesc and manipulates them (apply any macro), thus turning each word +longdesc or phrase into a possible command. It is written in plain XeTeX +longdesc and should thus work with any format (it is known to work with +longdesc LaTeX and ConTeXt). The main application for the moment is +longdesc XeIndex, an automatic index for XeLaTeX, but examples are given +longdesc of simple use to check spelling, count words, and highlight +longdesc syntax of programming languages. +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-ctan /macros/xetex/generic/xesearch +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl + +name xespotcolor +category Package +revision 36597 +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 + 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/source/xelatex/xespotcolor/xespotcolor.dtx + RELOC/source/xelatex/xespotcolor/xespotcolor.ins +catalogue-ctan /macros/xetex/latex/xespotcolor +catalogue-date 2015-03-18 20:29:51 +0100 +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 + +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-devanagari +category Package +revision 34296 +shortdesc XeTeX input map for Unicode Devanagari. +relocated 1 +longdesc The package provides a map for use with Jonathan Kew's TECkit, +longdesc to translate Devanagari (encoded according to the Harvard/Kyoto +longdesc convention) to Unicode (range 0900-097F). +runfiles size=14 + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/README + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/devanagarinumerals.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/devanagarinumerals.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/harvardkyoto.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/harvardkyoto.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/iast.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/iast.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis-sanskrit.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis-sanskrit.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis.map + RELOC/fonts/misc/xetex/fontmapping/xetex-devanagari/velthuis.tec +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-license lppl +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. +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. +runfiles size=29 + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/brh-kan.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/brh-kan.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-dvn.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-dvn.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-iast.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-iast.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-kan.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-kan.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-sankan.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-sankan.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-santel.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-santel.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-sdvn.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-sdvn.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tamil.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tamil.tec + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tel.map + RELOC/fonts/misc/xetex/fontmapping/xetex-itrans/itrans-tel.tec +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-license lppl1.3 +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. +relocated 1 +longdesc The package provides an indirection scheme for XeTeX to use the +longdesc pstricks xdvipdfmx.cfg configuration file, so that XeTeX +longdesc documents will load it in preference to the standard +longdesc pstricks.con configuration file. With this configuration, many +longdesc PSTricks features can be used in xelatex or plain xetex +longdesc documents. +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-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 + +name xetex-tibetan +category Package +revision 28847 +shortdesc XeTeX input maps for Unicode Tibetan. +relocated 1 +longdesc The package provides a map for use with Jonathan Kew's TECkit, +longdesc to translate Tibetan to Unicode (range 0F00-0FFF). +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-license lppl +catalogue-version 0.1 + +name xetex +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 + +name xetex.i386-linux +category TLCore +revision 37261 +shortdesc i386-linux files of xetex +binfiles arch=i386-linux size=6435 + bin/i386-linux/xdvipdfmx + bin/i386-linux/xelatex + bin/i386-linux/xetex + +name xevlna +category Package +revision 30086 +shortdesc Insert non-breakable spaces using XeTeX. +relocated 1 +longdesc The package will directly insert nonbreakable spaces (in Czech, +longdesc vlna or vlnka), after nonsyllabic prepositions and single +longdesc letter conjuctions, while the document is being typeset. (The +longdesc macros recognised maths and verbatim by TeX means.) (Inserting +longdesc nonbreakable spaces by a preprocessor will probably never be +longdesc fully reliable, because user defined macros and environments +longdesc cannot reliably be recognised.) The package works both with +longdesc (Plain) XeTeX and with XeLaTeX. +runfiles size=1 + RELOC/tex/xelatex/xevlna/xevlna.sty +docfiles size=21 + RELOC/doc/xelatex/xevlna/License.txt + RELOC/doc/xelatex/xevlna/README + RELOC/doc/xelatex/xevlna/xevlna-inc.tex + RELOC/doc/xelatex/xevlna/xevlna.pdf + RELOC/doc/xelatex/xevlna/xevlna.tex +catalogue-ctan /macros/xetex/generic/xevlna +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name xfor +category Package +revision 15878 +shortdesc A reimplementation of the LaTeX for-loop macro. +relocated 1 +longdesc The package redefines the LaTeX internal \@for macro so that +longdesc the loop may be prematurely terminated. The action is akin to +longdesc the C/Java break statement, except that the loop does not +longdesc terminate until the end of the current iteration +runfiles size=1 + RELOC/tex/latex/xfor/xfor.sty +docfiles size=32 + RELOC/doc/latex/xfor/CHANGES + RELOC/doc/latex/xfor/README + RELOC/doc/latex/xfor/sample.tex + RELOC/doc/latex/xfor/xfor.pdf +srcfiles size=5 + RELOC/source/latex/xfor/xfor.dtx + RELOC/source/latex/xfor/xfor.ins +catalogue-ctan /macros/latex/contrib/xfor +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.05 + +name xgreek +category Package +revision 38043 +shortdesc XeLaTeX package for typesetting Greek language documents (beta release) +relocated 1 +longdesc This package has been designed so to allow people to typeset +longdesc Greek language documents using XeLaTeX. And it is released in +longdesc the hope that people will use it and spot errors, bugs, +longdesc features so to improve it. Practically, it provides all the +longdesc capabilities of the greek option of the babel package. The +longdesc package can be invoked with any of the following options: +longdesc monotonic (for typesetting modern monotonic Greek), polytonic +longdesc (for typesetting modern polytonic Greek), and ancient (for +longdesc typesetting ancient texts). The default option is monotonic. +longdesc The command \setlanguage{<lang>} to activate the hyphenation +longdesc patterns of the language <lang> This, however, can be done only +longdesc if the format file has not been built with the babel mechanism. +runfiles size=7 + RELOC/tex/xelatex/xgreek/xgreek.sty +docfiles size=17 + RELOC/doc/xelatex/xgreek/README + RELOC/doc/xelatex/xgreek/xgreek.pdf +srcfiles size=12 + RELOC/source/xelatex/xgreek/xgreek.dtx + RELOC/source/xelatex/xgreek/xgreek.ins +catalogue-ctan /macros/xetex/latex/xgreek +catalogue-date 2015-08-04 05:05:23 +0200 +catalogue-license lppl1.3 +catalogue-topics greek xetex +catalogue-version 2.61 + +name xhfill +category Package +revision 22575 +shortdesc Extending \hrulefill. +relocated 1 +longdesc The package provides extended macros for the default \hrulefill +longdesc command. It allows modification of the width and the colour of +longdesc the line. +runfiles size=1 + RELOC/tex/latex/xhfill/xhfill.sty +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.tex +catalogue-ctan /macros/latex/contrib/xhfill +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.01 + +name xifthen +category Package +revision 15878 +shortdesc Extended conditional commands. +relocated 1 +longdesc This package extends the ifthen package by implementing new +longdesc commands to go within the first argument of \ifthenelse: to +longdesc test whether a string is void or not, if a command is defined +longdesc or equivalent to another. The package also enables use of +longdesc complex expressions as introduced by the package calc, together +longdesc with the ability of defining new commands to handle complex +longdesc tests. The package requires e-TeX features. +runfiles size=2 + RELOC/tex/latex/xifthen/xifthen.sty +docfiles size=133 + RELOC/doc/latex/xifthen/README + RELOC/doc/latex/xifthen/xifthen.pdf + RELOC/doc/latex/xifthen/xifthen.tex +catalogue-ctan /macros/latex/contrib/xifthen +catalogue-date 2012-06-08 17:44:30 +0200 +catalogue-license lppl +catalogue-version 1.3 + +name xii +category Package +revision 31683 +shortdesc Christmas silliness. +relocated 1 +docfiles size=2 + RELOC/doc/plain/xii/README + RELOC/doc/plain/xii/xii.tex +catalogue-ctan /macros/plain/contrib/xii +catalogue-date 2013-09-30 10:58:18 +0200 +catalogue-license lppl + +name xint +category Package +revision 38368 +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 + RELOC/tex/generic/xint/xint.sty + RELOC/tex/generic/xint/xintbinhex.sty + RELOC/tex/generic/xint/xintcfrac.sty + RELOC/tex/generic/xint/xintcore.sty + RELOC/tex/generic/xint/xintexpr.sty + RELOC/tex/generic/xint/xintfrac.sty + RELOC/tex/generic/xint/xintgcd.sty + RELOC/tex/generic/xint/xintkernel.sty + RELOC/tex/generic/xint/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 +catalogue-ctan /macros/generic/xint +catalogue-date 2015-09-13 12:02:05 +0200 +catalogue-license lppl1.3 +catalogue-topics arithmetic calculation +catalogue-version 1.1c + +name xits +category Package +revision 32763 +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 + 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 +catalogue-ctan /fonts/xits +catalogue-date 2014-05-20 14:45:48 +0200 +catalogue-license ofl +catalogue-version 1.108 + +name xkeyval +category Package +revision 35741 +shortdesc Extension of the keyval package. +relocated 1 +longdesc This package is an extension of the keyval package and offers +longdesc additional macros for setting keys and declaring and setting +longdesc class or package options. The package allows the programmer to +longdesc specify a prefix to the name of the macros it defines for keys, +longdesc and to define families of key definitions; these all help use +longdesc in documents where several packages define their own sets of +longdesc keys. +runfiles size=28 + RELOC/tex/generic/xkeyval/keyval.tex + RELOC/tex/generic/xkeyval/pst-xkey.tex + RELOC/tex/generic/xkeyval/xkeyval.tex + RELOC/tex/generic/xkeyval/xkvex1.tex + RELOC/tex/generic/xkeyval/xkvex2.tex + RELOC/tex/generic/xkeyval/xkvex3.tex + RELOC/tex/generic/xkeyval/xkvex4.tex + RELOC/tex/generic/xkeyval/xkvtxhdr.tex + RELOC/tex/generic/xkeyval/xkvutils.tex + RELOC/tex/latex/xkeyval/pst-xkey.sty + RELOC/tex/latex/xkeyval/xkeyval.sty + RELOC/tex/latex/xkeyval/xkveca.cls + RELOC/tex/latex/xkeyval/xkvecb.cls + RELOC/tex/latex/xkeyval/xkvesa.sty + RELOC/tex/latex/xkeyval/xkvesb.sty + 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-ctan /macros/latex/contrib/xkeyval +catalogue-date 2014-12-03 21:39:01 +0100 +catalogue-license lppl1.3 +catalogue-version 2.7a + +name xlop +category Package +revision 29236 +shortdesc Calculates and displays arithmetic operations. +relocated 1 +longdesc Xlop (eXtra Large OPeration) will typeset arithmetic problems +longdesc either in-line or "as in school" (using French school +longdesc conventions). So for example, \opadd{2}{3} can give either +longdesc $2+3=5$ or something similar to: \begin{tabular}{r} 2\\ +3\\ +longdesc \hline 5\end{tabular}. Furthermore, numbers may be very large, +longdesc e.g 200 figures (with a very long compilation time). Many other +longdesc features allow to deal with numbers (tests, display, some high +longdesc level operations, etc.) +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 + RELOC/doc/generic/xlop/xlop-doc-fr.tex + RELOC/doc/generic/xlop/xlop-doc.pdf + RELOC/doc/generic/xlop/xlop-doc.tex +srcfiles size=1 + RELOC/source/generic/xlop/manual.sty +catalogue-ctan /macros/generic/xlop +catalogue-date 2013-02-26 20:28:25 +0100 +catalogue-license lppl +catalogue-version 0.25 + +name xltxtra +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 +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 + +name xmltexconfig +category Package +revision 35743 +relocated 1 +runfiles size=2 + RELOC/tex/xmltex/xmltexconfig/pdfxmltex.ini + RELOC/tex/xmltex/xmltexconfig/xmltex.ini + +name xmltex +category Package +revision 35755 +shortdesc Support for parsing XML documents. +longdesc The package provides an implementation of a parser for +longdesc documents matching the XML 1.0 and XML Namespace +longdesc Recommendations. In addition to parsing commands are provided +longdesc to attatch TeX typesetting instructions to the various markup +longdesc elemenets as they are encounted. Sample files for typesetting a +longdesc subset of TEI, MathML, are included. Element and Attribute +longdesc names, as well as character data, may use any characters +longdesc allowed in XML, using UTF-8 or a suitable 8-bit encoding. +depend latex +depend pdftex +depend tex +depend xmltexconfig +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 +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.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/russiankoi8.xml + texmf-dist/doc/otherformats/xmltex/base/russianutf8.xml + texmf-dist/doc/otherformats/xmltex/base/testascii.cfg + texmf-dist/doc/otherformats/xmltex/base/testascii.tex + texmf-dist/doc/otherformats/xmltex/base/testascii.xml + texmf-dist/doc/otherformats/xmltex/base/testsec.tex + texmf-dist/doc/otherformats/xmltex/base/testsec.xml +catalogue-ctan /macros/xmltex/base +catalogue-date 2012-11-26 19:04:19 +0100 +catalogue-license lppl +catalogue-version 0.8 + +name xmltex.i386-linux +category Package +revision 3006 +shortdesc i386-linux files of xmltex +binfiles arch=i386-linux size=2 + bin/i386-linux/pdfxmltex + bin/i386-linux/xmltex + +name xmpincl +category Package +revision 15878 +shortdesc Include eXtensible Metadata Platform data in PDFLaTeX. +relocated 1 +longdesc The XMP (eXtensible Metadata platform) is a framework to add +longdesc metadata to digital material to enhance the workflow in +longdesc publication. The essence is that the metadata is stored in an +longdesc XML file, and this XML stream is then embedded in the file to +longdesc which it applies. How you create this XML file is up to you, +longdesc but the author started investigating this because he wanted to +longdesc embed licensing information in the files he created. The +longdesc license the author chose is one of the Creative Commons +longdesc licenses, and their web-site offers this information in a valid +longdesc XML-file, suitable for direct inclusion. +runfiles size=1 + RELOC/tex/latex/xmpincl/xmpincl.sty +docfiles size=31 + RELOC/doc/latex/xmpincl/README + RELOC/doc/latex/xmpincl/license.xmp + RELOC/doc/latex/xmpincl/xmpincl.pdf +srcfiles size=5 + RELOC/source/latex/xmpincl/xmpincl.dtx + RELOC/source/latex/xmpincl/xmpincl.ins +catalogue-ctan /macros/latex/contrib/xmpincl +catalogue-date 2012-11-14 18:32:01 +0100 +catalogue-license gpl +catalogue-version 2.2 + +name xnewcommand +category Package +revision 15878 +shortdesc Define \global and \protected commands with \newcommand. +relocated 1 +longdesc The package provides the means of defining \global and (e-TeX) +longdesc \protected commands, within the framework of LaTeX's standard +longdesc \newcommand. +runfiles size=1 + RELOC/tex/latex/xnewcommand/xnewcommand.sty +docfiles size=70 + RELOC/doc/latex/xnewcommand/README + RELOC/doc/latex/xnewcommand/xnewcommand.pdf + RELOC/doc/latex/xnewcommand/xnewcommand.tex +catalogue-ctan /macros/latex/contrib/xnewcommand +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name xoptarg +category Package +revision 15878 +shortdesc Expandable macros that take an optional argument. +relocated 1 +longdesc Commands that take an optional argument are not ordinarily +longdesc expandable; this package allows such commands to be expandable +longdesc provided that they have at least one mandatory argument. +runfiles size=2 + RELOC/tex/latex/xoptarg/xoptarg.sty +docfiles size=97 + RELOC/doc/latex/xoptarg/README + RELOC/doc/latex/xoptarg/xoptarg.pdf + RELOC/doc/latex/xoptarg/xoptarg.tex +catalogue-ctan /macros/latex/contrib/xoptarg +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.0 + +name xpatch +category Package +revision 27897 +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 +docfiles size=112 + RELOC/doc/latex/xpatch/README + RELOC/doc/latex/xpatch/xpatch.pdf +srcfiles size=9 + RELOC/source/latex/xpatch/xpatch.dtx + RELOC/source/latex/xpatch/xpatch.ins +catalogue-ctan /macros/latex/contrib/xpatch +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name xpeek +category Package +revision 27442 +shortdesc Define commands that peek ahead in the input stream. +relocated 1 +longdesc The package provides tools to help define commands that, like +longdesc \xspace and the LaTeX command \textit, peek at what follows +longdesc them in the command stream and choose appropriate behaviour. +runfiles size=1 + RELOC/tex/latex/xpeek/xpeek.sty +docfiles size=149 + RELOC/doc/latex/xpeek/README + RELOC/doc/latex/xpeek/xpeek.pdf +srcfiles size=6 + RELOC/source/latex/xpeek/xpeek.dtx +catalogue-ctan /macros/latex/contrib/xpeek +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.2 + +name xpiano +category Package +revision 37604 +shortdesc An extension of the piano package. +relocated 1 +longdesc This package provides macros for typesetting virtual keyboards +longdesc limited to two octaves for showing notes represented by a +longdesc colored circle. Optionally, the number used for pitch analysis +longdesc can be shown. It is an extension of piano.sty by Emile +longdesc Daneault, written in expl3 in answer to a couple of questions +longdesc on TeX.StackExchange: +longdesc http://tex.stackexchange.com/questions/162184/ +longdesc http://tex.stackexchange.com/questions/246276/. It features +longdesc extended syntax and several options, like setting the color, +longdesc adding numbers for pitch analysis, one or two octaves, and +longdesc others. +runfiles size=3 + RELOC/tex/latex/xpiano/xpiano.sty +docfiles size=138 + RELOC/doc/latex/xpiano/README.txt + RELOC/doc/latex/xpiano/xpiano.pdf +srcfiles size=7 + RELOC/source/latex/xpiano/xpiano.dtx + RELOC/source/latex/xpiano/xpiano.ins +catalogue-also piano +catalogue-ctan /macros/latex/contrib/xpiano +catalogue-date 2015-05-26 05:52:50 +0200 +catalogue-license lppl1.3 +catalogue-topics music +catalogue-version 1.0 + +name xpicture +category Package +revision 28770 +shortdesc Extensions of LaTeX picture drawing. +relocated 1 +longdesc The package extends the facilities of the pict2e and the +longdesc curve2e packages, providing extra reference frames, conic +longdesc section curves, graphs of elementary functions and other +longdesc parametric curves. +runfiles size=12 + RELOC/tex/latex/xpicture/xpicture.sty +docfiles size=342 + RELOC/doc/latex/xpicture/README + RELOC/doc/latex/xpicture/xpicture-doc.pdf + RELOC/doc/latex/xpicture/xpicture-doc.tex + RELOC/doc/latex/xpicture/xpicture.cfgxmpl + RELOC/doc/latex/xpicture/xpicture.pdf +srcfiles size=32 + RELOC/source/latex/xpicture/xpicture.dtx +catalogue-ctan /macros/latex/contrib/xpicture +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.2a + +name xpinyin +category Package +revision 35921 +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 + RELOC/source/latex/xpinyin/xpinyin.dtx + RELOC/source/latex/xpinyin/xpinyin.ins +catalogue-ctan /macros/latex/contrib/xpinyin +catalogue-date 2014-12-25 07:08:18 +0100 +catalogue-license lppl1.3 +catalogue-version 2.1 + +name xprintlen +category Package +revision 35928 +shortdesc Print TeX lengths in a variety of units. +relocated 1 +longdesc The package defines a command, \printlen, to print TeX lengths +longdesc in a variety of units. It can handle all units supported by +longdesc TeX. The package requires that a reasonably up to date version +longdesc of the fp package be installed on you system. +runfiles size=1 + RELOC/tex/latex/xprintlen/xprintlen.sty +docfiles size=38 + RELOC/doc/latex/xprintlen/LICENSE + RELOC/doc/latex/xprintlen/README + RELOC/doc/latex/xprintlen/ex01.png + RELOC/doc/latex/xprintlen/xprintlen.pdf + RELOC/doc/latex/xprintlen/xprintlen.tex +catalogue-ctan /macros/latex/contrib/xprintlen +catalogue-date 2015-01-14 14:29:45 +0100 +catalogue-license lppl1.3 +catalogue-version 1.0 + +name xpunctuate +category Package +revision 26641 +shortdesc Process trailing punctuation which may be redundant. +relocated 1 +longdesc The package provides commands that enable the user (or package +longdesc writer) to insert punctuation after the macro. The method is +longdesc similar to that of xspace, but goes further. The package +longdesc provides the commands \xperiod, \xcomma and \xperiodcomma, +longdesc which follow a similar procedure to that of \xspace, and insert +longdesc punctuation if and only if it is necessary. +runfiles size=1 + RELOC/tex/latex/xpunctuate/xpunctuate.sty +docfiles size=53 + RELOC/doc/latex/xpunctuate/README + RELOC/doc/latex/xpunctuate/xpunctuate.pdf +srcfiles size=4 + RELOC/source/latex/xpunctuate/xpunctuate.dtx + RELOC/source/latex/xpunctuate/xpunctuate.ins +catalogue-ctan /macros/latex/contrib/xpunctuate +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.0 + +name xq +category Package +revision 35211 +shortdesc Support for writing about xiangqi. +relocated 1 +longdesc The package is for writing about xiangqi or chinese chess. You +longdesc can write games or parts of games and show diagrams with +longdesc special positions. +runfiles size=311 + RELOC/fonts/source/public/xq/xqaddsignsbase.mf + RELOC/fonts/source/public/xq/xqaddsignslarge.mf + RELOC/fonts/source/public/xq/xqaddsignsnormal.mf + RELOC/fonts/source/public/xq/xqbase.mf + RELOC/fonts/source/public/xq/xqhints.mf + RELOC/fonts/source/public/xq/xqlarge.mf + RELOC/fonts/source/public/xq/xqnormal.mf + RELOC/fonts/source/public/xq/xqwestbase.mf + RELOC/fonts/source/public/xq/xqwestlarge.mf + RELOC/fonts/source/public/xq/xqwestnormal.mf + RELOC/fonts/tfm/public/xq/xqlarge.tfm + RELOC/fonts/tfm/public/xq/xqnormal.tfm + RELOC/tex/latex/xq/xq.sty +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-license lppl +catalogue-version 0.4 + +name xskak +category Package +revision 35945 +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 +docfiles size=2 + RELOC/doc/latex/xskak/README + RELOC/doc/latex/xskak/README.TEXLIVE +srcfiles size=23 + RELOC/source/latex/xskak/xskak-src.dtx + RELOC/source/latex/xskak/xskak.ins +catalogue-ctan /macros/latex/contrib/xskak +catalogue-date 2015-01-02 17:09:53 +0100 +catalogue-license lppl +catalogue-version 1.4 + +name xstring +category Package +revision 31900 +shortdesc String manipulation for (La)TeX. +relocated 1 +longdesc The package provides macros for manipulating strings -- testing +longdesc a string's contents, extracting substrings, substitution of +longdesc substrings and providing numbers such as string length, +longdesc position of, or number of recurrences of, a substring. The +longdesc package works equally in Plain TeX and LaTeX (though e-TeX is +longdesc always required). The strings to be processed may contain +longdesc (expandable) macros. +runfiles size=15 + 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-ctan /macros/generic/xstring +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.7c + +name xtab +category Package +revision 23347 +shortdesc Break tables across pages. +relocated 1 +longdesc Xtab is an extended and somewhat improved version of +longdesc supertabular; its xtabular environment provides tables that +longdesc break across pages. +runfiles size=5 + RELOC/tex/latex/xtab/xtab.sty +docfiles size=90 + RELOC/doc/latex/xtab/README + RELOC/doc/latex/xtab/xtab.pdf +srcfiles size=22 + RELOC/source/latex/xtab/xtab.dtx + RELOC/source/latex/xtab/xtab.ins +catalogue-ctan /macros/latex/contrib/xtab +catalogue-date 2013-09-03 17:01:13 +0200 +catalogue-license lppl +catalogue-version 2.3f + +name xunicode +category Package +revision 30466 +shortdesc Generate Unicode characters from accented glyphs. +relocated 1 +longdesc The package supports XeTeX's (and other putative future similar +longdesc engines') need for Unicode characters, in a similar way to what +longdesc the fontenc does for 8-bit (and the like) fonts: convert 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. +depend tipa +runfiles size=51 + RELOC/tex/xelatex/xunicode/xunicode.sty +docfiles size=1 + RELOC/doc/xelatex/xunicode/README +catalogue-ctan /macros/xetex/latex/xunicode +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 0.981 + +name xwatermark +category Package +revision 28090 +shortdesc Graphics and text watermarks on selected pages. +relocated 1 +longdesc The package extends the author's draftmark and the watermark +longdesc packages. +runfiles size=19 + RELOC/tex/latex/xwatermark/xwatermark.sty +docfiles size=187 + RELOC/doc/latex/xwatermark/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.tex +catalogue-ctan /macros/latex/contrib/xwatermark +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 +catalogue-version 1.5.2d + +name xyling +category Package +revision 15878 +shortdesc Draw syntactic trees, etc., for linguistics literature, using xy-pic. +relocated 1 +longdesc The macros in this package model the construction of linguistic +longdesc tree structures as a genuinely graphical problem: they contain +longdesc two types of objects, BRANCHES and NODE LABELS, and these are +longdesc positioned relative to a GRID. It is essential that each of +longdesc these three elements is constructed independent of the other +longdesc two, and hence they can be modified without unwanted side +longdesc effects. The macros are based on the xy-pic package. +runfiles size=9 + RELOC/tex/latex/xyling/xyling.sty +docfiles size=52 + RELOC/doc/latex/xyling/README + RELOC/doc/latex/xyling/xyli-doc.pdf + RELOC/doc/latex/xyling/xyli-doc.tex +catalogue-ctan /macros/latex/contrib/xyling +catalogue-date 2012-06-08 10:58:36 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name xymtex +category Package +revision 32182 +shortdesc Typesetting chemical structures. +relocated 1 +longdesc XyMTeX is a set of packages for drawing a wide variety of +longdesc chemical structural formulas in a way that reflects their +longdesc structure. The package provides three output modes: 'LaTeX', +longdesc 'PostScript' and 'PDF'. XyMTeX's commands have a systematic set +longdesc of arguments for specifying substituents and their positions, +longdesc endocyclic double bonds, and bond patterns. In some cases there +longdesc are additional arguments for specifying hetero-atoms on the +longdesc vertices of heterocycles. It is believed that this systematic +longdesc design allows XyMTeX to operate as a practical (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 +docfiles size=71 + RELOC/doc/latex/xymtex/doc/README.TEXLIVE + RELOC/doc/latex/xymtex/readme/oldreadme/readme402.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme402.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme403.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme403.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme404.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme404.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme405.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme405.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme406.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme406.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme500.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme500.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/readme500a.doc + RELOC/doc/latex/xymtex/readme/oldreadme/readme500a.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx402.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx402.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx403.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx403.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx404.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx404.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx405.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx405.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx406.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx406.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500.jpn + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500a.doc + RELOC/doc/latex/xymtex/readme/oldreadme/xymtx500a.jpn + RELOC/doc/latex/xymtex/readme/readme501.doc + RELOC/doc/latex/xymtex/readme/readme501.jpn + RELOC/doc/latex/xymtex/readme/xymtx501.doc + RELOC/doc/latex/xymtex/readme/xymtx501.jpn +srcfiles size=592 + RELOC/source/latex/xymtex/base/aliphat.dtx + RELOC/source/latex/xymtex/base/aliphat.ins + RELOC/source/latex/xymtex/base/assurelatexmode.dtx + RELOC/source/latex/xymtex/base/assurelatexmode.ins + RELOC/source/latex/xymtex/base/bondcolor.dtx + RELOC/source/latex/xymtex/base/bondcolor.ins + RELOC/source/latex/xymtex/base/carom.dtx + RELOC/source/latex/xymtex/base/carom.ins + RELOC/source/latex/xymtex/base/ccycle.dtx + RELOC/source/latex/xymtex/base/ccycle.ins + RELOC/source/latex/xymtex/base/chemstr.dtx + RELOC/source/latex/xymtex/base/chemstr.ins + RELOC/source/latex/xymtex/base/doins.bat + RELOC/source/latex/xymtex/base/fusering.dtx + RELOC/source/latex/xymtex/base/fusering.ins + RELOC/source/latex/xymtex/base/hcycle.dtx + RELOC/source/latex/xymtex/base/hcycle.ins + RELOC/source/latex/xymtex/base/hetarom.dtx + RELOC/source/latex/xymtex/base/hetarom.ins + RELOC/source/latex/xymtex/base/hetaromh.dtx + RELOC/source/latex/xymtex/base/hetaromh.ins + RELOC/source/latex/xymtex/base/lewisstruc.dtx + RELOC/source/latex/xymtex/base/lewisstruc.ins + RELOC/source/latex/xymtex/base/locant.dtx + RELOC/source/latex/xymtex/base/locant.ins + RELOC/source/latex/xymtex/base/lowcycle.dtx + RELOC/source/latex/xymtex/base/lowcycle.ins + RELOC/source/latex/xymtex/base/methylen.dtx + RELOC/source/latex/xymtex/base/methylen.ins + RELOC/source/latex/xymtex/base/polymers.dtx + RELOC/source/latex/xymtex/base/polymers.ins + RELOC/source/latex/xymtex/base/putline.sed + RELOC/source/latex/xymtex/base/putput.bat + RELOC/source/latex/xymtex/base/sizeredc.dtx + RELOC/source/latex/xymtex/base/sizeredc.ins + RELOC/source/latex/xymtex/base/steroid.dtx + RELOC/source/latex/xymtex/base/steroid.ins + RELOC/source/latex/xymtex/base/xymtex.dtx + RELOC/source/latex/xymtex/base/xymtex.ins + RELOC/source/latex/xymtex/chemist/assurechemist.dtx + RELOC/source/latex/xymtex/chemist/assurechemist.ins + RELOC/source/latex/xymtex/chemist/chemist.dtx + RELOC/source/latex/xymtex/chemist/chemist.ins + RELOC/source/latex/xymtex/chemist/chemtimes.dtx + RELOC/source/latex/xymtex/chemist/chemtimes.ins + RELOC/source/latex/xymtex/xymtxpdf/chmst-pdf.dtx + RELOC/source/latex/xymtex/xymtxpdf/chmst-pdf.ins + RELOC/source/latex/xymtex/xymtxpdf/xymtx-pdf.dtx + RELOC/source/latex/xymtex/xymtxpdf/xymtx-pdf.ins + RELOC/source/latex/xymtex/xymtxps/chmst-ps.dtx + RELOC/source/latex/xymtex/xymtxps/chmst-ps.ins + RELOC/source/latex/xymtex/xymtxps/xymtx-ps.drv + RELOC/source/latex/xymtex/xymtxps/xymtx-ps.dtx + RELOC/source/latex/xymtex/xymtxps/xymtx-ps.ins +catalogue-ctan /macros/latex/contrib/xymtex +catalogue-date 2013-11-19 14:03:04 +0100 +catalogue-license lppl1.3 +catalogue-version 5.06 + +name xypic +category Package +revision 31859 +shortdesc Flexible diagramming macros. +relocated 1 +longdesc A package for typesetting a variety of graphs and diagrams with +longdesc TeX. Xy-pic works with most formats (including LaTeX, AMS- +longdesc LaTeX, AMS-TeX, and plain TeX). The distribution includes +longdesc Michael Barr's diag package, which was previously distributed +longdesc stand-alone. +execute addMixedMap xypic.map +runfiles size=575 + RELOC/dvips/xypic/xy389dict.pro + RELOC/fonts/afm/public/xypic/xyatip10.afm + RELOC/fonts/afm/public/xypic/xybsql10.afm + RELOC/fonts/afm/public/xypic/xybtip10.afm + RELOC/fonts/afm/public/xypic/xycirc10.afm + RELOC/fonts/afm/public/xypic/xycmat10.afm + RELOC/fonts/afm/public/xypic/xycmat11.afm + RELOC/fonts/afm/public/xypic/xycmat12.afm + RELOC/fonts/afm/public/xypic/xycmbt10.afm + RELOC/fonts/afm/public/xypic/xycmbt11.afm + RELOC/fonts/afm/public/xypic/xycmbt12.afm + RELOC/fonts/afm/public/xypic/xydash10.afm + RELOC/fonts/afm/public/xypic/xyeuat10.afm + RELOC/fonts/afm/public/xypic/xyeuat11.afm + RELOC/fonts/afm/public/xypic/xyeuat12.afm + RELOC/fonts/afm/public/xypic/xyeubt10.afm + RELOC/fonts/afm/public/xypic/xyeubt11.afm + RELOC/fonts/afm/public/xypic/xyeubt12.afm + RELOC/fonts/afm/public/xypic/xyluat10.afm + RELOC/fonts/afm/public/xypic/xyluat11.afm + RELOC/fonts/afm/public/xypic/xyluat12.afm + RELOC/fonts/afm/public/xypic/xylubt10.afm + RELOC/fonts/afm/public/xypic/xylubt11.afm + RELOC/fonts/afm/public/xypic/xylubt12.afm + RELOC/fonts/enc/dvips/xypic/xycirc.enc + RELOC/fonts/enc/dvips/xypic/xyd.enc + RELOC/fonts/enc/dvips/xypic/xyd2.enc + RELOC/fonts/map/dvips/xypic/xypic.map + RELOC/fonts/source/public/xypic/xyatip.mf + RELOC/fonts/source/public/xypic/xyatip10.mf + RELOC/fonts/source/public/xypic/xyatri.mf + RELOC/fonts/source/public/xypic/xybsql10.mf + RELOC/fonts/source/public/xypic/xybtip.mf + RELOC/fonts/source/public/xypic/xybtip10.mf + RELOC/fonts/source/public/xypic/xybtri.mf + RELOC/fonts/source/public/xypic/xycirc10.mf + RELOC/fonts/source/public/xypic/xycm.mf + RELOC/fonts/source/public/xypic/xycmat10.mf + RELOC/fonts/source/public/xypic/xycmat11.mf + RELOC/fonts/source/public/xypic/xycmat12.mf + RELOC/fonts/source/public/xypic/xycmbt10.mf + RELOC/fonts/source/public/xypic/xycmbt11.mf + RELOC/fonts/source/public/xypic/xycmbt12.mf + RELOC/fonts/source/public/xypic/xyd.mf + RELOC/fonts/source/public/xypic/xyd2.mf + RELOC/fonts/source/public/xypic/xydash10.mf + RELOC/fonts/source/public/xypic/xyeuat10.mf + RELOC/fonts/source/public/xypic/xyeuat11.mf + RELOC/fonts/source/public/xypic/xyeuat12.mf + RELOC/fonts/source/public/xypic/xyeubt10.mf + RELOC/fonts/source/public/xypic/xyeubt11.mf + RELOC/fonts/source/public/xypic/xyeubt12.mf + RELOC/fonts/source/public/xypic/xyeuler.mf + RELOC/fonts/source/public/xypic/xyline10.mf + RELOC/fonts/source/public/xypic/xylu.mf + RELOC/fonts/source/public/xypic/xyluat10.mf + RELOC/fonts/source/public/xypic/xyluat11.mf + RELOC/fonts/source/public/xypic/xyluat12.mf + RELOC/fonts/source/public/xypic/xylubt10.mf + RELOC/fonts/source/public/xypic/xylubt11.mf + RELOC/fonts/source/public/xypic/xylubt12.mf + RELOC/fonts/source/public/xypic/xymisc10.mf + RELOC/fonts/source/public/xypic/xyqc10.mf + RELOC/fonts/source/public/xypic/xytech.mf + RELOC/fonts/tfm/public/xypic/xyatip10.tfm + RELOC/fonts/tfm/public/xypic/xybsql10.tfm + RELOC/fonts/tfm/public/xypic/xybtip10.tfm + RELOC/fonts/tfm/public/xypic/xycirc10.tfm + RELOC/fonts/tfm/public/xypic/xycmat10.tfm + RELOC/fonts/tfm/public/xypic/xycmat11.tfm + RELOC/fonts/tfm/public/xypic/xycmat12.tfm + RELOC/fonts/tfm/public/xypic/xycmbt10.tfm + RELOC/fonts/tfm/public/xypic/xycmbt11.tfm + RELOC/fonts/tfm/public/xypic/xycmbt12.tfm + RELOC/fonts/tfm/public/xypic/xydash10.tfm + RELOC/fonts/tfm/public/xypic/xyeuat10.tfm + RELOC/fonts/tfm/public/xypic/xyeuat11.tfm + RELOC/fonts/tfm/public/xypic/xyeuat12.tfm + RELOC/fonts/tfm/public/xypic/xyeubt10.tfm + RELOC/fonts/tfm/public/xypic/xyeubt11.tfm + RELOC/fonts/tfm/public/xypic/xyeubt12.tfm + RELOC/fonts/tfm/public/xypic/xyline10.tfm + RELOC/fonts/tfm/public/xypic/xyluat10.tfm + RELOC/fonts/tfm/public/xypic/xyluat11.tfm + RELOC/fonts/tfm/public/xypic/xyluat12.tfm + RELOC/fonts/tfm/public/xypic/xylubt10.tfm + RELOC/fonts/tfm/public/xypic/xylubt11.tfm + RELOC/fonts/tfm/public/xypic/xylubt12.tfm + RELOC/fonts/tfm/public/xypic/xymisc10.tfm + RELOC/fonts/tfm/public/xypic/xyqc10.tfm + RELOC/fonts/type1/public/xypic/xyatip10.pfb + RELOC/fonts/type1/public/xypic/xyatip10.pfm + RELOC/fonts/type1/public/xypic/xybsql10.pfb + RELOC/fonts/type1/public/xypic/xybsql10.pfm + RELOC/fonts/type1/public/xypic/xybtip10.pfb + RELOC/fonts/type1/public/xypic/xybtip10.pfm + RELOC/fonts/type1/public/xypic/xycirc10.pfb + RELOC/fonts/type1/public/xypic/xycirc10.pfm + RELOC/fonts/type1/public/xypic/xycmat10.pfb + RELOC/fonts/type1/public/xypic/xycmat10.pfm + RELOC/fonts/type1/public/xypic/xycmat11.pfb + RELOC/fonts/type1/public/xypic/xycmat11.pfm + RELOC/fonts/type1/public/xypic/xycmat12.pfb + RELOC/fonts/type1/public/xypic/xycmat12.pfm + RELOC/fonts/type1/public/xypic/xycmbt10.pfb + RELOC/fonts/type1/public/xypic/xycmbt10.pfm + RELOC/fonts/type1/public/xypic/xycmbt11.pfb + RELOC/fonts/type1/public/xypic/xycmbt11.pfm + RELOC/fonts/type1/public/xypic/xycmbt12.pfb + RELOC/fonts/type1/public/xypic/xycmbt12.pfm + RELOC/fonts/type1/public/xypic/xydash10.pfb + RELOC/fonts/type1/public/xypic/xydash10.pfm + RELOC/fonts/type1/public/xypic/xyeuat10.pfb + RELOC/fonts/type1/public/xypic/xyeuat10.pfm + RELOC/fonts/type1/public/xypic/xyeuat11.pfb + RELOC/fonts/type1/public/xypic/xyeuat11.pfm + RELOC/fonts/type1/public/xypic/xyeuat12.pfb + RELOC/fonts/type1/public/xypic/xyeuat12.pfm + RELOC/fonts/type1/public/xypic/xyeubt10.pfb + RELOC/fonts/type1/public/xypic/xyeubt10.pfm + RELOC/fonts/type1/public/xypic/xyeubt11.pfb + RELOC/fonts/type1/public/xypic/xyeubt11.pfm + RELOC/fonts/type1/public/xypic/xyeubt12.pfb + RELOC/fonts/type1/public/xypic/xyeubt12.pfm + RELOC/fonts/type1/public/xypic/xyluat10.pfb + RELOC/fonts/type1/public/xypic/xyluat10.pfm + RELOC/fonts/type1/public/xypic/xyluat11.pfb + RELOC/fonts/type1/public/xypic/xyluat11.pfm + RELOC/fonts/type1/public/xypic/xyluat12.pfb + RELOC/fonts/type1/public/xypic/xyluat12.pfm + RELOC/fonts/type1/public/xypic/xylubt10.pfb + RELOC/fonts/type1/public/xypic/xylubt10.pfm + RELOC/fonts/type1/public/xypic/xylubt11.pfb + RELOC/fonts/type1/public/xypic/xylubt11.pfm + RELOC/fonts/type1/public/xypic/xylubt12.pfb + RELOC/fonts/type1/public/xypic/xylubt12.pfm + RELOC/tex/generic/xypic/movie.cls + RELOC/tex/generic/xypic/xy.sty + RELOC/tex/generic/xypic/xy.tex + RELOC/tex/generic/xypic/xy16textures.tex + RELOC/tex/generic/xypic/xy17oztex.tex + RELOC/tex/generic/xypic/xy2cell.tex + RELOC/tex/generic/xypic/xyall.tex + RELOC/tex/generic/xypic/xyarc.tex + RELOC/tex/generic/xypic/xyarrow.tex + RELOC/tex/generic/xypic/xybarr.tex + RELOC/tex/generic/xypic/xycmactex.tex + RELOC/tex/generic/xypic/xycmtip.tex + RELOC/tex/generic/xypic/xycolor.tex + RELOC/tex/generic/xypic/xycrayon.tex + RELOC/tex/generic/xypic/xycurve.tex + RELOC/tex/generic/xypic/xydummy.tex + RELOC/tex/generic/xypic/xydvidrv.tex + RELOC/tex/generic/xypic/xydvips.tex + RELOC/tex/generic/xypic/xydvitops.tex + RELOC/tex/generic/xypic/xyemtex.tex + RELOC/tex/generic/xypic/xyframe.tex + RELOC/tex/generic/xypic/xygraph.tex + RELOC/tex/generic/xypic/xyidioms.tex + RELOC/tex/generic/xypic/xyimport.tex + RELOC/tex/generic/xypic/xyknot.tex + RELOC/tex/generic/xypic/xyline.tex + RELOC/tex/generic/xypic/xymacpat.xyp + RELOC/tex/generic/xypic/xymatrix.tex + RELOC/tex/generic/xypic/xymovie.tex + RELOC/tex/generic/xypic/xynecula.tex + RELOC/tex/generic/xypic/xyoztex.tex + RELOC/tex/generic/xypic/xypdf-co.tex + RELOC/tex/generic/xypic/xypdf-cu.tex + RELOC/tex/generic/xypic/xypdf-fr.tex + RELOC/tex/generic/xypic/xypdf-li.tex + RELOC/tex/generic/xypic/xypdf-ro.tex + RELOC/tex/generic/xypic/xypdf.tex + RELOC/tex/generic/xypic/xypic.sty + RELOC/tex/generic/xypic/xypic.tex + RELOC/tex/generic/xypic/xypicture.tex + RELOC/tex/generic/xypic/xypoly.tex + RELOC/tex/generic/xypic/xyps-c.tex + RELOC/tex/generic/xypic/xyps-col.tex + RELOC/tex/generic/xypic/xyps-f.tex + RELOC/tex/generic/xypic/xyps-l.tex + RELOC/tex/generic/xypic/xyps-pro.tex + RELOC/tex/generic/xypic/xyps-ps.tex + RELOC/tex/generic/xypic/xyps-r.tex + RELOC/tex/generic/xypic/xyps-s.tex + RELOC/tex/generic/xypic/xyps-t.tex + RELOC/tex/generic/xypic/xyps.tex + RELOC/tex/generic/xypic/xypsdict.tex + RELOC/tex/generic/xypic/xypspatt.tex + RELOC/tex/generic/xypic/xyrecat.tex + RELOC/tex/generic/xypic/xyrotate.tex + RELOC/tex/generic/xypic/xysmart.tex + RELOC/tex/generic/xypic/xytextures.tex + RELOC/tex/generic/xypic/xytile.tex + RELOC/tex/generic/xypic/xytips.tex + RELOC/tex/generic/xypic/xytp-f.tex + RELOC/tex/generic/xypic/xytpic.tex + RELOC/tex/generic/xypic/xyv2.tex + RELOC/tex/generic/xypic/xyweb.tex + RELOC/tex/generic/xypic/xyxdvi.tex +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-ctan /macros/generic/diagrams/xypic +catalogue-date 2015-03-07 10:28:05 +0100 +catalogue-license gpl +catalogue-version 3.8.9 + +name xypic-tut-pt +category Package +revision 15878 +shortdesc A tutorial for XY-pic, in Portuguese. +relocated 1 +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/xypictutorial.tex +catalogue-ctan /info/portuguese/xypic-tutorial +catalogue-date 2012-06-08 10:58:36 +0200 +catalogue-license gpl + +name xytree +category Package +revision 15878 +shortdesc Tree macros using XY-Pic. +relocated 1 +longdesc The package provides means to draw linguistic syntactic trees +longdesc with ease and to support hopefully sufficient functionalities, +longdesc that the linguist may need. The package (of course) depends on +longdesc the XY-Pic package. +runfiles size=3 + RELOC/tex/latex/xytree/xytree.sty +docfiles size=80 + RELOC/doc/latex/xytree/README + RELOC/doc/latex/xytree/xytree-doc-en.pdf + RELOC/doc/latex/xytree/xytree-doc-en.tex +catalogue-ctan /macros/latex/contrib/xytree +catalogue-date 2012-02-10 18:28:55 +0100 +catalogue-license lppl +catalogue-version 1.5 + +name yafoot +category Package +revision 19086 +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 + RELOC/doc/latex/yafoot/yafoot-man.tex +srcfiles size=16 + RELOC/source/latex/yafoot/yafoot.dtx + RELOC/source/latex/yafoot/yafoot.ins +catalogue-ctan /macros/latex/contrib/yafoot +catalogue-date 2011-11-05 20:23:42 +0100 +catalogue-license lppl + +name yagusylo +category Package +revision 29803 +shortdesc A symbol loader. +relocated 1 +longdesc The name is by way of being an acronym for "Yet Another Grand +longdesc Unified Symbols Loader"... The package allows the user to +longdesc access a symbol without loading the package that usually +longdesc provides it; this has the advantage of avoiding the name +longdesc clashes that so commonly trouble those who load symbol- +longdesc packages. +runfiles size=7 + RELOC/tex/latex/yagusylo/yagusylo.cfg + RELOC/tex/latex/yagusylo/yagusylo.sty +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 +srcfiles size=36 + RELOC/source/latex/yagusylo/Makefile + RELOC/source/latex/yagusylo/yagusylo.dtx + RELOC/source/latex/yagusylo/yagusylo.ins +catalogue-ctan /macros/latex/contrib/yagusylo +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.2 + +name yannisgr +category Package +revision 22613 +shortdesc Greek fonts by Yannis Haralambous. +relocated 1 +longdesc A family of 7-bit fonts with a code table designed for setting +longdesc modern polytonic Greek. The fonts are provided as Metafont +longdesc source; macros to produce a Greek variant of Plain TeX +longdesc (including a hyphenation table adapted to the fonts' code +longdesc table) are provided. +runfiles size=75 + RELOC/fonts/source/public/yannisgr/csc_misce.mf + RELOC/fonts/source/public/yannisgr/gen_m_acc.mf + RELOC/fonts/source/public/yannisgr/greekcsc.mf + RELOC/fonts/source/public/yannisgr/it_digits.mf + RELOC/fonts/source/public/yannisgr/it_lig.mf + RELOC/fonts/source/public/yannisgr/it_lower.mf + RELOC/fonts/source/public/yannisgr/ligcsc.mf + RELOC/fonts/source/public/yannisgr/m_accent.mf + RELOC/fonts/source/public/yannisgr/m_greek.mf + RELOC/fonts/source/public/yannisgr/mrgrbf10.mf + RELOC/fonts/source/public/yannisgr/mrgrrg10.mf + RELOC/fonts/source/public/yannisgr/mrgrsl10.mf + RELOC/fonts/source/public/yannisgr/mrgrti10.mf + RELOC/fonts/source/public/yannisgr/rgen_acc.mf + RELOC/fonts/source/public/yannisgr/rgraccent.mf + RELOC/fonts/source/public/yannisgr/rgrbase.mf + RELOC/fonts/source/public/yannisgr/rgrbf10.mf + RELOC/fonts/source/public/yannisgr/rgreek.mf + RELOC/fonts/source/public/yannisgr/rgrlig.mf + RELOC/fonts/source/public/yannisgr/rgrlower.mf + RELOC/fonts/source/public/yannisgr/rgrpunct.mf + RELOC/fonts/source/public/yannisgr/rgrrg10.mf + RELOC/fonts/source/public/yannisgr/rgrsc10.mf + RELOC/fonts/source/public/yannisgr/rgrsl10.mf + RELOC/fonts/source/public/yannisgr/rgrti10.mf + RELOC/fonts/source/public/yannisgr/rgrupper.mf + RELOC/fonts/source/public/yannisgr/scsc.mf + RELOC/fonts/tfm/public/yannisgr/mrgrbf10.tfm + RELOC/fonts/tfm/public/yannisgr/mrgrrg10.tfm + RELOC/fonts/tfm/public/yannisgr/mrgrsl10.tfm + RELOC/fonts/tfm/public/yannisgr/mrgrti10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrbf10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrrg10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrsc10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrsl10.tfm + RELOC/fonts/tfm/public/yannisgr/rgrti10.tfm +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-license gpl2 + +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 + 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/source/latex/yathesis/yathesis-samples-templates.dtx + RELOC/source/latex/yathesis/yathesis.bib + RELOC/source/latex/yathesis/yathesis.dtx +catalogue-ctan /macros/latex/contrib/yathesis +catalogue-date 2014-10-31 14:21:26 +0100 +catalogue-license lppl1.3 +catalogue-version 0.99l + +name yax +category Package +revision 21183 +shortdesc Yet Another Key System. +relocated 1 +longdesc YaX is advertised as a key system, but it rather organizes +longdesc attributes in parameters, which parameters can be executed, so +longdesc that YaX is halfway between key management and macro definition +longdesc (and actually hopes to provide a user's interface). Values +longdesc assigned to attributes can be retrieved and tested in various +longdesc ways, with full expandability ensured as much as possible. +longdesc Finally, YaX's syntax is a quite peculiar (as few braces as +longdesc possible), but may be customized. YaX is based on texapi and +longdesc thus requires e-TeX. +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-license lppl +catalogue-version 1.03 + +name ydoc +category Package +revision 26202 +shortdesc Macros for documentation of LaTeX classes and packages. +relocated 1 +longdesc The package provides macros and environments to document LaTeX +longdesc packages and classes. It is an (as yet unfinished) alternative +longdesc to the ltxdoc class and the doc or xdoc packages. The aim is to +longdesc provide a different layout and more modern styles (using the +longdesc xcolor, hyperref packages, etc.) This is an alpha release, and +longdesc should probably not (yet) be used with other packages, since +longdesc the implementation might change. Nevertheless, the author uses +longdesc it to document his own packages. +runfiles size=14 + RELOC/tex/generic/ydoc/ydocincl.tex + RELOC/tex/generic/ydoc/ydocstrip.tex + RELOC/tex/latex/ydoc/ydoc-code.sty + RELOC/tex/latex/ydoc/ydoc-desc.sty + RELOC/tex/latex/ydoc/ydoc-doc.sty + RELOC/tex/latex/ydoc/ydoc-expl.sty + RELOC/tex/latex/ydoc/ydoc.cfg + RELOC/tex/latex/ydoc/ydoc.cls + RELOC/tex/latex/ydoc/ydoc.sty +docfiles size=81 + RELOC/doc/latex/ydoc/README + RELOC/doc/latex/ydoc/ydoc.pdf +srcfiles size=20 + RELOC/source/latex/ydoc/ydoc.dtx +catalogue-ctan /macros/latex/contrib/ydoc +catalogue-date 2014-09-14 17:44:27 +0200 +catalogue-license lppl1.3 +catalogue-version 0.6alpha + +name yfonts-t1 +category Package +revision 36013 +shortdesc Old German-style fonts, in Adobe type 1 format. +relocated 1 +longdesc This package comprises type 1 versions of the Gothic, +longdesc Schwabacher and Fraktur fonts of Yannis Haralambous' set of old +longdesc German fonts. +execute addMap yfrak.map +runfiles size=50 + RELOC/dvips/yfonts-t1/config.yfrak + RELOC/fonts/afm/public/yfonts-t1/yfrak.afm + RELOC/fonts/afm/public/yfonts-t1/ygoth.afm + RELOC/fonts/afm/public/yfonts-t1/yswab.afm + RELOC/fonts/map/dvips/yfonts-t1/yfrak.map + RELOC/fonts/type1/public/yfonts-t1/yfrak.pfb + RELOC/fonts/type1/public/yfonts-t1/ygoth.pfb + RELOC/fonts/type1/public/yfonts-t1/yswab.pfb +docfiles size=1 + RELOC/doc/fonts/yfonts-t1/README +catalogue-ctan /fonts/ps-type1/yfonts +catalogue-date 2015-01-16 08:39:42 +0100 +catalogue-license other-free +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. +relocated 1 +longdesc The yhmath bundle contains fonts (in type 1 format) and a LaTeX +longdesc package for using them. +execute addMixedMap yhmath.map +runfiles size=30 + RELOC/fonts/map/dvips/yhmath/yhmath.map + RELOC/fonts/source/public/yhmath/yhbigacc.mf + RELOC/fonts/source/public/yhmath/yhbigdel.mf + RELOC/fonts/source/public/yhmath/yhmathex.mf + RELOC/fonts/source/public/yhmath/yrcmex10.mf + RELOC/fonts/tfm/public/yhmath/yhcmex10.tfm + RELOC/fonts/tfm/public/yhmath/yrcmex10.tfm + RELOC/fonts/type1/public/yhmath/yhcmex.pfb + RELOC/fonts/vf/public/yhmath/yhcmex10.vf + RELOC/tex/latex/yhmath/OMXyhex.fd + RELOC/tex/latex/yhmath/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-ctan /fonts/yhmath +catalogue-date 2014-04-28 17:48:37 +0200 +catalogue-license lppl +catalogue-version 1.1 + +name york-thesis +category Package +revision 23348 +shortdesc A thesis class file for York University, Toronto. +relocated 1 +longdesc York Graduate Studies has again changed the requirements for +longdesc theses and dissertations. The established york-thesis class +longdesc file now implements the changes made in Spring 2005. +runfiles size=4 + RELOC/tex/latex/york-thesis/york-thesis.cls +docfiles size=32 + RELOC/doc/latex/york-thesis/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 +srcfiles size=12 + RELOC/source/latex/york-thesis/york-thesis.dtx + RELOC/source/latex/york-thesis/york-thesis.ins +catalogue-ctan /macros/latex/contrib/york-thesis +catalogue-date 2014-09-13 11:37:30 +0200 +catalogue-license lppl1.3 +catalogue-version 3.6 + +name youngtab +category Package +revision 17635 +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 +docfiles size=47 + RELOC/doc/latex/youngtab/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.tex +srcfiles size=10 + RELOC/source/latex/youngtab/youngtab.dtx + RELOC/source/latex/youngtab/youngtab.ins +catalogue-ctan /macros/latex/contrib/youngtab +catalogue-date 2012-04-16 12:07:42 +0200 +catalogue-license lppl1 +catalogue-version 1.1 + +name yplan +category Package +revision 34398 +shortdesc Daily planner type calendar. +longdesc Prints two six-monthly vertical-type daily planner (i.e., +longdesc months along the top, days downwards), with each 6-month period +longdesc fitting onto a single A4 (or US letter) sheet. The package +longdesc offers support for English, French, German, Spanish and +longdesc Portuguese. The previous scheme of annual updates has now been +longdesc abandoned, in favour of a Perl script yplan that generates a +longdesc year's planner automatically. (The last manually-generated +longdesc LaTeX file remains on the archive.) +depend yplan.ARCH +runfiles size=5 + texmf-dist/scripts/yplan/yplan + texmf-dist/tex/latex/yplan/yplan.sty +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 +catalogue-ctan /macros/latex/contrib/yplan +catalogue-date 2012-04-16 12:15:05 +0200 +catalogue-license lppl + +name yplan.i386-linux +category Package +revision 34398 +shortdesc i386-linux files of yplan +binfiles arch=i386-linux size=1 + bin/i386-linux/yplan + +name ytableau +category Package +revision 27430 +shortdesc Many-featured Young tableaux and Young diagrams. +relocated 1 +longdesc The package provides several functions for drawing Young +longdesc tableaux and Young diagrams, extending the young and youngtab +longdesc packages but providing lots more features. Skew and coloured +longdesc tableaux are easy, and pgfkeys-enabled options are provided +longdesc both at package load and configurably. +runfiles size=3 + RELOC/tex/latex/ytableau/ytableau.sty +docfiles size=90 + RELOC/doc/latex/ytableau/README + RELOC/doc/latex/ytableau/ytableau.pdf +srcfiles size=15 + RELOC/source/latex/ytableau/ytableau.dtx + RELOC/source/latex/ytableau/ytableau.ins +catalogue-ctan /macros/latex/contrib/ytableau +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.2 +catalogue-version 1.3 + +name zapfchan +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX. +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap uzc.map +runfiles size=59 + RELOC/dvips/zapfchan/config.uzc + RELOC/fonts/afm/adobe/zapfchan/pzcmi8a.afm + RELOC/fonts/afm/urw/zapfchan/uzcmi8a.afm + RELOC/fonts/map/dvips/zapfchan/uzc.map + RELOC/fonts/tfm/adobe/zapfchan/pzcmi.tfm + RELOC/fonts/tfm/adobe/zapfchan/pzcmi7t.tfm + RELOC/fonts/tfm/adobe/zapfchan/pzcmi8c.tfm + RELOC/fonts/tfm/adobe/zapfchan/pzcmi8r.tfm + RELOC/fonts/tfm/adobe/zapfchan/pzcmi8t.tfm + RELOC/fonts/tfm/urw35vf/zapfchan/uzcmi7t.tfm + RELOC/fonts/tfm/urw35vf/zapfchan/uzcmi8c.tfm + RELOC/fonts/tfm/urw35vf/zapfchan/uzcmi8r.tfm + RELOC/fonts/tfm/urw35vf/zapfchan/uzcmi8t.tfm + RELOC/fonts/type1/urw/zapfchan/uzcmi8a.pfb + RELOC/fonts/type1/urw/zapfchan/uzcmi8a.pfm + RELOC/fonts/vf/adobe/zapfchan/pzcmi.vf + RELOC/fonts/vf/adobe/zapfchan/pzcmi7t.vf + RELOC/fonts/vf/adobe/zapfchan/pzcmi8c.vf + RELOC/fonts/vf/adobe/zapfchan/pzcmi8t.vf + RELOC/fonts/vf/urw35vf/zapfchan/uzcmi7t.vf + RELOC/fonts/vf/urw35vf/zapfchan/uzcmi8c.vf + RELOC/fonts/vf/urw35vf/zapfchan/uzcmi8t.vf + RELOC/tex/latex/zapfchan/8ruzc.fd + RELOC/tex/latex/zapfchan/omluzc.fd + RELOC/tex/latex/zapfchan/omsuzc.fd + RELOC/tex/latex/zapfchan/ot1uzc.fd + RELOC/tex/latex/zapfchan/t1uzc.fd + RELOC/tex/latex/zapfchan/ts1uzc.fd +catalogue-ctan /fonts/urw/base35 +catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-license gpl + +name zapfding +category Package +revision 31835 +catalogue urw-base35 +shortdesc URW "Base 35" font pack for LaTeX. +relocated 1 +longdesc A set of fonts for use as "drop-in" replacements for Adobe's +longdesc basic set, comprising: Century Schoolbook (substituting for +longdesc Adobe's New Century Schoolbook); Dingbats (substituting for +longdesc Adobe's Zapf Dingbats); Nimbus Mono L (substituting for Abobe's +longdesc Courier); Nimbus Roman No9 L (substituting for Adobe's Times); +longdesc Nimbus Sans L (substituting for Adobe's Helvetica); Standard +longdesc Symbols L (substituting for Adobe's Symbol); URW Bookman; URW +longdesc Chancery L Medium Italic (substituting for Adobe's Zapf +longdesc Chancery); URW Gothic L Book (substituting for Adobe's Avant +longdesc Garde); and URW Palladio L (substituting for Adobe's Palatino). +execute addMap uzd.map +runfiles size=24 + RELOC/dvips/zapfding/config.uzd + RELOC/fonts/afm/adobe/zapfding/pzdr.afm + RELOC/fonts/afm/urw/zapfding/uzdr.afm + RELOC/fonts/map/dvips/zapfding/uzd.map + RELOC/fonts/tfm/adobe/zapfding/pzdr.tfm + RELOC/fonts/tfm/urw35vf/zapfding/uzdr.tfm + RELOC/fonts/type1/urw/zapfding/uzdr.pfb + RELOC/fonts/type1/urw/zapfding/uzdr.pfm + RELOC/tex/latex/zapfding/uuzd.fd +catalogue-ctan /fonts/urw/base35 +catalogue-date 2014-06-07 20:47:53 +0200 +catalogue-license gpl + +name zed-csp +category Package +revision 17258 +shortdesc Typesetting Z and CSP format specifications. +relocated 1 +longdesc The package supports real-time CSP and incorporates the +longdesc functionality of Spivey's original Z package, written for LaTeX +longdesc 2.09. +runfiles size=8 + RELOC/tex/latex/zed-csp/zed-csp.sty +docfiles size=75 + RELOC/doc/latex/zed-csp/csp2e.pdf + RELOC/doc/latex/zed-csp/csp2e.tex + RELOC/doc/latex/zed-csp/zed2e.pdf + RELOC/doc/latex/zed-csp/zed2e.tex +catalogue-ctan /macros/latex/contrib/zed-csp +catalogue-date 2012-03-30 15:19:52 +0200 +catalogue-license other-free + +name zhmetrics +category Package +revision 22207 +shortdesc TFM subfont files for using Chinese fonts in 8-bit TeX. +relocated 1 +longdesc These are metrics to use existing Chinese TrueType fonts in +longdesc workflows that use LaTeX & dvipdfmx, or pdfLaTeX. The fonts +longdesc themselves are not included in the package. Six font families +longdesc are supported: kai, song, lishu, fangsong, youyuan and hei. Two +longdesc encodings (GBK and UTF-8) are supported. +runfiles size=4937 + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb00.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb01.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb02.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb03.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb04.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb05.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb06.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb07.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb08.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb09.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb0f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb10.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb11.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb12.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb13.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb14.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb15.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb16.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb17.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb18.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb19.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb1f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb20.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb21.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb22.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb23.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb24.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb25.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb26.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb27.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb28.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb29.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb2f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb30.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb31.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb32.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb33.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb34.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb35.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb36.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb37.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb38.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb39.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb3f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb40.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb41.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb42.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb43.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb44.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb45.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb46.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb47.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb48.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb49.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb4f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb50.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb51.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb52.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb53.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb54.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb55.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb56.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb57.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb58.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb59.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb5f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb60.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb61.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb62.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb63.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb64.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb65.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb66.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb67.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb68.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb69.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb6f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb70.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb71.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb72.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb73.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb74.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb75.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb76.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb77.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb78.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb79.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb7f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb80.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb81.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb82.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb83.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb84.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb85.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb86.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb87.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb88.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb89.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb8f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb90.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb91.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb92.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb93.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb94.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb95.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb96.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb97.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb98.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb99.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberb9f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberba9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbaa.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbab.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbac.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbad.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbae.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbaf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbb9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbba.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbe.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbbf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbc9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbca.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbcb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbcc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbcd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbce.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbcf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbd9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbda.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbdb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbdc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbdd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbde.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbdf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbe9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbea.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbeb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbec.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbed.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbee.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbef.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbf9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfa.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbfe.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbff.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl00.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl01.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl02.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl03.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl04.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl05.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl06.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl07.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl08.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl09.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl0f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl10.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl11.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl12.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl13.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl14.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl15.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl16.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl17.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl18.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl19.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl1f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl20.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl21.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl22.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl23.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl24.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl25.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl26.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl27.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl28.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl29.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl2f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl30.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl31.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl32.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl33.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl34.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl35.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl36.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl37.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl38.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl39.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl3f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl40.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl41.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl42.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl43.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl44.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl45.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl46.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl47.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl48.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl49.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl4f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl50.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl51.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl52.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl53.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl54.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl55.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl56.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl57.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl58.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl59.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl5f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl60.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl61.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl62.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl63.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl64.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl65.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl66.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl67.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl68.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl69.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl6f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl70.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl71.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl72.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl73.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl74.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl75.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl76.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl77.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl78.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl79.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl7f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl80.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl81.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl82.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl83.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl84.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl85.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl86.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl87.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl88.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl89.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl8f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl90.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl91.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl92.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl93.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl94.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl95.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl96.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl97.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl98.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl99.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9a.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9b.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9c.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9d.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9e.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsl9f.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsla9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslaa.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslab.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslac.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslad.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslae.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslaf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslb9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslba.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbe.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslbf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslc9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslca.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslcb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslcc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslcd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslce.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslcf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsld9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslda.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsldb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsldc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsldd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslde.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsldf.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsle9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslea.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsleb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslec.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbsled.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslee.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslef.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf0.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf1.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf2.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf3.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf4.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf5.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf6.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf7.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf8.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslf9.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfa.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfb.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfc.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfd.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslfe.tfm + RELOC/fonts/tfm/zhmetrics/cyberb/cyberbslff.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk00.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk01.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk02.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk03.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk04.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk05.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk06.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk07.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk08.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk09.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk10.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk11.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk12.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk13.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk14.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk15.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk16.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk17.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk18.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk19.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk20.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk21.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk22.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk23.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk24.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk25.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk26.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk27.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk28.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk29.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk30.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk31.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk32.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk33.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk34.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk35.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk36.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk37.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk38.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk39.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk40.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk41.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk42.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk43.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk44.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk45.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk46.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk47.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk48.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk49.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk50.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk51.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk52.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk53.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk54.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk55.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk56.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk57.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk58.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk59.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk60.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk61.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk62.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk63.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk64.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk65.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk66.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk67.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk68.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk69.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk70.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk71.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk72.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk73.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk74.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk75.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk76.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk77.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk78.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk79.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk80.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk81.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk82.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk83.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk84.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk85.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk86.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk87.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk88.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk89.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk90.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk91.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk92.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk93.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbk94.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl00.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl01.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl02.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl03.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl04.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl05.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl06.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl07.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl08.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl09.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl10.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl11.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl12.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl13.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl14.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl15.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl16.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl17.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl18.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl19.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl20.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl21.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl22.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl23.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl24.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl25.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl26.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl27.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl28.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl29.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl30.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl31.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl32.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl33.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl34.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl35.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl36.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl37.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl38.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl39.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl40.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl41.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl42.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl43.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl44.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl45.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl46.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl47.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl48.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl49.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl50.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl51.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl52.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl53.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl54.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl55.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl56.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl57.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl58.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl59.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl60.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl61.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl62.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl63.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl64.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl65.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl66.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl67.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl68.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl69.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl70.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl71.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl72.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl73.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl74.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl75.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl76.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl77.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl78.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl79.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl80.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl81.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl82.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl83.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl84.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl85.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl86.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl87.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl88.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl89.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl90.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl91.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl92.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl93.tfm + RELOC/fonts/tfm/zhmetrics/gbk/gbksl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs00.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs01.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs02.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs03.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs04.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs05.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs06.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs07.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs08.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs09.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs10.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs11.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs12.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs13.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs14.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs15.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs16.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs17.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs18.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs19.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs20.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs21.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs22.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs23.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs24.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs25.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs26.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs27.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs28.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs29.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs30.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs31.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs32.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs33.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs34.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs35.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs36.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs37.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs38.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs39.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs40.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs41.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs42.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs43.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs44.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs45.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs46.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs47.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs48.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs49.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs50.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs51.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs52.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs53.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs54.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs55.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs56.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs57.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs58.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs59.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs60.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs61.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs62.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs63.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs64.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs65.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs66.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs67.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs68.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs69.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs70.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs71.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs72.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs73.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs74.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs75.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs76.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs77.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs78.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs79.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs80.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs81.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs82.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs83.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs84.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs85.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs86.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs87.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs88.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs89.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs90.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs91.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs92.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs93.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfs94.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkfs/gbkfssl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei00.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei01.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei02.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei03.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei04.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei05.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei06.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei07.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei08.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei09.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei10.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei11.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei12.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei13.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei14.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei15.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei16.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei17.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei18.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei19.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei20.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei21.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei22.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei23.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei24.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei25.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei26.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei27.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei28.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei29.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei30.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei31.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei32.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei33.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei34.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei35.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei36.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei37.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei38.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei39.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei40.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei41.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei42.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei43.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei44.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei45.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei46.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei47.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei48.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei49.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei50.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei51.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei52.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei53.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei54.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei55.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei56.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei57.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei58.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei59.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei60.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei61.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei62.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei63.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei64.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei65.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei66.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei67.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei68.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei69.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei70.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei71.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei72.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei73.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei74.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei75.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei76.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei77.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei78.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei79.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei80.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei81.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei82.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei83.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei84.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei85.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei86.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei87.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei88.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei89.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei90.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei91.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei92.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei93.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkhei94.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkhei/gbkheisl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai00.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai01.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai02.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai03.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai04.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai05.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai06.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai07.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai08.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai09.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai10.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai11.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai12.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai13.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai14.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai15.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai16.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai17.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai18.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai19.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai20.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai21.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai22.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai23.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai24.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai25.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai26.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai27.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai28.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai29.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai30.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai31.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai32.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai33.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai34.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai35.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai36.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai37.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai38.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai39.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai40.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai41.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai42.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai43.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai44.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai45.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai46.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai47.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai48.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai49.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai50.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai51.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai52.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai53.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai54.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai55.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai56.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai57.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai58.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai59.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai60.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai61.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai62.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai63.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai64.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai65.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai66.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai67.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai68.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai69.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai70.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai71.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai72.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai73.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai74.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai75.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai76.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai77.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai78.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai79.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai80.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai81.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai82.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai83.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai84.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai85.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai86.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai87.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai88.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai89.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai90.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai91.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai92.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai93.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkai94.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkkai/gbkkaisl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli00.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli01.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli02.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli03.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli04.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli05.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli06.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli07.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli08.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli09.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli10.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli11.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli12.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli13.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli14.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli15.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli16.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli17.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli18.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli19.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli20.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli21.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli22.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli23.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli24.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli25.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli26.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli27.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli28.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli29.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli30.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli31.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli32.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli33.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli34.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli35.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli36.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli37.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli38.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli39.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli40.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli41.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli42.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli43.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli44.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli45.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli46.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli47.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli48.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli49.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli50.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli51.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli52.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli53.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli54.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli55.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli56.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli57.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli58.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli59.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli60.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli61.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli62.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli63.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli64.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli65.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli66.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli67.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli68.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli69.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli70.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli71.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli72.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli73.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli74.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli75.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli76.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli77.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli78.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli79.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli80.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli81.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli82.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli83.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli84.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli85.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli86.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli87.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli88.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli89.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli90.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli91.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli92.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli93.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbkli94.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkli/gbklisl94.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong00.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong01.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong02.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong03.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong04.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong05.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong06.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong07.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong08.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong09.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong10.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong11.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong12.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong13.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong14.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong15.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong16.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong17.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong18.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong19.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong20.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong21.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong22.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong23.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong24.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong25.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong26.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong27.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong28.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong29.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong30.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong31.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong32.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong33.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong34.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong35.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong36.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong37.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong38.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong39.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong40.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong41.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong42.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong43.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong44.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong45.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong46.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong47.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong48.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong49.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong50.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong51.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong52.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong53.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong54.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong55.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong56.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong57.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong58.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong59.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong60.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong61.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong62.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong63.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong64.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong65.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong66.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong67.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong68.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong69.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong70.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong71.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong72.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong73.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong74.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong75.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong76.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong77.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong78.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong79.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong80.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong81.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong82.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong83.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong84.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong85.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong86.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong87.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong88.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong89.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong90.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong91.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong92.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong93.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksong94.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl00.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl01.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl02.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl03.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl04.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl05.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl06.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl07.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl08.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl09.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl10.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl11.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl12.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl13.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl14.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl15.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl16.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl17.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl18.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl19.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl20.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl21.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl22.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl23.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl24.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl25.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl26.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl27.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl28.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl29.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl30.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl31.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl32.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl33.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl34.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl35.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl36.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl37.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl38.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl39.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl40.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl41.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl42.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl43.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl44.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl45.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl46.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl47.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl48.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl49.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl50.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl51.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl52.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl53.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl54.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl55.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl56.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl57.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl58.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl59.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl60.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl61.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl62.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl63.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl64.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl65.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl66.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl67.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl68.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl69.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl70.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl71.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl72.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl73.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl74.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl75.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl76.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl77.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl78.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl79.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl80.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl81.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl82.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl83.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl84.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl85.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl86.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl87.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl88.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl89.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl90.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl91.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl92.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl93.tfm + RELOC/fonts/tfm/zhmetrics/gbksong/gbksongsl94.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou00.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou01.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou02.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou03.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou04.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou05.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou06.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou07.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou08.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou09.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou10.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou11.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou12.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou13.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou14.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou15.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou16.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou17.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou18.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou19.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou20.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou21.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou22.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou23.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou24.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou25.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou26.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou27.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou28.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou29.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou30.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou31.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou32.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou33.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou34.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou35.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou36.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou37.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou38.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou39.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou40.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou41.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou42.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou43.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou44.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou45.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou46.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou47.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou48.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou49.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou50.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou51.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou52.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou53.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou54.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou55.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou56.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou57.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou58.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou59.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou60.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou61.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou62.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou63.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou64.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou65.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou66.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou67.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou68.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou69.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou70.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou71.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou72.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou73.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou74.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou75.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou76.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou77.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou78.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou79.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou80.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou81.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou82.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou83.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou84.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou85.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou86.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou87.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou88.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou89.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou90.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou91.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou92.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou93.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyou94.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl00.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl01.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl02.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl03.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl04.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl05.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl06.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl07.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl08.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl09.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl10.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl11.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl12.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl13.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl14.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl15.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl16.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl17.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl18.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl19.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl20.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl21.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl22.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl23.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl24.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl25.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl26.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl27.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl28.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl29.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl30.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl31.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl32.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl33.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl34.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl35.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl36.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl37.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl38.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl39.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl40.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl41.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl42.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl43.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl44.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl45.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl46.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl47.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl48.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl49.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl50.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl51.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl52.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl53.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl54.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl55.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl56.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl57.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl58.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl59.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl60.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl61.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl62.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl63.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl64.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl65.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl66.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl67.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl68.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl69.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl70.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl71.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl72.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl73.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl74.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl75.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl76.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl77.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl78.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl79.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl80.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl81.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl82.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl83.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl84.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl85.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl86.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl87.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl88.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl89.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl90.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl91.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl92.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl93.tfm + RELOC/fonts/tfm/zhmetrics/gbkyou/gbkyousl94.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs00.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs01.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs02.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs03.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs04.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs05.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs06.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs07.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs08.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs09.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs0f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs10.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs11.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs12.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs13.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs14.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs15.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs16.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs17.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs18.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs19.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs1f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs20.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs21.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs22.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs23.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs24.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs25.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs26.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs27.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs28.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs29.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs2f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs30.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs31.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs32.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs33.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs34.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs35.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs36.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs37.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs38.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs39.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs3f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs40.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs41.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs42.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs43.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs44.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs45.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs46.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs47.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs48.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs49.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs4f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs50.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs51.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs52.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs53.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs54.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs55.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs56.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs57.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs58.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs59.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs5f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs60.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs61.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs62.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs63.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs64.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs65.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs66.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs67.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs68.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs69.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs6f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs70.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs71.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs72.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs73.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs74.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs75.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs76.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs77.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs78.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs79.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs7f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs80.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs81.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs82.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs83.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs84.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs85.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs86.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs87.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs88.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs89.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs8f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs90.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs91.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs92.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs93.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs94.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs95.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs96.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs97.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs98.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs99.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifs9f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsa9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsaa.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsab.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsac.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsad.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsae.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsaf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsb9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsba.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbe.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsbf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsc9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsca.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifscb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifscc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifscd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsce.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifscf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsd9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsda.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsdb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsdc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsdd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsde.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsdf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifse9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsea.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifseb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsec.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsed.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsee.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsef.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsf9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfa.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsfe.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsff.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl00.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl01.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl02.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl03.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl04.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl05.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl06.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl07.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl08.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl09.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl0f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl10.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl11.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl12.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl13.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl14.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl15.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl16.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl17.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl18.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl19.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl1f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl20.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl21.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl22.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl23.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl24.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl25.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl26.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl27.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl28.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl29.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl2f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl30.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl31.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl32.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl33.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl34.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl35.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl36.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl37.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl38.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl39.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl3f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl40.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl41.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl42.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl43.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl44.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl45.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl46.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl47.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl48.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl49.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl4f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl50.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl51.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl52.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl53.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl54.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl55.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl56.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl57.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl58.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl59.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl5f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl60.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl61.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl62.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl63.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl64.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl65.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl66.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl67.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl68.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl69.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl6f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl70.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl71.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl72.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl73.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl74.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl75.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl76.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl77.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl78.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl79.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl7f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl80.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl81.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl82.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl83.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl84.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl85.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl86.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl87.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl88.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl89.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl8f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl90.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl91.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl92.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl93.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl94.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl95.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl96.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl97.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl98.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl99.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9a.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9b.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9c.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9d.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9e.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssl9f.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssla9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslaa.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslab.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslac.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslad.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslae.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslaf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslb9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslba.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbe.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslbf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslc9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslca.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslcb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslcc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslcd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslce.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslcf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssld9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslda.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssldb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssldc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssldd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslde.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssldf.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssle9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslea.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssleb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslec.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifssled.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslee.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslef.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf0.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf1.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf2.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf3.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf4.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf5.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf6.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf7.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf8.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslf9.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfa.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfb.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfc.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfd.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslfe.tfm + RELOC/fonts/tfm/zhmetrics/unifs/unifsslff.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei00.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei01.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei02.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei03.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei04.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei05.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei06.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei07.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei08.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei09.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei0f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei10.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei11.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei12.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei13.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei14.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei15.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei16.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei17.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei18.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei19.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei1f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei20.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei21.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei22.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei23.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei24.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei25.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei26.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei27.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei28.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei29.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei2f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei30.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei31.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei32.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei33.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei34.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei35.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei36.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei37.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei38.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei39.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei3f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei40.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei41.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei42.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei43.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei44.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei45.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei46.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei47.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei48.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei49.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei4f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei50.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei51.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei52.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei53.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei54.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei55.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei56.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei57.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei58.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei59.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei5f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei60.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei61.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei62.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei63.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei64.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei65.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei66.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei67.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei68.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei69.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei6f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei70.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei71.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei72.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei73.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei74.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei75.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei76.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei77.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei78.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei79.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei7f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei80.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei81.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei82.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei83.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei84.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei85.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei86.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei87.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei88.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei89.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei8f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei90.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei91.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei92.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei93.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei94.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei95.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei96.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei97.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei98.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei99.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/unihei9f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheia9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiaa.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiab.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiac.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiad.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiae.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiaf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheib9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiba.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibe.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheibf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheic9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheica.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheicb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheicc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheicd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheice.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheicf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheid9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheida.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheidb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheidc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheidd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheide.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheidf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheie9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiea.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheieb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiec.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheied.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiee.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheief.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheif9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheifa.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheifb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheifc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheifd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheife.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheiff.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl00.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl01.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl02.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl03.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl04.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl05.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl06.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl07.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl08.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl09.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl0f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl10.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl11.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl12.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl13.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl14.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl15.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl16.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl17.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl18.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl19.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl1f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl20.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl21.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl22.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl23.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl24.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl25.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl26.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl27.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl28.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl29.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl2f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl30.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl31.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl32.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl33.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl34.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl35.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl36.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl37.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl38.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl39.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl3f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl40.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl41.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl42.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl43.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl44.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl45.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl46.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl47.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl48.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl49.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl4f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl50.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl51.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl52.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl53.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl54.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl55.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl56.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl57.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl58.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl59.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl5f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl60.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl61.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl62.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl63.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl64.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl65.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl66.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl67.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl68.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl69.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl6f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl70.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl71.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl72.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl73.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl74.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl75.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl76.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl77.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl78.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl79.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl7f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl80.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl81.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl82.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl83.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl84.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl85.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl86.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl87.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl88.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl89.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl8f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl90.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl91.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl92.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl93.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl94.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl95.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl96.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl97.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl98.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl99.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9a.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9b.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9c.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9d.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9e.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisl9f.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisla9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislaa.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislab.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislac.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislad.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislae.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislaf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislb9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislba.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbe.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislbf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislc9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislca.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislcb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislcc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislcd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislce.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislcf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisld9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislda.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisldb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisldc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisldd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislde.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisldf.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisle9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislea.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisleb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislec.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheisled.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislee.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislef.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf0.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf1.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf2.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf3.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf4.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf5.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf6.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf7.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf8.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislf9.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfa.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfb.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfc.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfd.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislfe.tfm + RELOC/fonts/tfm/zhmetrics/unihei/uniheislff.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai00.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai01.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai02.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai03.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai04.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai05.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai06.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai07.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai08.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai09.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai0f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai10.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai11.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai12.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai13.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai14.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai15.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai16.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai17.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai18.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai19.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai1f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai20.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai21.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai22.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai23.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai24.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai25.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai26.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai27.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai28.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai29.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai2f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai30.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai31.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai32.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai33.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai34.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai35.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai36.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai37.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai38.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai39.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai3f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai40.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai41.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai42.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai43.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai44.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai45.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai46.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai47.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai48.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai49.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai4f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai50.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai51.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai52.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai53.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai54.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai55.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai56.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai57.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai58.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai59.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai5f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai60.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai61.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai62.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai63.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai64.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai65.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai66.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai67.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai68.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai69.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai6f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai70.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai71.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai72.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai73.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai74.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai75.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai76.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai77.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai78.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai79.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai7f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai80.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai81.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai82.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai83.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai84.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai85.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai86.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai87.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai88.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai89.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai8f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai90.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai91.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai92.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai93.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai94.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai95.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai96.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai97.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai98.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai99.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikai9f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaia9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiaa.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiab.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiac.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiad.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiae.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiaf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaib9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiba.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibe.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaibf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaic9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaica.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaicb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaicc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaicd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaice.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaicf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaid9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaida.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaidb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaidc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaidd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaide.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaidf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaie9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiea.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaieb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiec.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaied.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiee.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaief.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaif9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaifa.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaifb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaifc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaifd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaife.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaiff.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl00.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl01.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl02.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl03.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl04.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl05.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl06.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl07.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl08.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl09.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl0f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl10.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl11.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl12.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl13.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl14.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl15.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl16.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl17.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl18.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl19.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl1f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl20.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl21.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl22.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl23.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl24.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl25.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl26.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl27.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl28.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl29.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl2f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl30.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl31.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl32.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl33.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl34.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl35.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl36.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl37.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl38.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl39.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl3f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl40.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl41.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl42.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl43.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl44.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl45.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl46.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl47.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl48.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl49.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl4f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl50.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl51.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl52.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl53.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl54.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl55.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl56.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl57.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl58.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl59.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl5f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl60.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl61.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl62.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl63.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl64.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl65.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl66.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl67.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl68.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl69.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl6f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl70.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl71.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl72.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl73.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl74.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl75.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl76.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl77.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl78.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl79.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl7f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl80.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl81.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl82.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl83.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl84.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl85.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl86.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl87.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl88.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl89.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl8f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl90.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl91.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl92.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl93.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl94.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl95.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl96.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl97.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl98.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl99.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9a.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9b.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9c.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9d.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9e.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisl9f.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisla9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislaa.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislab.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislac.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislad.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislae.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislaf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislb9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislba.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbe.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislbf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislc9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislca.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislcb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislcc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislcd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislce.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislcf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisld9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislda.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisldb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisldc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisldd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislde.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisldf.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisle9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislea.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisleb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislec.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaisled.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislee.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislef.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf0.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf1.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf2.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf3.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf4.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf5.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf6.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf7.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf8.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislf9.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfa.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfb.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfc.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfd.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislfe.tfm + RELOC/fonts/tfm/zhmetrics/unikai/unikaislff.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili00.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili01.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili02.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili03.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili04.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili05.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili06.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili07.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili08.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili09.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili0f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili10.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili11.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili12.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili13.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili14.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili15.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili16.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili17.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili18.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili19.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili1f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili20.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili21.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili22.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili23.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili24.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili25.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili26.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili27.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili28.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili29.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili2f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili30.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili31.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili32.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili33.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili34.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili35.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili36.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili37.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili38.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili39.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili3f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili40.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili41.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili42.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili43.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili44.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili45.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili46.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili47.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili48.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili49.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili4f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili50.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili51.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili52.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili53.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili54.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili55.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili56.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili57.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili58.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili59.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili5f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili60.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili61.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili62.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili63.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili64.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili65.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili66.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili67.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili68.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili69.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili6f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili70.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili71.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili72.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili73.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili74.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili75.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili76.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili77.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili78.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili79.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili7f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili80.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili81.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili82.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili83.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili84.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili85.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili86.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili87.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili88.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili89.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili8f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili90.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili91.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili92.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili93.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili94.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili95.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili96.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili97.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili98.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili99.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unili9f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilia9.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliaa.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliab.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliac.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliad.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliae.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliaf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilib9.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliba.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibe.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilibf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilic9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilica.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilicb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilicc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilicd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilice.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilicf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilid9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilida.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilidb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilidc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilidd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilide.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilidf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilie9.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliea.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilieb.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliec.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilied.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliee.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilief.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilif9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilifa.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilifb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilifc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilifd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilife.tfm + RELOC/fonts/tfm/zhmetrics/unili/uniliff.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl00.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl01.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl02.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl03.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl04.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl05.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl06.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl07.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl08.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl09.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl0f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl10.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl11.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl12.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl13.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl14.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl15.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl16.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl17.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl18.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl19.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl1f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl20.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl21.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl22.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl23.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl24.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl25.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl26.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl27.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl28.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl29.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl2f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl30.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl31.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl32.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl33.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl34.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl35.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl36.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl37.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl38.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl39.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl3f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl40.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl41.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl42.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl43.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl44.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl45.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl46.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl47.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl48.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl49.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl4f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl50.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl51.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl52.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl53.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl54.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl55.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl56.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl57.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl58.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl59.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl5f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl60.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl61.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl62.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl63.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl64.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl65.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl66.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl67.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl68.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl69.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl6f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl70.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl71.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl72.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl73.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl74.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl75.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl76.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl77.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl78.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl79.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl7f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl80.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl81.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl82.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl83.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl84.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl85.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl86.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl87.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl88.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl89.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl8f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl90.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl91.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl92.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl93.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl94.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl95.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl96.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl97.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl98.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl99.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9a.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9b.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9c.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9d.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9e.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisl9f.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisla9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislaa.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislab.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislac.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislad.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislae.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislaf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislb9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislba.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbe.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislbf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislc9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislca.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislcb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislcc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislcd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislce.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislcf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisld9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislda.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisldb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisldc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisldd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislde.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisldf.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisle9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislea.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisleb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislec.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilisled.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislee.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislef.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf0.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf1.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf2.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf3.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf4.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf5.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf6.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf7.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf8.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislf9.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfa.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfb.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfc.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfd.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislfe.tfm + RELOC/fonts/tfm/zhmetrics/unili/unilislff.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong00.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong01.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong02.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong03.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong04.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong05.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong06.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong07.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong08.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong09.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong0f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong10.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong11.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong12.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong13.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong14.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong15.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong16.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong17.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong18.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong19.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong1f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong20.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong21.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong22.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong23.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong24.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong25.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong26.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong27.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong28.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong29.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong2f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong30.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong31.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong32.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong33.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong34.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong35.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong36.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong37.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong38.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong39.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong3f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong40.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong41.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong42.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong43.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong44.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong45.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong46.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong47.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong48.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong49.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong4f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong50.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong51.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong52.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong53.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong54.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong55.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong56.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong57.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong58.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong59.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong5f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong60.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong61.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong62.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong63.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong64.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong65.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong66.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong67.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong68.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong69.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong6f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong70.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong71.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong72.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong73.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong74.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong75.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong76.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong77.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong78.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong79.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong7f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong80.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong81.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong82.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong83.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong84.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong85.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong86.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong87.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong88.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong89.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong8f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong90.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong91.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong92.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong93.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong94.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong95.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong96.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong97.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong98.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong99.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisong9f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonga9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongaa.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongab.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongac.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongad.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongae.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongaf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongb9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongba.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbe.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongbf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongc9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongca.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongcb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongcc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongcd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongce.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongcf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongd9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongda.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongdb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongdc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongdd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongde.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongdf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonge9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongea.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongeb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongec.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisonged.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongee.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongef.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongf9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfa.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongfe.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongff.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl00.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl01.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl02.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl03.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl04.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl05.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl06.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl07.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl08.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl09.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl0f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl10.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl11.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl12.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl13.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl14.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl15.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl16.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl17.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl18.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl19.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl1f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl20.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl21.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl22.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl23.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl24.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl25.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl26.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl27.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl28.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl29.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl2f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl30.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl31.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl32.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl33.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl34.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl35.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl36.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl37.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl38.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl39.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl3f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl40.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl41.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl42.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl43.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl44.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl45.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl46.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl47.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl48.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl49.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl4f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl50.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl51.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl52.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl53.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl54.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl55.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl56.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl57.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl58.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl59.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl5f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl60.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl61.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl62.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl63.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl64.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl65.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl66.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl67.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl68.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl69.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl6f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl70.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl71.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl72.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl73.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl74.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl75.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl76.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl77.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl78.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl79.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl7f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl80.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl81.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl82.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl83.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl84.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl85.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl86.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl87.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl88.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl89.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl8f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl90.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl91.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl92.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl93.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl94.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl95.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl96.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl97.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl98.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl99.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9a.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9b.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9c.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9d.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9e.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsl9f.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsla9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslaa.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslab.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslac.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslad.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslae.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslaf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslb9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslba.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbe.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslbf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslc9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslca.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslcb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslcc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslcd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslce.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslcf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsld9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslda.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsldb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsldc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsldd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslde.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsldf.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsle9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslea.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsleb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslec.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongsled.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslee.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslef.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf0.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf1.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf2.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf3.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf4.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf5.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf6.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf7.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf8.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslf9.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfa.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfb.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfc.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfd.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslfe.tfm + RELOC/fonts/tfm/zhmetrics/unisong/unisongslff.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou00.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou01.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou02.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou03.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou04.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou05.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou06.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou07.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou08.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou09.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou0f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou10.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou11.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou12.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou13.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou14.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou15.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou16.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou17.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou18.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou19.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou1f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou20.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou21.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou22.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou23.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou24.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou25.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou26.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou27.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou28.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou29.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou2f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou30.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou31.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou32.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou33.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou34.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou35.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou36.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou37.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou38.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou39.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou3f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou40.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou41.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou42.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou43.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou44.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou45.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou46.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou47.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou48.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou49.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou4f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou50.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou51.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou52.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou53.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou54.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou55.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou56.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou57.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou58.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou59.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou5f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou60.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou61.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou62.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou63.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou64.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou65.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou66.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou67.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou68.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou69.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou6f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou70.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou71.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou72.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou73.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou74.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou75.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou76.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou77.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou78.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou79.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou7f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou80.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou81.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou82.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou83.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou84.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou85.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou86.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou87.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou88.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou89.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou8f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou90.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou91.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou92.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou93.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou94.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou95.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou96.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou97.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou98.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou99.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyou9f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoua9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouaa.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouab.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouac.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouad.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouae.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouaf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoub9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouba.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoubb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoubc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoubd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoube.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoubf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouc9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouca.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoucb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoucc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoucd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouce.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoucf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoud9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouda.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoudb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoudc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoudd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoude.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoudf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoue9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouea.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoueb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouec.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoued.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouee.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouef.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouf9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufa.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyoufe.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouff.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl00.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl01.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl02.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl03.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl04.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl05.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl06.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl07.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl08.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl09.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl0f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl10.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl11.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl12.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl13.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl14.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl15.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl16.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl17.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl18.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl19.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl1f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl20.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl21.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl22.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl23.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl24.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl25.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl26.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl27.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl28.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl29.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl2f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl30.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl31.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl32.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl33.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl34.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl35.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl36.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl37.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl38.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl39.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl3f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl40.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl41.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl42.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl43.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl44.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl45.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl46.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl47.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl48.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl49.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl4f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl50.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl51.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl52.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl53.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl54.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl55.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl56.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl57.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl58.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl59.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl5f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl60.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl61.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl62.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl63.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl64.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl65.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl66.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl67.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl68.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl69.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl6f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl70.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl71.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl72.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl73.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl74.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl75.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl76.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl77.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl78.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl79.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl7f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl80.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl81.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl82.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl83.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl84.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl85.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl86.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl87.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl88.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl89.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl8f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl90.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl91.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl92.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl93.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl94.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl95.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl96.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl97.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl98.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl99.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9a.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9b.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9c.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9d.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9e.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousl9f.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousla9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslaa.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslab.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslac.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslad.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslae.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslaf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslb9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslba.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbe.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslbf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslc9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslca.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslcb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslcc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslcd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslce.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslcf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousld9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslda.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousldb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousldc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousldd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslde.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousldf.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousle9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslea.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousleb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslec.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyousled.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslee.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslef.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf0.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf1.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf2.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf3.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf4.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf5.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf6.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf7.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf8.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslf9.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfa.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfb.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfc.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfd.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslfe.tfm + RELOC/fonts/tfm/zhmetrics/uniyou/uniyouslff.tfm + RELOC/tex/generic/zhmetrics/zhwinfonts.tex + RELOC/tex/latex/zhmetrics/c19fs.fd + RELOC/tex/latex/zhmetrics/c19hei.fd + RELOC/tex/latex/zhmetrics/c19kai.fd + RELOC/tex/latex/zhmetrics/c19li.fd + RELOC/tex/latex/zhmetrics/c19you.fd + RELOC/tex/latex/zhmetrics/c19zhfs.fd + RELOC/tex/latex/zhmetrics/c19zhhei.fd + RELOC/tex/latex/zhmetrics/c19zhkai.fd + RELOC/tex/latex/zhmetrics/c19zhli.fd + RELOC/tex/latex/zhmetrics/c19zhsong.fd + RELOC/tex/latex/zhmetrics/c19zhyou.fd + RELOC/tex/latex/zhmetrics/c70fs.fd + RELOC/tex/latex/zhmetrics/c70hei.fd + RELOC/tex/latex/zhmetrics/c70kai.fd + RELOC/tex/latex/zhmetrics/c70li.fd + RELOC/tex/latex/zhmetrics/c70you.fd + RELOC/tex/latex/zhmetrics/c70zhfs.fd + RELOC/tex/latex/zhmetrics/c70zhhei.fd + RELOC/tex/latex/zhmetrics/c70zhkai.fd + RELOC/tex/latex/zhmetrics/c70zhli.fd + RELOC/tex/latex/zhmetrics/c70zhsong.fd + RELOC/tex/latex/zhmetrics/c70zhyou.fd +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-license lppl +catalogue-version r206 + +name zhnumber +category Package +revision 37614 +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. +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-ctan /macros/latex/contrib/zhnumber +catalogue-date 2015-06-19 14:01:03 +0200 +catalogue-license lppl1.3 +catalogue-topics chinese numbers +catalogue-version 2.2 + +name zhspacing +category Package +revision 25644 +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. +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 +catalogue-ctan /macros/xetex/generic/zhspacing +catalogue-date 2015-02-23 19:58:21 +0100 +catalogue-license lppl + +name ziffer +category Package +revision 32279 +shortdesc Conversion of punctuation in maths mode. +relocated 1 +longdesc The package modifies the behaviour of characters in maths mode +longdesc so that: '.' is used as a one-thousand separator (as is common +longdesc in Germany) ',' is used as a decimal separator (as is common in +longdesc Germany) '--' is represented with spacing as appropriate to +longdesc such constructs as '1.000,--'. These conversions may be +longdesc switched on and off. +runfiles size=1 + RELOC/tex/latex/ziffer/ziffer.sty +docfiles size=1 + RELOC/doc/latex/ziffer/README +catalogue-ctan /macros/latex/contrib/ziffer +catalogue-date 2012-05-09 18:20:59 +0200 +catalogue-license lppl +catalogue-version 2.1 + +name zlmtt +category Package +revision 34485 +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. +runfiles size=19 + RELOC/tex/latex/zlmtt/il2zlmtt.fd + RELOC/tex/latex/zlmtt/il2zlmvtt.fd + RELOC/tex/latex/zlmtt/l7xzlmtt.fd + RELOC/tex/latex/zlmtt/l7xzlmvtt.fd + RELOC/tex/latex/zlmtt/ly1zlmtt.fd + RELOC/tex/latex/zlmtt/ly1zlmvtt.fd + RELOC/tex/latex/zlmtt/ot1zlmtt.fd + RELOC/tex/latex/zlmtt/ot1zlmvtt.fd + RELOC/tex/latex/zlmtt/ot4zlmtt.fd + RELOC/tex/latex/zlmtt/ot4zlmvtt.fd + RELOC/tex/latex/zlmtt/qxzlmtt.fd + RELOC/tex/latex/zlmtt/qxzlmvtt.fd + RELOC/tex/latex/zlmtt/t1zlmtt.fd + RELOC/tex/latex/zlmtt/t1zlmvtt.fd + RELOC/tex/latex/zlmtt/t5zlmtt.fd + RELOC/tex/latex/zlmtt/t5zlmvtt.fd + RELOC/tex/latex/zlmtt/ts1zlmtt.fd + RELOC/tex/latex/zlmtt/ts1zlmvtt.fd + RELOC/tex/latex/zlmtt/zlmtt.sty +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-license lppl1.3 +catalogue-version 1.01 + +name zwgetfdate +category Package +revision 15878 +shortdesc Get package or file date. +relocated 1 +longdesc The package can fetch the date declaration of packages and +longdesc files used by a document, and then provide the information in +longdesc macros. The facilities provide a means of obtaining the date of +longdesc a package being documented; this is mainly of use when +longdesc doc/docstrip. +runfiles size=1 + RELOC/tex/latex/zwgetfdate/zwgetfdate.sty +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.tex +catalogue-ctan /macros/latex/contrib/zwgetfdate +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl1.3 + +name zwpagelayout +category Package +revision 28846 +shortdesc Page layout and crop-marks. +relocated 1 +longdesc This package was developed as a typographers' toolbox offering +longdesc important basic features for everyday work. It allows setting +longdesc the paper size and the page layout; it can print crop marks; +longdesc and it can reflect pages both horizontally and vertically. The +longdesc package facilities work with TeX (output via dvips or +longdesc (x)dvipdfm(x)), and with pdfTeX. +runfiles size=9 + RELOC/tex/latex/zwpagelayout/zwpagelayout.sty +docfiles size=204 + RELOC/doc/latex/zwpagelayout/License.txt + RELOC/doc/latex/zwpagelayout/LoremIpsumDolor.tex + RELOC/doc/latex/zwpagelayout/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.tex +catalogue-ctan /macros/latex/contrib/zwpagelayout +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license lppl +catalogue-version 1.4d + +name zxjafbfont +category Package +revision 28539 +shortdesc Fallback CJK font support for xeCJK. +relocated 1 +runfiles size=1 + RELOC/tex/latex/zxjafbfont/zxjafbfont.sty +docfiles size=2 + RELOC/doc/latex/zxjafbfont/LICENSE + RELOC/doc/latex/zxjafbfont/README +catalogue-ctan /language/japanese/zxjafbfont +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 0.2 + +name zxjafont +category Package +revision 37281 +shortdesc Set up Japanese font families for XeLaTeX. +relocated 1 +runfiles size=4 + RELOC/tex/latex/zxjafont/zxjafont.sty +docfiles size=39 + 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/zxjafont.tex +catalogue-ctan /language/japanese/zxjafont +catalogue-date 2015-05-08 19:12:12 +0200 +catalogue-license other-free +catalogue-version 0.3 + +name zxjatype +category Package +revision 28541 +shortdesc Standard conforming typesetting of Japanese, for XeLaTeX. +relocated 1 +runfiles size=8 + RELOC/tex/latex/zxjatype/zxjatype.sty +docfiles size=47 + RELOC/doc/latex/zxjatype/LICENSE + RELOC/doc/latex/zxjatype/README + RELOC/doc/latex/zxjatype/example/example.pdf + RELOC/doc/latex/zxjatype/example/example.tex + RELOC/doc/latex/zxjatype/example/xetexsamp01.pdf +catalogue-ctan /language/japanese/zxjatype +catalogue-date 2014-02-26 23:03:13 +0100 +catalogue-license other-free +catalogue-version 0.6 + diff --git a/SOURCES/tl2rpm.c b/SOURCES/tl2rpm.c new file mode 100644 index 0000000..3c778d2 --- /dev/null +++ b/SOURCES/tl2rpm.c @@ -0,0 +1,2405 @@ +/* + * tl2rpm 0.0.1, TeX Live to RPM converter. + * + * Copyright (C) 2009-2012 Jindrich Novy (jnovy@users.sf.net) + * + * 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 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#define _GNU_SOURCE + +//#define PACKAGE_SOURCE +#define PACKAGE_DOCS +//#define MERGE_DOCS +//#define SRPMS +//#define SHORTEN_FILELISTS +//#define FEDORA_FONTS +#define UNPACK "xz" +#define REQ_POSTTRANS "Requires: " +#define REQ_POST_POSTUN "Requires(post,postun): " +#ifndef TL2010 +//# define CTAN_URL "ftp://ftp.ctex.org/mirrors/CTAN/systems/texlive/tlnet/archive/" +# define CTAN_URL "http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/" +#else +# define CTAN_URL "" +#endif +#ifdef DEBUG +# define REDIR "\n" +#else +# define REDIR " > /dev/null 2>&1\n" +#endif + +#include <stdlib.h> +#include <stdio.h> +#include <ctype.h> +#include <string.h> +#include <sys/stat.h> +#include <sys/types.h> +#include <unistd.h> +#include "tl-oldpkgs.h" + +char arch[] = "i386-linux"; +char *m; +off_t size, pos; + +typedef struct { + char *token; + int num; + size_t s; +} match; + +enum {CAT_COLLECTION, CAT_DOCUMENTATION, CAT_PACKAGE, CAT_SCHEME, CAT_TLCORE, CAT_CONTEXT}; +match category[] = { + {"Collection", CAT_COLLECTION}, + {"Documentation", CAT_DOCUMENTATION}, + {"Package", CAT_PACKAGE}, + {"Scheme", CAT_SCHEME}, + {"TLCore", CAT_TLCORE}, + {"ConTeXt", CAT_CONTEXT}, + {NULL, 0} +}; + +enum { + LIC_GPL = 1<<0, + LIC_LPPL = 1<<1, + LIC_OTHER_FREE = 1<<2, + LIC_PD = 1<<3, + LIC_LGPL = 1<<4, + LIC_GFSL = 1<<5, + LIC_BSD = 1<<6, + LIC_GFL = 1<<7, + LIC_ARTISTIC2 = 1<<8, + LIC_FDL = 1<<9, + LIC_COLLECTION = 1<<10, + LIC_OTHER = 1<<11, + LIC_OFL = 1<<12, + LIC_APACHE2 = 1<<13, + LIC_NOINFO = 1<<14, + LIC_UNKNOWN = 1<<15, + LIC_KNUTH = 1<<16, + LIC_ARTISTIC = 1<<17, + LIC_NOSOURCE = 1<<18, + LIC_NOSELL = 1<<19, + LIC_NOCOMMERCIAL= 1<<20, + LIC_GPL2 = 1<<21, + LIC_GPL3 = 1<<22, + LIC_LPPL12 = 1<<23, + LIC_LPPL13 = 1<<24, +}; +#define LIC_PROBLEMATIC (LIC_NOINFO | LIC_UNKNOWN | LIC_ARTISTIC | LIC_NOSOURCE | LIC_NOSELL | LIC_NOCOMMERCIAL | LIC_OTHER) +#define LIC_NOTALLOWED LIC_PROBLEMATIC + +match license[] = { + {"gpl3", LIC_GPL3}, + {"gpl2", LIC_GPL2}, + {"gpl", LIC_GPL}, + {"lppl1.3", LIC_LPPL13}, + {"lppl1.2", LIC_LPPL12}, + {"lppl1", LIC_LPPL}, + {"lppl", LIC_LPPL}, + {"other-free", LIC_OTHER_FREE}, + {"pd", LIC_PD}, + {"noinfo", LIC_NOINFO}, + {"lgpl2.1", LIC_LGPL}, + {"lgpl", LIC_LGPL}, + {"gfsl", LIC_GFSL}, + {"bsd", LIC_BSD}, + {"knuth", LIC_KNUTH}, + {"unknown", LIC_UNKNOWN}, + {"gfl", LIC_GFL}, + {"artistic2", LIC_ARTISTIC2}, + {"fdl", LIC_FDL}, + {"collection", LIC_COLLECTION}, + {"artistic", LIC_ARTISTIC}, + {"other-nonfree", LIC_OTHER}, + {"other", LIC_OTHER}, + {"ofl", LIC_OFL}, + {"apache2", LIC_APACHE2}, + {"nosource", LIC_NOSOURCE}, + {"nosell", LIC_NOSOURCE}, + {"nocommercial", LIC_NOCOMMERCIAL}, + {NULL, 0} +}; + +match spec_license[] = { + {"GPL+", LIC_GPL}, + {"GPLv2+", LIC_GPL2}, + {"GPLv3+", LIC_GPL3}, + {"LPPL", LIC_LPPL}, + {"LPPL 1.2", LIC_LPPL12}, + {"LPPL 1.3", LIC_LPPL13}, + {"Freely redistributable without restriction", LIC_OTHER_FREE}, + {"Public Domain", LIC_PD}, + {"No Info", LIC_NOINFO}, + {"LGPLv2+", LIC_LGPL}, + {"GFSL", LIC_GFSL}, + {"BSD", LIC_BSD}, + {"Knuth", LIC_KNUTH}, + {"Unknown", LIC_UNKNOWN}, + {"LPPL", LIC_GFL}, + {"Artistic 2.0", LIC_ARTISTIC2}, + {"GFDL", LIC_FDL}, + {"Public Domain", LIC_COLLECTION}, + {"Artistic", LIC_ARTISTIC}, + {"Other", LIC_OTHER}, + {"OFL", LIC_OFL}, + {"ASL 2.0", LIC_APACHE2}, + {"No Source", LIC_NOSOURCE}, + {"No Sell", LIC_NOSOURCE}, + {"Non-commercial", LIC_NOCOMMERCIAL}, + {NULL, 0} +}; + +typedef struct pk { + char *name; + unsigned long namehash; + int category; + char *shortdesc; + char **longdesc; + int longdesc_lines; + char **runf; + int runfs; + char **docf; + int docfs; + char **srcf; + int srcfs; + char **binf; + int binfs; + char *revision; + char *catalogue_ctan; + int catalogue_license; + char *fedora_license; + char *catalogue_date; + char *catalogue_version; + char **dep; + struct pk **req; + int reqs; + char **file_req; + int file_reqs; + char **file_prov; + int file_provs; + char **exe; + int exes; + int reloc; + int has_man; + int has_info; + int main_pkg_written; + int any_pkg_written; +} package; + +typedef struct { + char *dir; + unsigned long dirhash; + char **pkg; + unsigned long *pkghash; + int *lic; + int pkgs; +} dir_type; +dir_type *dir; +int dirs; + +package *pkg; +int p = 0; + +/* Packages to be ignored and not included */ +char *pkg_blacklist[] = { + "getafm", + "psutils", + "t1utils", + "texworks", + "xindy", // dependency on clisp + "asymptote", // special build procedure, packaged separately + "asymptote.i386-linux", + "asymptote-by-example-zh-cn", + "asymptote-faq-zh-cn", + "asymptote-manual-zh-cn", + "latex-tds", // only source + "biber", // packaged separately + "euro-ce", // nonfree license + "latexmk", // packaged separately + "uwmslide", // artistic (non-free) + "texdiff", // artistic (non-free) + NULL, +}; + +char *rem[] = { /* any file beginning with this will be removed */ + "texmf-dist/doc/info/kpathsea.info", + "texmf-dist/scripts/context/stubs/source", + "readme-txt.dir", + "tlpkg/installer", + "install-tl", + NULL, +}; + +char *fedora_license[] = { +#include "texlive-fedora-licenses.h" + NULL, NULL +}; + +char *get_line() { + if ( pos<size ) { + off_t rpos; + while ( pos<size && m[pos] < ' ' ) pos++; + if ( pos == size ) return NULL; + rpos = pos; + while ( pos<size && m[pos] != '\n' ) pos++; + if ( pos == size ) return NULL; + m[pos] = 0; + return &m[rpos]; + } else { + return NULL; + } +} + +int get_token( char *s, match *m ) { + int i, found = -1; +// char *r; + + for ( i=0; m[i].token; i++ ) { + if ( !strncmp(s, m[i].token, m[i].s?m[i].s:(m[i].s=strlen(m[i].token))) ) { + if ( found == -1 ) { + found = i; + } else { + if ( m[found].s < m[i].s ) found = i; + } + } + } + + if ( found != -1 ) { + return m[found].num; + } + +// r = strchr(s,'\n'); +// *r = '\0'; +// fprintf(stderr,"No match: '%s'\nin '", s); +// *r = '\n'; +// for ( i=0; m[i].token; i++ ) { +// fprintf(stderr, "%s ", m[i].token); +// } +// fprintf(stderr, "'\nin package %s\n", pkg[p-1].name); +// exit(1); + + return 0; +} + +char *put_token( int t, match *m ) { + for ( ;m->token; m++ ) { + if ( m->num == t ) return m->token; + } + + return NULL; +} + +unsigned long hash(char *str) { + unsigned long hash = 5381; + int c; + + while ((c = *str++)) + hash = ((hash << 5) + hash) + c; /* hash * 33 + c */ + + return hash; +} + +enum {FT_NONE, FT_DOC, FT_RUN, FT_SRC, FT_BIN}; + +void skipspace(char **sp) { + char *s = *sp; + while (*s == ' ' || *s == '\t' || *s == '\n' || *s == '\r') s++; + while (*s == '%') { + while ( *s != '\n' ) s++; + while (*s == ' ' || *s == '\t' || *s == '\n' || *s == '\r') s++; + } + *sp = s; +} + +void parse() { + char *l; + int filetype = FT_NONE; + + while ( (l=get_line()) ) { + if ( !*l ) continue; + if ( *l == ' ' ) { + char pkgname[0x100]; + unsigned long pkghash; + char *end = strchr(++l, ' '); + if ( end ) { + *end = '\0'; + } + if ( pkg[p-1].reloc ) { + char *rel = strstr(l, "RELOC"); + char *new_l = NULL; + int ret; + ret = asprintf(&new_l, "texmf-dist%s", rel+5); + if (ret == -1) { + fprintf(stderr, "asprintf failed?"); + } + l = new_l; + } + if (!strncmp(l, "texmf-dist/doc/man/man", 22)) { /* does package have any man pages? */ + pkg[p-1].has_man = 1; + if ( l[strlen(l)-2] == '.' && l[strlen(l)-1] >= '0' && l[strlen(l)-1] <= '9' ) { + pkg[p-1].runf = realloc(pkg[p-1].runf, (pkg[p-1].runfs+1)*sizeof(char *)); + pkg[p-1].runf[pkg[p-1].runfs] = l; + pkg[p-1].runfs++; + snprintf(pkgname, sizeof(pkgname), "%s", pkg[p-1].name); + goto skip; + } + goto skip; + } + if (!strncmp(l, "texmf-dist/doc/info/", 20)) { /* does package have any info pages? */ + pkg[p-1].has_info = 1; + if ( !strncmp(&l[strlen(l)-5], ".info", 5) ) { + pkg[p-1].runf = realloc(pkg[p-1].runf, (pkg[p-1].runfs+1)*sizeof(char *)); + pkg[p-1].runf[pkg[p-1].runfs] = l; + pkg[p-1].runfs++; + snprintf(pkgname, sizeof(pkgname), "%s", pkg[p-1].name); + goto skip; + } + goto skip; + } + switch ( filetype ) { + case FT_RUN: +#ifdef PACKAGE_DOCS +#ifdef MERGE_DOCS + case FT_DOC: +#endif +#endif + pkg[p-1].runf = realloc(pkg[p-1].runf, (pkg[p-1].runfs+1)*sizeof(char *)); + pkg[p-1].runf[pkg[p-1].runfs] = l; + pkg[p-1].runfs++; + snprintf(pkgname, sizeof(pkgname), "%s", pkg[p-1].name); + break; +#ifdef PACKAGE_DOCS +#ifndef MERGE_DOCS + case FT_DOC: + pkg[p-1].docf = realloc(pkg[p-1].docf, (pkg[p-1].docfs+1)*sizeof(char *)); + pkg[p-1].docf[pkg[p-1].docfs] = l; + pkg[p-1].docfs++; + snprintf(pkgname, sizeof(pkgname), "%s-doc", pkg[p-1].name); + break; +#endif +#else + case FT_DOC: + pkg[p-1].docf = realloc(pkg[p-1].docf, (pkg[p-1].docfs+1)*sizeof(char *)); + pkg[p-1].docf[pkg[p-1].docfs] = l; + pkg[p-1].docfs++; + snprintf(pkgname, sizeof(pkgname), "%s-doc", pkg[p-1].name); + continue; +#endif + case FT_SRC: + pkg[p-1].srcf = realloc(pkg[p-1].srcf, (pkg[p-1].srcfs+1)*sizeof(char *)); + pkg[p-1].srcf[pkg[p-1].srcfs] = l; + pkg[p-1].srcfs++; + snprintf(pkgname, sizeof(pkgname), "%s-source", pkg[p-1].name); +#ifndef PACKAGE_SOURCE + continue; +#endif + break; + case FT_BIN: + pkg[p-1].binf = realloc(pkg[p-1].binf, (pkg[p-1].binfs+1)*sizeof(char *)); + pkg[p-1].binf[pkg[p-1].binfs] = l; + pkg[p-1].binfs++; + snprintf(pkgname, sizeof(pkgname), "%s", pkg[p-1].name); + break; + default: + fprintf(stderr, "No filetype: %s\n", l); + exit(1); + } +skip: + pkghash = hash(pkgname); + end = strrchr(l, '/'); + if (!end) end = l; + if ( end ) { + int i; + unsigned long h; + char saved = *end; + *end = '\0'; + h = hash(l); + for ( i=0; i<dirs; i++ ) { + if ( dir[i].dirhash == h && !strcmp(l, dir[i].dir) ) { + int n; + for ( n=0; n<dir[i].pkgs; n++ ) { + if ( dir[i].pkghash[n] == pkghash && !strcmp(dir[i].pkg[n], pkgname) ) { + goto exit; + } + } + dir[i].pkg = realloc(dir[i].pkg, (dir[i].pkgs+1)*sizeof(char *)); + dir[i].pkghash = realloc(dir[i].pkghash, (dir[i].pkgs+1)*sizeof(unsigned long)); + dir[i].lic = realloc(dir[i].lic, (dir[i].pkgs+1)*sizeof(int)); + dir[i].pkg[dir[i].pkgs] = strdup(pkgname); + dir[i].pkghash[dir[i].pkgs] = pkghash; + dir[i].lic[dir[i].pkgs] = pkg[p-1].catalogue_license; + dir[i].pkgs++; + goto exit; + } + } + dirs++; + dir = realloc(dir, dirs*sizeof(dir_type)); + dir[dirs-1].dir = strdup(l); + dir[dirs-1].dirhash = h; + dir[dirs-1].pkgs = 1; + dir[dirs-1].pkg = malloc(sizeof(char *)); + dir[dirs-1].pkghash = malloc(sizeof(unsigned long)); + dir[dirs-1].lic = malloc(sizeof(int)); + dir[dirs-1].pkg[0] = strdup(pkgname); + dir[dirs-1].pkghash[0] = pkghash; + dir[dirs-1].lic[0] = pkg[p-1].catalogue_license; +exit: + *end = saved; + } + continue; + } +next_name: + if ( !strncmp(l,"name ", 5) ) { + size_t sarch, sname; + int i, blacklisted = 0; + for (i=0; pkg_blacklist[i]; i++) { + if ( !strncmp(l+5, pkg_blacklist[i], strlen(pkg_blacklist[i])) ) { + blacklisted = 1; + break; + } + } + if (!blacklisted) { + for (i=0; fedora_license[i]; i+=2) { + if ( !strcmp(l+5, fedora_license[i]) && !fedora_license[i+1]) { + blacklisted = 1; + break; + } + } + } + if ( blacklisted ) { + fprintf(stderr, "Blacklisted: %s\n", pkg_blacklist[i]); + while ( (l=get_line()) ) { + if ( !strncmp(l, "name ", 5) ) break; + } + if (!l) continue; + goto next_name; + } + p++; + pkg = realloc(pkg, p*sizeof(package)); + memset(&pkg[p-1], 0, sizeof(package)); + sarch = strlen(arch); + sname = strlen(l+5); + if ( sname > sarch && !strncmp(&(l+5)[sname-sarch], arch, sarch) ) { + pkg[p-1].name = calloc(sname-sarch+5, 1); + memcpy(pkg[p-1].name, l+5, sname-sarch); + memcpy(&pkg[p-1].name[sname-sarch], "ARCH", 4); + } else { + pkg[p-1].name = l+5; + } + pkg[p-1].namehash = hash(pkg[p-1].name); + filetype = FT_NONE; + /* look for license first */ + { + off_t opos = pos; + while ( (l=get_line()) ) { + m[pos] = '\n'; + if ( !strncmp(l, "name ", 5) ) break; + if ( !strncmp(l,"catalogue-license ", 18) ) { + pkg[p-1].catalogue_license = get_token(l+18, license); + if ( pkg[p-1].catalogue_license & LIC_PROBLEMATIC ) printf("L: %s - %s\n", pkg[p-1].name, put_token(pkg[p-1].catalogue_license, spec_license)); + break; + } + } + pos = opos; + } + continue; + } + if ( !strncmp(l,"category ", 9) ) { + pkg[p-1].category = get_token(l+9, category); + continue; + } + if ( !strncmp(l,"shortdesc ", 10) ) { + size_t len; + pkg[p-1].shortdesc = l+10; + len = strlen(pkg[p-1].shortdesc); + if ( pkg[p-1].shortdesc[len-1] == '.' ) pkg[p-1].shortdesc[len-1] = '\0'; + continue; + } + if ( !strncmp(l,"longdesc ", 9) ) { + pkg[p-1].longdesc = realloc(pkg[p-1].longdesc, (pkg[p-1].longdesc_lines+1)*sizeof(char *)); + pkg[p-1].longdesc[pkg[p-1].longdesc_lines] = l+9; + pkg[p-1].longdesc_lines++; + continue; + } + if ( !strncmp(l,"docfiles ", 9) ) { + filetype = FT_DOC; + continue; + } + if ( !strncmp(l,"relocated 1", 11) ) { + pkg[p-1].reloc = 1; + continue; + } + if ( !strncmp(l,"runfiles ", 9) ) { + filetype = FT_RUN; + continue; + } + if ( !strncmp(l,"srcfiles ", 9) ) { + filetype = FT_SRC; + continue; + } + if ( !strncmp(l,"binfiles ", 9) ) { + filetype = FT_BIN; + continue; + } + if ( !strncmp(l,"depend ", 7) ) { + pkg[p-1].dep = realloc(pkg[p-1].dep, (pkg[p-1].reqs+1)*sizeof(char *)); + pkg[p-1].req = realloc(pkg[p-1].req, (pkg[p-1].reqs+1)*sizeof(package *)); + pkg[p-1].dep[pkg[p-1].reqs] = l+7; + pkg[p-1].req[pkg[p-1].reqs] = NULL; + pkg[p-1].reqs++; + continue; + } + if ( !strncmp(l,"execute ", 8) ) { + pkg[p-1].exe = realloc(pkg[p-1].exe, (pkg[p-1].exes+1)*sizeof(char *)); + pkg[p-1].exe[pkg[p-1].exes] = l+8; + pkg[p-1].exes++; + continue; + } + if ( !strncmp(l,"catalogue-ctan ", 15) ) { + pkg[p-1].catalogue_ctan = l+15; + continue; + } + if ( !strncmp(l,"catalogue-license ", 18) ) { + pkg[p-1].catalogue_license = get_token(l+18, license); + { + int n; + for (n=0; fedora_license[n]; n+=2) { + if (!strcmp(fedora_license[n], pkg[p-1].name)) { + pkg[p-1].fedora_license = fedora_license[n+1]; + break; + } + } + } + continue; + } + if ( !strncmp(l,"catalogue-date ", 15) ) { + pkg[p-1].catalogue_date = l+15; + continue; + } + if ( !strncmp(l,"catalogue-version ", 18) ) { + pkg[p-1].catalogue_version = l+18; + /* substitute unallowed '/', '-', ' ', '~' characters with '_' */ + { + char *v; + for ( v=pkg[p-1].catalogue_version; *v; v++ ) { + if ( *v == '/' || *v == '-' || *v == ' ' || *v == '~' || *v == ',' || *v == '(' || *v == ')') *v = '_'; + } + } + continue; + } + if ( !strncmp(l,"revision ", 9) ) { + pkg[p-1].revision = l+9; + continue; + } + if ( !strncmp(l,"containersize ", 14) || + !strncmp(l,"containermd5 ", 13) || + !strncmp(l,"doccontainersize ", 17) || + !strncmp(l,"doccontainermd5 ", 16) || + !strncmp(l,"srccontainersize ", 17) || + !strncmp(l,"srccontainermd5 ", 16) || + !strncmp(l,"catalogue ", 10) || + !strncmp(l,"postaction ", 11) + ) { + continue; + } + fprintf(stderr, "unknown token: '%s'\n", l); + } +} + +package **inst; +int installed, srcno=100, mainsrcno = 7000, mainpkg; +FILE *fpack, *ffile, *funpack, *fsrc, *fremove, *ffont; + +char *cnf_files[] = { + "texmf-dist/web2c/fmtutil.cnf", + "texmf-dist/web2c/updmap.cfg", + "texmf-dist/web2c/texmf.cnf", + "texmf-dist/web2c/context.cnf", + "texmf-dist/web2c/mktex.cnf", + "texmf-dist/dvips/config/config.ps", /* rhbz#441171 */ + "texmf-dist/tex/generic/config/language.dat", /* rhbz#929367 */ + NULL, +}; + +int main_written; +void append_filelist( char *pkg, char *pkgsuf, int files, char **filelist, char *pkglicense ) { + char pkgname[0x100]; + unsigned long pkghash; + int x, y, n, bin = 0; + char *binpos; + + strncpy(pkgname, pkg, sizeof(pkgname)); + if ( pkgsuf && *pkgsuf ) { + strcat(pkgname, "-"); + strcat(pkgname, pkgsuf); + } + + pkghash = hash(pkgname); + + if ( (binpos=strstr(pkgname, ".ARCH")) ) { + bin = 1; + *binpos = '\0'; + strcat(binpos, "-bin"); + } + if ( pkglicense && get_token(pkglicense, license) && !(get_token(pkglicense, license)&LIC_PROBLEMATIC) ) { + fprintf(ffile, "%%files %s\n%%defattr(-,root,root)\n%%doc %s.txt\n", mainpkg?(!main_written?"":pkgsuf):pkgname, pkglicense); + } else { + fprintf(ffile, "%%files %s\n%%defattr(-,root,root)\n", mainpkg?(!main_written?"":pkgsuf):pkgname); + } + if ( bin ) { + *binpos = '\0'; + strcat(binpos, ".ARCH"); + } + + for (y=0; y<dirs; y++) { + for (x=0; x<dir[y].pkgs; x++) { + if ( dir[y].pkghash[x] == pkghash && !strcmp(dir[y].pkg[x], pkgname) ) { + size_t bin_index = 0; + if ( bin ) bin_index = 5+strlen(arch); + if ( dir[y].pkgs == 1 ) { + if ( !bin ) { +#ifdef SHORTEN_FILELISTS + int found = 0; +#endif + for (n=0; n<dirs; n++) { + if ( y==n ) continue; + if ( !strncmp(dir[n].dir, dir[y].dir, strlen(dir[y].dir)) ) { +#ifdef SHORTEN_FILELISTS + found = 1; +#endif + break; + } + } +#ifdef SHORTEN_FILELISTS + if ( !found ) { + fprintf(ffile, "%%{_texdir}/%s/*\n", dir[y].dir); + for (n=0; n<files; n++) { /* stupid styles contain files like ".tex" which are not caught via "*" */ + char *name = strrchr(filelist[n], '/'); + if (name && name[1] == '.') { + fprintf(ffile, "%%{_texdir}/%s\n", filelist[n]); + } + } + continue; + } +#endif + } + } + for (n=0; n<files; n++) { + char *end = strrchr(filelist[n], '/'); + if (!end) end = filelist[n]; + if (end) { + char saved = *end; + *end = '\0'; + if ( !strcmp(dir[y].dir, filelist[n]) ) { + int i; + *end = saved; + if ( strstr(&filelist[n][bin_index], arch) ) continue; /* fool texlive.infra - don't install lzma/xz */ + if (strstr(&filelist[n][bin_index], "win32") || strstr(&filelist[n][bin_index], "mswin") || + strstr(&filelist[n][bin_index], "Win32") || strstr(&filelist[n][bin_index], "tlmgr") || + !strncmp(&filelist[n][bin_index], "texmf-dist/source/", 18) || + strstr(&filelist[n][bin_index], ".swf")) { + fprintf(fremove, "rm -f %%{buildroot}/%s/%s\n", bin?"%{_bindir}":"%{_texdir}", &filelist[n][bin_index]); + printf("*** %s\n", &filelist[n][bin_index]); + goto next; + } + for (i=0; rem[i]; i++) { + if (!strncmp(&filelist[n][bin_index], rem[i], strlen(rem[i]))) { + fprintf(fremove, "rm -f %%{buildroot}/%s/%s\n", bin?"%{_bindir}":"%{_texdir}", &filelist[n][bin_index]); + printf("*** %s\n", &filelist[n][bin_index]); + goto next; + } + } + if (!strncmp(&filelist[n][bin_index], "texmf-dist/doc/man/man", 22)) { /* relocate man pages to correct paths */ + size_t sz = strlen(&filelist[n][bin_index]); + char *man = &filelist[n][bin_index]; + if (man[sz-1] >= '0' && man[sz-1] <= '9') { + fprintf(ffile, "%%{_mandir}/%s*\n", &filelist[n][bin_index+19]); + } + goto next; + } + if (!strncmp(&filelist[n][bin_index], "texmf-dist/doc/info", 19)) { /* relocate path for info files, ignore all other files such as 'dir' */ + if (!strncmp(&filelist[n][strlen(filelist[n])-5], ".info", 5)) { + fprintf(ffile, "%%{_infodir}/%s*\n", &filelist[n][bin_index+20]); + } + goto next; + } + if (!strcmp(&filelist[n][bin_index], "texmf-dist/web2c/updmap.cfg")) { + fprintf(fremove, "\n# disable all Maps/MixedMaps we add them by scriptlets\n"); + fprintf(fremove, "sed -i '/^M/d' %%{buildroot}%%{_texdir}/texmf-dist/web2c/updmap.cfg\n"); + } else + if (!strcmp(&filelist[n][bin_index], "texmf-dist/web2c/fmtutil.cnf")) { + fprintf(fremove, "\n# disable all formats\n"); + fprintf(fremove, "sed -i '/^[a-z].*$/s/^/\\#\\!\\ /' %%{buildroot}%%{_texdir}/texmf-dist/web2c/fmtutil.cnf\n"); + } else + if (!strcmp(&filelist[n][bin_index], "texmf-dist/tex/generic/config/language.us")) { + fprintf(fremove, "\n# disable all hyphenations\n"); + fprintf(fremove, "cp -f %%{buildroot}%%{_texdir}/texmf-dist/tex/generic/config/language.us %%{buildroot}%%{_texdir}/texmf-dist/tex/generic/config/language.dat\n"); + } else + if (!strcmp(&filelist[n][bin_index], "texmf-dist/tex/generic/config/language.us.def")) { + fprintf(fremove, "\n# disable all hyphenations\n"); + fprintf(fremove, "cp -f %%{buildroot}%%{_texdir}/texmf-dist/tex/generic/config/language.us.def %%{buildroot}%%{_texdir}/texmf-dist/tex/generic/config/language.def\n"); + } + { /* add %config(noreplace) for config files */ + int i; + + for ( i=0; cnf_files[i]; i++ ) { + if ( !strcmp(&filelist[n][bin_index], cnf_files[i]) ) { + fprintf(ffile, "%%config(noreplace) "); + break; + } + } + } + fprintf(ffile, "%s/%s\n", bin?"%{_bindir}":"%{_texdir}", &filelist[n][bin_index]); + } +next: + *end = saved; + } + } + } + } + } + fprintf(ffile, "\n"); +} + +#if 0 + +static void provide_file(package *p, char *suf) { + int n; + for (n=0; n<p->runfs; n++) { + if ( !strncmp(&p->runf[n][strlen(p->runf[n])-strlen(suf)], suf, strlen(suf)) ) { + fprintf(fpack, "Provides: tex(%s) = %%{tl_version}\n", strrchr(p->runf[n], '/')+1); + } + } +} + +static void fill_provide_file(package *p, char *suf) { + int n; + for (n=0; n<p->runfs; n++) { + if ( !strncmp(&p->runf[n][strlen(p->runf[n])-strlen(suf)], suf, strlen(suf)) ) { + fprintf(fpack, "Provides: tex(%s) = %%{tl_version}\n", strrchr(p->runf[n], '/')+1); + } + } +} + +#endif + +static void fill_file_reqprov() { + int i, j, n, k; + char ss[0x100]; + char *se; + char *sufs[] = { ".tfm", ".ttf", ".ttc", ".pfa", ".pfb", ".pcf", + ".otf", ".tex", ".cnf", ".cfg", ".def", ".dat", + ".ldf", ".fd", ".enc", ".map", ".vf", ".vpl", + ".clo", ".bug", ".bg2", ".cbx", ".bbx", ".cls", + ".sty", NULL }; + + for (i=0; i<p; i++) { + for (n=0; n<pkg[i].runfs; n++) { + for (k=0; sufs[k]; k++) { + if (!strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-strlen(sufs[k])], sufs[k], strlen(sufs[k]))) { + pkg[i].file_prov = realloc(pkg[i].file_prov, (pkg[i].file_provs+1)*sizeof(char *)); + pkg[i].file_prov[pkg[i].file_provs] = strdup(strrchr(pkg[i].runf[n], '/')+1); + pkg[i].file_provs++; + } + } + + if ( !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".sty", 4) || + !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".cls", 4) || + !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".ldf", 4) || + !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".bbx", 4) || + !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".cbx", 4) || + !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".bug", 4) || + !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".bg2", 4) || + !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".clo", 4) + ) { + char fl[0x100] = "texlive.expanded/"; + FILE *f; + char *m, *s; + off_t size; + + strcat(fl, pkg[i].runf[n]); + if ( !(f=fopen(fl,"rt")) ) { + printf("file missing: %s\n", pkg[i].runf[n]); + exit(1); + } + fseek(f, 0, SEEK_END); + size = ftell(f); + fseek(f, 0, SEEK_SET); + m = malloc(size+1); + fread(m, size, 1, f); + fclose(f); + m[size] = '\0'; + + if ( !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".bbx", 4) ) { + for ( s=m; (s=strstr(s,"\\RequireBibliographyStyle{")); ) { + s += 26; + se = strchr(s, '}'); + *se = '\0'; + strcpy(ss, s); + strcat(ss, ".bbx"); + for (k=0; k<pkg[i].file_reqs; k++) { + if (!strcmp(pkg[i].file_req[k], ss)) goto next_bbx; + } + pkg[i].file_req = realloc(pkg[i].file_req, (pkg[i].file_reqs+1)*sizeof(char *)); + pkg[i].file_req[pkg[i].file_reqs] = strdup(ss); + pkg[i].file_reqs++; +next_bbx: + *se = '}'; + } + goto skip; + } + + if ( !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-4], ".cbx", 4) ) { + for ( s=m; (s=strstr(s,"\\RequireCitationStyle{")); ) { + s += 22; + se = strchr(s, '}'); + *se = '\0'; + strcpy(ss, s); + strcat(ss, ".cbx"); + for (k=0; k<pkg[i].file_reqs; k++) { + if (!strcmp(pkg[i].file_req[k], ss)) goto next_cbx; + } + pkg[i].file_req = realloc(pkg[i].file_req, (pkg[i].file_reqs+1)*sizeof(char *)); + pkg[i].file_req[pkg[i].file_reqs] = strdup(ss); + pkg[i].file_reqs++; +next_cbx: + *se = '}'; + } + goto skip; + } + + for ( s=strstr(m, "\\ProvidesPackage"); s; s=strstr(s, "\\ProvidesPackage") ) { + char *os = s+16; + char dep[0x100], *d; + dep[0] = '\0'; + for (; s>=m; s--) { + if (*s == '\n') break; + } + while (*s == ' ' || *s == '\t' || *s == '\n' || *s == '\r') s++; + if ( *s == '%' ) goto nextprov; + s = os; + skipspace(&s); + if ( *s == '[' ) { + s++; + while (*s != ']') if (*s == '%') skipspace(&s); else s++; + s++; + skipspace(&s); + } + if ( *s != '{' ) goto nextprov; + s++; + for ( d=dep, os=s; ; s++ ) { + if ( *s == ' ' || *s == '\t' || *s == '\n' || *s == '\r' ) continue; + if ( (*s >= 'a' && *s <= 'z') || (*s >= 'A' && *s <= 'Z') || (*s >= '0' && *s <= '9') || *s == '-' ) { + *d = *s; + d++; + continue; + } + if ( *s == '%') { + skipspace(&s); + s--; + continue; + } + if ( *s == ',' || *s == '}' ) { + *d = '\0'; + strcpy(ss, dep); + strcat(ss, ".sty"); + + for (k=0; k<pkg[i].file_provs; k++) { + if (!strcmp(ss, pkg[i].file_prov[k])) goto nextprov; + } + + if ( *dep ) { + pkg[i].file_prov = realloc(pkg[i].file_prov, (pkg[i].file_provs+1)*sizeof(char *)); + pkg[i].file_prov[pkg[i].file_provs] = strdup(ss); + pkg[i].file_provs++; + } + + if ( *s == '}' ) break; + d = dep; + continue; + } + goto nextprov; + } +nextprov: + s = os; + } + + for ( s=strstr(m, "\\RequirePackage"); s; s=strstr(s, "\\RequirePackage") ) { + char *os = s+15; + char dep[0x100], *d; + for (; s>=m; s--) { + if (*s == '\n') break; + } + while (*s == ' ' || *s == '\t' || *s == '\n' || *s == '\r') s++; + if ( *s == '%' ) goto nextreq; + s = os; + if (!strncmp(s, "WithOptions", 11)) s+=11; + skipspace(&s); + if ( *s == '[' ) { + s++; + while (*s != ']') if (*s == '%') skipspace(&s); else s++; + s++; + skipspace(&s); + } + if ( *s != '{' ) goto nextreq; + s++; + for ( d=dep, os=s; ; s++ ) { + if ( *s == ' ' || *s == '\t' || *s == '\n' || *s == '\r' ) continue; + if ( (*s >= 'a' && *s <= 'z') || (*s >= 'A' && *s <= 'Z') || (*s >= '0' && *s <= '9') || *s == '-' ) { + *d = *s; + d++; + continue; + } + if ( *s == '%') { + skipspace(&s); + s--; + continue; + } + if ( *s == ',' || *s == '}' ) { + *d = '\0'; + strcpy(ss, dep); + strcat(ss, ".sty"); + + for (k=0; k<pkg[i].file_reqs; k++) { + if (!strcmp(ss, pkg[i].file_req[k])) goto nextreq; + } + + for (k=0; k<pkg[i].file_provs; k++) { + if (!strcmp(ss, pkg[i].file_prov[k])) goto nextreq; + } + + if ( *dep ) { + pkg[i].file_req = realloc(pkg[i].file_req, (pkg[i].file_reqs+1)*sizeof(char *)); + pkg[i].file_req[pkg[i].file_reqs] = strdup(ss); + pkg[i].file_reqs++; + } + + if ( *s == '}' ) break; + d = dep; + continue; + } + goto nextreq; + } +nextreq: + s = os; + } + + for ( s=strstr(m, "\\input"); s; s=strstr(s, "\\input") ) { + char *os = s+6; + char dep[0x100], *d; + int has_space = 0; + for (s--; s>=m; s--) { + if (*s == '\n') break; + if (*s != ' ' || *s != '\t') goto nextinput; + } + s++; + while (*s == ' ' || *s == '\t') s++; + if ( *s == '%' ) goto nextinput; + s = os; + if (*s == ' ' || *s == '\t') { + has_space = 1; + while (*s == ' ' || *s == '\t') s++; + } + if (*s == '{') { + has_space = 1; + s++; + while (*s == ' ' || *s == '\t') s++; + } + if ( !has_space ) goto nextinput; + for (d=dep; (*s >= 'a' && *s <= 'z') || (*s >= 'A' && *s <= 'Z') || (*s >= '0' && *s <= '9') || *s == '-' || *s == '.'; s++) { + *d = *s; + d++; + } + if ( d == dep ) goto nextinput; + while (*s == ' ' || *s == '\t') s++; + if ( *s == '}' || *s == '%' || *s == '\n' || *s == '\r') { + int x; + size_t sz; + *d = '\0'; + if (!strchr(dep, '.')) strcat(dep, ".tex"); + sz = strlen(dep); + for ( x=0; x<pkg[i].runfs; x++ ) { + if ( !strcmp(&pkg[i].runf[x][strlen(pkg[i].runf[x])-sz], dep) && pkg[i].runf[x][strlen(pkg[i].runf[x])-sz-1] == '/' ) { + goto nextinput; + } + } + pkg[i].file_req = realloc(pkg[i].file_req, (pkg[i].file_reqs+1)*sizeof(char *)); + pkg[i].file_req[pkg[i].file_reqs] = strdup(dep); + pkg[i].file_reqs++; + } +nextinput: + s = os; + } +skip: + free(m); + } + } + /* Do not require self-provided files */ + for (k=0; k<pkg[i].file_reqs; k++) { + for (n=0; n<pkg[i].file_provs; n++) { + if (!strcmp(pkg[i].file_prov[n], pkg[i].file_req[k])) { + memmove(&pkg[i].file_req[k], &pkg[i].file_req[k+1], (pkg[i].file_reqs-k-1)*sizeof(char*)); + pkg[i].file_reqs--; + break; + } + } + } + } + + for (i=0; i<p; i++) { + for (n=0; n<pkg[i].file_reqs; n++) { + int found = 0; + for (k=0; k<p; k++) { + for (j=0; j<pkg[k].file_provs; j++) { + if ( !strcmp(pkg[k].file_prov[j], pkg[i].file_req[n]) ) { + found = 1; + break; + } + } + if (found) break; + } + if (!found) { + fprintf(stderr, "Nothing provides: %s required by %s\n", pkg[i].file_req[n], pkg[i].name); + memmove(&pkg[i].file_req[n], &pkg[i].file_req[n+1], (pkg[i].file_reqs-n-1)*sizeof(char*)); + pkg[i].file_reqs--; + n--; + } + } + } +} + +static char *print_noarch_version( package *p ) { + static char noarchver[0x100]; + + if ( p->catalogue_version ) { + snprintf(noarchver, sizeof(noarchver), "svn%s.%s", p->revision, p->catalogue_version ); + } else { + snprintf(noarchver, sizeof(noarchver), "svn%s.0", p->revision); + } + + return noarchver; +} + +static char *skipspaces( char *s ) { + while ( isblank(*s) ) s++; + + return s; +} + +int level; +void solve(char *name) { + unsigned long h; + int i, found = 0, doc_expanded = 0; +#ifdef SRPMS + FILE *ofpack = NULL, *offile = NULL, *ofunpack = NULL, *ofsrc = NULL, *ofremove = NULL, *offont = NULL; +#endif + h = hash(name); + + if ( !fpack ) { + fpack = fopen("_packages.spec", "wt"); + } + if ( !ffile ) { + ffile = fopen("_files.spec", "wt"); + } + if ( !funpack ) { + funpack = fopen("_unpack.spec", "wt"); + } + if ( !fsrc ) { + fsrc = fopen("_sources.spec", "wt"); + } + if ( !fremove ) { + fremove = fopen("_remove.spec", "wt"); + } + if ( !ffont ) { + ffont = fopen("_font.spec", "wt"); + } + + for (i=0; i<installed; i++) { + if ( inst[i]->namehash == h && !strcmp(inst[i]->name, name) ) { + return; + } + } + + for (i=0; i<level; i++) printf("\t"); + printf("%s\n", name); + + for (i=0; i<p; i++) { + if ( pkg[i].namehash == h && !strcmp(pkg[i].name, name)) { + int n, has_noarch_pkg = 0; + if ( pkg[i].catalogue_license & LIC_NOTALLOWED ) { + printf("Bad license: %s\n", pkg[i].name); + continue; + } + if ( pkg[i].srcfs && !(pkg[i].runfs || pkg[i].docfs || pkg[i].exes || pkg[i].reqs) ) { + printf("onlysrc: %s\n", name); + continue; + } + level++; + inst = realloc(inst, (installed+1)*sizeof(package*)); + inst[installed++] = &pkg[i]; + + if ( pkg[i].exes ) { + for (n=0; n<pkg[i].exes; n++) { + int m; + for (m=0; m<level; m++) printf("\t"); + printf("> %s\n", pkg[i].exe[n]); + } + } + if ( pkg[i].binfs ) { + char s[0x100], *pp; + unsigned long hh; + strcpy(s, name); + pp = strstr(s, ".ARCH"); + *pp = 0; + hh = hash(s); + for (n=0; n<p; n++) { + if ( pkg[n].namehash == hh && !strcmp(pkg[n].name, s)) { + has_noarch_pkg = pkg[n].main_pkg_written; + break; + } + } + if ( has_noarch_pkg && pkg[n].catalogue_license & LIC_NOTALLOWED ) { + printf("Bad license: %s\n", pkg[n].name); + continue; + } + fprintf(fsrc, "Source%04d: "CTAN_URL"%s.%s.tar."UNPACK"\n", mainsrcno, s, arch); + fprintf(funpack, UNPACK" -dc %%{SOURCE%d} | tar x -C %%{buildroot}\n", mainsrcno); + mainsrcno++; + } + /* is it collection or scheme? then don't create a separate package for it and put it to main one */ + if ( !strncmp(name, "collection-", 11) || !strncmp(name, "scheme-", 7) ) { + pkg[i].any_pkg_written = 1; + fprintf(funpack, UNPACK" -dc %%{SOURCE%d} | tar x -C %%{buildroot}%%{_texdir}%s\n", mainsrcno, pkg[i].reloc?"/texmf-dist":""); + fprintf(fpack, "%%package %s\n", name); + if ( pkg[i].shortdesc ) { + fprintf(fpack, "Summary: %s\n", pkg[i].shortdesc); + } else { + fprintf(fpack, "Summary: %s package\n", name); + } + fprintf(fpack, "Version: %s\n", print_noarch_version(&pkg[i])); + fprintf(fpack, "Release: %%{tl_release}\n"); + fprintf(fpack, "BuildArch: noarch\n"); + fprintf(fsrc, "Source%04d: "CTAN_URL"%s.tar."UNPACK"\n", mainsrcno++, name); + fprintf(fpack, "Requires: texlive-base\n"); + for (n=0; n<pkg[i].reqs; n++) { + if ( pkg[i].req[n] ) { + if ( pkg[i].req[n]->catalogue_license & LIC_NOTALLOWED ) { + continue; + } + if ( pkg[i].req[n]->reqs || pkg[i].req[n]->runfs || pkg[i].req[n]->exes ) { + if (strncmp(pkg[i].dep[n], "collection-", 11)) { + fprintf(fpack, "Requires: tex-%s\n", pkg[i].dep[n]); + } else { + fprintf(fpack, "Requires: texlive-%s\n", pkg[i].dep[n]); + } + continue; + } +#ifdef PACKAGE_DOCS + if ( pkg[i].req[n]->docfs ) { + fprintf(fpack, "Requires: texlive-%s-doc\n", pkg[i].dep[n]); + continue; + } +#endif +#ifdef PACKAGE_SOURCE + if ( pkg[i].req[n]->srcfs ) { + fprintf(fpack, "Requires: texlive-%s-source\n", pkg[i].dep[n]); + continue; + } +#endif + if ( pkg[i].req[n]->binfs ) { + size_t spost = strlen(pkg[i].dep[n])-5; + if (strcmp(&pkg[i].dep[n][spost], ".ARCH")) { + printf("Doesn't have .ARCH suffix!\n"); + exit(1); + } + pkg[i].dep[n][spost] = '\0'; + fprintf(fpack, "Requires: texlive-%s-bin\n", pkg[i].dep[n]); + pkg[i].dep[n][spost] = '.'; + continue; + } + } + } + /* write virtual provides */ + if ( !strncmp(name, "collection-", 11) ) { + if (!strcmp(name+11, "latexrecommended")) { + fprintf(fpack, "Provides: tex(latex) = %%{tl_version}, texlive-latex = %%{tl_version}\n"); + fprintf(fpack, "Requires: texlive-collection-fontsrecommended\n"); + } else if (!strcmp(name+11, "latex")) { + fprintf(fpack, "Provides: tex(latex-base) = %%{tl_version}\n"); + } else if (!strcmp(name+11, "basic")) { + fprintf(fpack, "Provides: tex(tex) = %%{tl_version}, tex = %%{tl_version}\n"); + fprintf(fpack, "Requires: dvipdfmx, xdvik\n"); + } else if (!strcmp(name+11, "langcjk")) { + fprintf(fpack, "Provides: tex(japanese) = %%{tl_version}\n"); + fprintf(fpack, "Provides: tex(east-asian) = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-east-asian < %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-texmf-east-asian < %%{tl_version}\n"); + } else if (!strcmp(name+11, "documentation-base")) { + fprintf(fpack, "Provides: texlive-texmf-doc = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-texmf-doc < %%{tl_version}\n"); + } else if (!strcmp(name+11, "fontsrecommended")) { + fprintf(fpack, "Provides: tetex-fonts = 3.1-99\n"); + fprintf(fpack, "Obsoletes: tetex-fonts < 3.1-99\n"); + fprintf(fpack, "Provides: texlive-texmf-fonts = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-texmf-fonts < %%{tl_version}\n"); + } else if (!strcmp(name+11, "binextra")) { + fprintf(fpack, "Obsoletes: texlive-utils < %%{tl_version}\n"); + fprintf(fpack, "Requires: dvipng\n"); + } else if (!strcmp(name+11, "xetex")) { + fprintf(fpack, "Provides: tex(xetex) = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-texmf-xetex < %%{tl_version}\n"); + } else if (!strcmp(name+11, "fontutils")) { + fprintf(fpack, "Requires: t1utils, psutils, lcdf-typetools\n"); + } + + } + if ( !strcmp(name, "scheme-tetex") ) { + fprintf(fpack, "Provides: tetex = 3.1-99\n"); + fprintf(fpack, "Obsoletes: tetex < 3.1-99\n"); + fprintf(fpack, "Obsoletes: texlive-dviutils < %%{tl_version}\n"); + } + if ( !strcmp(name, "scheme-context") ) { + fprintf(fpack, "Provides: tex(context) = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-texmf-context < %%{tl_version}\n"); + } + if ( !strcmp(name, "ps2pk") ) { + fprintf(fpack, "Provides: texlive-ps2pkm = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-ps2pkm < %%{tl_version}\n"); + } + if ( !strcmp(name, "ps2pk-bin") ) { + fprintf(fpack, "Provides: texlive-ps2pkm-bin%%{_isa} = %%{tl_version}\n"); + fprintf(fpack, "Provides: texlive-ps2pkm-bin = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-ps2pkm-bin < %%{tl_version}\n"); + } + + /* description */ + fprintf(fpack, "\n%%description %s\n", name); + for (n=0; n<pkg[i].longdesc_lines; n++) { + fprintf(fpack, "%s\n", pkg[i].longdesc[n]); + } + if ( !pkg[i].longdesc_lines ) fprintf(fpack, "%s package\n", name); + if ( pkg[i].catalogue_date ) fprintf(fpack, "\ndate: %s\n", pkg[i].catalogue_date); + fprintf(fpack, "\n"); + fprintf(ffile, "%%files %s\n%%defattr(-,root,root)\n\n", name); + goto slv; + } +#ifdef SRPMS + if ( !pkg[i].binfs ) { + char path[0x100]; + char p[0x100]; + + ofpack = fpack; + offile = ffile; + ofunpack = funpack; + ofsrc = fsrc; + ofremove = fremove; + offont = ffont; + + snprintf(path, sizeof(path), "specs/tex-%s", name); + mkdir(path, 0775); + snprintf(p, sizeof(p), "%s/_packages.spec", path); + fpack = fopen(p, "wt"); + snprintf(p, sizeof(p), "%s/_files.spec", path); + ffile = fopen(p, "wt"); + snprintf(p, sizeof(p), "%s/_unpack.spec", path); + funpack = fopen(p, "wt"); + snprintf(p, sizeof(p), "%s/_sources.spec", path); + fsrc = fopen(p, "wt"); + snprintf(p, sizeof(p), "%s/_remove.spec", path); + fremove = fopen(p, "wt"); + snprintf(p, sizeof(p), "%s/_font.spec", path); + ffont = fopen(p, "wt"); + snprintf(p, sizeof(p), "%s/_main.spec", path); + symlink("../../_main_subpackage.spec", p); + + srcno = 0; + } + if ( pkg[i].catalogue_license ) fprintf(funpack, "ln -s %%{_texdir}/licenses/%s.txt %s.txt\n", put_token(pkg[i].catalogue_license, license), put_token(pkg[i].catalogue_license, license)); +#endif + /* write main packages */ + if ( pkg[i].runfs || pkg[i].reqs || pkg[i].exes ) { + pkg[i].main_pkg_written = pkg[i].any_pkg_written = 1; + fprintf(funpack, UNPACK" -dc %%{SOURCE%d} | tar x -C %%{buildroot}%%{_texdir}%s\n", srcno, pkg[i].reloc?"/texmf-dist":""); +#ifndef SRPMS + fprintf(fpack, "%%package %s\n", name); + fprintf(fpack, "Provides: tex-%s = %%{tl_version}\n", name); +#else + fprintf(fpack, "Name: tex-%s\n", name); + fprintf(fpack, "Obsoletes: texlive-%s texlive-%s-doc texlive-%s-fedora-fonts\n", name, name, name); +#endif + fprintf(fpack, "License: %s\n", pkg[i].fedora_license?pkg[i].fedora_license:(put_token(pkg[i].catalogue_license, spec_license)?put_token(pkg[i].catalogue_license, spec_license):"LPPL")); + if ( pkg[i].shortdesc ) { + fprintf(fpack, "Summary: %s\n", pkg[i].shortdesc); + } else { + fprintf(fpack, "Summary: %s package\n", name); + } + fprintf(fpack, "Version: %s\n", print_noarch_version(&pkg[i])); + fprintf(fpack, "Release: %%{tl_noarch_release}\n"); + fprintf(fpack, "BuildArch: noarch\n"); + if (!strcmp(name,"pdfcrop")) { + fprintf(fpack, "AutoReqProv: No\n"); + } + fprintf(fsrc, "Source%04d: "CTAN_URL"%s.tar."UNPACK"\n", srcno++, name); + if ( pkg[i].has_man || pkg[i].has_info ) { + char nm[0x100]; + FILE *f; + snprintf(nm, sizeof(nm), "texlive/archive/%s.doc.tar."UNPACK, name); + f = fopen(nm, "rb"); + if ( f ) { + fprintf(funpack, UNPACK" -dc %%{SOURCE%d} | tar x -C %%{buildroot}%%{_texdir}%s\n", srcno, pkg[i].reloc?"/texmf-dist":""); + fprintf(fsrc, "Source%04d: "CTAN_URL"%s.doc.tar."UNPACK"\n", srcno++, name); + doc_expanded = 1; + fclose(f); + } + } + + if ( strncmp(name, "kpathsea", 8) ) { + fprintf(fpack, "Requires: texlive-base\n"); + } else { + fprintf(fpack, "Provides: kpathsea = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: kpathsea < %%{tl_version}\n"); + fprintf(funpack, "\n# add reference to support old texmf tree\n" + "sed -i 's|TEXMFLOCAL = $SELFAUTOPARENT/../texmf-local|TEXMFLOCAL = $SELFAUTOPARENT/../texmf|g' %%{buildroot}%%{_texdir}/texmf-dist/web2c/texmf.cnf\n\n"); + } + if ( !strncmp(name, "asana-math", 10) ) { + fprintf(fpack, "Provides: texlive-Asana-Math = %%{tl_version}.1\n"); + fprintf(fpack, "Obsoletes: texlive-Asana-Math < %%{tl_version}.1\n"); + fprintf(fpack, "Obsoletes: texlive-Asana-Math-fedora-fonts < %%{tl_version}.1\n"); + } + if ( !strncmp(name, "lineara", 10) ) { + fprintf(fpack, "Provides: texlive-linearA = %%{tl_version}.1\n"); + fprintf(fpack, "Obsoletes: texlive-linearA < %%{tl_version}.1\n"); + fprintf(fpack, "Obsoletes: texlive-linearA-fedora-fonts < %%{tl_version}.1\n"); + } + if ( !strncmp(name, "minted", 6) ) { + fprintf(fpack, "Requires: python-pygments\n"); + } +/* if ( !strncmp(name, "asymptote", 9) ) { + fprintf(fpack, "Provides: asymptote = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: asymptote < %%{tl_version}\n"); + }*/ + if ( !strncmp(name, "jadetex", 7) ) { + fprintf(fpack, "Provides: jadetex = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: jadetex < %%{tl_version}\n"); + } + fprintf(fpack, REQ_POSTTRANS"texlive-kpathsea-bin, tex-kpathsea\n"); + if ( pkg[i].exes ) { + fprintf(fpack, REQ_POSTTRANS"texlive-tetex-bin, tex-tetex\n"); + fprintf(fpack, REQ_POST_POSTUN"texlive-tetex-bin, tex-tetex, tex-hyphen-base, texlive-base, texlive-texlive.infra\n"); + } + /* require coreutils if there is %post scriptlet present */ + if ( pkg[i].exes || pkg[i].runfs ) fprintf(fpack, REQ_POST_POSTUN"coreutils\n"); +// if ( pkg[i].runfs ) fprintf(fpack, REQ_POST_POSTUN"texlive-kpathsea-bin, tex-kpathsea\n"); + if ( pkg[i].has_info ) fprintf(fpack, REQ_POST_POSTUN"/sbin/install-info\n"); + for (n=0; n<pkg[i].reqs; n++) { + if ( pkg[i].req[n] ) { + if ( pkg[i].req[n]->catalogue_license & LIC_NOTALLOWED ) { + continue; + } + if ( pkg[i].req[n]->reqs || pkg[i].req[n]->runfs || pkg[i].req[n]->exes ) { + fprintf(fpack, "Requires: tex-%s\n", pkg[i].dep[n]); + continue; + } +#ifdef PACKAGE_DOCS + if ( pkg[i].req[n]->docfs ) { + fprintf(fpack, "Requires: tex-%s-doc\n", pkg[i].dep[n]); + continue; + } +#endif +#ifdef PACKAGE_SOURCE + if ( pkg[i].req[n]->srcfs ) { + fprintf(fpack, "Requires: tex-%s-source\n", pkg[i].dep[n]); + continue; + } +#endif + if ( pkg[i].req[n]->binfs ) { + size_t spost = strlen(pkg[i].dep[n])-5; + if (strcmp(&pkg[i].dep[n][spost], ".ARCH")) { + printf("Doesn't have .ARCH suffix!\n"); + exit(1); + } + pkg[i].dep[n][spost] = '\0'; + fprintf(fpack, "Requires: texlive-%s-bin\n", pkg[i].dep[n]); + pkg[i].dep[n][spost] = '.'; + continue; + } + } + } + /* Ruby dependencies */ + for (n=0; n<pkg[i].runfs; n++) { + if ( !strncmp(&pkg[i].runf[n][strlen(pkg[i].runf[n])-3], ".rb", 3) + ) { + fprintf(fpack, "Requires: ruby\n"); + break; + } + } + /* Require needed files */ + for (n=0; n<pkg[i].file_reqs; n++) { + fprintf(fpack, "Requires: tex(%s)\n", pkg[i].file_req[n]); + } + /* Provide all important files */ + for (n=0; n<pkg[i].file_provs; n++) { + fprintf(fpack, "Provides: tex(%s) = %%{tl_version}\n", pkg[i].file_prov[n]); + } +#ifdef FEDORA_FONTS + /* check for fonts */ + for (n=0; n<pkg[i].runfs; n++) { + size_t s = strlen(pkg[i].runf[n]); + if (s > 4) { + if (!strcmp(&pkg[i].runf[n][s-4], ".ttf") || + !strcmp(&pkg[i].runf[n][s-4], ".ttc") || + !strcmp(&pkg[i].runf[n][s-4], ".pfa") || + !strcmp(&pkg[i].runf[n][s-4], ".pfb") || + !strcmp(&pkg[i].runf[n][s-4], ".pcf") || + !strcmp(&pkg[i].runf[n][s-4], ".otf") + ) { + fprintf(fpack, "Requires: tex-%s-fedora-fonts\n", name); + break; + } + } + } +#endif + /* write virtual provides */ + if ( !strcmp(name, "dvips") ) { + fprintf(fpack, "Provides: tex(dvips) = %%{tl_version}, tetex-dvips = 3.1-99, texlive-texmf-dvips = %%{tl_version}, texlive-dvips = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tetex-dvips < 3.1-99, texlive-texmf-dvips < %%{tl_version}\n"); + fprintf(fpack, "Requires: texlive-latex-fonts\n"); + } + if ( !strcmp(name, "tex4ht") ) { + fprintf(fpack, "Provides: tetex-tex4ht = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tetex-tex4ht < %%{tl_version}\n"); + } + if ( !strcmp(name, "latex") ) { + fprintf(fpack, "Provides: tetex-latex = 3.1-99, texlive-texmf-latex = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tetex-latex < 3.1-99, texlive-texmf-latex < %%{tl_version}\n"); + } + if ( !strcmp(name, "IEEEtran") ) { + fprintf(fpack, "Provides: tetex-IEEEtran = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tetex-IEEEtran < %%{tl_version}\n"); + } + if ( !strcmp(name, "bytefield") ) { + fprintf(fpack, "Provides: tetex-bytefield = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tetex-bytefield < %%{tl_version}\n"); + } + if ( !strcmp(name, "elsevier") ) { + fprintf(fpack, "Provides: tetex-elsevier = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tetex-elsevier < %%{tl_version}\n"); + } + if ( !strcmp(name, "perltex") ) { + fprintf(fpack, "Provides: tetex-perltex = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tetex-perltex < %%{tl_version}\n"); + } + if ( !strcmp(name, "prosper") ) { + fprintf(fpack, "Provides: tetex-prosper = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tetex-prosper < %%{tl_version}\n"); + } + if ( !strcmp(name, "texdoc") ) { + fprintf(fpack, "Provides: texlive-doc = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-doc < %%{tl_version}\n"); + } + if ( !strcmp(name, "pdfjam") ) { + fprintf(fpack, "Provides: pdfjam = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: pdfjam < %%{tl_version}\n"); + } + if ( !strcmp(name, "ptex") ) { + fprintf(fpack, "Provides: mendexk = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: mendexk < %%{tl_version}\n"); + } + if ( !strcmp(name, "japanese") ) { + fprintf(fpack, "Provides: texlive-east-asian = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-east-asian < %%{tl_version}\n"); + } + if ( !strcmp(name, "preview") ) { + fprintf(fpack, "Provides: tex-preview = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tex-preview < %%{tl_version}\n"); + } +/* if ( !strcmp(name, "latexmk") ) { // rhbz#868996 + fprintf(fpack, "Provides: latexmk = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: latexmk < %%{tl_version}\n"); + }*/ + if ( !strcmp(name, "chktex") ) { /* rhbz#864211 */ + fprintf(fpack, "Provides: chktex = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: chktex < %%{tl_version}\n"); + } + if ( !strcmp(name, "metauml") ) { /* rhbz#573863 */ + fprintf(fpack, "Provides: metapost-metauml = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: metapost-metauml < %%{tl_version}\n"); + } + if ( !strcmp(name, "cm-lgc") ) { /* rhbz#907728 */ + fprintf(fpack, "Obsoletes: tex-cm-lgc < %%{tl_version}\n"); + } + if ( !strcmp(name, "simplecv") ) { /* rhbz#907728 */ + fprintf(fpack, "Obsoletes: tex-simplecv < %%{tl_version}\n"); + } + if ( !strcmp(name, "kerkis") ) { /* rhbz#907728 */ + fprintf(fpack, "Obsoletes: tex-kerkis < %%{tl_version}\n"); + } + if ( !strcmp(name, "detex") ) { /* rhbz#913678 */ + fprintf(fpack, "Obsoletes: detex < %%{tl_version}\n"); + } + if ( !strcmp(name, "latexdiff") ) { /* rhbz#913678 */ + fprintf(fpack, "Obsoletes: latexdiff < %%{tl_version}\n"); + } + if ( !strcmp(name, "pdfjam") ) { /* rhbz#913678 */ + fprintf(fpack, "Obsoletes: pdfbook < %%{tl_version}1212\n"); + } + if ( !strcmp(name, "musixtex-fnts") ) { + fprintf(fpack, "Provides: ctan-musixtex-fonts = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: ctan-musixtex-fonts < %%{tl_version}\n"); + } + if ( !strcmp(name, "musixtex-doc") ) { + fprintf(fpack, "Provides: tex-musixtex-doc = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tex-musixtex-doc < %%{tl_version}\n"); + } + if ( !strcmp(name, "musixtex") ) { + fprintf(fpack, "Provides: tex-musixtex = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: tex-musixtex < %%{tl_version}\n"); + } + if ( !strcmp(name, "dvipdfmx") ) { /* rhbz#968358 */ + fprintf(fpack, "Provides: texlive-dvipdfm = 3:%%{tl_version}\n"); + fprintf(fpack, "Obsoletes: texlive-dvipdfm < 3:%%{tl_version}\n"); + } + /* description */ +#ifndef SRPMS + fprintf(fpack, "\n%%description %s\n", name); +#else + fprintf(fpack, "\n%%description\n"); +#endif + for (n=0; n<pkg[i].longdesc_lines; n++) { + fprintf(fpack, "%s\n", pkg[i].longdesc[n]); + } + if ( !pkg[i].longdesc_lines ) fprintf(fpack, "%s package\n", name); + if ( pkg[i].catalogue_date ) fprintf(fpack, "\ndate: %s\n", pkg[i].catalogue_date); + fprintf(fpack, "\n"); + /* preun/post/postun scriptlets */ + if ( pkg[i].has_info ) { + int k; +#ifndef SRPMS + fprintf(fpack, "%%preun %s\n", name); +#else + fprintf(fpack, "%%preun\n"); +#endif + fprintf(fpack, "if [ \"$1\" == \"0\" ]; then\n"); + for (k=0; k<pkg[i].runfs; k++) { + if (!strncmp(pkg[i].runf[k], "texmf-dist/doc/info/", 20)) { + fprintf(fpack, " /sbin/install-info --delete %%{_infodir}/%s %%{_infodir}/dir 2>/dev/null || :\n", &pkg[i].runf[k][20]); + } + } + fprintf(fpack, "fi\n\n"); + } + if ( pkg[i].exes ) { + int run_updmap, run_fmtutil; +#ifndef SRPMS + fprintf(fpack, "%%post %s\n", name); +#else + fprintf(fpack, "%%post\n"); +#endif + fprintf(fpack, "mkdir -p /var/run/texlive\ntouch /var/run/texlive/run-texhash\n"); + if ( pkg[i].has_info ) { + int k; + + for (k=0; k<pkg[i].runfs; k++) { + if (!strncmp(pkg[i].runf[k], "texmf-dist/doc/info/", 20)) { + fprintf(fpack, "/sbin/install-info %%{_infodir}/%s %%{_infodir}/dir 2>/dev/null\n", &pkg[i].runf[k][20]); + } + } + } + fprintf(fpack, "if [ $1 -gt 0 ] ; then\n"); + for (run_updmap=run_fmtutil=n=0; n<pkg[i].exes; n++) { + if ( !strncmp(pkg[i].exe[n], "addLuaMap ", 9) ) { + continue; + } + if ( !strncmp(pkg[i].exe[n], "addMap ", 7) ) { + fprintf(fpack, "%%{_bindir}/updmap-sys --quiet --nomkmap --enable Map=%s"REDIR, skipspaces(&pkg[i].exe[n][7])); + run_updmap = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "addMixedMap ", 12) ) { + fprintf(fpack, "%%{_bindir}/updmap-sys --quiet --nomkmap --enable MixedMap=%s"REDIR, skipspaces(&pkg[i].exe[n][12])); + run_updmap = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "addKanjiMap ", 12) ) { + fprintf(fpack, "%%{_bindir}/updmap-sys --quiet --nomkmap --enable KanjiMap=%s"REDIR, skipspaces(&pkg[i].exe[n][12])); + run_updmap = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "BuildFormat ", 12) ) { + fprintf(fpack, "%%{_bindir}/fmtutil-sys --enablefmt %s"REDIR, &pkg[i].exe[n][12]); + run_fmtutil = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "AddFormat ", 10) ) { + char *name = strstr(pkg[i].exe[n], "name="), + *engine = strstr(pkg[i].exe[n], "engine="), + *patterns = strstr(pkg[i].exe[n], "patterns="), + *options = strstr(pkg[i].exe[n], "options="); + char *opt, opt_char; + + if ( !name || !engine || !options ) { + fprintf(stderr, "Invalid AddFormat entry in package %s: '%s' '%s' '%s' '%s'.\n", pkg[i].name, name, engine, patterns, options); + exit(1); + } + name += 5; + engine += 7; + if ( patterns ) patterns += 9; + options += 8; + + *strchr(name, ' ') = '\0'; + *strchr(engine, ' ') = '\0'; + if ( patterns && strchr(patterns, ' ') ) *strchr(patterns, ' ') = '\0'; + if ( *options == '"' ) { + options++; + opt = strchr(options, '"'); + } else { + for (opt=options; *opt != ' ' && *opt != '\n'; opt++); + } + opt_char = *opt; + *opt = '\0'; + + fprintf(fpack, "sed -i 's/^\\#\\!\\ %s.*$/%s %s %s %s/' %%{_texdir}/texmf-dist/web2c/fmtutil.cnf\n", name, name, engine, patterns?patterns:"-", options); + + name[strlen(name)] = ' '; + engine[strlen(engine)] = ' '; + if ( patterns ) patterns[strlen(patterns)] = ' '; + *opt = opt_char; + + run_fmtutil = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "AddHyphen ", 10) ) { + char *name = strstr(pkg[i].exe[n], "name="), + *synonyms = strstr(pkg[i].exe[n], "synonyms="), + *lefthyphenmin = strstr(pkg[i].exe[n], "lefthyphenmin="), + *righthyphenmin = strstr(pkg[i].exe[n], "righthyphenmin="), + *file = strstr(pkg[i].exe[n], "file="); + int k; + + if ( !name || !lefthyphenmin || !righthyphenmin || !file ) { + fprintf(stderr, "Invalid AddHyphen entry in package %s.\n", pkg[i].name); + exit(1); + } + name += 5; + if ( synonyms ) synonyms += 9; + lefthyphenmin += 14; + righthyphenmin += 15; + file += 5; + for (k=10; pkg[i].exe[n][k]; k++) if ( pkg[i].exe[n][k] == ' ' ) pkg[i].exe[n][k] = '\0'; + + fprintf(fpack, "sed -i '/%s.*/d' %%{_texdir}/texmf-dist/tex/generic/config/language.dat\n", name); + fprintf(fpack, "echo \"%s %s\" >> %%{_texdir}/texmf-dist/tex/generic/config/language.dat\n", name, file); + if ( synonyms ) { + char *syn = synonyms, *s; + while ( (s=strchr(syn, ',')) ) { + *s = '\0'; + fprintf(fpack, "sed -i '/=%s/d' %%{_texdir}/texmf-dist/tex/generic/config/language.dat\n", syn); + fprintf(fpack, "echo \"=%s\" >> %%{_texdir}/texmf-dist/tex/generic/config/language.dat\n", syn); + *s = ','; + syn = s+1; + } + fprintf(fpack, "sed -i '/=%s/d' %%{_texdir}/texmf-dist/tex/generic/config/language.dat\n", syn); + fprintf(fpack, "echo \"=%s\" >> %%{_texdir}/texmf-dist/tex/generic/config/language.dat\n", syn); + } + fprintf(fpack, "sed -i '/\\\\addlanguage{%s}.*/d' %%{_texdir}/texmf-dist/tex/generic/config/language.def\n", name); + fprintf(fpack, "echo \"\\addlanguage{%s}{%s}{}{%s}{%s}\" >> %%{_texdir}/texmf-dist/tex/generic/config/language.def\n", name, file, lefthyphenmin, righthyphenmin); + if ( synonyms ) { + char *syn = synonyms, *s; + while ( (s=strchr(syn, ',')) ) { + *s = '\0'; + fprintf(fpack, "sed -i '/\\\\addlanguage{%s}.*/d' %%{_texdir}/texmf-dist/tex/generic/config/language.def\n", syn); + fprintf(fpack, "echo \"\\addlanguage{%s}{%s}{}{%s}{%s}\" >> %%{_texdir}/texmf-dist/tex/generic/config/language.def\n", syn, file, lefthyphenmin, righthyphenmin); + *s = ','; + syn = s+1; + } + fprintf(fpack, "sed -i '/\\\\addlanguage{%s}.*/d' %%{_texdir}/texmf-dist/tex/generic/config/language.def\n", syn); + fprintf(fpack, "echo \"\\addlanguage{%s}{%s}{}{%s}{%s}\" >> %%{_texdir}/texmf-dist/tex/generic/config/language.def\n", syn, file, lefthyphenmin, righthyphenmin); + } + for (--k; k>=10; k--) if ( pkg[i].exe[n][k] == '\0' ) pkg[i].exe[n][k] = ' '; + run_fmtutil = 1; + continue; + } + fprintf(stderr, "Unknown exec format: %s\n", pkg[i].exe[n]); + exit(1); + continue; + } + if ( run_updmap ) fprintf(fpack, "touch /var/run/texlive/run-updmap\n"); + if ( run_fmtutil ) fprintf(fpack, "touch /var/run/texlive/run-fmtutil\n"); + fprintf(fpack, "fi\n:\n"); +#ifndef SRPMS + fprintf(fpack, "\n%%postun %s\n", name); +#else + fprintf(fpack, "\n%%postun\n"); +#endif + fprintf(fpack, "if [ $1 == 0 ] ; then\n"); + for (run_updmap=n=0; n<pkg[i].exes; n++) { + if ( !strncmp(pkg[i].exe[n], "addLuaMap", 9) ) { + continue; + } + if ( !strncmp(pkg[i].exe[n], "addMap ", 7) ) { + fprintf(fpack, "%%{_bindir}/updmap-sys --nomkmap --disable Map=%s"REDIR, skipspaces(&pkg[i].exe[n][7])); + run_updmap = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "addMixedMap ", 12) ) { + fprintf(fpack, "%%{_bindir}/updmap-sys --nomkmap --disable MixedMap=%s"REDIR, skipspaces(&pkg[i].exe[n][12])); + run_updmap = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "addKanjiMap ", 12) ) { + fprintf(fpack, "%%{_bindir}/updmap-sys --nomkmap --disable KanjiMap=%s"REDIR, skipspaces(&pkg[i].exe[n][12])); + run_updmap = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "BuildFormat ", 12) ) { + fprintf(fpack, "%%{_bindir}/fmtutil-sys --disablefmt %s"REDIR, &pkg[i].exe[n][12]); + run_fmtutil = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "AddFormat ", 10) ) { + char *name = strstr(pkg[i].exe[n], "name="), + *engine = strstr(pkg[i].exe[n], "engine="), + *patterns = strstr(pkg[i].exe[n], "patterns="), + *options = strstr(pkg[i].exe[n], "options="); + char *opt, opt_char; + + if ( !name || !engine || !options ) { + fprintf(stderr, "Invalid AddFormat entry in package %s: '%s' '%s' '%s' '%s'.\n", pkg[i].name, name, engine, patterns, options); + exit(1); + } + name += 5; + engine += 7; + if ( patterns ) patterns += 9; + options += 8; + + *strchr(name, ' ') = '\0'; + *strchr(engine, ' ') = '\0'; + if ( patterns ) *strchr(patterns, ' ') = '\0'; + if ( *options == '"' ) { + options++; + opt = strchr(options, '"'); + } else { + for (opt=options; *opt != ' ' && *opt != '\n'; opt++); + } + opt_char = *opt; + *opt = '\0'; + + fprintf(fpack, "sed -i 's/^%s.*$/\\#\\!\\ %s %s %s %s/' %%{_texdir}/texmf-dist/web2c/fmtutil.cnf"REDIR, name, name, engine, patterns?patterns:"-", options); + + name[strlen(name)] = ' '; + engine[strlen(engine)] = ' '; + if ( patterns ) patterns[strlen(patterns)] = ' '; + *opt = opt_char; + + run_fmtutil = 1; + continue; + } + if ( !strncmp(pkg[i].exe[n], "AddHyphen ", 10) ) { + char *name = strstr(pkg[i].exe[n], "name="), + *synonyms = strstr(pkg[i].exe[n], "synonyms="), + *lefthyphenmin = strstr(pkg[i].exe[n], "lefthyphenmin="), + *righthyphenmin = strstr(pkg[i].exe[n], "righthyphenmin="), + *file = strstr(pkg[i].exe[n], "file="); + int k; + + if ( !name || !lefthyphenmin || !righthyphenmin || !file ) { + fprintf(stderr,"Invalid AddHyphen entry in package %s.\n", pkg[i].name); + exit(1); + } + name += 5; + if ( synonyms ) synonyms += 9; + lefthyphenmin += 14; + righthyphenmin += 15; + file += 5; + for (k=10; pkg[i].exe[n][k]; k++) if ( pkg[i].exe[n][k] == ' ' ) pkg[i].exe[n][k] = '\0'; + + fprintf(fpack, "sed -i '/%s.*/d' %%{_texdir}/texmf-dist/tex/generic/config/language.dat"REDIR, name); + if ( synonyms ) { + char *syn = synonyms, *s; + while ( (s=strchr(syn, ',')) ) { + *s = '\0'; + fprintf(fpack, " sed -i '/=%s/d' %%{_texdir}/texmf-dist/tex/generic/config/language.dat"REDIR, syn); + *s = ','; + syn = s+1; + } + fprintf(fpack, " sed -i '/=%s/d' %%{_texdir}/texmf-dist/tex/generic/config/language.dat"REDIR, syn); + } + fprintf(fpack, "sed -i '/\\\\addlanguage{%s}.*/d' %%{_texdir}/texmf-dist/tex/generic/config/language.def"REDIR, name); + if ( synonyms ) { + char *syn = synonyms, *s; + while ( (s=strchr(syn, ',')) ) { + *s = '\0'; + fprintf(fpack, "sed -i '/\\\\addlanguage{%s}.*/d' %%{_texdir}/texmf-dist/tex/generic/config/language.def"REDIR, syn); + *s = ','; + syn = s+1; + } + fprintf(fpack, "sed -i '/\\\\addlanguage{%s}.*/d' %%{_texdir}/texmf-dist/tex/generic/config/language.def"REDIR, syn); + } + for (--k; k>=10; k--) if ( pkg[i].exe[n][k] == '\0' ) pkg[i].exe[n][k] = ' '; + run_fmtutil = 1; + continue; + } + } + fprintf(fpack, "mkdir -p /var/run/texlive\ntouch /var/run/texlive/run-texhash\ntouch /var/run/texlive/run-mtxrun\n"); + if ( run_updmap ) fprintf(fpack, "touch /var/run/texlive/run-updmap\n"); + if ( run_fmtutil ) fprintf(fpack, "touch /var/run/texlive/run-fmtutil\n"); + fprintf(fpack, "fi\n:\n\n"); +#ifndef SRPMS + fprintf(fpack, "%%posttrans %s\n", name); +#else + fprintf(fpack, "%%posttrans\n"); +#endif + fprintf(fpack, "if [ -e /var/run/texlive/run-texhash ]; then %%{_bindir}/texhash 2> /dev/null; rm -f /var/run/texlive/run-texhash; fi\n"); + if ( run_updmap ) fprintf(fpack, "if [ -e /var/run/texlive/run-updmap ]; then %%{_bindir}/updmap-sys --quiet --nomkmap &> /dev/null;rm -f /var/run/texlive/run-updmap; fi\n"); + if ( run_fmtutil ) fprintf(fpack, "if [ -e /var/run/texlive/run-fmtutil ]; then %%{_bindir}/fmtutil-sys --all &> /dev/null; rm -f /var/run/texlive/run-fmtutil; fi\n"); + fprintf(fpack, "if [ -e /var/run/texlive/run-mtxrun ]; then export TEXMF=/usr/share/texlive/texmf-dist; export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; export TEXMFCACHE=/var/lib/texmf; %%{_bindir}/mtxrun --generate &> /dev/null; rm -f /var/run/texlive/run-mtxrun; fi\n"); + fprintf(fpack, ":\n\n"); + } else if ( pkg[i].runfs ) { +#ifndef SRPMS + fprintf(fpack, "%%post %s\n", name); +#else + fprintf(fpack, "%%post\n"); +#endif + fprintf(fpack, "mkdir -p /var/run/texlive\ntouch /var/run/texlive/run-texhash\ntouch /var/run/texlive/run-mtxrun\n"); + if ( pkg[i].has_info ) { + int k; + + for (k=0; k<pkg[i].runfs; k++) { + if (!strncmp(pkg[i].runf[k], "texmf-dist/doc/info/", 20)) { + fprintf(fpack, "/sbin/install-info %%{_infodir}/%s %%{_infodir}/dir 2>/dev/null\n", &pkg[i].runf[k][20]); + } + } + } + fprintf(fpack, ":\n"); +#ifndef SRPMS + fprintf(fpack, "\n%%postun %s\n", name); +#else + fprintf(fpack, "\n%%postun\n"); +#endif + fprintf(fpack, "if [ $1 == 1 ]; then\n mkdir -p /var/run/texlive\n touch /var/run/run-texhash\nelse\n %%{_bindir}/texhash 2> /dev/null\nfi\n"); + fprintf(fpack, ":\n\n"); +#ifndef SRPMS + fprintf(fpack, "%%posttrans %s\n", name); +#else + fprintf(fpack, "%%posttrans\n"); +#endif + fprintf(fpack, "if [ -e /var/run/texlive/run-texhash ] && [ -e %%{_bindir}/texhash ]; then %%{_bindir}/texhash 2> /dev/null; rm -f /var/run/texlive/run-texhash; fi\n"); + fprintf(fpack, "if [ -e /var/run/texlive/run-mtxrun ]; then export TEXMF=/usr/share/texlive/texmf-dist; export TEXMFCNF=/usr/share/texlive/texmf-dist/web2c; export TEXMFCACHE=/var/lib/texmf; %%{_bindir}/mtxrun --generate &> /dev/null; rm -f /var/run/texlive/run-mtxrun; fi\n"); + fprintf(fpack, ":\n\n"); + } + + /* ... and main files */ +#ifdef SRPMS + mainpkg = 1; +#endif + main_written = 0; + append_filelist(pkg[i].name, "", pkg[i].runfs, pkg[i].runf, pkg[i].fedora_license?pkg[i].fedora_license:put_token(pkg[i].catalogue_license, license)); +#ifdef SRPMS + mainpkg = 0; +#endif + } + main_written = pkg[i].runfs || pkg[i].reqs || pkg[i].exes; +#ifdef PACKAGE_DOCS + /* write doc package if exists */ + if ( pkg[i].docfs ) { + pkg[i].any_pkg_written = 1; + if ( !doc_expanded ) { + fprintf(funpack, UNPACK" -dc %%{SOURCE%d} | tar x -C %%{buildroot}%%{_texdir}%s\n", srcno, pkg[i].reloc?"/texmf-dist":""); + fprintf(fsrc, "Source%04d: "CTAN_URL"%s.doc.tar."UNPACK"\n", srcno++, name); + } + doc_expanded = 0; +#ifdef SRPMS + if ( !main_written ) { + fprintf(fpack, "Name: tex-%s-doc\n", name); + fprintf(fpack, "Obsoletes: texlive-%s-doc\n", name); + fprintf(fpack, "License: %s\n", pkg[i].fedora_license?pkg[i].fedora_license:(put_token(pkg[i].catalogue_license, spec_license)?put_token(pkg[i].catalogue_license, spec_license):"LPPL")); + } else { + fprintf(fpack, "%%package doc\n"); + } +#else + fprintf(fpack, "%%package %s-doc\n", name); +#endif + fprintf(fpack, "Summary: Documentation for %s\n", name); + fprintf(fpack, "Version: %s\n", print_noarch_version(&pkg[i])); + fprintf(fpack, "Release: %%{tl_noarch_release}\n"); + fprintf(fpack, "Provides: tex-%s-doc\n", name); + fprintf(fpack, "BuildArch: noarch\nAutoReqProv: No\n"); + for (n=0; n<pkg[i].reqs; n++) { + if ( !pkg[i].req[n] ) continue; + if ( pkg[i].req[n]->catalogue_license & LIC_NOTALLOWED ) continue; + if ( pkg[i].req[n]->docfs ) + fprintf(fpack, "Requires: tex-%s-doc\n", pkg[i].dep[n]); + } + if ( main_written ) { +#ifndef SRPMS + fprintf(fpack, "\n%%description %s-doc\n", name); +#else + fprintf(fpack, "\n%%description doc\n"); +#endif + } else { +#ifdef SRPMS + fprintf(fpack, "\n%%description\n"); +#else + fprintf(fpack, "\n%%description %s-doc\n", name); +#endif + } + fprintf(fpack, "Documentation for %s\n\n", name); + +#ifndef SRPMS + fprintf(fpack, "%%post %s-doc\n", name); +#else + fprintf(fpack, "%%post\n"); +#endif + fprintf(fpack, "mkdir -p /var/run/texlive\ntouch /var/run/texlive/run-texhash\n"); + fprintf(fpack, ":\n"); +#ifndef SRPMS + fprintf(fpack, "\n%%postun %s-doc\n", name); +#else + fprintf(fpack, "\n%%postun\n"); +#endif + fprintf(fpack, "if [ $1 == 1 ]; then\n mkdir -p /var/run/texlive\n touch /var/run/run-texhash\nelse\n %%{_bindir}/texhash 2> /dev/null\nfi\n"); + fprintf(fpack, ":\n\n"); +#ifndef SRPMS + fprintf(fpack, "%%posttrans %s-doc\n", name); +#else + fprintf(fpack, "%%posttrans\n"); +#endif + fprintf(fpack, "if [ -e /var/run/texlive/run-texhash ] && [ -e %%{_bindir}/texhash ]; then %%{_bindir}/texhash 2> /dev/null; rm -f /var/run/texlive/run-texhash; fi\n"); + fprintf(fpack, ":\n\n"); + + /* ... and doc files */ +#ifdef SRPMS + mainpkg = 1; +#endif + append_filelist(pkg[i].name, "doc", pkg[i].docfs, pkg[i].docf, pkg[i].fedora_license?pkg[i].fedora_license:put_token(pkg[i].catalogue_license, license)); +#ifdef SRPMS + mainpkg = 0; +#endif + + } +#endif +#ifdef PACKAGE_SOURCE + /* write source package if exists */ + if ( pkg[i].srcfs ) { + fprintf(funpack, UNPACK" -dc %%{SOURCE%d} | tar x -C %%{buildroot}%%{_texdir}%s\n", srcno, pkg[i].reloc?"/texmf-dist":""); + fprintf(fsrc, "Source%04d: "CTAN_URL"%s.source.tar."UNPACK"\n", srcno++, name); +#ifndef SRPMS + fprintf(fpack, "%%package %s-source\n", name); +#else + fprintf(fpack, "%%package source\n"); +#endif + fprintf(fpack, "Summary: Sources for %s\n", name); + fprintf(fpack, "Version: %s\n", print_noarch_version(&pkg[i])); + fprintf(fpack, "Release: %%{tl_noarch_release}\n"); + if ( strncmp(name, "kpathsea", 8) ) fprintf(fpack, "Requires: texlive-base\n"); + fprintf(fpack, "BuildArch: noarch\nAutoReqProv: No\n"); + for (n=0; n<pkg[i].reqs; n++) { + if ( !pkg[i].req[n] ) continue; + if ( pkg[i].req[n]->catalogue_license & LIC_NOTALLOWED ) continue; + if ( pkg[i].req[n]->srcfs ) + fprintf(fpack, "Requires: tex-%s-source\n", pkg[i].dep[n]); + } +#ifndef SRPMS + fprintf(fpack, "\n%%description %s-source\n", name); +#else + fprintf(fpack, "\n%%description source\n"); +#endif + fprintf(fpack, "Sources for %s\n\n", name); + + /* ... and src files */ +#ifdef SRPMS + mainpkg = 1; +#endif + append_filelist(pkg[i].name, "source", pkg[i].srcfs, pkg[i].srcf, pkg[i].fedora_license?pkg[i].fedora_license:put_token(pkg[i].catalogue_license, license)); +#ifdef SRPMS + mainpkg = 0; +#endif + } +#else + /* write just link to source */ + if ( pkg[i].srcfs ) { + fprintf(fsrc, "Source%04d: "CTAN_URL"%s.source.tar."UNPACK"\n", srcno++, name); + } +#endif +#ifdef FEDORA_FONTS + /* fonts */ + { + int n, has_fonts = 0, k; + + for (n=0; n<pkg[i].runfs; n++) { + size_t s = strlen(pkg[i].runf[n]); + if (s > 4) { + if (!strcmp(&pkg[i].runf[n][s-4], ".ttf") || + !strcmp(&pkg[i].runf[n][s-4], ".ttc") || + !strcmp(&pkg[i].runf[n][s-4], ".pfa") || + !strcmp(&pkg[i].runf[n][s-4], ".pfb") || + !strcmp(&pkg[i].runf[n][s-4], ".pcf") || + !strcmp(&pkg[i].runf[n][s-4], ".otf") + ) { + if ( !has_fonts ) { +#ifdef SRPMS + fprintf(fpack, "%%package fedora-fonts\n"); +#else + fprintf(fpack, "%%package %s-fedora-fonts\n", name); +#endif + fprintf(fpack, "Summary: Fonts for %s\n", name); + fprintf(fpack, "Version: %s\n", print_noarch_version(&pkg[i])); + fprintf(fpack, "Release: %%{tl_noarch_release}\n"); + fprintf(fpack, "Requires: fontpackages-filesystem\n"); + fprintf(fpack, "BuildRequires: fontpackages-devel\n"); + fprintf(fpack, "Requires: tex-%s\n", name); + fprintf(fpack, "BuildArch: noarch\n"); +#ifdef SRPMS + fprintf(fpack, "\n%%description fedora-fonts\n"); +#else + fprintf(fpack, "\n%%description %s-fedora-fonts\n", name); +#endif + for (k=0; k<pkg[i].longdesc_lines; k++) { + fprintf(fpack, "%s\n", pkg[i].longdesc[k]); + } + if ( !pkg[i].longdesc_lines ) fprintf(fpack, "Fonts for %s package.\n", name); + if ( pkg[i].catalogue_date ) fprintf(fpack, "\ndate: %s\n", pkg[i].catalogue_date); + fprintf(fpack, "\n"); + fprintf(ffont, "\n# link installed fonts with Fedora\n"); + fprintf(ffont, "install -d -m 0755 %%{buildroot}%%{_fontdir}\n"); + fprintf(ffont, "pushd %%{buildroot}%%{_fontdir}\n"); +#ifdef SRPMS + fprintf(ffile, "%%files fedora-fonts\n"); +#else + fprintf(ffile, "%%files %s-fedora-fonts\n", name); +#endif + fprintf(ffile, "%%defattr(-,root,root)\n%%dir %%{_fontdir}\n"); + } + has_fonts = 1; + for (--s; pkg[i].runf[n][s] != '/'; s--); + fprintf(ffont, "mv %%{buildroot}%%{_texdir}/%s .\n", pkg[i].runf[n]); + fprintf(ffont, "ln -s %%{_fontdir}%s %%{buildroot}%%{_texdir}/%s\n", &pkg[i].runf[n][s], pkg[i].runf[n]); + fprintf(ffile, "%%{_fontdir}%s\n", &pkg[i].runf[n][s]); + printf("%%{_fontdir}%s\n", &pkg[i].runf[n][s]); + } + } + } + if ( has_fonts ) { + fprintf(ffont, "popd\n"); +#ifdef SRPMS + fprintf(ffont, "%%_font_pkg -n fedora *\n"); +#endif + } + } +#endif +#ifdef SRPMS + if (pkg[i].has_man) { + fprintf(fremove, "mkdir -p %%{buildroot}/%%{_datadir}/\n"); + fprintf(fremove, "mv %%{buildroot}/%%{_texdir}/texmf-dist/doc/man %%{buildroot}/%%{_datadir}/\n"); + } + if (pkg[i].has_info) { + fprintf(fremove, "mkdir -p %%{buildroot}/%%{_infodir}/\n"); + fprintf(fremove, "mv %%{buildroot}/%%{_texdir}/texmf-dist/doc/info/* %%{buildroot}/%%{_infodir}/\n"); + } +#endif +#ifdef SRPMS + if ( !pkg[i].binfs ) { + fclose(ffont); + fclose(fremove); + fclose(fsrc); + fclose(funpack); + fclose(ffile); + fclose(fpack); + + fpack = ofpack; + ffile = offile; + funpack = ofunpack; + fsrc = ofsrc; + fremove = ofremove; + ffont = offont; + } +#endif + if ( pkg[i].binfs && (has_noarch_pkg || pkg[i].binfs > 1) ) { + char *ar = strstr(name, ".ARCH"); + pkg[i].any_pkg_written = 1; + *ar = '\0'; + fprintf(fpack, "%%package %s-bin\n", name); + fprintf(fpack, "Summary: Binaries for %s\n", name); + fprintf(fpack, "Version: %s\n", print_noarch_version(&pkg[i])); + if ( strncmp(name, "kpathsea", 8) ) fprintf(fpack, "Requires: texlive-base\n"); + if ( has_noarch_pkg ) fprintf(fpack, "Requires: texlive-%s\n", name); + if ( !strcmp(name, "xetex") ) { + fprintf(fpack, "Requires: teckit\n"); + fprintf(fpack, "Provides: xdvipdfmx = %%{version}-%%{release}\n"); + fprintf(fpack, "Obsoletes: xdvipdfmx < %%{version}-%%{release}\n"); + } + if ( !strcmp(name, "dvipdfmx") ) { + fprintf(fpack, "Provides: dvipdfmx = %%{tl_version}, dvipdfm = %%{tl_version}, texlive-dvipdfm-bin = 3:%%{tl_version}\n"); + fprintf(fpack, "Obsoletes: dvipdfmx < %%{tl_version}, dvipdfm < %%{tl_version}, texlive-dvipdfm-bin < 3:%%{tl_version}\n"); + } + if ( !strcmp(name, "xdvi") ) { + fprintf(fpack, "Provides: xdvi = %%{tl_version}, xdvik = %%{tl_version}, tetex-xdvi = 3.1-99\n"); + fprintf(fpack, "Obsoletes: xdvi < %%{tl_version}, xdvik < %%{tl_version}, tetex-xdvi < 3.1-99\n"); + } + if ( !strcmp(name, "dvipng") ) { + fprintf(fpack, "Provides: dvipng = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: dvipng < %%{tl_version}\n"); + } + if ( !strcmp(name, "pdfcrop") ) { + fprintf(fpack, "Requires: ghostscript-devel\n"); + } + if ( !strcmp(name, "dvisvgm") ) { + fprintf(fpack, "Provides: dvisvgm = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: dvisvgm < %%{tl_version}\n"); + } + if ( !strcmp(name, "lcdftypetools") ) { + fprintf(fpack, "Provides: lcdf-typetools = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: lcdf-typetools < %%{tl_version}\n"); + } + if ( !strcmp(name, "xmltex") ) { + fprintf(fpack, "Provides: xmltex = %%{tl_version}0101\n"); + fprintf(fpack, "Obsoletes: xmltex < %%{tl_version}0101\n"); + } + if ( !strcmp(name, "pstools") ) { + fprintf(fpack, "Provides: ps2eps = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: ps2eps < %%{tl_version}\n"); + } +/* if ( !strcmp(name, "asymptote") ) { + fprintf(fpack, "Provides: asymptote = %%{tl_version}\n"); + fprintf(fpack, "Obsoletes: asymptote < %%{tl_version}\n"); + }*/ + + printf("bin-package %s contains %d files\n", pkg[i].name, pkg[i].binfs); + { + int n, noarch = 1; + char s[0x100]; + + for (n=0; n<pkg[i].binfs; n++) { + FILE *f; + struct stat sb; + + snprintf(s, sizeof(s), "texlive.expanded/%s", pkg[i].binf[n]); + lstat(s, &sb); + + if ((sb.st_mode&S_IFMT) == S_IFLNK) continue; + + if ( (f=fopen(s,"rb")) ) { + unsigned char d[4]; + fread(d, 4, 1, f); + fclose(f); + if ( d[0] == 0x7f && d[1] == 0x45 && d[2] == 0x4c && d[3] == 0x46 ) { + noarch = 0; + break; + } + } else { + printf("Unable to open: %s\n", s); + exit(1); + } + } + fprintf(fpack, "Release: %%{tl_release}\n"); + if ( noarch ) { + fprintf(fpack, "BuildArch: noarch\n"); + } else { + fprintf(fpack, "Requires: texlive-kpathsea-lib%%{?_isa} = %%{epoch}:%%{tl_version}\n"); + } + } + fprintf(fpack, "\n%%description %s-bin\n", name); + fprintf(fpack, "Binaries for %s\n\n", name); + *ar = '.'; + + /* ... and add bin files */ + { + char s[0x100], *lic_name = NULL; + int ii, lic_code = LIC_LPPL; + unsigned long h; + + strcpy(s, pkg[i].name); + *strstr(s,".ARCH") = 0; + h = hash(s); + for (ii=0; ii<p; ii++) { + if ( pkg[ii].namehash == h && !strcmp(pkg[ii].name, s)) { + lic_code = pkg[ii].catalogue_license?pkg[ii].catalogue_license:LIC_LPPL; + lic_name = pkg[ii].fedora_license; + break; + } + } + append_filelist(pkg[i].name, "", pkg[i].binfs, pkg[i].binf, lic_name?lic_name:put_token(lic_code, license)); + } + } +slv: + for (n=0; n<pkg[i].reqs; n++) { + solve(pkg[i].dep[n]); + } + level--; + found = 1; + break; + } + } + + if ( !found ) fprintf(stderr, "Unknown dep: %s\n", name); +} + +void gen_obsoletes() { + size_t i, op = sizeof(old_pkgs)/sizeof(old_pkgs[0]); + FILE *fobs = fopen("_obsoletes.spec","wt"); + + for (i=0; i<op; i++) { + size_t n, fnd=0; + unsigned long h = hash(old_pkgs[i]); + + for (n=0; n<p; n++) { + if (h == pkg[n].namehash && !strcmp(pkg[n].name, old_pkgs[i]) && pkg[n].any_pkg_written) { + fnd = 1; + break; + } + } + + if (!fnd) { + fprintf(fobs,"Obsoletes: texlive-%s <= 3:%%{tl_version}\n", old_pkgs[i]); + if (strncmp(old_pkgs[i], "collection-", 11)) { + fprintf(fobs,"Obsoletes: texlive-%s-bin <= 3:%%{tl_version}\n", old_pkgs[i]); + fprintf(fobs,"Obsoletes: texlive-%s-doc <= 3:%%{tl_version}\n", old_pkgs[i]); + fprintf(fobs,"Obsoletes: texlive-%s-fedora-fonts <= 3:%%{tl_version}\n", old_pkgs[i]); + } + } + } + + fclose(fobs); +} + +int main() { + FILE *f = fopen("texlive.tlpdb","rt"); + + if ( !f ) { + fprintf(stderr, "Unable to open TeX Live package database\n"); + return 1; + } + + fseek(f,0,SEEK_END); + size=ftell(f); + fseek(f,0,SEEK_SET); + m=malloc(size); + if ( fread(m, size, 1, f) != 1 ) { + fprintf(stderr,"Error reading TeX Live package database\n"); + return 1; + } + + parse(); + + { + int i, n; + + for (i=0; i<p; i++) { + for (n=0; n<pkg[i].reqs; n++) { + if ( pkg[i].req[n] ) continue; + { + int x, y, found = 0; + unsigned long h; + package *pk = NULL; + char *depname = pkg[i].dep[n]; + + h = hash(depname); + + for (x=0; x<p; x++) { + if ( pkg[x].namehash == h && !strcmp(pkg[x].name, depname) ) { + pk = &pkg[x]; + found = 1; + break; + } + } + + if ( !found ) { + fprintf(stderr, "Unknown dependency: %s\n", depname); + continue; + } + + for (x=0; x<p; x++) { + for (y=0; y<pkg[x].reqs; y++) { + if ( !strcmp(pkg[x].dep[y], pk->name) ) { + pkg[x].req[y] = pk; + } + } + } + } + } + } +#ifdef SRPMS + system("rm -rf ./specs; mkdir specs"); +#endif + fill_file_reqprov(); + for (i=0; i<p; i++) solve(pkg[i].name); + } + + gen_obsoletes(); + + { + int i, n, ndirs; + FILE *fdirs = fopen("_dirs.spec","wt"); +#ifdef SRPMS + FILE *fmkdirs = fopen("_mkdirs.spec","wt"); +#endif + + ndirs = dirs; + for ( i=0; i<ndirs; i++ ) { + char *end, *d; + int pass; + + if ( !strncmp(dir[i].dir, "bin/", 4) || !strncmp(dir[i].dir, "tlpkg/", 6) || dir[i].pkgs < 1 ) continue; + + for ( pass=n=0; n<dir[i].pkgs; n++ ) { + if ( !(dir[i].lic[0]&LIC_NOTALLOWED) ) { + pass = 1; + break; + } + } + if ( !pass ) continue; + + if ( !(strstr(dir[i].pkg[0], "win32") || strstr(dir[i].dir, "win32")) ) { + fprintf(fdirs, "%%dir %%{_texdir}/%s\n", dir[i].dir); +#ifdef SRPMS + fprintf(fmkdirs, "mkdir -p %%{buildroot}%%{_texdir}/%s\n", dir[i].dir); +#endif + } else continue; + + d = strdup(dir[i].dir); + while ( (end=strrchr(d, '/')) ) { + unsigned long h; + *end = '\0'; + h = hash(d); + for ( n=0; n<dirs; n++ ) { + if ( h == dir[n].dirhash && !strcmp(d, dir[n].dir) ) { + goto done; + } + } + dirs++; + dir = realloc(dir, dirs*sizeof(dir_type)); + dir[dirs-1].dir = strdup(d); + dir[dirs-1].dirhash = h; + dir[dirs-1].pkgs = 0; + fprintf(fdirs, "%%dir %%{_texdir}/%s\n", d); + } +done: + free(d); + } +#ifdef SRPMS + fclose(fmkdirs); +#endif + fclose(fdirs); + } + + fclose(fpack); + fclose(ffile); + fclose(funpack); + fclose(fsrc); + fclose(fremove); + fclose(ffont); + + return 0; +} diff --git a/SOURCES/tlpdb.patch b/SOURCES/tlpdb.patch new file mode 100644 index 0000000..d0f70e9 --- /dev/null +++ b/SOURCES/tlpdb.patch @@ -0,0 +1,305 @@ +--- texlive.tlpdb.orig 2015-09-16 16:29:17.024436938 -0400 ++++ texlive.tlpdb 2015-09-16 16:29:17.050436761 -0400 +@@ -10317,7 +10317,7 @@ + catalogue-license pd + catalogue-version 1.0a + +-name Asana-Math ++name asana-math + category Package + revision 37556 + shortdesc A font to typeset maths in Xe(La)TeX and Lua(La)TeX. +@@ -16060,40 +16060,6 @@ + catalogue-date 2012-04-10 13:05:36 +0200 + catalogue-license gpl + +-name biber +-category Package +-revision 37851 +-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 +-docfiles size=84 +- texmf-dist/doc/bibtex/biber/biber.pdf +-srcfiles size=543 +- texmf-dist/source/bibtex/biber/Changes +- texmf-dist/source/bibtex/biber/biblatex-biber.tar.gz +- texmf-dist/source/bibtex/biber/utf8-macro-map.html +-catalogue-also bibtex crosstex biblatex +-catalogue-ctan /biblio/biber +-catalogue-date 2015-05-08 00:12:35 +0200 +-catalogue-license artistic +-catalogue-topics biblio +-catalogue-version 2.1 +- +-name biber.i386-linux +-category Package +-revision 37327 +-shortdesc i386-linux files of biber +-binfiles arch=i386-linux size=4284 +- bin/i386-linux/biber +- + name bibexport + category Package + revision 29349 +@@ -33039,7 +33005,6 @@ + depend tex + depend texconfig + depend texlive-common +-depend texlive-docindex + depend texlive-en + depend texlive-msg-translations + depend texlive-scripts +@@ -33287,7 +33252,7 @@ + shortdesc Additional fonts + relocated 1 + depend collection-basic +-depend Asana-Math ++depend asana-math + depend academicons + depend accanthis + depend adforn +@@ -33434,7 +33399,7 @@ + depend librebaskerville + depend librecaslon + depend libris +-depend linearA ++depend lineara + depend lobster2 + depend lxfonts + depend ly1 +@@ -35721,7 +35686,7 @@ + depend m-tx + depend musixguit + depend musixtex +-depend musixtex-fonts ++depend musixtex-fnts + depend musixtnt + depend piano + depend pmx +@@ -36253,25 +36218,6 @@ + depend xymtex + depend youngtab + +-name collection-texworks +-category Collection +-revision 36934 +-shortdesc TeXworks editor; TL includes only the Windows binary +-relocated 1 +-longdesc See http://tug.org/texworks. +-depend collection-basic +-depend texworks +- +-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 +- + name collection-xetex + category Collection + revision 38257 +@@ -47514,7 +47460,7 @@ + texmf-dist/source/support/dosepsbin/install-sh + catalogue-ctan /support/dosepsbin + catalogue-date 2014-10-16 20:09:26 +0200 +-catalogue-license artistic ++catalogue-license gpl + catalogue-version 1.2 + + name dosepsbin.i386-linux +@@ -79894,13 +79840,6 @@ + catalogue-license lppl + catalogue-version v1.7 + +-name installfont.i386-linux +-category Package +-revision 19743 +-shortdesc i386-linux files of installfont +-binfiles arch=i386-linux size=1 +- bin/i386-linux/installfont-tl +- + name interactiveworkbook + category Package + revision 15878 +@@ -91373,7 +91312,7 @@ + catalogue-ctan /macros/latex/contrib/labels + catalogue-date 2011-12-16 16:22:52 +0100 + catalogue-license lppl1.2 +-catalogue-version .13 ++catalogue-version 13 + + name labyrinth + category Package +@@ -93004,72 +92943,6 @@ + catalogue-license gpl + catalogue-version 2.1.19.1 + +-name latexmk +-category Package +-revision 36353 +-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 +-runfiles size=86 +- texmf-dist/scripts/latexmk/latexmk.pl +-docfiles size=185 +- 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 +- texmf-dist/doc/support/latexmk/example_rcfiles/README-rcfiles +- texmf-dist/doc/support/latexmk/example_rcfiles/asymptote_latexmkrc +- texmf-dist/doc/support/latexmk/example_rcfiles/clean_pattern_latexmkrc +- texmf-dist/doc/support/latexmk/example_rcfiles/exceltex_latexmkrc +- texmf-dist/doc/support/latexmk/example_rcfiles/glossary_latexmkrc +- texmf-dist/doc/support/latexmk/example_rcfiles/lualatex_latexmkrc +- texmf-dist/doc/support/latexmk/example_rcfiles/mpost_latexmkrc +- texmf-dist/doc/support/latexmk/example_rcfiles/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/xelatex_latexmkrc +- texmf-dist/doc/support/latexmk/extra-scripts/README-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 +- texmf-dist/doc/support/latexmk/latexmk.txt +-srcfiles size=1 +- texmf-dist/source/support/latexmk/latexmk.bat +-catalogue-ctan /support/latexmk +-catalogue-date 2015-02-22 07:47:38 +0100 +-catalogue-license gpl2 +-catalogue-version 4.43a +- +-name latexmk.i386-linux +-category Package +-revision 10937 +-shortdesc i386-linux files of latexmk +-binfiles arch=i386-linux size=1 +- bin/i386-linux/latexmk +- + name latexmp + category Package + revision 15878 +@@ -98324,7 +98197,7 @@ + catalogue-date 2012-04-03 18:09:05 +0200 + catalogue-license lppl + +-name linearA ++name lineara + category Package + revision 15878 + shortdesc Linear A script fonts. +@@ -109422,7 +109295,7 @@ + texmf-dist/source/generic/mkjobtexmf/install-sh + catalogue-ctan /support/mkjobtexmf + catalogue-date 2011-11-16 11:07:17 +0100 +-catalogue-license artistic ++catalogue-license gpl + catalogue-version 0.8 + + name mkjobtexmf.i386-linux +@@ -111632,7 +111505,7 @@ + catalogue-license lppl1.3 + catalogue-version 1.2.2 + +-name musixtex-fonts ++name musixtex-fnts + category Package + revision 37762 + shortdesc Fonts used by MusixTeX. +@@ -123189,6 +123062,7 @@ + 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" +@@ -131343,7 +131217,7 @@ + catalogue-ctan /graphics/pstricks/contrib/pst-layout + catalogue-date 2014-02-26 23:03:13 +0100 + catalogue-license lppl +-catalogue-version .95 ++catalogue-version 95 + + name pst-lens + category Package +@@ -144593,7 +144467,7 @@ + depend kurier + depend poltawski + depend xits +-depend Asana-Math ++depend asana-math + depend gentium-tug + depend pxfonts + depend txfonts +@@ -159412,7 +159286,7 @@ + texmf-dist/doc/man/man1/texdirflatten.man1.pdf + catalogue-ctan /support/texdirflatten + catalogue-date 2014-02-26 23:03:13 +0100 +-catalogue-license artistic ++catalogue-license gpl + catalogue-version 1.1 + + name texdirflatten.i386-linux +@@ -161016,7 +160890,6 @@ + revision 29741 + shortdesc i386-linux files of texlive-scripts + binfiles arch=i386-linux size=2 +- bin/i386-linux/man + bin/i386-linux/rungs + + name texlive-sr +@@ -166717,7 +166590,7 @@ + catalogue-ctan /macros/latex209/contrib/trees/tree-dvips + catalogue-date 2012-01-20 11:26:32 +0100 + catalogue-license lppl1 +-catalogue-version .91 ++catalogue-version 91 + + name treetex + category Package +@@ -179710,7 +179583,6 @@ + revision 37261 + shortdesc i386-linux files of xetex + binfiles arch=i386-linux size=6435 +- bin/i386-linux/teckit_compile + bin/i386-linux/xdvipdfmx + bin/i386-linux/xelatex + bin/i386-linux/xetex diff --git a/SPECS/texlive.spec b/SPECS/texlive.spec index 5c48b62..1818dac 100644 --- a/SPECS/texlive.spec +++ b/SPECS/texlive.spec @@ -1,11 +1,4 @@ -# PACKAGER NOTES -# 1. If you update biblatex, be sure the versioned Requires on biber is correct. Email Colin <cbm@m.fsf.org>. - -# This package depends on automagic byte compilation -# https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompilation_phase_2 -%global _python_bytecompile_extra 1 - -%global tl_version 2019 +%global tl_version 2017 %{!?_texdir: %global _texdir %{_datadir}/%{name}} %{!?_texmf_var: %global _texmf_var %{_var}/lib/texmf} @@ -13,16 +6,13 @@ # We do not want this. %global __brp_mangle_shebangs /usr/bin/true -# Not ppc64, not s390x, not aarch64 due to lack of clisp -# code SIGSEGV's on armv7hl -%global xindy_arches empty - Name: texlive Version: %{tl_version} -Release: 19%{?dist} -Epoch: 9 +Release: 17%{?dist} +Epoch: 7 Summary: TeX formatting system -License: Artistic 2.0 and CC-BY and CC-BY-SA and GPLv2 and GPLv2+ and GPLv3+ and LGPLv2+ and LPPL and MIT and Public Domain and UCD and Utopia +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/ Requires: texlive-scheme-basic Requires: texlive-collection-latexrecommended @@ -59,5796 +49,5856 @@ Patch104: texlive-mpost-CVE-2016-10243.patch Patch105: texlive-2016-upmendex-crash # fix bz#1442706, set correct python path Patch106: texlive-bz#1442706-python-path.patch +# fix bz#1575363, update geometry to 5.7 +Patch107: texlive-bz#1575363-geometry-5.7.patch Patch108: texlive-2017-xepersian-python.patch -Patch109: texlive-2019-py3-and-pep8.patch -Patch110: tabu-update-to-git-930bc77.patch Source3: texlive-licenses.tar.xz -Source0100: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/12many.tar.xz -Source0101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/12many.doc.tar.xz -Source0103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/2up.tar.xz -Source0104: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/2up.doc.tar.xz -Source0105: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a0poster.tar.xz -Source0106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a0poster.doc.tar.xz -Source0109: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a4wide.tar.xz -Source0110: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a4wide.doc.tar.xz -Source0111: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a5comb.tar.xz -Source0112: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/a5comb.doc.tar.xz -Source0113: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aastex.tar.xz -Source0114: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aastex.doc.tar.xz -Source0116: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abbr.tar.xz -Source0117: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abbr.doc.tar.xz -Source0118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abc.tar.xz -Source0119: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abc.doc.tar.xz -Source0121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abntex2.tar.xz -Source0122: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abntex2.doc.tar.xz -Source0123: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abraces.tar.xz -Source0124: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abraces.doc.tar.xz -Source0125: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abstract.tar.xz -Source0126: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abstract.doc.tar.xz -Source0128: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abstyles.tar.xz -Source0129: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abstyles.doc.tar.xz -Source0130: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/academicons.tar.xz -Source0131: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/academicons.doc.tar.xz -Source0132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/accanthis.tar.xz -Source0133: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/accanthis.doc.tar.xz -Source0136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/achemso.tar.xz -Source0137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/achemso.doc.tar.xz -Source0139: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acmconf.tar.xz -Source0140: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acmconf.doc.tar.xz -Source0142: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acronym.tar.xz -Source0143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acronym.doc.tar.xz -Source0145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acroterm.tar.xz -Source0146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acroterm.doc.tar.xz -Source0148: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acro.tar.xz -Source0149: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acro.doc.tar.xz -Source0150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/active-conf.tar.xz -Source0151: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/active-conf.doc.tar.xz -Source0153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/actuarialangle.tar.xz -Source0154: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/actuarialangle.doc.tar.xz -Source0155: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/addlines.tar.xz -Source0156: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/addlines.doc.tar.xz -Source0158: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adfathesis.tar.xz -Source0159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adfathesis.doc.tar.xz -Source0161: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adforn.tar.xz -Source0162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adforn.doc.tar.xz -Source0163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adfsymbols.tar.xz -Source0164: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adfsymbols.doc.tar.xz -Source0168: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adjmulticol.tar.xz -Source0169: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adjmulticol.doc.tar.xz -Source0171: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adjustbox.tar.xz -Source0172: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adjustbox.doc.tar.xz -Source0174: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adobemapping.tar.xz -Source0175: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adrconv.tar.xz -Source0176: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adrconv.doc.tar.xz -Source0178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/advdate.tar.xz -Source0179: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/advdate.doc.tar.xz -Source0180: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aecc.tar.xz -Source0181: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aecc.doc.tar.xz -Source0182: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aeguill.tar.xz -Source0183: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aeguill.doc.tar.xz -Source0184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ae.tar.xz -Source0185: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ae.doc.tar.xz -Source0189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/afparticle.tar.xz -Source0190: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/afparticle.doc.tar.xz -Source0192: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/afthesis.tar.xz -Source0193: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/afthesis.doc.tar.xz -Source0194: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aguplus.tar.xz -Source0195: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aguplus.doc.tar.xz -Source0196: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aiaa.tar.xz -Source0197: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aiaa.doc.tar.xz -Source0199: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aichej.tar.xz -Source0200: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ajl.tar.xz -Source0201: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/akktex.tar.xz -Source0202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/akktex.doc.tar.xz -Source0203: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/akletter.tar.xz -Source0204: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/akletter.doc.tar.xz -Source0205: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alegreya.tar.xz -Source0206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alegreya.doc.tar.xz -Source0219: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexconfig.tar.xz -Source0220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-fonts.tar.xz -Source0221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-fonts.doc.tar.xz -Source0222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plain.tar.xz -Source0223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lambda.tar.xz -Source0224: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alertmessage.tar.xz -Source0225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alertmessage.doc.tar.xz -Source0227: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algorithm2e.tar.xz -Source0228: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algorithm2e.doc.tar.xz -Source0229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algorithmicx.tar.xz -Source0230: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algorithmicx.doc.tar.xz -Source0231: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algorithms.tar.xz -Source0232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algorithms.doc.tar.xz -Source0234: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alg.tar.xz -Source0235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alg.doc.tar.xz -Source0237: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/allrunes.tar.xz -Source0238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/allrunes.doc.tar.xz -Source0240: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/almfixed.tar.xz -Source0241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/almfixed.doc.tar.xz -Source0242: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alnumsec.tar.xz -Source0243: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alnumsec.doc.tar.xz -Source0245: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alterqcm.tar.xz -Source0246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alterqcm.doc.tar.xz -Source0247: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/altfont.tar.xz -Source0248: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/altfont.doc.tar.xz -Source0250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ametsoc.tar.xz -Source0251: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ametsoc.doc.tar.xz -Source0252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amiri.tar.xz -Source0253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amiri.doc.tar.xz -Source0254: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsaddr.tar.xz -Source0255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsaddr.doc.tar.xz -Source0257: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amscls.tar.xz -Source0258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amscls.doc.tar.xz -Source0260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsfonts.tar.xz -Source0261: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsfonts.doc.tar.xz -Source0263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amslatex-primer.doc.tar.xz -Source0264: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsldoc-it.doc.tar.xz -Source0265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsldoc-vn.doc.tar.xz -Source0266: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsmath-it.doc.tar.xz -Source0267: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsmath.tar.xz -Source0268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsmath.doc.tar.xz -Source0270: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsrefs.tar.xz -Source0271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsrefs.doc.tar.xz -Source0277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amsthdoc-it.doc.tar.xz -Source0278: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/animate.tar.xz -Source0279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/animate.doc.tar.xz -Source0281: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anonchap.tar.xz -Source0282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anonchap.doc.tar.xz -Source0283: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anonymouspro.tar.xz -Source0284: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anonymouspro.doc.tar.xz -Source0286: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/answers.tar.xz -Source0287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/answers.doc.tar.xz -Source0289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/antiqua.tar.xz -Source0290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/antiqua.doc.tar.xz -Source0291: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/antomega.tar.xz -Source0292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/antomega.doc.tar.xz -Source0294: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/omega.tar.xz -Source0295: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/omega.doc.tar.xz -Source0296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/antt.tar.xz -Source0297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/antt.doc.tar.xz -Source0298: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anufinalexam.doc.tar.xz -Source0299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anyfontsize.tar.xz -Source0300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anyfontsize.doc.tar.xz -Source0301: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anysize.tar.xz -Source0302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/anysize.doc.tar.xz -Source0303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aobs-tikz.tar.xz -Source0304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aobs-tikz.doc.tar.xz -Source0306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aomart.tar.xz -Source0307: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aomart.doc.tar.xz -Source0309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apa6e.tar.xz -Source0310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apa6e.doc.tar.xz -Source0312: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apa6.tar.xz -Source0313: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apa6.doc.tar.xz -Source0315: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apacite.tar.xz -Source0316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apacite.doc.tar.xz -Source0318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apalike2.tar.xz -Source0319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apa.tar.xz -Source0320: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apa.doc.tar.xz -Source0321: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apnum.tar.xz -Source0322: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apnum.doc.tar.xz -Source0323: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/appendixnumberbeamer.tar.xz -Source0324: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/appendixnumberbeamer.doc.tar.xz -Source0325: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/appendix.tar.xz -Source0326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/appendix.doc.tar.xz -Source0328: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apprends-latex.doc.tar.xz -Source0329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apptools.tar.xz -Source0330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apptools.doc.tar.xz -Source0332: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabi.tar.xz -Source0333: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabi.doc.tar.xz -Source0334: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabtex.tar.xz -Source0335: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabtex.doc.tar.xz -Source0336: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabxetex.tar.xz -Source0337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabxetex.doc.tar.xz -Source0339: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aramaic-serto.tar.xz -Source0340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aramaic-serto.doc.tar.xz -Source0344: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/archaic.tar.xz -Source0345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/archaic.doc.tar.xz -Source0347: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arcs.tar.xz -Source0348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arcs.doc.tar.xz -Source0350: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arev.tar.xz -Source0351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arev.doc.tar.xz -Source0353: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/armtex.tar.xz -Source0354: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/armtex.doc.tar.xz -Source0355: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/around-the-bend.doc.tar.xz -Source0356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arphic.tar.xz -Source0357: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arphic.doc.tar.xz -Source0358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arrayjobx.tar.xz -Source0359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arrayjobx.doc.tar.xz -Source0360: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arraysort.tar.xz -Source0361: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arraysort.doc.tar.xz -Source0363: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arsclassica.tar.xz -Source0364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arsclassica.doc.tar.xz -Source0365: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/articleingud.tar.xz -Source0366: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/articleingud.doc.tar.xz -Source0368: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arydshln.tar.xz -Source0369: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arydshln.doc.tar.xz -Source0371: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asaetr.tar.xz -Source0372: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asaetr.doc.tar.xz -Source0373: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/Asana-Math.tar.xz -Source0374: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/Asana-Math.doc.tar.xz -Source0375: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ascelike.tar.xz -Source0376: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ascelike.doc.tar.xz -Source0377: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ascii-chart.doc.tar.xz -Source0378: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ascii-font.tar.xz -Source0379: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ascii-font.doc.tar.xz -Source0381: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/askmaps.tar.xz -Source0382: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/askmaps.doc.tar.xz -Source0383: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aspectratio.tar.xz -Source0384: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aspectratio.doc.tar.xz -Source0385: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/assignment.tar.xz -Source0386: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/assignment.doc.tar.xz -Source0387: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/assoccnt.tar.xz -Source0388: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/assoccnt.doc.tar.xz -Source0389: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/astro.tar.xz -Source0390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/astro.doc.tar.xz -Source0391: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asyfig.tar.xz -Source0392: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asyfig.doc.tar.xz -Source0394: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asypictureb.tar.xz -Source0395: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asypictureb.doc.tar.xz -Source0397: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/attachfile.tar.xz -Source0398: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/attachfile.doc.tar.xz -Source0400: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/augie.tar.xz -Source0401: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/augie.doc.tar.xz -Source0402: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/auncial-new.tar.xz -Source0403: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/auncial-new.doc.tar.xz -Source0405: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aurical.tar.xz -Source0406: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aurical.doc.tar.xz -Source0407: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/authoraftertitle.tar.xz -Source0408: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/authoraftertitle.doc.tar.xz -Source0411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autoarea.tar.xz -Source0412: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autoarea.doc.tar.xz -Source0413: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/automata.tar.xz -Source0414: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/automata.doc.tar.xz -Source0415: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autonum.tar.xz -Source0416: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autonum.doc.tar.xz -Source0418: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autopdf.tar.xz -Source0419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autopdf.doc.tar.xz -Source0421: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/auto-pst-pdf.tar.xz -Source0422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/auto-pst-pdf.doc.tar.xz -Source0424: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/avantgar.tar.xz -Source0425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/avremu.tar.xz -Source0426: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/avremu.doc.tar.xz -Source0428: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/b1encoding.tar.xz -Source0429: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/b1encoding.doc.tar.xz -Source0431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-albanian.tar.xz -Source0432: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-albanian.doc.tar.xz -Source0437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-basque.tar.xz -Source0438: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-basque.doc.tar.xz -Source0440: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babelbib.tar.xz -Source0441: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babelbib.doc.tar.xz -Source0442: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-bosnian.tar.xz -Source0443: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-bosnian.doc.tar.xz -Source0445: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-breton.tar.xz -Source0446: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-breton.doc.tar.xz -Source0448: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-bulgarian.tar.xz -Source0449: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-bulgarian.doc.tar.xz -Source0451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-catalan.tar.xz -Source0452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-catalan.doc.tar.xz -Source0454: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-croatian.tar.xz -Source0455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-croatian.doc.tar.xz -Source0457: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-czech.tar.xz -Source0458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-czech.doc.tar.xz -Source0460: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-danish.tar.xz -Source0461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-danish.doc.tar.xz -Source0463: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-dutch.tar.xz -Source0464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-dutch.doc.tar.xz -Source0466: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-english.tar.xz -Source0467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-english.doc.tar.xz -Source0469: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-esperanto.tar.xz -Source0470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-esperanto.doc.tar.xz -Source0472: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-estonian.tar.xz -Source0473: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-estonian.doc.tar.xz -Source0475: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-finnish.tar.xz -Source0476: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-finnish.doc.tar.xz -Source0478: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-french.tar.xz -Source0479: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-french.doc.tar.xz -Source0481: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-friulan.tar.xz -Source0482: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-friulan.doc.tar.xz -Source0484: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-galician.tar.xz -Source0485: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-galician.doc.tar.xz -Source0487: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-georgian.tar.xz -Source0488: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-georgian.doc.tar.xz -Source0489: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-german.tar.xz -Source0490: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-german.doc.tar.xz -Source0492: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-greek.tar.xz -Source0493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-greek.doc.tar.xz -Source0495: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-hebrew.tar.xz -Source0496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-hebrew.doc.tar.xz -Source0498: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-hungarian.tar.xz -Source0499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-hungarian.doc.tar.xz -Source0500: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-icelandic.tar.xz -Source0501: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-icelandic.doc.tar.xz -Source0503: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-interlingua.tar.xz -Source0504: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-interlingua.doc.tar.xz -Source0506: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-irish.tar.xz -Source0507: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-irish.doc.tar.xz -Source0509: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-italian.tar.xz -Source0510: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-italian.doc.tar.xz -Source0512: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-kurmanji.tar.xz -Source0513: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-kurmanji.doc.tar.xz -Source0515: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-latin.tar.xz -Source0516: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-latin.doc.tar.xz -Source0518: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-latvian.tar.xz -Source0519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-latvian.doc.tar.xz -Source0521: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-norsk.tar.xz -Source0522: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-norsk.doc.tar.xz -Source0524: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-piedmontese.tar.xz -Source0525: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-piedmontese.doc.tar.xz -Source0527: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-polish.tar.xz -Source0528: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-polish.doc.tar.xz -Source0530: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-portuges.tar.xz -Source0531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-portuges.doc.tar.xz -Source0533: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-romanian.tar.xz -Source0534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-romanian.doc.tar.xz -Source0536: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-romansh.tar.xz -Source0537: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-romansh.doc.tar.xz -Source0539: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-russian.tar.xz -Source0540: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-russian.doc.tar.xz -Source0542: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-samin.tar.xz -Source0543: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-samin.doc.tar.xz -Source0545: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-scottish.tar.xz -Source0546: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-scottish.doc.tar.xz -Source0548: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-serbianc.tar.xz -Source0549: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-serbianc.doc.tar.xz -Source0551: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-serbian.tar.xz -Source0552: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-serbian.doc.tar.xz -Source0554: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-slovak.tar.xz -Source0555: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-slovak.doc.tar.xz -Source0557: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-slovenian.tar.xz -Source0558: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-slovenian.doc.tar.xz -Source0560: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-sorbian.tar.xz -Source0561: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-sorbian.doc.tar.xz -Source0563: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-spanglish.tar.xz -Source0564: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-spanglish.doc.tar.xz -Source0565: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-spanish.tar.xz -Source0566: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-spanish.doc.tar.xz -Source0568: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-swedish.tar.xz -Source0569: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-swedish.doc.tar.xz -Source0571: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-thai.tar.xz -Source0572: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-thai.doc.tar.xz -Source0574: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel.tar.xz -Source0575: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel.doc.tar.xz -Source0577: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-turkish.tar.xz -Source0578: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-turkish.doc.tar.xz -Source0580: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-ukrainian.tar.xz -Source0581: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-ukrainian.doc.tar.xz -Source0583: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-vietnamese.tar.xz -Source0585: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-welsh.tar.xz -Source0586: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-welsh.doc.tar.xz -Source0588: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/background.tar.xz -Source0589: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/background.doc.tar.xz -Source0591: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/backnaur.tar.xz -Source0592: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/backnaur.doc.tar.xz -Source0594: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bagpipe.tar.xz -Source0595: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bagpipe.doc.tar.xz -Source0596: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bangorcsthesis.tar.xz -Source0597: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bangorcsthesis.doc.tar.xz -Source0599: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bangtex.tar.xz -Source0600: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bangtex.doc.tar.xz -Source0601: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bankstatement.tar.xz -Source0602: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bankstatement.doc.tar.xz -Source0603: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/barcodes.tar.xz -Source0604: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/barcodes.doc.tar.xz -Source0606: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bardiag.tar.xz -Source0607: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bardiag.doc.tar.xz -Source0608: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/barr.tar.xz -Source0609: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/barr.doc.tar.xz -Source0610: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bartel-chess-fonts.tar.xz -Source0611: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bartel-chess-fonts.doc.tar.xz -Source0612: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bashful.tar.xz -Source0613: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bashful.doc.tar.xz -Source0614: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/basicarith.tar.xz -Source0615: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/basicarith.doc.tar.xz -Source0617: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/baskervald.tar.xz -Source0618: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/baskervald.doc.tar.xz -Source0620: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/baskervaldx.tar.xz -Source0621: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/baskervaldx.doc.tar.xz -Source0622: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/basque-book.tar.xz -Source0623: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/basque-book.doc.tar.xz -Source0625: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/basque-date.tar.xz -Source0626: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/basque-date.doc.tar.xz -Source0628: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbcard.tar.xz -Source0629: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbcard.doc.tar.xz -Source0630: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbding.tar.xz -Source0631: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbding.doc.tar.xz -Source0633: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbm-macros.tar.xz -Source0634: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbm-macros.doc.tar.xz -Source0636: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbm.tar.xz -Source0637: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbm.doc.tar.xz -Source0638: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbold.tar.xz -Source0639: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbold.doc.tar.xz -Source0641: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbold-type1.tar.xz -Source0642: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bbold-type1.doc.tar.xz -Source0643: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bchart.tar.xz -Source0644: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bchart.doc.tar.xz -Source0645: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bclogo.tar.xz -Source0646: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bclogo.doc.tar.xz -Source0647: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer2thesis.tar.xz -Source0648: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer2thesis.doc.tar.xz -Source0649: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beameraudience.tar.xz -Source0650: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beameraudience.doc.tar.xz -Source0651: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerdarkthemes.tar.xz -Source0652: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerdarkthemes.doc.tar.xz -Source0653: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer-FUBerlin.doc.tar.xz -Source0654: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerposter.tar.xz -Source0655: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerposter.doc.tar.xz -Source0656: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamersubframe.tar.xz -Source0657: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamersubframe.doc.tar.xz -Source0659: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerthemejltree.tar.xz -Source0660: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerthemenirma.tar.xz -Source0661: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerthemenirma.doc.tar.xz -Source0662: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-phnompenh.tar.xz -Source0663: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-phnompenh.doc.tar.xz -Source0664: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-upenn-bc.tar.xz -Source0665: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-upenn-bc.doc.tar.xz -Source0666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer.tar.xz -Source0667: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer.doc.tar.xz -Source0668: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf.tar.xz -Source0669: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf.doc.tar.xz -Source0671: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xkeyval.tar.xz -Source0672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xkeyval.doc.tar.xz -Source0674: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcolor.tar.xz -Source0675: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcolor.doc.tar.xz -Source0677: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer-tut-pt.doc.tar.xz +Source0100: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/12many.tar.xz +Source0101: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/12many.doc.tar.xz +Source0103: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/2up.tar.xz +Source0104: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/2up.doc.tar.xz +Source0105: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/a0poster.tar.xz +Source0106: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/a0poster.doc.tar.xz +Source0109: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/a4wide.tar.xz +Source0110: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/a4wide.doc.tar.xz +Source0111: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/a5comb.tar.xz +Source0112: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/a5comb.doc.tar.xz +Source0113: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aastex.tar.xz +Source0114: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aastex.doc.tar.xz +Source0116: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abbr.tar.xz +Source0117: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abbr.doc.tar.xz +Source0118: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abc.tar.xz +Source0119: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abc.doc.tar.xz +Source0121: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abntex2.tar.xz +Source0122: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abntex2.doc.tar.xz +Source0123: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abraces.tar.xz +Source0124: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abraces.doc.tar.xz +Source0125: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abstract.tar.xz +Source0126: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abstract.doc.tar.xz +Source0128: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abstyles.tar.xz +Source0129: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abstyles.doc.tar.xz +Source0130: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/academicons.tar.xz +Source0131: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/academicons.doc.tar.xz +Source0132: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/accanthis.tar.xz +Source0133: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/accanthis.doc.tar.xz +Source0136: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/achemso.tar.xz +Source0137: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/achemso.doc.tar.xz +Source0139: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acmconf.tar.xz +Source0140: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acmconf.doc.tar.xz +Source0142: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acronym.tar.xz +Source0143: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acronym.doc.tar.xz +Source0145: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acroterm.tar.xz +Source0146: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acroterm.doc.tar.xz +Source0148: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acro.tar.xz +Source0149: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acro.doc.tar.xz +Source0150: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/active-conf.tar.xz +Source0151: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/active-conf.doc.tar.xz +Source0153: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/actuarialangle.tar.xz +Source0154: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/actuarialangle.doc.tar.xz +Source0155: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/addlines.tar.xz +Source0156: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/addlines.doc.tar.xz +Source0158: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adfathesis.tar.xz +Source0159: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adfathesis.doc.tar.xz +Source0161: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adforn.tar.xz +Source0162: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adforn.doc.tar.xz +Source0163: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adfsymbols.tar.xz +Source0164: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adfsymbols.doc.tar.xz +Source0168: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adjmulticol.tar.xz +Source0169: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adjmulticol.doc.tar.xz +Source0171: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adjustbox.tar.xz +Source0172: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adjustbox.doc.tar.xz +Source0174: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adobemapping.tar.xz +Source0175: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adrconv.tar.xz +Source0176: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adrconv.doc.tar.xz +Source0178: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/advdate.tar.xz +Source0179: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/advdate.doc.tar.xz +Source0180: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aecc.tar.xz +Source0181: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aecc.doc.tar.xz +Source0182: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aeguill.tar.xz +Source0183: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aeguill.doc.tar.xz +Source0184: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ae.tar.xz +Source0185: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ae.doc.tar.xz +Source0189: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/afparticle.tar.xz +Source0190: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/afparticle.doc.tar.xz +Source0192: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/afthesis.tar.xz +Source0193: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/afthesis.doc.tar.xz +Source0194: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aguplus.tar.xz +Source0195: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aguplus.doc.tar.xz +Source0196: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aiaa.tar.xz +Source0197: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aiaa.doc.tar.xz +Source0199: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aichej.tar.xz +Source0200: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ajl.tar.xz +Source0201: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/akktex.tar.xz +Source0202: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/akktex.doc.tar.xz +Source0203: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/akletter.tar.xz +Source0204: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/akletter.doc.tar.xz +Source0205: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alegreya.tar.xz +Source0206: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alegreya.doc.tar.xz +Source0219: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexconfig.tar.xz +Source0220: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-fonts.tar.xz +Source0221: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-fonts.doc.tar.xz +Source0222: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plain.tar.xz +Source0223: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lambda.tar.xz +Source0224: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alertmessage.tar.xz +Source0225: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alertmessage.doc.tar.xz +Source0227: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/algorithm2e.tar.xz +Source0228: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/algorithm2e.doc.tar.xz +Source0229: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/algorithmicx.tar.xz +Source0230: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/algorithmicx.doc.tar.xz +Source0231: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/algorithms.tar.xz +Source0232: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/algorithms.doc.tar.xz +Source0234: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alg.tar.xz +Source0235: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alg.doc.tar.xz +Source0237: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/allrunes.tar.xz +Source0238: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/allrunes.doc.tar.xz +Source0240: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/almfixed.tar.xz +Source0241: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/almfixed.doc.tar.xz +Source0242: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alnumsec.tar.xz +Source0243: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alnumsec.doc.tar.xz +Source0245: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alterqcm.tar.xz +Source0246: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alterqcm.doc.tar.xz +Source0247: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/altfont.tar.xz +Source0248: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/altfont.doc.tar.xz +Source0250: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ametsoc.tar.xz +Source0251: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ametsoc.doc.tar.xz +Source0252: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amiri.tar.xz +Source0253: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amiri.doc.tar.xz +Source0254: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsaddr.tar.xz +Source0255: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsaddr.doc.tar.xz +Source0257: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amscls.tar.xz +Source0258: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amscls.doc.tar.xz +Source0260: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsfonts.tar.xz +Source0261: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsfonts.doc.tar.xz +Source0263: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amslatex-primer.doc.tar.xz +Source0264: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsldoc-it.doc.tar.xz +Source0265: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsldoc-vn.doc.tar.xz +Source0266: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsmath-it.doc.tar.xz +Source0267: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsmath.tar.xz +Source0268: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsmath.doc.tar.xz +Source0270: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsrefs.tar.xz +Source0271: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsrefs.doc.tar.xz +Source0277: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/amsthdoc-it.doc.tar.xz +Source0278: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/animate.tar.xz +Source0279: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/animate.doc.tar.xz +Source0281: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anonchap.tar.xz +Source0282: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anonchap.doc.tar.xz +Source0283: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anonymouspro.tar.xz +Source0284: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anonymouspro.doc.tar.xz +Source0286: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/answers.tar.xz +Source0287: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/answers.doc.tar.xz +Source0289: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/antiqua.tar.xz +Source0290: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/antiqua.doc.tar.xz +Source0291: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/antomega.tar.xz +Source0292: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/antomega.doc.tar.xz +Source0294: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/omega.tar.xz +Source0295: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/omega.doc.tar.xz +Source0296: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/antt.tar.xz +Source0297: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/antt.doc.tar.xz +Source0298: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anufinalexam.doc.tar.xz +Source0299: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anyfontsize.tar.xz +Source0300: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anyfontsize.doc.tar.xz +Source0301: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anysize.tar.xz +Source0302: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/anysize.doc.tar.xz +Source0303: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aobs-tikz.tar.xz +Source0304: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aobs-tikz.doc.tar.xz +Source0306: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aomart.tar.xz +Source0307: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aomart.doc.tar.xz +Source0309: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apa6e.tar.xz +Source0310: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apa6e.doc.tar.xz +Source0312: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apa6.tar.xz +Source0313: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apa6.doc.tar.xz +Source0315: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apacite.tar.xz +Source0316: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apacite.doc.tar.xz +Source0318: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apalike2.tar.xz +Source0319: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apa.tar.xz +Source0320: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apa.doc.tar.xz +Source0321: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apnum.tar.xz +Source0322: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apnum.doc.tar.xz +Source0323: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/appendixnumberbeamer.tar.xz +Source0324: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/appendixnumberbeamer.doc.tar.xz +Source0325: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/appendix.tar.xz +Source0326: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/appendix.doc.tar.xz +Source0328: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apprends-latex.doc.tar.xz +Source0329: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apptools.tar.xz +Source0330: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apptools.doc.tar.xz +Source0332: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabi.tar.xz +Source0333: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabi.doc.tar.xz +Source0334: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabtex.tar.xz +Source0335: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabtex.doc.tar.xz +Source0336: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabxetex.tar.xz +Source0337: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabxetex.doc.tar.xz +Source0339: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aramaic-serto.tar.xz +Source0340: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aramaic-serto.doc.tar.xz +Source0344: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/archaic.tar.xz +Source0345: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/archaic.doc.tar.xz +Source0347: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arcs.tar.xz +Source0348: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arcs.doc.tar.xz +Source0350: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arev.tar.xz +Source0351: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arev.doc.tar.xz +Source0353: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/armtex.tar.xz +Source0354: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/armtex.doc.tar.xz +Source0355: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/around-the-bend.doc.tar.xz +Source0356: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arphic.tar.xz +Source0357: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arphic.doc.tar.xz +Source0358: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arrayjobx.tar.xz +Source0359: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arrayjobx.doc.tar.xz +Source0360: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arraysort.tar.xz +Source0361: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arraysort.doc.tar.xz +Source0363: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arsclassica.tar.xz +Source0364: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arsclassica.doc.tar.xz +Source0365: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/articleingud.tar.xz +Source0366: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/articleingud.doc.tar.xz +Source0368: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arydshln.tar.xz +Source0369: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arydshln.doc.tar.xz +Source0371: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asaetr.tar.xz +Source0372: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asaetr.doc.tar.xz +Source0373: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/Asana-Math.tar.xz +Source0374: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/Asana-Math.doc.tar.xz +Source0375: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ascelike.tar.xz +Source0376: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ascelike.doc.tar.xz +Source0377: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ascii-chart.doc.tar.xz +Source0378: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ascii-font.tar.xz +Source0379: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ascii-font.doc.tar.xz +Source0381: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/askmaps.tar.xz +Source0382: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/askmaps.doc.tar.xz +Source0383: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aspectratio.tar.xz +Source0384: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aspectratio.doc.tar.xz +Source0385: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/assignment.tar.xz +Source0386: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/assignment.doc.tar.xz +Source0387: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/assoccnt.tar.xz +Source0388: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/assoccnt.doc.tar.xz +Source0389: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/astro.tar.xz +Source0390: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/astro.doc.tar.xz +Source0391: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asyfig.tar.xz +Source0392: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asyfig.doc.tar.xz +Source0394: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asypictureb.tar.xz +Source0395: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asypictureb.doc.tar.xz +Source0397: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/attachfile.tar.xz +Source0398: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/attachfile.doc.tar.xz +Source0400: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/augie.tar.xz +Source0401: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/augie.doc.tar.xz +Source0402: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/auncial-new.tar.xz +Source0403: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/auncial-new.doc.tar.xz +Source0405: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aurical.tar.xz +Source0406: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aurical.doc.tar.xz +Source0407: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/authoraftertitle.tar.xz +Source0408: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/authoraftertitle.doc.tar.xz +Source0411: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/autoarea.tar.xz +Source0412: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/autoarea.doc.tar.xz +Source0413: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/automata.tar.xz +Source0414: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/automata.doc.tar.xz +Source0415: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/autonum.tar.xz +Source0416: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/autonum.doc.tar.xz +Source0418: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/autopdf.tar.xz +Source0419: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/autopdf.doc.tar.xz +Source0421: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/auto-pst-pdf.tar.xz +Source0422: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/auto-pst-pdf.doc.tar.xz +Source0424: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/avantgar.tar.xz +Source0425: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/avremu.tar.xz +Source0426: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/avremu.doc.tar.xz +Source0428: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/b1encoding.tar.xz +Source0429: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/b1encoding.doc.tar.xz +Source0431: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-albanian.tar.xz +Source0432: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-albanian.doc.tar.xz +# Source0434: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-bahasa.tar.xz +# Source0435: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-bahasa.doc.tar.xz +Source0437: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-basque.tar.xz +Source0438: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-basque.doc.tar.xz +Source0440: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babelbib.tar.xz +Source0441: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babelbib.doc.tar.xz +Source0442: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-bosnian.tar.xz +Source0443: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-bosnian.doc.tar.xz +Source0445: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-breton.tar.xz +Source0446: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-breton.doc.tar.xz +Source0448: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-bulgarian.tar.xz +Source0449: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-bulgarian.doc.tar.xz +Source0451: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-catalan.tar.xz +Source0452: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-catalan.doc.tar.xz +Source0454: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-croatian.tar.xz +Source0455: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-croatian.doc.tar.xz +Source0457: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-czech.tar.xz +Source0458: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-czech.doc.tar.xz +Source0460: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-danish.tar.xz +Source0461: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-danish.doc.tar.xz +Source0463: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-dutch.tar.xz +Source0464: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-dutch.doc.tar.xz +Source0466: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-english.tar.xz +Source0467: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-english.doc.tar.xz +Source0469: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-esperanto.tar.xz +Source0470: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-esperanto.doc.tar.xz +Source0472: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-estonian.tar.xz +Source0473: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-estonian.doc.tar.xz +Source0475: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-finnish.tar.xz +Source0476: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-finnish.doc.tar.xz +Source0478: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-french.tar.xz +Source0479: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-french.doc.tar.xz +Source0481: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-friulan.tar.xz +Source0482: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-friulan.doc.tar.xz +Source0484: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-galician.tar.xz +Source0485: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-galician.doc.tar.xz +Source0487: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-georgian.tar.xz +Source0488: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-georgian.doc.tar.xz +Source0489: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-german.tar.xz +Source0490: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-german.doc.tar.xz +Source0492: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-greek.tar.xz +Source0493: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-greek.doc.tar.xz +Source0495: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-hebrew.tar.xz +Source0496: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-hebrew.doc.tar.xz +Source0498: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-hungarian.tar.xz +Source0499: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-hungarian.doc.tar.xz +Source0500: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-icelandic.tar.xz +Source0501: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-icelandic.doc.tar.xz +Source0503: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-interlingua.tar.xz +Source0504: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-interlingua.doc.tar.xz +Source0506: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-irish.tar.xz +Source0507: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-irish.doc.tar.xz +Source0509: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-italian.tar.xz +Source0510: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-italian.doc.tar.xz +Source0512: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-kurmanji.tar.xz +Source0513: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-kurmanji.doc.tar.xz +Source0515: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-latin.tar.xz +Source0516: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-latin.doc.tar.xz +Source0518: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-latvian.tar.xz +Source0519: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-latvian.doc.tar.xz +Source0521: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-norsk.tar.xz +Source0522: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-norsk.doc.tar.xz +Source0524: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-piedmontese.tar.xz +Source0525: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-piedmontese.doc.tar.xz +Source0527: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-polish.tar.xz +Source0528: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-polish.doc.tar.xz +Source0530: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-portuges.tar.xz +Source0531: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-portuges.doc.tar.xz +Source0533: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-romanian.tar.xz +Source0534: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-romanian.doc.tar.xz +Source0536: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-romansh.tar.xz +Source0537: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-romansh.doc.tar.xz +Source0539: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-russian.tar.xz +Source0540: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-russian.doc.tar.xz +Source0542: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-samin.tar.xz +Source0543: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-samin.doc.tar.xz +Source0545: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-scottish.tar.xz +Source0546: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-scottish.doc.tar.xz +Source0548: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-serbianc.tar.xz +Source0549: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-serbianc.doc.tar.xz +Source0551: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-serbian.tar.xz +Source0552: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-serbian.doc.tar.xz +Source0554: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-slovak.tar.xz +Source0555: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-slovak.doc.tar.xz +Source0557: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-slovenian.tar.xz +Source0558: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-slovenian.doc.tar.xz +Source0560: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-sorbian.tar.xz +Source0561: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-sorbian.doc.tar.xz +Source0563: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-spanglish.tar.xz +Source0564: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-spanglish.doc.tar.xz +Source0565: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-spanish.tar.xz +Source0566: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-spanish.doc.tar.xz +Source0568: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-swedish.tar.xz +Source0569: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-swedish.doc.tar.xz +Source0571: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-thai.tar.xz +Source0572: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-thai.doc.tar.xz +Source0574: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel.tar.xz +Source0575: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel.doc.tar.xz +Source0577: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-turkish.tar.xz +Source0578: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-turkish.doc.tar.xz +Source0580: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-ukrainian.tar.xz +Source0581: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-ukrainian.doc.tar.xz +Source0583: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-vietnamese.tar.xz +Source0585: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-welsh.tar.xz +Source0586: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-welsh.doc.tar.xz +Source0588: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/background.tar.xz +Source0589: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/background.doc.tar.xz +Source0591: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/backnaur.tar.xz +Source0592: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/backnaur.doc.tar.xz +Source0594: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bagpipe.tar.xz +Source0595: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bagpipe.doc.tar.xz +Source0596: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bangorcsthesis.tar.xz +Source0597: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bangorcsthesis.doc.tar.xz +Source0599: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bangtex.tar.xz +Source0600: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bangtex.doc.tar.xz +Source0601: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bankstatement.tar.xz +Source0602: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bankstatement.doc.tar.xz +Source0603: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/barcodes.tar.xz +Source0604: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/barcodes.doc.tar.xz +Source0606: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bardiag.tar.xz +Source0607: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bardiag.doc.tar.xz +Source0608: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/barr.tar.xz +Source0609: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/barr.doc.tar.xz +Source0610: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bartel-chess-fonts.tar.xz +Source0611: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bartel-chess-fonts.doc.tar.xz +Source0612: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bashful.tar.xz +Source0613: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bashful.doc.tar.xz +Source0614: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/basicarith.tar.xz +Source0615: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/basicarith.doc.tar.xz +Source0617: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/baskervald.tar.xz +Source0618: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/baskervald.doc.tar.xz +Source0620: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/baskervaldx.tar.xz +Source0621: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/baskervaldx.doc.tar.xz +Source0622: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/basque-book.tar.xz +Source0623: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/basque-book.doc.tar.xz +Source0625: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/basque-date.tar.xz +Source0626: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/basque-date.doc.tar.xz +Source0628: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbcard.tar.xz +Source0629: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbcard.doc.tar.xz +Source0630: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbding.tar.xz +Source0631: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbding.doc.tar.xz +Source0633: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbm-macros.tar.xz +Source0634: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbm-macros.doc.tar.xz +Source0636: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbm.tar.xz +Source0637: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbm.doc.tar.xz +Source0638: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbold.tar.xz +Source0639: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbold.doc.tar.xz +Source0641: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbold-type1.tar.xz +Source0642: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bbold-type1.doc.tar.xz +Source0643: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bchart.tar.xz +Source0644: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bchart.doc.tar.xz +Source0645: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bclogo.tar.xz +Source0646: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bclogo.doc.tar.xz +Source0647: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamer2thesis.tar.xz +Source0648: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamer2thesis.doc.tar.xz +Source0649: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beameraudience.tar.xz +Source0650: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beameraudience.doc.tar.xz +Source0651: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerdarkthemes.tar.xz +Source0652: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerdarkthemes.doc.tar.xz +Source0653: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamer-FUBerlin.doc.tar.xz +Source0654: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerposter.tar.xz +Source0655: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerposter.doc.tar.xz +Source0656: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamersubframe.tar.xz +Source0657: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamersubframe.doc.tar.xz +Source0659: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerthemejltree.tar.xz +Source0660: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerthemenirma.tar.xz +Source0661: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerthemenirma.doc.tar.xz +Source0662: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-phnompenh.tar.xz +Source0663: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-phnompenh.doc.tar.xz +Source0664: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-upenn-bc.tar.xz +Source0665: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-upenn-bc.doc.tar.xz +Source0666: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamer.tar.xz +Source0667: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamer.doc.tar.xz +Source0668: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf.tar.xz +Source0669: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf.doc.tar.xz +Source0671: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xkeyval.tar.xz +Source0672: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xkeyval.doc.tar.xz +Source0674: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcolor.tar.xz +Source0675: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcolor.doc.tar.xz +Source0677: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamer-tut-pt.doc.tar.xz +# Source0678: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beebe.tar.xz # Upstream beebe contains non-free files: # bibtex/bst/beebe/astron.bst # bibtex/bst/beebe/jtb.bst # We remove those files from the tarball and make a "-clean" tarball. Source0678: beebe-clean.tar.xz -Source0679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/begingreek.tar.xz -Source0680: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/begingreek.doc.tar.xz -Source0682: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/begriff.tar.xz -Source0683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/begriff.doc.tar.xz -Source0684: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/belleek.tar.xz -Source0685: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/belleek.doc.tar.xz -Source0687: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bengali.tar.xz -Source0688: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bengali.doc.tar.xz -Source0690: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bera.tar.xz -Source0691: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bera.doc.tar.xz -Source0692: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/berenisadf.tar.xz -Source0693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/berenisadf.doc.tar.xz -Source0694: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/besjournals.tar.xz -Source0695: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/besjournals.doc.tar.xz -Source0696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/betababel.tar.xz -Source0697: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/betababel.doc.tar.xz -Source0698: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beton.tar.xz -Source0699: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beton.doc.tar.xz -Source0701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bewerbung.tar.xz -Source0702: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bewerbung.doc.tar.xz -Source0704: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bez123.tar.xz -Source0705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bez123.doc.tar.xz -Source0709: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bgreek.tar.xz -Source0710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bgreek.doc.tar.xz -Source0711: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bgteubner.tar.xz -Source0712: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bgteubner.doc.tar.xz -Source0714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bguq.tar.xz -Source0715: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bguq.doc.tar.xz -Source0717: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bhcexam.tar.xz -Source0718: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bhcexam.doc.tar.xz -Source0720: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibarts.tar.xz -Source0721: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibarts.doc.tar.xz -Source0726: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bib-fr.tar.xz -Source0727: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bib-fr.doc.tar.xz -Source0728: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibhtml.tar.xz -Source0729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibhtml.doc.tar.xz -Source0730: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-anonymous.tar.xz -Source0731: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-anonymous.doc.tar.xz -Source0732: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-apa.tar.xz -Source0733: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-apa.doc.tar.xz -Source0734: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-bookinarticle.tar.xz -Source0735: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-bookinarticle.doc.tar.xz -Source0736: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-bwl.tar.xz -Source0737: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-bwl.doc.tar.xz -Source0738: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-caspervector.tar.xz -Source0739: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-caspervector.doc.tar.xz -Source0740: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-chem.tar.xz -Source0741: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-chem.doc.tar.xz -Source0742: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-chicago.tar.xz -Source0743: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-chicago.doc.tar.xz -Source0744: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-dw.tar.xz -Source0745: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-dw.doc.tar.xz -Source0746: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-fiwi.tar.xz -Source0747: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-fiwi.doc.tar.xz -Source0748: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-gost.tar.xz -Source0749: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-gost.doc.tar.xz -Source0750: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-historian.tar.xz -Source0751: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-historian.doc.tar.xz -Source0752: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-ieee.tar.xz -Source0753: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-ieee.doc.tar.xz -Source0754: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-juradiss.tar.xz -Source0755: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-juradiss.doc.tar.xz -Source0756: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-luh-ipw.tar.xz -Source0757: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-luh-ipw.doc.tar.xz -Source0758: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-manuscripts-philology.tar.xz -Source0759: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-manuscripts-philology.doc.tar.xz -Source0760: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-mla.tar.xz -Source0761: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-mla.doc.tar.xz -Source0762: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-multiple-dm.tar.xz -Source0763: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-multiple-dm.doc.tar.xz -Source0764: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-musuos.tar.xz -Source0765: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-musuos.doc.tar.xz -Source0766: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-nature.tar.xz -Source0767: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-nature.doc.tar.xz -Source0768: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-nejm.tar.xz -Source0769: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-nejm.doc.tar.xz -Source0770: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-opcit-booktitle.tar.xz -Source0771: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-opcit-booktitle.doc.tar.xz -Source0772: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-philosophy.tar.xz -Source0773: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-philosophy.doc.tar.xz -Source0775: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-phys.tar.xz -Source0776: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-phys.doc.tar.xz -Source0777: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-publist.tar.xz -Source0778: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-publist.doc.tar.xz -Source0779: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-realauthor.tar.xz -Source0780: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-realauthor.doc.tar.xz -Source0781: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-science.tar.xz -Source0782: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-science.doc.tar.xz -Source0783: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-source-division.tar.xz -Source0784: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-source-division.doc.tar.xz -Source0785: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-subseries.tar.xz -Source0786: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-subseries.doc.tar.xz -Source0787: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-swiss-legal.tar.xz -Source0788: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-swiss-legal.doc.tar.xz -Source0789: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex.tar.xz -Source0790: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex.doc.tar.xz -Source0791: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-trad.tar.xz -Source0792: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-trad.doc.tar.xz -Source0793: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-true-citepages-omit.tar.xz -Source0794: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-true-citepages-omit.doc.tar.xz -Source0795: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-french.tar.xz -Source0796: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-french.doc.tar.xz -Source0798: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-german.tar.xz -Source0799: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-german.doc.tar.xz -Source0800: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-lds.tar.xz -Source0801: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-lds.doc.tar.xz -Source0803: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-mouth.tar.xz -Source0804: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-mouth.doc.tar.xz -Source0806: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-parse.tar.xz -Source0807: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref-parse.doc.tar.xz -Source0808: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref.tar.xz -Source0809: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibleref.doc.tar.xz -Source0811: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblist.tar.xz -Source0812: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblist.doc.tar.xz -Source0819: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtopicprefix.tar.xz -Source0820: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtopicprefix.doc.tar.xz -Source0822: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtopic.tar.xz -Source0823: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtopic.doc.tar.xz -Source0825: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibunits.tar.xz -Source0826: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibunits.doc.tar.xz -Source0828: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidi-atbegshi.tar.xz -Source0829: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidi-atbegshi.doc.tar.xz -Source0830: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidicontour.tar.xz -Source0831: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidicontour.doc.tar.xz -Source0832: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidihl.tar.xz -Source0833: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidihl.doc.tar.xz -Source0834: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidipagegrid.tar.xz -Source0835: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidipagegrid.doc.tar.xz -Source0836: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidipresentation.tar.xz -Source0837: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidipresentation.doc.tar.xz -Source0838: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidishadowtext.tar.xz -Source0839: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidishadowtext.doc.tar.xz -Source0840: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidi.tar.xz -Source0841: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bidi.doc.tar.xz -Source0843: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bigfoot.tar.xz -Source0844: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bigfoot.doc.tar.xz -Source0846: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bigints.tar.xz -Source0847: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bigints.doc.tar.xz -Source0848: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/binomexp.tar.xz -Source0849: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/binomexp.doc.tar.xz -Source0851: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biocon.tar.xz -Source0852: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biocon.doc.tar.xz -Source0853: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bitelist.tar.xz -Source0854: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bitelist.doc.tar.xz -Source0856: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bizcard.tar.xz -Source0857: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bizcard.doc.tar.xz -Source0859: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blacklettert1.tar.xz -Source0860: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blacklettert1.doc.tar.xz -Source0862: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blindtext.tar.xz -Source0863: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blindtext.doc.tar.xz -Source0865: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blkarray.tar.xz -Source0866: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blkarray.doc.tar.xz -Source0867: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blochsphere.tar.xz -Source0868: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blochsphere.doc.tar.xz -Source0870: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blockdraw_mp.tar.xz -Source0871: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blockdraw_mp.doc.tar.xz -Source0872: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/block.tar.xz -Source0873: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/block.doc.tar.xz -Source0874: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bloques.tar.xz -Source0875: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bloques.doc.tar.xz -Source0879: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blox.tar.xz -Source0880: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blox.doc.tar.xz -Source0882: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bnumexpr.tar.xz -Source0883: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bnumexpr.doc.tar.xz -Source0885: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bodegraph.tar.xz -Source0886: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bodegraph.doc.tar.xz -Source0887: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bohr.tar.xz -Source0888: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bohr.doc.tar.xz -Source0889: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boisik.tar.xz -Source0890: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boisik.doc.tar.xz -Source0891: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boites.tar.xz -Source0892: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boites.doc.tar.xz -Source0894: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bold-extra.tar.xz -Source0895: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bold-extra.doc.tar.xz -Source0896: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boldtensors.tar.xz -Source0897: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boldtensors.doc.tar.xz -Source0898: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bondgraphs.tar.xz -Source0899: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bondgraphs.doc.tar.xz -Source0901: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bondgraph.tar.xz -Source0902: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bondgraph.doc.tar.xz -Source0903: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookcover.tar.xz -Source0904: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookcover.doc.tar.xz -Source0906: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookdb.tar.xz -Source0907: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookdb.doc.tar.xz -Source0908: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookest.tar.xz -Source0909: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookest.doc.tar.xz -Source0910: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookhands.tar.xz -Source0911: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookhands.doc.tar.xz -Source0913: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/booklet.tar.xz -Source0914: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/booklet.doc.tar.xz -Source0916: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bookman.tar.xz -Source0917: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/booktabs-de.doc.tar.xz -Source0918: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/booktabs-fr.doc.tar.xz -Source0919: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/booktabs.tar.xz -Source0920: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/booktabs.doc.tar.xz -Source0922: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boolexpr.tar.xz -Source0923: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boolexpr.doc.tar.xz -Source0925: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boondox.tar.xz -Source0926: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boondox.doc.tar.xz -Source0927: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bophook.tar.xz -Source0928: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bophook.doc.tar.xz -Source0930: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/borceux.tar.xz -Source0931: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/borceux.doc.tar.xz -Source0932: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bosisio.tar.xz -Source0933: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bosisio.doc.tar.xz -Source0935: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boxedminipage2e.tar.xz -Source0936: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boxedminipage2e.doc.tar.xz -Source0938: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boxedminipage.tar.xz -Source0939: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boxedminipage.doc.tar.xz -Source0940: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boxhandler.tar.xz -Source0941: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/boxhandler.doc.tar.xz -Source0943: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bpchem.tar.xz -Source0944: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bpchem.doc.tar.xz -Source0946: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bpolynomial.tar.xz -Source0947: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bpolynomial.doc.tar.xz -Source0948: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bracketkey.tar.xz -Source0949: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bracketkey.doc.tar.xz -Source0950: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/braids.tar.xz -Source0951: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/braids.doc.tar.xz -Source0953: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/braille.tar.xz -Source0954: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/braille.doc.tar.xz -Source0955: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/braket.tar.xz -Source0956: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/braket.doc.tar.xz -Source0957: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/brandeis-dissertation.tar.xz -Source0958: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/brandeis-dissertation.doc.tar.xz -Source0960: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/breakurl.tar.xz -Source0961: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/breakurl.doc.tar.xz -Source0963: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/breqn.tar.xz -Source0964: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/breqn.doc.tar.xz -Source0966: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/br-lex.tar.xz -Source0967: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/br-lex.doc.tar.xz -Source0968: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bropd.tar.xz -Source0969: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bropd.doc.tar.xz -Source0971: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/brushscr.tar.xz -Source0972: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/brushscr.doc.tar.xz -Source0973: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bullcntr.tar.xz -Source0974: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bullcntr.doc.tar.xz -Source0978: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/burmese.tar.xz -Source0979: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/burmese.doc.tar.xz -Source0981: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bussproofs.tar.xz -Source0982: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bussproofs.doc.tar.xz -Source0983: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxbase.tar.xz -Source0984: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxbase.doc.tar.xz -Source0985: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxcjkjatype.tar.xz -Source0986: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxcjkjatype.doc.tar.xz -Source0987: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxdpx-beamer.tar.xz -Source0988: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxdpx-beamer.doc.tar.xz -Source0989: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxeepic.tar.xz -Source0990: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxeepic.doc.tar.xz -Source0991: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxjscls.tar.xz -Source0992: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxjscls.doc.tar.xz -Source0994: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxpdfver.tar.xz -Source0995: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxpdfver.doc.tar.xz -Source0996: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bytefield.tar.xz -Source0997: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bytefield.doc.tar.xz -Source0999: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/c90.tar.xz -Source1000: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/c90.doc.tar.xz -Source1002: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cabin.tar.xz -Source1003: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cabin.doc.tar.xz -Source1006: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/caladea.tar.xz -Source1007: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/caladea.doc.tar.xz -Source1008: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calcage.tar.xz -Source1009: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calcage.doc.tar.xz -Source1011: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calctab.tar.xz -Source1012: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calctab.doc.tar.xz -Source1013: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calculation.tar.xz -Source1014: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calculation.doc.tar.xz -Source1016: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calculator.tar.xz -Source1017: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calculator.doc.tar.xz -Source1019: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calligra.tar.xz -Source1020: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calligra.doc.tar.xz -Source1021: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calligra-type1.tar.xz -Source1022: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calligra-type1.doc.tar.xz -Source1023: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calrsfs.tar.xz -Source1024: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calrsfs.doc.tar.xz -Source1025: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cals.tar.xz -Source1026: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cals.doc.tar.xz -Source1028: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calxxxx-yyyy.tar.xz -Source1029: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/calxxxx-yyyy.doc.tar.xz -Source1030: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cancel.tar.xz -Source1031: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cancel.doc.tar.xz -Source1032: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/canoniclayout.tar.xz -Source1033: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/canoniclayout.doc.tar.xz -Source1035: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cantarell.tar.xz -Source1036: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cantarell.doc.tar.xz -Source1038: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/captcont.tar.xz -Source1039: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/captcont.doc.tar.xz -Source1041: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/captdef.tar.xz -Source1042: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/captdef.doc.tar.xz -Source1043: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/caption.tar.xz -Source1044: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/caption.doc.tar.xz -Source1046: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/capt-of.tar.xz -Source1047: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/capt-of.doc.tar.xz -Source1049: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/carlisle.tar.xz -Source1050: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/carlisle.doc.tar.xz -Source1052: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/carlito.tar.xz -Source1053: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/carlito.doc.tar.xz -Source1054: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/carolmin-ps.tar.xz -Source1055: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/carolmin-ps.doc.tar.xz -Source1056: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cascadilla.tar.xz -Source1057: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cascadilla.doc.tar.xz -Source1058: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cases.tar.xz -Source1059: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cases.doc.tar.xz -Source1060: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/casyl.tar.xz -Source1061: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/casyl.doc.tar.xz -Source1062: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/catchfilebetweentags.tar.xz -Source1063: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/catchfilebetweentags.doc.tar.xz -Source1065: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/catcodes.tar.xz -Source1066: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/catcodes.doc.tar.xz -Source1068: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/catechis.tar.xz -Source1069: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/catechis.doc.tar.xz -Source1071: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/catoptions.tar.xz -Source1072: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/catoptions.doc.tar.xz -Source1073: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cbcoptic.tar.xz -Source1074: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cbcoptic.doc.tar.xz -Source1075: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cbfonts-fd.tar.xz -Source1076: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cbfonts-fd.doc.tar.xz -Source1078: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cbfonts.tar.xz -Source1079: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cbfonts.doc.tar.xz -Source1080: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ccaption.tar.xz -Source1081: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ccaption.doc.tar.xz -Source1083: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ccfonts.tar.xz -Source1084: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ccfonts.doc.tar.xz -Source1086: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ccicons.tar.xz -Source1087: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ccicons.doc.tar.xz -Source1089: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cclicenses.tar.xz -Source1090: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cclicenses.doc.tar.xz -Source1092: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cc-pl.tar.xz -Source1093: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cc-pl.doc.tar.xz -Source1094: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cd-cover.tar.xz -Source1095: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cd-cover.doc.tar.xz -Source1097: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cdpbundl.tar.xz -Source1098: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cdpbundl.doc.tar.xz -Source1100: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cd.tar.xz -Source1101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cd.doc.tar.xz -Source1103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cellspace.tar.xz -Source1104: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cellspace.doc.tar.xz -Source1105: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cell.tar.xz -Source1106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cell.doc.tar.xz -Source1107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/celtic.tar.xz -Source1108: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/celtic.doc.tar.xz -Source1110: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/censor.tar.xz -Source1111: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/censor.doc.tar.xz -Source1112: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cfr-initials.tar.xz -Source1113: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cfr-initials.doc.tar.xz -Source1114: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cfr-lm.tar.xz -Source1115: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cfr-lm.doc.tar.xz -Source1117: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changebar.tar.xz -Source1118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changebar.doc.tar.xz -Source1120: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changelayout.tar.xz -Source1121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changelayout.doc.tar.xz -Source1122: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changepage.tar.xz -Source1123: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changepage.doc.tar.xz -Source1125: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changes.tar.xz -Source1126: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changes.doc.tar.xz -Source1128: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chappg.tar.xz -Source1129: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chappg.doc.tar.xz -Source1131: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chapterfolder.tar.xz -Source1132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chapterfolder.doc.tar.xz -Source1134: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/charter.tar.xz -Source1135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/charter.doc.tar.xz -Source1136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chbibref.tar.xz -Source1137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chbibref.doc.tar.xz -Source1143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemarrow.tar.xz -Source1144: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemarrow.doc.tar.xz -Source1146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chembst.tar.xz -Source1147: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chembst.doc.tar.xz -Source1149: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemcompounds.tar.xz -Source1150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemcompounds.doc.tar.xz -Source1152: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemcono.tar.xz -Source1153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemcono.doc.tar.xz -Source1154: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemexec.tar.xz -Source1155: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemexec.doc.tar.xz -Source1156: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemfig.tar.xz -Source1157: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemfig.doc.tar.xz -Source1158: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemformula.tar.xz -Source1159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemformula.doc.tar.xz -Source1160: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemgreek.tar.xz -Source1161: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemgreek.doc.tar.xz -Source1162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chem-journal.tar.xz -Source1163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemmacros.tar.xz -Source1164: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemmacros.doc.tar.xz -Source1165: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemnum.tar.xz -Source1166: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemnum.doc.tar.xz -Source1167: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemschemex.tar.xz -Source1168: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemschemex.doc.tar.xz -Source1170: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemstyle.tar.xz -Source1171: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemstyle.doc.tar.xz -Source1173: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cherokee.tar.xz -Source1174: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cherokee.doc.tar.xz -Source1175: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chessboard.tar.xz -Source1176: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chessboard.doc.tar.xz -Source1178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chessfss.tar.xz -Source1179: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chessfss.doc.tar.xz -Source1181: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chess-problem-diagrams.tar.xz -Source1182: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chess-problem-diagrams.doc.tar.xz -Source1184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chess.tar.xz -Source1185: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chess.doc.tar.xz -Source1186: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chet.tar.xz -Source1187: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chet.doc.tar.xz -Source1188: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chextras.tar.xz -Source1189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chextras.doc.tar.xz -Source1191: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chicago-annote.tar.xz -Source1192: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chicago-annote.doc.tar.xz -Source1193: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chicago.tar.xz -Source1194: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chickenize.tar.xz -Source1195: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chickenize.doc.tar.xz -Source1197: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chkfloat.tar.xz -Source1198: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chkfloat.doc.tar.xz -Source1201: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chletter.tar.xz -Source1202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chletter.doc.tar.xz -Source1204: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chngcntr.tar.xz -Source1205: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chngcntr.doc.tar.xz -Source1206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chronology.tar.xz -Source1207: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chronology.doc.tar.xz -Source1208: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chronosys.tar.xz -Source1209: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chronosys.doc.tar.xz -Source1210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chscite.tar.xz -Source1211: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chscite.doc.tar.xz -Source1213: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cinzel.tar.xz -Source1214: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cinzel.doc.tar.xz -Source1215: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/circ.tar.xz -Source1216: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/circ.doc.tar.xz -Source1218: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/circuitikz.tar.xz -Source1219: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/circuitikz.doc.tar.xz -Source1220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/citeall.tar.xz -Source1221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/citeall.doc.tar.xz -Source1222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cite.tar.xz -Source1223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cite.doc.tar.xz -Source1224: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjhebrew.tar.xz -Source1225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjhebrew.doc.tar.xz -Source1228: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjk-ko.tar.xz -Source1229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjk-ko.doc.tar.xz -Source1230: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjkpunct.tar.xz -Source1231: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjkpunct.doc.tar.xz -Source1233: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjk.tar.xz -Source1234: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cjk.doc.tar.xz -Source1236: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cns.tar.xz -Source1237: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cns.doc.tar.xz -Source1238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/garuda-c90.tar.xz -Source1240: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fonts-tlwg.tar.xz -Source1241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fonts-tlwg.doc.tar.xz -Source1243: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/norasi-c90.tar.xz -Source1245: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uhc.tar.xz -Source1246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uhc.doc.tar.xz -Source1247: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wadalab.tar.xz -Source1248: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wadalab.doc.tar.xz -Source1251: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/classics.tar.xz -Source1252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/classics.doc.tar.xz -Source1253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/classicthesis.tar.xz -Source1254: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/classicthesis.doc.tar.xz -Source1255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/classpack.tar.xz -Source1256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/classpack.doc.tar.xz -Source1258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cleanthesis.tar.xz -Source1259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cleanthesis.doc.tar.xz -Source1260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clearsans.tar.xz -Source1261: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clearsans.doc.tar.xz -Source1262: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clefval.tar.xz -Source1263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clefval.doc.tar.xz -Source1265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cleveref.tar.xz -Source1266: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cleveref.doc.tar.xz -Source1268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clipboard.tar.xz -Source1269: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clipboard.doc.tar.xz -Source1270: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clock.tar.xz -Source1271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clock.doc.tar.xz -Source1272: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cloze.tar.xz -Source1273: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cloze.doc.tar.xz -Source1275: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clrscode3e.tar.xz -Source1276: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clrscode3e.doc.tar.xz -Source1277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clrscode.tar.xz -Source1278: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clrscode.doc.tar.xz -Source1279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmap.tar.xz -Source1280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmap.doc.tar.xz -Source1281: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmarrows.tar.xz -Source1282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmarrows.doc.tar.xz -Source1283: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmbright.tar.xz -Source1284: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmbright.doc.tar.xz -Source1286: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmcyr.tar.xz -Source1287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmcyr.doc.tar.xz -Source1288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmdstring.tar.xz -Source1289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmdstring.doc.tar.xz -Source1290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmextra.tar.xz -Source1291: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm-lgc.tar.xz -Source1292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm-lgc.doc.tar.xz -Source1293: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmll.tar.xz -Source1294: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmll.doc.tar.xz -Source1296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmpica.tar.xz -Source1297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmpica.doc.tar.xz -Source1298: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmpj.tar.xz -Source1299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmpj.doc.tar.xz -Source1300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmsd.tar.xz -Source1301: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmsd.doc.tar.xz -Source1302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm-super.tar.xz -Source1303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm-super.doc.tar.xz -Source1304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmtiup.tar.xz -Source1305: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmtiup.doc.tar.xz -Source1306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm.tar.xz -Source1307: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm.doc.tar.xz -Source1308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm-unicode.tar.xz -Source1309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm-unicode.doc.tar.xz -Source1310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cnbwp.tar.xz -Source1311: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cnbwp.doc.tar.xz -Source1312: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cnltx.tar.xz -Source1313: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cnltx.doc.tar.xz -Source1314: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cntformats.tar.xz -Source1315: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cntformats.doc.tar.xz -Source1316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cntperchap.tar.xz -Source1317: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cntperchap.doc.tar.xz -Source1318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codedoc.tar.xz -Source1319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codedoc.doc.tar.xz -Source1320: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codepage.tar.xz -Source1321: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codepage.doc.tar.xz -Source1323: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codesection.tar.xz -Source1324: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codesection.doc.tar.xz -Source1326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codicefiscaleitaliano.tar.xz -Source1327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codicefiscaleitaliano.doc.tar.xz -Source1329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collcell.tar.xz -Source1330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collcell.doc.tar.xz -Source1332: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collectbox.tar.xz -Source1333: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collectbox.doc.tar.xz -Source1343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enctex.tar.xz -Source1344: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enctex.doc.tar.xz -Source1345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etex.tar.xz -Source1346: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etex.doc.tar.xz -Source1347: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etex-pkg.tar.xz -Source1348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etex-pkg.doc.tar.xz -Source1351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyph-utf8.tar.xz -Source1352: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyph-utf8.doc.tar.xz -Source1354: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-base.tar.xz -Source1355: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifluatex.tar.xz -Source1356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifluatex.doc.tar.xz -Source1358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifxetex.tar.xz -Source1359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifxetex.doc.tar.xz -Source1361: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knuth-lib.tar.xz -Source1362: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knuth-local.tar.xz -Source1363: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lua-alt-getopt.tar.xz -Source1364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lua-alt-getopt.doc.tar.xz -Source1369: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mflogo.tar.xz -Source1370: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mflogo.doc.tar.xz -Source1378: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-common.doc.tar.xz -Source1381: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-msg-translations.tar.xz -Source1386: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colortbl.tar.xz -Source1387: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colortbl.doc.tar.xz -Source1389: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyhdr.tar.xz -Source1390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyhdr.doc.tar.xz -Source1391: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fix2col.tar.xz -Source1392: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fix2col.doc.tar.xz -Source1394: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/geometry.tar.xz -Source1395: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/geometry.doc.tar.xz -Source1397: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphics.tar.xz -Source1398: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphics.doc.tar.xz -Source1400: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyperref.tar.xz -Source1401: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyperref.doc.tar.xz -Source1405: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxmisc.tar.xz -Source1406: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfnfss.tar.xz -Source1407: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfnfss.doc.tar.xz -Source1411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/natbib.tar.xz -Source1412: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/natbib.doc.tar.xz -Source1417: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pslatex.tar.xz -Source1419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psnfss.tar.xz -Source1420: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psnfss.doc.tar.xz -Source1422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pspicture.tar.xz -Source1423: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pspicture.doc.tar.xz -Source1425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tools.tar.xz -Source1426: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tools.doc.tar.xz -Source1428: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/url.tar.xz -Source1429: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/url.doc.tar.xz -Source1430: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collref.tar.xz -Source1431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collref.doc.tar.xz -Source1433: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/compactbib.tar.xz -Source1436: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/custom-bib.tar.xz -Source1437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/custom-bib.doc.tar.xz -Source1439: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/din1505.tar.xz -Source1440: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/din1505.doc.tar.xz -Source1441: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dk-bib.tar.xz -Source1442: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dk-bib.doc.tar.xz -Source1444: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doipubmed.tar.xz -Source1445: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doipubmed.doc.tar.xz -Source1447: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/economic.tar.xz -Source1448: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/economic.doc.tar.xz -Source1449: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fbs.tar.xz -Source1450: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/figbib.tar.xz -Source1451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/figbib.doc.tar.xz -Source1452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footbib.tar.xz -Source1453: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footbib.doc.tar.xz -Source1455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/francais-bst.tar.xz -Source1456: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/francais-bst.doc.tar.xz -Source1457: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/geschichtsfrkl.tar.xz -Source1458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/geschichtsfrkl.doc.tar.xz -Source1460: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harvard.tar.xz -Source1461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harvard.doc.tar.xz -Source1463: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harvmac.tar.xz -Source1464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harvmac.doc.tar.xz -Source1465: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/historische-zeitschrift.tar.xz -Source1466: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/historische-zeitschrift.doc.tar.xz -Source1467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ijqc.tar.xz -Source1468: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ijqc.doc.tar.xz -Source1469: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inlinebib.tar.xz -Source1470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inlinebib.doc.tar.xz -Source1471: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iopart-num.tar.xz -Source1472: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iopart-num.doc.tar.xz -Source1473: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jneurosci.tar.xz -Source1474: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jneurosci.doc.tar.xz -Source1475: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jurabib.tar.xz -Source1476: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jurabib.doc.tar.xz -Source1478: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ksfh_nat.tar.xz -Source1482: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logreq.tar.xz -Source1483: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logreq.doc.tar.xz -Source1484: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/margbib.tar.xz -Source1485: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/margbib.doc.tar.xz -Source1487: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multibib.tar.xz -Source1488: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multibib.doc.tar.xz -Source1493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/munich.tar.xz -Source1494: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/munich.doc.tar.xz -Source1495: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nar.tar.xz -Source1496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nmbib.tar.xz -Source1497: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nmbib.doc.tar.xz -Source1499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notes2bib.tar.xz -Source1500: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notes2bib.doc.tar.xz -Source1502: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oscola.tar.xz -Source1503: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oscola.doc.tar.xz -Source1504: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/perception.tar.xz -Source1505: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/perception.doc.tar.xz -Source1506: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pnas2009.tar.xz -Source1507: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rsc.tar.xz -Source1508: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rsc.doc.tar.xz -Source1510: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showtags.tar.xz -Source1511: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showtags.doc.tar.xz -Source1512: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sort-by-letters.tar.xz -Source1513: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sort-by-letters.doc.tar.xz -Source1514: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/splitbib.tar.xz -Source1515: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/splitbib.doc.tar.xz -Source1517: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turabian-formatting.tar.xz -Source1518: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turabian-formatting.doc.tar.xz -Source1519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uni-wtal-ger.tar.xz -Source1520: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uni-wtal-ger.doc.tar.xz -Source1521: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uni-wtal-lin.tar.xz -Source1522: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uni-wtal-lin.doc.tar.xz -Source1526: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/usebib.tar.xz -Source1527: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/usebib.doc.tar.xz -Source1529: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vak.tar.xz -Source1530: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vak.doc.tar.xz -Source1531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcite.tar.xz -Source1532: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcite.doc.tar.xz -Source1534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctan_chk.doc.tar.xz -Source1570: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hook-pre-commit-pkg.doc.tar.xz -Source1571: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphenex.tar.xz -Source1664: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetexconfig.tar.xz -Source1665: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lm.tar.xz -Source1666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lm.doc.tar.xz -Source1668: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lm-math.tar.xz -Source1669: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lm-math.doc.tar.xz -Source1670: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/manfnt-font.tar.xz -Source1671: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mflogo-font.tar.xz -Source1672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mflogo-font.doc.tar.xz -Source1673: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stmaryrd.tar.xz -Source1674: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stmaryrd.doc.tar.xz -Source1676: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jmn.tar.xz -Source1677: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-account.tar.xz -Source1678: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-account.doc.tar.xz -Source1679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-algorithmic.tar.xz -Source1680: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-animation.tar.xz -Source1681: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-animation.doc.tar.xz -Source1682: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-annotation.tar.xz -Source1683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-annotation.doc.tar.xz -Source1684: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-bnf.tar.xz -Source1685: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-bnf.doc.tar.xz -Source1686: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-chromato.tar.xz -Source1687: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-chromato.doc.tar.xz -Source1688: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-construction-plan.tar.xz -Source1689: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-construction-plan.doc.tar.xz -Source1690: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-cyrillicnumbers.tar.xz -Source1691: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-cyrillicnumbers.doc.tar.xz -Source1692: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-degrade.tar.xz -Source1693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-degrade.doc.tar.xz -Source1694: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-fancybreak.tar.xz -Source1695: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-fancybreak.doc.tar.xz -Source1696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-filter.tar.xz -Source1697: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-filter.doc.tar.xz -Source1699: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-french.tar.xz -Source1700: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-french.doc.tar.xz -Source1701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-fullpage.tar.xz -Source1702: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-fullpage.doc.tar.xz -Source1705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skaknew.tar.xz -Source1706: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skaknew.doc.tar.xz -Source1707: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-gantt.tar.xz -Source1708: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-gantt.doc.tar.xz -Source1709: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hatching.tar.xz -Source1710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hatching.doc.tar.xz -Source1711: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-gnuplot.tar.xz -Source1712: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-gnuplot.doc.tar.xz -Source1713: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-letter.tar.xz -Source1714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-letter.doc.tar.xz -Source1715: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-lettrine.tar.xz -Source1716: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-lettrine.doc.tar.xz -Source1719: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-mathsets.tar.xz -Source1720: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-mathsets.doc.tar.xz -Source1721: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-notes-zh-cn.tar.xz -Source1722: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-notes-zh-cn.doc.tar.xz -Source1723: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-rst.tar.xz -Source1724: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-rst.doc.tar.xz -Source1725: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-ruby.tar.xz -Source1726: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-ruby.doc.tar.xz -Source1727: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-simplefonts.tar.xz -Source1728: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-simplefonts.doc.tar.xz -Source1729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-simpleslides.tar.xz -Source1730: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-simpleslides.doc.tar.xz -Source1731: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-title.tar.xz -Source1732: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-title.doc.tar.xz -Source1733: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-transliterator.tar.xz -Source1734: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-transliterator.doc.tar.xz -Source1735: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-typearea.tar.xz -Source1736: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-typearea.doc.tar.xz -Source1737: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-typescripts.tar.xz -Source1738: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-typescripts.doc.tar.xz -Source1739: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-vim.tar.xz -Source1740: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-vim.doc.tar.xz -Source1741: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-visualcounter.tar.xz -Source1742: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-visualcounter.doc.tar.xz -Source1744: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comfortaa.tar.xz -Source1745: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comfortaa.doc.tar.xz -Source1747: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comicneue.tar.xz -Source1748: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comicneue.doc.tar.xz -Source1749: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concmath-fonts.tar.xz -Source1750: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concmath-fonts.doc.tar.xz -Source1751: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cookingsymbols.tar.xz -Source1752: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cookingsymbols.doc.tar.xz -Source1754: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/countriesofeurope.tar.xz -Source1755: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/countriesofeurope.doc.tar.xz -Source1756: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/courier-scaled.tar.xz -Source1757: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/courier-scaled.doc.tar.xz -Source1758: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cryst.tar.xz -Source1759: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cryst.doc.tar.xz -Source1760: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyklop.tar.xz -Source1761: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyklop.doc.tar.xz -Source1762: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dancers.tar.xz -Source1763: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dantelogo.tar.xz -Source1764: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dantelogo.doc.tar.xz -Source1765: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dejavu.tar.xz -Source1766: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dejavu.doc.tar.xz -Source1767: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dice.tar.xz -Source1768: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dice.doc.tar.xz -Source1769: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dictsym.tar.xz -Source1770: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dictsym.doc.tar.xz -Source1771: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dingbat.tar.xz -Source1772: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dingbat.doc.tar.xz -Source1774: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doublestroke.tar.xz -Source1775: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doublestroke.doc.tar.xz -Source1776: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dozenal.tar.xz -Source1777: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dozenal.doc.tar.xz -Source1779: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drm.tar.xz -Source1780: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drm.doc.tar.xz -Source1782: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/droid.tar.xz -Source1783: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/droid.doc.tar.xz -Source1785: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/duerer.tar.xz -Source1786: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/duerer.doc.tar.xz -Source1787: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/duerer-latex.tar.xz -Source1788: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/duerer-latex.doc.tar.xz -Source1789: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dutchcal.tar.xz -Source1790: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dutchcal.doc.tar.xz -Source1791: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ean.tar.xz -Source1792: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ean.doc.tar.xz -Source1793: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebgaramond.tar.xz -Source1794: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebgaramond.doc.tar.xz -Source1795: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebgaramond-maths.tar.xz -Source1796: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebgaramond-maths.doc.tar.xz -Source1797: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecc.tar.xz -Source1798: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecc.doc.tar.xz -Source1799: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eco.tar.xz -Source1800: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eco.doc.tar.xz -Source1802: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eiad.tar.xz -Source1803: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eiad.doc.tar.xz -Source1804: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eiad-ltx.tar.xz -Source1805: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eiad-ltx.doc.tar.xz -Source1807: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/electrum.tar.xz -Source1808: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/electrum.doc.tar.xz -Source1810: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elvish.tar.xz -Source1811: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elvish.doc.tar.xz -Source1812: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epigrafica.tar.xz -Source1813: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epigrafica.doc.tar.xz -Source1814: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epsdice.tar.xz -Source1815: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epsdice.doc.tar.xz -Source1817: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/erewhon.tar.xz -Source1818: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/erewhon.doc.tar.xz -Source1819: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esrelation.tar.xz -Source1820: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esrelation.doc.tar.xz -Source1822: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esstix.tar.xz -Source1823: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esstix.doc.tar.xz -Source1824: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esvect.tar.xz -Source1825: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esvect.doc.tar.xz -Source1827: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eulervm.tar.xz -Source1828: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eulervm.doc.tar.xz -Source1830: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euxm.tar.xz -Source1831: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fbb.tar.xz -Source1832: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fbb.doc.tar.xz -Source1833: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fdsymbol.tar.xz -Source1834: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fdsymbol.doc.tar.xz -Source1836: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fetamont.tar.xz -Source1837: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fetamont.doc.tar.xz -Source1839: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/feyn.tar.xz -Source1840: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/feyn.doc.tar.xz -Source1842: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fge.tar.xz -Source1843: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fge.doc.tar.xz -Source1845: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fira.tar.xz -Source1846: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fira.doc.tar.xz -Source1847: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/foekfont.tar.xz -Source1848: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/foekfont.doc.tar.xz -Source1849: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fonetika.tar.xz -Source1850: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fonetika.doc.tar.xz -Source1851: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontawesome.tar.xz -Source1852: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontawesome.doc.tar.xz -Source1853: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontmfizz.tar.xz -Source1854: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontmfizz.doc.tar.xz -Source1855: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/old-arrows.tar.xz -Source1856: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/old-arrows.doc.tar.xz -Source1857: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fourier.tar.xz -Source1858: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fourier.doc.tar.xz -Source1860: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fouriernc.tar.xz -Source1861: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fouriernc.doc.tar.xz -Source1862: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frcursive.tar.xz -Source1863: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frcursive.doc.tar.xz -Source1864: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/genealogy.tar.xz -Source1865: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/genealogy.doc.tar.xz -Source1866: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gentium-tug.tar.xz -Source1867: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gentium-tug.doc.tar.xz -Source1869: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsartemisia.tar.xz -Source1870: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsartemisia.doc.tar.xz -Source1871: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsbodoni.tar.xz -Source1872: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsbodoni.doc.tar.xz -Source1873: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfscomplutum.tar.xz -Source1874: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfscomplutum.doc.tar.xz -Source1875: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsdidot.tar.xz -Source1876: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsdidot.doc.tar.xz -Source1877: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsneohellenic.tar.xz -Source1878: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsneohellenic.doc.tar.xz -Source1879: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfssolomos.tar.xz -Source1880: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfssolomos.doc.tar.xz -Source1881: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gillcm.tar.xz -Source1882: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gillcm.doc.tar.xz -Source1883: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gillius.tar.xz -Source1884: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gillius.doc.tar.xz -Source1885: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gnu-freefont.tar.xz -Source1886: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gnu-freefont.doc.tar.xz -Source1888: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gothic.tar.xz -Source1889: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gothic.doc.tar.xz -Source1891: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greenpoint.tar.xz -Source1892: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greenpoint.doc.tar.xz -Source1893: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grotesq.tar.xz -Source1894: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grotesq.doc.tar.xz -Source1895: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hacm.tar.xz -Source1896: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hacm.doc.tar.xz -Source1897: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hands.tar.xz -Source1898: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/heuristica.tar.xz -Source1899: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/heuristica.doc.tar.xz -Source1900: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hfbright.tar.xz -Source1901: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hfbright.doc.tar.xz -Source1902: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hfoldsty.tar.xz -Source1903: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hfoldsty.doc.tar.xz -Source1905: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifsym.tar.xz -Source1906: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifsym.doc.tar.xz -Source1907: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inconsolata.tar.xz -Source1908: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inconsolata.doc.tar.xz -Source1909: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/initials.tar.xz -Source1910: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/initials.doc.tar.xz -Source1911: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ipaex-type1.tar.xz -Source1912: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ipaex-type1.doc.tar.xz -Source1913: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iwona.tar.xz -Source1914: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iwona.doc.tar.xz -Source1915: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jablantile.tar.xz -Source1916: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jablantile.doc.tar.xz -Source1917: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jamtimes.tar.xz -Source1918: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jamtimes.doc.tar.xz -Source1919: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/junicode.tar.xz -Source1920: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/junicode.doc.tar.xz -Source1921: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kixfont.tar.xz -Source1922: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kixfont.doc.tar.xz -Source1924: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kpfonts.tar.xz -Source1925: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kpfonts.doc.tar.xz -Source1926: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kurier.tar.xz -Source1927: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kurier.doc.tar.xz -Source1928: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lato.tar.xz -Source1929: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lato.doc.tar.xz -Source1931: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lfb.tar.xz -Source1932: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lfb.doc.tar.xz -Source1933: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertine.tar.xz -Source1934: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertine.doc.tar.xz -Source1935: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librebaskerville.tar.xz -Source1936: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librebaskerville.doc.tar.xz -Source1937: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librecaslon.tar.xz -Source1938: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librecaslon.doc.tar.xz -Source1939: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libris.tar.xz -Source1940: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libris.doc.tar.xz -Source1942: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linearA.tar.xz -Source1943: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linearA.doc.tar.xz -Source1945: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lobster2.tar.xz -Source1946: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lobster2.doc.tar.xz -Source1947: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lxfonts.tar.xz -Source1948: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lxfonts.doc.tar.xz -Source1950: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ly1.tar.xz -Source1951: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ly1.doc.tar.xz -Source1952: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathabx.tar.xz -Source1953: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathabx.doc.tar.xz -Source1954: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathabx-type1.tar.xz -Source1955: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathabx-type1.doc.tar.xz -Source1956: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathdesign.tar.xz -Source1957: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathdesign.doc.tar.xz -Source1958: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mdputu.tar.xz -Source1959: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mdputu.doc.tar.xz -Source1960: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mdsymbol.tar.xz -Source1961: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mdsymbol.doc.tar.xz -Source1963: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/merriweather.tar.xz -Source1964: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/merriweather.doc.tar.xz -Source1965: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mintspirit.tar.xz -Source1966: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mintspirit.doc.tar.xz -Source1967: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mnsymbol.tar.xz -Source1968: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mnsymbol.doc.tar.xz -Source1970: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newpx.tar.xz -Source1971: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newpx.doc.tar.xz -Source1972: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newtx.tar.xz -Source1973: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newtx.doc.tar.xz -Source1974: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newtxsf.tar.xz -Source1975: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newtxsf.doc.tar.xz -Source1976: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newtxtt.tar.xz -Source1977: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newtxtt.doc.tar.xz -Source1978: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nkarta.tar.xz -Source1979: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nkarta.doc.tar.xz -Source1981: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/obnov.tar.xz -Source1982: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/obnov.doc.tar.xz -Source1983: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocherokee.tar.xz -Source1984: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocherokee.doc.tar.xz -Source1985: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocr-b.tar.xz -Source1986: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocr-b.doc.tar.xz -Source1987: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocr-b-outline.tar.xz -Source1988: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocr-b-outline.doc.tar.xz -Source1990: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ogham.tar.xz -Source1991: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ogham.doc.tar.xz -Source1992: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oinuit.tar.xz -Source1993: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oinuit.doc.tar.xz -Source1995: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oldlatin.tar.xz -Source1996: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oldlatin.doc.tar.xz -Source1997: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oldstandard.tar.xz -Source1998: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oldstandard.doc.tar.xz -Source2000: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/opensans.tar.xz -Source2001: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/opensans.doc.tar.xz -Source2003: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/orkhun.tar.xz -Source2004: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/orkhun.doc.tar.xz -Source2005: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/overlock.tar.xz -Source2006: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/overlock.doc.tar.xz -Source2007: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pacioli.tar.xz -Source2008: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pacioli.doc.tar.xz -Source2010: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paratype.tar.xz -Source2011: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paratype.doc.tar.xz -Source2012: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phaistos.tar.xz -Source2013: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phaistos.doc.tar.xz -Source2015: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phonetic.tar.xz -Source2016: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phonetic.doc.tar.xz -Source2017: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pigpen.tar.xz -Source2018: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pigpen.doc.tar.xz -Source2019: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/playfair.tar.xz -Source2020: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/playfair.doc.tar.xz -Source2021: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poltawski.tar.xz -Source2022: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poltawski.doc.tar.xz -Source2023: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prodint.tar.xz -Source2024: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prodint.doc.tar.xz -Source2025: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/punk.tar.xz -Source2026: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/punk.doc.tar.xz -Source2027: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/punk-latex.tar.xz -Source2028: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/punk-latex.doc.tar.xz -Source2029: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/punknova.tar.xz -Source2030: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/punknova.doc.tar.xz -Source2031: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxtxalfa.tar.xz -Source2032: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxtxalfa.doc.tar.xz -Source2033: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quattrocento.tar.xz -Source2034: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quattrocento.doc.tar.xz -Source2035: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/raleway.tar.xz -Source2036: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/raleway.doc.tar.xz -Source2037: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/recycle.tar.xz -Source2038: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/recycle.doc.tar.xz -Source2039: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/roboto.tar.xz -Source2040: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/roboto.doc.tar.xz -Source2041: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romande.tar.xz -Source2042: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romande.doc.tar.xz -Source2044: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rsfso.tar.xz -Source2045: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rsfso.doc.tar.xz -Source2046: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sansmathaccent.tar.xz -Source2047: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sansmathaccent.doc.tar.xz -Source2048: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sansmathfonts.tar.xz -Source2049: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sansmathfonts.doc.tar.xz -Source2050: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sauter.tar.xz -Source2051: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sauterfonts.tar.xz -Source2052: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sauterfonts.doc.tar.xz -Source2054: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schulschriften.tar.xz -Source2055: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schulschriften.doc.tar.xz -Source2056: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semaphor.tar.xz -Source2057: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semaphor.doc.tar.xz -Source2058: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skull.tar.xz -Source2060: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sourcecodepro.tar.xz -Source2061: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sourcecodepro.doc.tar.xz -Source2062: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sourcesanspro.tar.xz -Source2063: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sourcesanspro.doc.tar.xz -Source2064: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sourceserifpro.tar.xz -Source2065: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sourceserifpro.doc.tar.xz -Source2066: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/starfont.tar.xz -Source2067: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/starfont.doc.tar.xz -Source2068: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/staves.tar.xz -Source2069: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/staves.doc.tar.xz -Source2071: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stix.tar.xz -Source2072: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stix.doc.tar.xz -Source2074: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/superiors.tar.xz -Source2075: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/superiors.doc.tar.xz -Source2076: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tapir.tar.xz -Source2077: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tapir.doc.tar.xz -Source2078: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tengwarscript.tar.xz -Source2079: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tengwarscript.doc.tar.xz -Source2081: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tfrupee.tar.xz -Source2082: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tfrupee.doc.tar.xz -Source2084: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tpslifonts.tar.xz -Source2085: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tpslifonts.doc.tar.xz -Source2087: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trajan.tar.xz -Source2088: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trajan.doc.tar.xz -Source2090: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/txfontsb.tar.xz -Source2091: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/txfontsb.doc.tar.xz -Source2093: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typicons.tar.xz -Source2094: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typicons.doc.tar.xz -Source2095: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umtypewriter.tar.xz -Source2096: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/universa.tar.xz -Source2097: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/universa.doc.tar.xz -Source2099: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/universalis.tar.xz -Source2100: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/universalis.doc.tar.xz -Source2101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/urwchancal.tar.xz -Source2102: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/urwchancal.doc.tar.xz -Source2103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/venturisadf.tar.xz -Source2104: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/venturisadf.doc.tar.xz -Source2106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wsuipa.tar.xz -Source2107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wsuipa.doc.tar.xz -Source2108: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcharter.tar.xz -Source2109: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcharter.doc.tar.xz -Source2110: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xits.tar.xz -Source2111: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xits.doc.tar.xz -Source2113: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yfonts.tar.xz -Source2114: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yfonts.doc.tar.xz -Source2118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zlmtt.tar.xz -Source2119: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zlmtt.doc.tar.xz -Source2120: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/courier.tar.xz -Source2121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ec.tar.xz -Source2122: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ec.doc.tar.xz -Source2123: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euro.tar.xz -Source2124: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euro.doc.tar.xz -Source2126: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eurosym.tar.xz -Source2127: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eurosym.doc.tar.xz -Source2128: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fpl.tar.xz -Source2129: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fpl.doc.tar.xz -Source2131: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/helvetic.tar.xz -Source2132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marvosym.tar.xz -Source2133: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marvosym.doc.tar.xz -Source2135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathpazo.tar.xz -Source2136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathpazo.doc.tar.xz -Source2138: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ncntrsbk.tar.xz -Source2139: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/palatino.tar.xz -Source2140: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxfonts.tar.xz -Source2141: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxfonts.doc.tar.xz -Source2142: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rsfs.tar.xz -Source2143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rsfs.doc.tar.xz -Source2144: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/symbol.tar.xz -Source2145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-gyre.tar.xz -Source2146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-gyre.doc.tar.xz -Source2147: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-gyre-math.tar.xz -Source2148: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-gyre-math.doc.tar.xz -Source2149: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/times.tar.xz -Source2150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tipa.tar.xz -Source2151: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tipa.doc.tar.xz -Source2152: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/txfonts.tar.xz -Source2153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/txfonts.doc.tar.xz -Source2154: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/utopia.tar.xz -Source2155: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/utopia.doc.tar.xz -Source2156: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wasy.tar.xz -Source2157: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wasy.doc.tar.xz -Source2158: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wasy2-ps.tar.xz -Source2159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wasy2-ps.doc.tar.xz -Source2160: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wasysym.tar.xz -Source2161: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wasysym.doc.tar.xz -Source2163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zapfchan.tar.xz -Source2164: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zapfding.tar.xz -Source2178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvipsconfig.tar.xz -Source2188: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/edmac.tar.xz -Source2189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/edmac.doc.tar.xz -Source2198: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psizzl.tar.xz -Source2199: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psizzl.doc.tar.xz -Source2201: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/startex.tar.xz -Source2202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/startex.doc.tar.xz -Source2206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossword.tar.xz -Source2207: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossword.doc.tar.xz -Source2209: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crosswrd.tar.xz -Source2210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crosswrd.doc.tar.xz -Source2212: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/egameps.tar.xz -Source2213: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/egameps.doc.tar.xz -Source2214: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gamebook.tar.xz -Source2215: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gamebook.doc.tar.xz -Source2217: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/go.tar.xz -Source2218: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/go.doc.tar.xz -Source2220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hanoi.tar.xz -Source2221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/havannah.tar.xz -Source2222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/havannah.doc.tar.xz -Source2224: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hexgame.tar.xz -Source2225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hexgame.doc.tar.xz -Source2226: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/horoscop.tar.xz -Source2227: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/horoscop.doc.tar.xz -Source2229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labyrinth.tar.xz -Source2230: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labyrinth.doc.tar.xz -Source2231: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logicpuzzle.tar.xz -Source2232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logicpuzzle.doc.tar.xz -Source2233: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/othello.tar.xz -Source2234: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/othello.doc.tar.xz -Source2235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/othelloboard.tar.xz -Source2236: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/othelloboard.doc.tar.xz -Source2237: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pas-crosswords.tar.xz -Source2238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pas-crosswords.doc.tar.xz -Source2239: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psgo.tar.xz -Source2240: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psgo.doc.tar.xz -Source2241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/reverxii.doc.tar.xz -Source2245: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schwalbe-chess.tar.xz -Source2246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schwalbe-chess.doc.tar.xz -Source2248: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sgame.tar.xz -Source2249: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sgame.doc.tar.xz -Source2250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skak.tar.xz -Source2251: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skak.doc.tar.xz -Source2252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sudoku.tar.xz -Source2253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sudoku.doc.tar.xz -Source2255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sudokubundle.tar.xz -Source2256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sudokubundle.doc.tar.xz -Source2258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xq.tar.xz -Source2259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xq.doc.tar.xz -Source2260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xskak.tar.xz -Source2261: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xskak.doc.tar.xz -Source2263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/c-pascal.tar.xz -Source2264: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/c-pascal.doc.tar.xz -Source2265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorsep.tar.xz -Source2266: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dinat.tar.xz -Source2267: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dinat.doc.tar.xz -Source2268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dirtree.tar.xz -Source2269: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dirtree.doc.tar.xz -Source2271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/docbytex.tar.xz -Source2272: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/docbytex.doc.tar.xz -Source2273: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dowith.tar.xz -Source2274: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dowith.doc.tar.xz -Source2276: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eijkhout.tar.xz -Source2277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/encxvlna.tar.xz -Source2278: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/encxvlna.doc.tar.xz -Source2279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epigram.tar.xz -Source2280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fenixpar.tar.xz -Source2281: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fenixpar.doc.tar.xz -Source2282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fltpoint.tar.xz -Source2283: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fltpoint.doc.tar.xz -Source2285: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fntproof.tar.xz -Source2286: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fntproof.doc.tar.xz -Source2287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gates.tar.xz -Source2288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gates.doc.tar.xz -Source2289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifetex.tar.xz -Source2290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifetex.doc.tar.xz -Source2292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iftex.tar.xz -Source2293: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iftex.doc.tar.xz -Source2294: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/insbox.tar.xz -Source2295: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/insbox.doc.tar.xz -Source2296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lambda-lists.tar.xz -Source2297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lambda-lists.doc.tar.xz -Source2298: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/langcode.tar.xz -Source2299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/langcode.doc.tar.xz -Source2301: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lecturer.tar.xz -Source2302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lecturer.doc.tar.xz -Source2303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librarian.tar.xz -Source2304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librarian.doc.tar.xz -Source2305: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathdots.tar.xz -Source2306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathdots.doc.tar.xz -Source2308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metatex.tar.xz -Source2309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metatex.doc.tar.xz -Source2310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/midnight.tar.xz -Source2311: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/midnight.doc.tar.xz -Source2312: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/navigator.tar.xz -Source2313: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/navigator.doc.tar.xz -Source2314: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ofs.tar.xz -Source2315: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ofs.doc.tar.xz -Source2316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdf-trans.tar.xz -Source2317: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdf-trans.doc.tar.xz -Source2318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plainpkg.tar.xz -Source2319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plainpkg.doc.tar.xz -Source2321: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schemata.tar.xz -Source2322: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schemata.doc.tar.xz -Source2324: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shade.tar.xz -Source2325: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shade.doc.tar.xz -Source2326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/systeme.tar.xz -Source2327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/systeme.doc.tar.xz -Source2328: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabto-generic.tar.xz -Source2329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/termmenu.tar.xz -Source2330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/termmenu.doc.tar.xz -Source2332: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tracklang.tar.xz -Source2333: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tracklang.doc.tar.xz -Source2335: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texapi.tar.xz -Source2336: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texapi.doc.tar.xz -Source2337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/upca.tar.xz -Source2338: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/upca.doc.tar.xz -Source2339: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xlop.tar.xz -Source2340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xlop.doc.tar.xz -Source2342: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yax.tar.xz -Source2343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yax.doc.tar.xz -Source2344: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epsf.tar.xz -Source2345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epsf.doc.tar.xz -Source2346: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontname.tar.xz -Source2347: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontname.doc.tar.xz -Source2348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/genmisc.tar.xz -Source2349: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kastrup.tar.xz -Source2350: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kastrup.doc.tar.xz -Source2352: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multido.tar.xz -Source2353: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multido.doc.tar.xz -Source2355: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/path.tar.xz -Source2356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/path.doc.tar.xz -Source2357: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-ps.tar.xz -Source2358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-ps.doc.tar.xz -Source2359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ulem.tar.xz -Source2360: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ulem.doc.tar.xz -Source2364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/passivetex.tar.xz -Source2369: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xmltexconfig.tar.xz -Source2370: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/covington.tar.xz -Source2371: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/covington.doc.tar.xz -Source2374: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dramatist.tar.xz -Source2375: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dramatist.doc.tar.xz -Source2377: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvgloss.tar.xz -Source2378: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvgloss.doc.tar.xz -Source2380: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecltree.tar.xz -Source2381: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecltree.doc.tar.xz -Source2382: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/edfnotes.tar.xz -Source2383: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/edfnotes.doc.tar.xz -Source2385: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ednotes.tar.xz -Source2386: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ednotes.doc.tar.xz -Source2387: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ncctools.tar.xz -Source2388: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ncctools.doc.tar.xz -Source2390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eledform.tar.xz -Source2391: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eledform.doc.tar.xz -Source2393: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eledmac.tar.xz -Source2394: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eledmac.doc.tar.xz -Source2396: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/expex.tar.xz -Source2397: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/expex.doc.tar.xz -Source2398: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gb4e.tar.xz -Source2399: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gb4e.doc.tar.xz -Source2400: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmverse.tar.xz -Source2401: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmverse.doc.tar.xz -Source2402: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jura.tar.xz -Source2403: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jura.doc.tar.xz -Source2405: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/juraabbrev.tar.xz -Source2406: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/juraabbrev.doc.tar.xz -Source2408: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/juramisc.tar.xz -Source2409: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/juramisc.doc.tar.xz -Source2410: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jurarsp.tar.xz -Source2411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jurarsp.doc.tar.xz -Source2413: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ledmac.tar.xz -Source2414: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ledmac.doc.tar.xz -Source2416: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leipzig.tar.xz -Source2417: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leipzig.doc.tar.xz -Source2419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lexikon.tar.xz -Source2420: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lexikon.doc.tar.xz -Source2421: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lexref.tar.xz -Source2422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lexref.doc.tar.xz -Source2423: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linguex.tar.xz -Source2424: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linguex.doc.tar.xz -Source2425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/liturg.tar.xz -Source2426: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/liturg.doc.tar.xz -Source2428: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metrix.tar.xz -Source2429: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metrix.doc.tar.xz -Source2431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parallel.tar.xz -Source2432: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parallel.doc.tar.xz -Source2434: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parrun.tar.xz -Source2435: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parrun.doc.tar.xz -Source2437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phonrule.tar.xz -Source2438: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phonrule.doc.tar.xz -Source2439: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plari.tar.xz -Source2440: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plari.doc.tar.xz -Source2442: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/play.tar.xz -Source2443: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/play.doc.tar.xz -Source2445: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poemscol.tar.xz -Source2446: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poemscol.doc.tar.xz -Source2448: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poetrytex.tar.xz -Source2449: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poetrytex.doc.tar.xz -Source2451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qobitree.tar.xz -Source2452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qobitree.doc.tar.xz -Source2453: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qtree.tar.xz -Source2454: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qtree.doc.tar.xz -Source2455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/reledmac.tar.xz -Source2456: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/reledmac.doc.tar.xz -Source2458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rrgtrees.tar.xz -Source2459: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rrgtrees.doc.tar.xz -Source2461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rtklage.tar.xz -Source2462: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rtklage.doc.tar.xz -Source2463: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/screenplay.tar.xz -Source2464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/screenplay.doc.tar.xz -Source2466: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/screenplay-pkg.tar.xz -Source2467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/screenplay-pkg.doc.tar.xz -Source2468: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sides.tar.xz -Source2469: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sides.doc.tar.xz -Source2470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stage.tar.xz -Source2471: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stage.doc.tar.xz -Source2472: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textglos.tar.xz -Source2473: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textglos.doc.tar.xz -Source2475: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thalie.tar.xz -Source2476: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thalie.doc.tar.xz -Source2478: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tree-dvips.tar.xz -Source2479: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tree-dvips.doc.tar.xz -Source2480: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verse.tar.xz -Source2481: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verse.doc.tar.xz -Source2483: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xyling.tar.xz -Source2484: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xyling.doc.tar.xz -Source2485: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ethiop.tar.xz -Source2486: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ethiop.doc.tar.xz -Source2488: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ethiop-t1.tar.xz -Source2489: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ethiop-t1.doc.tar.xz -Source2490: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fc.tar.xz -Source2491: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fc.doc.tar.xz -Source2492: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-ethiopic.tar.xz -Source2493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dad.tar.xz -Source2494: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dad.doc.tar.xz -Source2495: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ghab.tar.xz -Source2496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ghab.doc.tar.xz -Source2497: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-arabic.tar.xz -Source2498: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-farsi.tar.xz -Source2499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imsproc.tar.xz -Source2500: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imsproc.doc.tar.xz -Source2501: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-persian.doc.tar.xz -Source2502: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/persian-bib.tar.xz -Source2503: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/persian-bib.doc.tar.xz -Source2504: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simurgh.tar.xz -Source2505: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simurgh.doc.tar.xz -Source2506: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tram.tar.xz -Source2507: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tram.doc.tar.xz -Source2508: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dnp.tar.xz -Source2509: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcjk2uni.tar.xz -Source2510: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcjk2uni.doc.tar.xz -Source2512: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zxjafont.tar.xz -Source2513: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zxjafont.doc.tar.xz -Source2514: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctex.tar.xz -Source2515: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctex.doc.tar.xz -Source2517: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctex-faq.doc.tar.xz -Source2518: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fandol.tar.xz -Source2519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fandol.doc.tar.xz -Source2520: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-chinese.tar.xz -Source2521: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/impatient-cn.doc.tar.xz -Source2522: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-notes-zh-cn.doc.tar.xz -Source2523: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-chinese.doc.tar.xz -Source2524: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-zh-cn.doc.tar.xz -Source2525: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpinyin.tar.xz -Source2526: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpinyin.doc.tar.xz -Source2528: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhmetrics.tar.xz -Source2529: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhmetrics.doc.tar.xz -Source2531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhnumber.tar.xz -Source2532: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhnumber.doc.tar.xz -Source2534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhspacing.tar.xz -Source2535: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhspacing.doc.tar.xz -Source2541: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyrplain.tar.xz -Source2542: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/disser.tar.xz -Source2543: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/disser.doc.tar.xz -Source2545: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eskd.tar.xz -Source2546: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eskd.doc.tar.xz -Source2548: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eskdx.tar.xz -Source2549: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eskdx.doc.tar.xz -Source2550: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gost.tar.xz -Source2551: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gost.doc.tar.xz -Source2553: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-bulgarian.tar.xz -Source2554: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-mongolian.tar.xz -Source2555: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-russian.tar.xz -Source2556: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ruhyphen.tar.xz -Source2558: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-serbian.tar.xz -Source2559: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-ukrainian.tar.xz -Source2560: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ukrhyph.tar.xz -Source2561: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ukrhyph.doc.tar.xz -Source2562: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lcyw.tar.xz -Source2563: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lcyw.doc.tar.xz -Source2565: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lh.tar.xz -Source2566: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lh.doc.tar.xz -Source2568: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lhcyr.tar.xz -Source2570: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-bulgarian.doc.tar.xz -Source2571: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-mongol.doc.tar.xz -Source2572: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-russian.doc.tar.xz -Source2573: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-ukr.doc.tar.xz -Source2574: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mongolian-babel.tar.xz -Source2575: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mongolian-babel.doc.tar.xz -Source2577: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/montex.tar.xz -Source2578: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/montex.doc.tar.xz -Source2579: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpman-ru.doc.tar.xz -Source2580: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-eucl-translation-bg.doc.tar.xz -Source2581: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/serbian-apostrophe.tar.xz -Source2582: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/serbian-apostrophe.doc.tar.xz -Source2583: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/serbian-date-lat.tar.xz -Source2584: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/serbian-date-lat.doc.tar.xz -Source2585: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/serbian-def-cyr.tar.xz -Source2586: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/serbian-def-cyr.doc.tar.xz -Source2587: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/serbian-lig.tar.xz -Source2588: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/serbian-lig.doc.tar.xz -Source2589: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/t2.tar.xz -Source2590: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/t2.doc.tar.xz -Source2591: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-ru.doc.tar.xz -Source2592: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-sr.doc.tar.xz -Source2593: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cs.tar.xz -Source2594: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csbulletin.tar.xz -Source2595: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csbulletin.doc.tar.xz -Source2599: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cstex.doc.tar.xz -Source2600: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-czech.tar.xz -Source2601: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-slovak.tar.xz -Source2604: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-czech.doc.tar.xz -Source2605: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-slovak.doc.tar.xz -Source2606: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-cz.doc.tar.xz -Source2607: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-english.tar.xz -Source2608: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/FAQ-en.doc.tar.xz -Source2609: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/MemoirChapStyles.doc.tar.xz -Source2610: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/Type1fonts.doc.tar.xz -Source2611: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/components-of-TeX.doc.tar.xz -Source2612: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comprehensive.doc.tar.xz -Source2613: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dickimaw.doc.tar.xz -Source2614: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtxtut.doc.tar.xz -Source2615: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/first-latex-doc.doc.tar.xz -Source2616: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gentle.doc.tar.xz -Source2617: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guide-to-latex.doc.tar.xz -Source2618: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/happy4th.doc.tar.xz -Source2619: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/impatient.doc.tar.xz -Source2620: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/intro-scientific.doc.tar.xz -Source2621: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knuth.doc.tar.xz -Source2623: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l2tabu-english.doc.tar.xz -Source2624: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-brochure.doc.tar.xz -Source2625: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-course.doc.tar.xz -Source2626: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-doc-ptr.doc.tar.xz -Source2627: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-graphics-companion.doc.tar.xz -Source2628: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-veryshortguide.doc.tar.xz -Source2629: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-web-companion.doc.tar.xz -Source2630: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2e-help-texinfo.tar.xz -Source2631: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2e-help-texinfo.doc.tar.xz -Source2632: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex4wp.doc.tar.xz -Source2633: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexcheat.doc.tar.xz -Source2634: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexcourse-rug.doc.tar.xz -Source2635: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexfileinfo-pkgs.tar.xz -Source2636: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexfileinfo-pkgs.doc.tar.xz -Source2638: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-english.doc.tar.xz -Source2639: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/macros2e.doc.tar.xz -Source2640: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/math-e.doc.tar.xz -Source2641: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/maths-symbols.doc.tar.xz -Source2642: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memdesign.doc.tar.xz -Source2643: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metafont-beginners.doc.tar.xz -Source2644: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metapost-examples.doc.tar.xz -Source2646: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/patgen2-tutorial.doc.tar.xz -Source2647: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pictexsum.doc.tar.xz -Source2648: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plain-doc.doc.tar.xz -Source2649: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/presentations-en.doc.tar.xz -Source2651: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simplified-latex.doc.tar.xz -Source2652: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svg-inkscape.doc.tar.xz -Source2653: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabulars-e.doc.tar.xz -Source2654: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tamethebeast.doc.tar.xz -Source2655: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tds.doc.tar.xz -Source2656: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-font-errors-cheatsheet.doc.tar.xz -Source2657: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-overview.doc.tar.xz -Source2658: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-refs.doc.tar.xz -Source2659: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texbytopic.doc.tar.xz -Source2660: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titlepages.doc.tar.xz -Source2661: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tlc2.doc.tar.xz -Source2662: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/visualfaq.doc.tar.xz -Source2664: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/webguide.doc.tar.xz -Source2665: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetexref.doc.tar.xz -Source2666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/finbib.tar.xz -Source2667: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hrlatex.tar.xz -Source2668: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hrlatex.doc.tar.xz -Source2670: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-armenian.tar.xz -Source2671: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-croatian.tar.xz -Source2672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-danish.tar.xz -Source2673: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-dutch.tar.xz -Source2674: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-estonian.tar.xz -Source2675: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-finnish.tar.xz -Source2676: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-friulan.tar.xz -Source2677: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-hungarian.tar.xz -Source2678: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-hungarian.doc.tar.xz -Source2679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-icelandic.tar.xz -Source2680: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-irish.tar.xz -Source2681: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-kurmanji.tar.xz -Source2682: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-latin.tar.xz -Source2683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-latvian.tar.xz -Source2684: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-lithuanian.tar.xz -Source2685: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-norwegian.tar.xz -Source2686: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-piedmontese.tar.xz -Source2687: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-romanian.tar.xz -Source2688: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-romansh.tar.xz -Source2689: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-slovenian.tar.xz -Source2690: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-swedish.tar.xz -Source2691: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-turkish.tar.xz -Source2692: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-uppersorbian.tar.xz -Source2693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-welsh.tar.xz -Source2694: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lithuanian.tar.xz -Source2695: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lithuanian.doc.tar.xz -Source2696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-dutch.doc.tar.xz -Source2697: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-finnish.doc.tar.xz -Source2698: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-slovenian.doc.tar.xz -Source2699: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-turkish.doc.tar.xz -Source2700: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nevelok.tar.xz -Source2701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nevelok.doc.tar.xz -Source2703: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/swebib.tar.xz -Source2704: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/swebib.doc.tar.xz -Source2705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turkmen.tar.xz -Source2706: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turkmen.doc.tar.xz -Source2708: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/droit-fr.tar.xz -Source2709: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/droit-fr.doc.tar.xz -Source2710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/e-french.tar.xz -Source2711: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/e-french.doc.tar.xz -Source2712: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epslatex-fr.doc.tar.xz -Source2713: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/facture.tar.xz -Source2714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/facture.doc.tar.xz -Source2716: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frletter.tar.xz -Source2717: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frletter.doc.tar.xz -Source2718: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-basque.tar.xz -Source2719: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-french.tar.xz -Source2720: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/impatient-fr.doc.tar.xz -Source2721: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/impnattypo.tar.xz -Source2722: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/impnattypo.doc.tar.xz -Source2724: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l2tabu-french.doc.tar.xz -Source2725: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-french.doc.tar.xz -Source2726: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mafr.tar.xz -Source2727: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mafr.doc.tar.xz -Source2728: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabvar.tar.xz -Source2729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabvar.doc.tar.xz -Source2731: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tdsfrmath.tar.xz -Source2732: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tdsfrmath.doc.tar.xz -Source2734: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-fr.doc.tar.xz -Source2735: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-array-fr.doc.tar.xz -Source2736: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-dcolumn-fr.doc.tar.xz -Source2737: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-natbib-fr.doc.tar.xz -Source2738: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-tabbing-fr.doc.tar.xz -Source2739: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/variations.tar.xz -Source2740: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/variations.doc.tar.xz -Source2741: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csquotes-de.doc.tar.xz -Source2742: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dehyph-exptl.tar.xz -Source2743: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dehyph-exptl.doc.tar.xz -Source2744: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dhua.tar.xz -Source2745: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dhua.doc.tar.xz -Source2747: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/einfuehrung.doc.tar.xz -Source2748: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etdipa.doc.tar.xz -Source2749: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etoolbox-de.doc.tar.xz -Source2750: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fifinddo-info.doc.tar.xz -Source2752: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/geometry-de.doc.tar.xz -Source2753: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/german.tar.xz -Source2754: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/german.doc.tar.xz -Source2756: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/germbib.tar.xz -Source2757: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/germbib.doc.tar.xz -Source2758: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/germkorr.tar.xz -Source2759: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/germkorr.doc.tar.xz -Source2760: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hausarbeit-jura.tar.xz -Source2761: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hausarbeit-jura.doc.tar.xz -Source2763: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-german.tar.xz -Source2764: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/koma-script-examples.doc.tar.xz -Source2765: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l2picfaq.doc.tar.xz -Source2766: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l2tabu.doc.tar.xz -Source2767: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-bib-ex.doc.tar.xz -Source2768: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-referenz.doc.tar.xz -Source2769: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-tabellen.doc.tar.xz -Source2770: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexcheat-de.doc.tar.xz -Source2771: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-german.doc.tar.xz -Source2772: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lualatex-doc-de.doc.tar.xz -Source2773: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/microtype-de.doc.tar.xz -Source2774: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/presentations.doc.tar.xz -Source2776: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/r_und_s.tar.xz -Source2777: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/r_und_s.doc.tar.xz -Source2778: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/templates-fenn.doc.tar.xz -Source2779: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/templates-sommer.doc.tar.xz -Source2780: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-de.doc.tar.xz -Source2781: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tipa-de.doc.tar.xz -Source2782: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-arsclassica-de.doc.tar.xz -Source2783: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-biblatex-de.doc.tar.xz -Source2784: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-chemsym-de.doc.tar.xz -Source2785: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-ecv-de.doc.tar.xz -Source2786: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-enumitem-de.doc.tar.xz -Source2787: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-europecv-de.doc.tar.xz -Source2788: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-filecontents-de.doc.tar.xz -Source2789: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translation-moreverb-de.doc.tar.xz -Source2790: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/udesoftec.tar.xz -Source2791: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/udesoftec.doc.tar.xz -Source2793: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umlaute.tar.xz -Source2794: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umlaute.doc.tar.xz -Source2796: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/voss-mathcol.doc.tar.xz -Source2797: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsbaskerville.tar.xz -Source2798: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsbaskerville.doc.tar.xz -Source2799: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsporson.tar.xz -Source2800: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsporson.doc.tar.xz -Source2801: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greek-fontenc.tar.xz -Source2802: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greek-fontenc.doc.tar.xz -Source2803: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greek-inputenc.tar.xz -Source2804: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greek-inputenc.doc.tar.xz -Source2805: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greekdates.tar.xz -Source2806: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greekdates.doc.tar.xz -Source2808: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greektex.tar.xz -Source2809: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greektex.doc.tar.xz -Source2810: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-greek.tar.xz -Source2811: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-greek.doc.tar.xz -Source2812: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-ancientgreek.tar.xz -Source2813: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ibycus-babel.tar.xz -Source2814: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ibycus-babel.doc.tar.xz -Source2816: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ibygrk.tar.xz -Source2817: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ibygrk.doc.tar.xz -Source2818: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kerkis.tar.xz -Source2819: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kerkis.doc.tar.xz -Source2820: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/levy.tar.xz -Source2821: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/levy.doc.tar.xz -Source2822: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lgreek.tar.xz -Source2823: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lgreek.doc.tar.xz -Source2826: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/teubner.tar.xz -Source2827: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/teubner.doc.tar.xz -Source2829: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xgreek.tar.xz -Source2830: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xgreek.doc.tar.xz -Source2832: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yannisgr.tar.xz -Source2833: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yannisgr.doc.tar.xz -Source2837: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-indic.tar.xz -Source2838: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-sanskrit.tar.xz -Source2839: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sanskrit.tar.xz -Source2840: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sanskrit.doc.tar.xz -Source2842: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sanskrit-t1.tar.xz -Source2843: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sanskrit-t1.doc.tar.xz -Source2846: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex-devanagari.tar.xz -Source2847: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex-devanagari.doc.tar.xz -Source2848: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wnri.tar.xz -Source2849: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wnri.doc.tar.xz -Source2850: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wnri-latex.tar.xz -Source2851: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wnri-latex.doc.tar.xz -Source2853: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyhdr-it.doc.tar.xz -Source2854: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixltxhyph.tar.xz -Source2855: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixltxhyph.doc.tar.xz -Source2857: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frontespizio.tar.xz -Source2858: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frontespizio.doc.tar.xz -Source2860: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-italian.tar.xz -Source2861: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/itnumpar.tar.xz -Source2862: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/itnumpar.doc.tar.xz -Source2864: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l2tabu-italian.doc.tar.xz -Source2865: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex4wp-it.doc.tar.xz -Source2866: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/layaureo.tar.xz -Source2867: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/layaureo.doc.tar.xz -Source2869: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-italian.doc.tar.xz -Source2870: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psfrag-italian.doc.tar.xz -Source2871: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-it.doc.tar.xz -Source2874: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ipaex.tar.xz -Source2875: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ipaex.doc.tar.xz -Source2879: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/japanese-otf.tar.xz -Source2880: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/japanese-otf.doc.tar.xz -Source2882: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/japanese-otf-uptex.tar.xz -Source2883: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/japanese-otf-uptex.doc.tar.xz -Source2888: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jsclasses.tar.xz -Source2889: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jsclasses.doc.tar.xz -Source2891: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-japanese.doc.tar.xz -Source2892: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatexja.tar.xz -Source2893: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatexja.doc.tar.xz -Source2900: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxbase.tar.xz -Source2901: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxbase.doc.tar.xz -Source2902: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxchfon.tar.xz -Source2903: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxchfon.doc.tar.xz -Source2904: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxcjkcat.tar.xz -Source2905: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxcjkcat.doc.tar.xz -Source2906: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxjahyper.tar.xz -Source2907: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxjahyper.doc.tar.xz -Source2908: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxrubrica.tar.xz -Source2909: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxrubrica.doc.tar.xz -Source2914: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zxjafbfont.tar.xz -Source2915: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zxjafbfont.doc.tar.xz -Source2916: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zxjatype.tar.xz -Source2917: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zxjatype.doc.tar.xz -Source2918: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-oblivoir.tar.xz -Source2919: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-oblivoir.doc.tar.xz -Source2920: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memoir.tar.xz -Source2921: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memoir.doc.tar.xz -Source2923: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-utf.tar.xz -Source2924: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-utf.doc.tar.xz -Source2925: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-plain.tar.xz -Source2926: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kotex-plain.doc.tar.xz -Source2929: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-korean.doc.tar.xz -Source2930: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nanumtype1.tar.xz -Source2931: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nanumtype1.doc.tar.xz -Source2932: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctib.tar.xz -Source2933: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctib.doc.tar.xz -Source2935: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-afrikaans.tar.xz -Source2936: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-coptic.tar.xz -Source2937: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-esperanto.tar.xz -Source2938: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-georgian.tar.xz -Source2939: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-indonesian.tar.xz -Source2940: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-interlingua.tar.xz -Source2941: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-thai.tar.xz -Source2942: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-turkmen.tar.xz -Source2943: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-thai.doc.tar.xz -Source2944: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-vietnamese.doc.tar.xz -Source2945: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ntheorem-vn.doc.tar.xz -Source2946: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vntex.tar.xz -Source2947: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vntex.doc.tar.xz -Source2949: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gustlib.tar.xz -Source2950: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gustlib.doc.tar.xz -Source2951: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gustprog.doc.tar.xz -Source2952: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-polish.tar.xz -Source2953: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-polish.doc.tar.xz -Source2957: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pl.tar.xz -Source2958: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pl.doc.tar.xz -Source2959: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mwcls.tar.xz -Source2960: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mwcls.doc.tar.xz -Source2962: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polski.tar.xz -Source2963: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polski.doc.tar.xz -Source2965: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/przechlewski-book.tar.xz -Source2966: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/przechlewski-book.doc.tar.xz -Source2967: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qpxqtx.tar.xz -Source2968: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qpxqtx.doc.tar.xz -Source2969: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tap.tar.xz -Source2970: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tap.doc.tar.xz -Source2971: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-virtual-academy-pl.doc.tar.xz -Source2972: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-pl.doc.tar.xz -Source2973: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/utf8mex.tar.xz -Source2974: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/utf8mex.doc.tar.xz -Source2975: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cursolatex.doc.tar.xz -Source2976: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/feupphdteses.tar.xz -Source2977: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/feupphdteses.doc.tar.xz -Source2978: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-portuguese.tar.xz -Source2979: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexcheat-ptbr.doc.tar.xz -Source2980: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-portuguese.doc.tar.xz -Source2981: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ordinalpt.tar.xz -Source2982: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ordinalpt.doc.tar.xz -Source2984: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xypic-tut-pt.doc.tar.xz -Source2985: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/es-tex-faq.doc.tar.xz -Source2986: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-catalan.tar.xz -Source2987: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-galician.tar.xz -Source2988: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-spanish.tar.xz -Source2989: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l2tabu-spanish.doc.tar.xz -Source2990: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2e-help-texinfo-spanish.tar.xz -Source2991: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2e-help-texinfo-spanish.doc.tar.xz -Source2992: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexcheat-esmx.doc.tar.xz -Source2993: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-spanish.doc.tar.xz -Source2994: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spanish-mx.tar.xz -Source2995: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spanish-mx.doc.tar.xz -Source2996: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crop.tar.xz -Source2997: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crop.doc.tar.xz -Source2999: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctable.tar.xz -Source3000: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctable.doc.tar.xz -Source3002: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eso-pic.tar.xz -Source3003: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eso-pic.doc.tar.xz -Source3005: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euenc.tar.xz -Source3006: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euenc.doc.tar.xz -Source3008: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euler.tar.xz -Source3009: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euler.doc.tar.xz -Source3011: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/extsizes.tar.xz -Source3012: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/extsizes.doc.tar.xz -Source3013: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancybox.tar.xz -Source3014: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancybox.doc.tar.xz -Source3015: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyref.tar.xz -Source3016: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyref.doc.tar.xz -Source3018: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyvrb.tar.xz -Source3019: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyvrb.doc.tar.xz -Source3021: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/float.tar.xz -Source3022: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/float.doc.tar.xz -Source3024: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontspec.tar.xz -Source3025: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontspec.doc.tar.xz -Source3027: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3kernel.tar.xz -Source3028: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3kernel.doc.tar.xz -Source3030: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3packages.tar.xz -Source3031: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3packages.doc.tar.xz -Source3033: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fp.tar.xz -Source3034: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fp.doc.tar.xz -Source3035: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/index.tar.xz -Source3036: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/index.doc.tar.xz -Source3038: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jknapltx.tar.xz -Source3039: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jknapltx.doc.tar.xz -Source3040: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/koma-script.tar.xz -Source3041: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3experimental.tar.xz -Source3042: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3experimental.doc.tar.xz -Source3044: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lineno.tar.xz -Source3045: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lineno.doc.tar.xz -Source3047: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listings.tar.xz -Source3048: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listings.doc.tar.xz -Source3050: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathtools.tar.xz -Source3051: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathtools.doc.tar.xz -Source3053: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mdwtools.tar.xz -Source3054: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mdwtools.doc.tar.xz -Source3056: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metalogo.tar.xz -Source3057: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metalogo.doc.tar.xz -Source3059: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/microtype.tar.xz -Source3060: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/microtype.doc.tar.xz -Source3062: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ms.tar.xz -Source3063: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ms.doc.tar.xz -Source3065: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ntgclass.tar.xz -Source3066: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ntgclass.doc.tar.xz -Source3068: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parskip.tar.xz -Source3069: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parskip.doc.tar.xz -Source3070: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfpages.tar.xz -Source3071: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfpages.doc.tar.xz -Source3073: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/powerdot.tar.xz -Source3074: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/powerdot.doc.tar.xz -Source3076: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psfrag.tar.xz -Source3077: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psfrag.doc.tar.xz -Source3079: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rcs.tar.xz -Source3080: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rcs.doc.tar.xz -Source3085: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sansmath.tar.xz -Source3086: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sansmath.doc.tar.xz -Source3087: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/section.tar.xz -Source3088: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/section.doc.tar.xz -Source3089: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seminar.tar.xz -Source3090: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seminar.doc.tar.xz -Source3091: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sepnum.tar.xz -Source3092: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sepnum.doc.tar.xz -Source3093: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/setspace.tar.xz -Source3094: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/setspace.doc.tar.xz -Source3095: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfig.tar.xz -Source3096: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfig.doc.tar.xz -Source3098: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textcase.tar.xz -Source3099: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textcase.doc.tar.xz -Source3103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typehtml.tar.xz -Source3104: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typehtml.doc.tar.xz -Source3106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/underscore.tar.xz -Source3107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/underscore.doc.tar.xz -Source3108: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/combinedgraphics.tar.xz -Source3109: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/combinedgraphics.doc.tar.xz -Source3111: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/curve.tar.xz -Source3112: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/curve.doc.tar.xz -Source3114: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/curve2e.tar.xz -Source3115: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/curve2e.doc.tar.xz -Source3117: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/curves.tar.xz -Source3118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/curves.doc.tar.xz -Source3120: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dcpic.tar.xz -Source3121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dcpic.doc.tar.xz -Source3122: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diagmac2.tar.xz -Source3123: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diagmac2.doc.tar.xz -Source3124: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doc-pictex.doc.tar.xz -Source3125: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dottex.tar.xz -Source3126: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dottex.doc.tar.xz -Source3128: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dot2texi.tar.xz -Source3129: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dot2texi.doc.tar.xz -Source3130: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dratex.tar.xz -Source3131: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dratex.doc.tar.xz -Source3132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drs.tar.xz -Source3133: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drs.doc.tar.xz -Source3134: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/duotenzor.tar.xz -Source3135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/duotenzor.doc.tar.xz -Source3136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eepic.tar.xz -Source3137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eepic.doc.tar.xz -Source3140: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epspdfconversion.tar.xz -Source3141: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epspdfconversion.doc.tar.xz -Source3142: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esk.tar.xz -Source3143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esk.doc.tar.xz -Source3145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fast-diagram.tar.xz -Source3146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fast-diagram.doc.tar.xz -Source3149: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fitbox.tar.xz -Source3150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fitbox.doc.tar.xz -Source3152: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flowchart.tar.xz -Source3153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flowchart.doc.tar.xz -Source3155: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forest.tar.xz -Source3156: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forest.doc.tar.xz -Source3158: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/genealogytree.tar.xz -Source3159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/genealogytree.doc.tar.xz -Source3162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gincltex.tar.xz -Source3163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gincltex.doc.tar.xz -Source3165: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gnuplottex.tar.xz -Source3166: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gnuplottex.doc.tar.xz -Source3168: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gradientframe.tar.xz -Source3169: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gradientframe.doc.tar.xz -Source3171: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grafcet.tar.xz -Source3172: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grafcet.doc.tar.xz -Source3173: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphviz.tar.xz -Source3174: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphviz.doc.tar.xz -Source3176: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harveyballs.tar.xz -Source3177: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harveyballs.doc.tar.xz -Source3178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/here.tar.xz -Source3179: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/here.doc.tar.xz -Source3180: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hf-tikz.tar.xz -Source3181: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hf-tikz.doc.tar.xz -Source3183: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hobby.tar.xz -Source3184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hobby.doc.tar.xz -Source3186: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hvfloat.tar.xz -Source3187: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hvfloat.doc.tar.xz -Source3188: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knitting.tar.xz -Source3189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knitting.doc.tar.xz -Source3190: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knittingpattern.tar.xz -Source3191: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knittingpattern.doc.tar.xz -Source3192: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lapdf.tar.xz -Source3193: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lapdf.doc.tar.xz -Source3194: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-make.tar.xz -Source3195: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-make.doc.tar.xz -Source3197: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lpic.tar.xz -Source3198: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lpic.doc.tar.xz -Source3199: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeshape.tar.xz -Source3200: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeshape.doc.tar.xz -Source3204: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/miniplot.tar.xz -Source3205: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/miniplot.doc.tar.xz -Source3208: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modiagram.tar.xz -Source3209: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modiagram.doc.tar.xz -Source3210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/neuralnetwork.tar.xz -Source3211: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/neuralnetwork.doc.tar.xz -Source3212: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numericplots.tar.xz -Source3213: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numericplots.doc.tar.xz -Source3214: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pb-diagram.tar.xz -Source3215: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pb-diagram.doc.tar.xz -Source3218: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-blur.tar.xz -Source3219: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-blur.doc.tar.xz -Source3221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-soroban.tar.xz -Source3222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-soroban.doc.tar.xz -Source3223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-umlcd.tar.xz -Source3224: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-umlcd.doc.tar.xz -Source3225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-umlsd.tar.xz -Source3226: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-umlsd.doc.tar.xz -Source3227: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfgantt.tar.xz -Source3228: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfgantt.doc.tar.xz -Source3230: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfkeyx.tar.xz -Source3231: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfkeyx.doc.tar.xz -Source3232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfmolbio.tar.xz -Source3233: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfmolbio.doc.tar.xz -Source3235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfopts.tar.xz -Source3236: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfopts.doc.tar.xz -Source3238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfplots.tar.xz -Source3239: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfplots.doc.tar.xz -Source3241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/picinpar.tar.xz -Source3242: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/picinpar.doc.tar.xz -Source3243: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pict2e.tar.xz -Source3244: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pict2e.doc.tar.xz -Source3246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pictex.tar.xz -Source3247: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pictex.doc.tar.xz -Source3248: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pictex2.tar.xz -Source3249: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pinlabel.tar.xz -Source3250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pinlabel.doc.tar.xz -Source3251: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmgraph.tar.xz -Source3252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pmgraph.doc.tar.xz -Source3253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prerex.tar.xz -Source3254: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prerex.doc.tar.xz -Source3255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/productbox.tar.xz -Source3256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/productbox.doc.tar.xz -Source3258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxpgfmark.tar.xz -Source3259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxpgfmark.doc.tar.xz -Source3260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qcircuit.tar.xz -Source3261: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qcircuit.doc.tar.xz -Source3262: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qrcode.tar.xz -Source3263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qrcode.doc.tar.xz -Source3265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/randbild.tar.xz -Source3266: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/randbild.doc.tar.xz -Source3268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/randomwalk.tar.xz -Source3269: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/randomwalk.doc.tar.xz -Source3271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/reotex.tar.xz -Source3272: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/reotex.doc.tar.xz -Source3273: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rviewport.tar.xz -Source3274: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rviewport.doc.tar.xz -Source3276: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sa-tikz.tar.xz -Source3277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sa-tikz.doc.tar.xz -Source3278: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schemabloc.tar.xz -Source3279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schemabloc.doc.tar.xz -Source3280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/setdeck.tar.xz -Source3281: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/setdeck.doc.tar.xz -Source3282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/smartdiagram.tar.xz -Source3283: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/smartdiagram.doc.tar.xz -Source3285: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spath3.tar.xz -Source3286: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spath3.doc.tar.xz -Source3288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/swimgraf.tar.xz -Source3289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/swimgraf.doc.tar.xz -Source3290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdraw.tar.xz -Source3291: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdraw.doc.tar.xz -Source3292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ticollege.tar.xz -Source3293: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ticollege.doc.tar.xz -Source3294: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tipfr.doc.tar.xz -Source3295: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-3dplot.tar.xz -Source3296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-3dplot.doc.tar.xz -Source3297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-bayesnet.tar.xz -Source3298: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-bayesnet.doc.tar.xz -Source3299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-cd.tar.xz -Source3300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-cd.doc.tar.xz -Source3301: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-dependency.tar.xz -Source3302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-dependency.doc.tar.xz -Source3303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-dimline.tar.xz -Source3304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-dimline.doc.tar.xz -Source3305: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-inet.tar.xz -Source3306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-inet.doc.tar.xz -Source3307: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-opm.tar.xz -Source3308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-opm.doc.tar.xz -Source3309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-palattice.tar.xz -Source3310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-palattice.doc.tar.xz -Source3311: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-qtree.tar.xz -Source3312: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-qtree.doc.tar.xz -Source3313: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-timing.tar.xz -Source3314: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-timing.doc.tar.xz -Source3316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svn-prov.tar.xz -Source3317: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svn-prov.doc.tar.xz -Source3319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzinclude.tar.xz -Source3320: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzinclude.doc.tar.xz -Source3322: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzmark.tar.xz -Source3323: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzmark.doc.tar.xz -Source3325: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzorbital.tar.xz -Source3326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzorbital.doc.tar.xz -Source3327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzpagenodes.tar.xz -Source3328: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzpagenodes.doc.tar.xz -Source3330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzpfeile.tar.xz -Source3331: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzpfeile.doc.tar.xz -Source3333: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzposter.tar.xz -Source3334: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzposter.doc.tar.xz -Source3336: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzscale.tar.xz -Source3337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzscale.doc.tar.xz -Source3339: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzsymbols.tar.xz -Source3340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzsymbols.doc.tar.xz -Source3342: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/timing-diagrams.tar.xz -Source3343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/timing-diagrams.doc.tar.xz -Source3344: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tqft.tar.xz -Source3345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tqft.doc.tar.xz -Source3347: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-base.tar.xz -Source3348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-base.doc.tar.xz -Source3349: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-berge.tar.xz -Source3350: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-berge.doc.tar.xz -Source3351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-doc.tar.xz -Source3352: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-doc.doc.tar.xz -Source3353: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-euclide.tar.xz -Source3354: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-euclide.doc.tar.xz -Source3355: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-fct.tar.xz -Source3356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-fct.doc.tar.xz -Source3357: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-graph.tar.xz -Source3358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-graph.doc.tar.xz -Source3359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-kiviat.tar.xz -Source3360: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-kiviat.doc.tar.xz -Source3361: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-linknodes.tar.xz -Source3362: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-linknodes.doc.tar.xz -Source3363: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-orm.tar.xz -Source3364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-orm.doc.tar.xz -Source3365: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-tab.tar.xz -Source3366: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tkz-tab.doc.tar.xz -Source3367: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tsemlines.tar.xz -Source3368: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tufte-latex.tar.xz -Source3369: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tufte-latex.doc.tar.xz -Source3370: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xifthen.tar.xz -Source3371: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xifthen.doc.tar.xz -Source3372: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifmtarg.tar.xz -Source3373: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifmtarg.doc.tar.xz -Source3375: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paralist.tar.xz -Source3376: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paralist.doc.tar.xz -Source3378: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sauerj.tar.xz -Source3379: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sauerj.doc.tar.xz -Source3381: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/placeins.tar.xz -Source3382: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/placeins.doc.tar.xz -Source3383: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/venndiagram.tar.xz -Source3384: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/venndiagram.doc.tar.xz -Source3386: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpicture.tar.xz -Source3387: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpicture.doc.tar.xz -Source3389: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xypic.tar.xz -Source3390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xypic.doc.tar.xz -Source3391: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ESIEEcv.tar.xz -Source3392: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ESIEEcv.doc.tar.xz -Source3394: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/GS1.tar.xz -Source3395: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/GS1.doc.tar.xz -Source3397: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/HA-prosper.tar.xz -Source3398: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/HA-prosper.doc.tar.xz -Source3400: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/Tabbing.tar.xz -Source3401: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/Tabbing.doc.tar.xz -Source3403: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colordoc.tar.xz -Source3404: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colordoc.doc.tar.xz -Source3406: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorinfo.tar.xz -Source3407: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorinfo.doc.tar.xz -Source3408: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorspace.tar.xz -Source3409: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorspace.doc.tar.xz -Source3410: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colortab.tar.xz -Source3411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colortab.doc.tar.xz -Source3412: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorwav.tar.xz -Source3413: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorwav.doc.tar.xz -Source3415: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorweb.tar.xz -Source3416: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorweb.doc.tar.xz -Source3418: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colourchange.tar.xz -Source3419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colourchange.doc.tar.xz -Source3420: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/combelow.tar.xz -Source3421: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/combelow.doc.tar.xz -Source3422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/combine.tar.xz -Source3423: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/combine.doc.tar.xz -Source3425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comma.tar.xz -Source3426: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comma.doc.tar.xz -Source3427: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/commado.tar.xz -Source3428: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/commado.doc.tar.xz -Source3430: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comment.tar.xz -Source3431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/comment.doc.tar.xz -Source3432: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concepts.tar.xz -Source3433: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concepts.doc.tar.xz -Source3434: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concprog.tar.xz -Source3435: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concprog.doc.tar.xz -Source3436: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/constants.tar.xz -Source3437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/constants.doc.tar.xz -Source3439: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/contour.tar.xz -Source3440: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/contour.doc.tar.xz -Source3442: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/contracard.tar.xz -Source3443: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/contracard.doc.tar.xz -Source3445: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cooking.tar.xz -Source3446: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cooking.doc.tar.xz -Source3448: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cool.tar.xz -Source3449: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cool.doc.tar.xz -Source3451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coollist.tar.xz -Source3452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coollist.doc.tar.xz -Source3454: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coolstr.tar.xz -Source3455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coolstr.doc.tar.xz -Source3457: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coolthms.tar.xz -Source3458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coolthms.doc.tar.xz -Source3460: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cooltooltips.tar.xz -Source3461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cooltooltips.doc.tar.xz -Source3463: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coordsys.tar.xz -Source3464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coordsys.doc.tar.xz -Source3466: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/copyedit.tar.xz -Source3467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/copyedit.doc.tar.xz -Source3469: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/copyrightbox.tar.xz -Source3470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/copyrightbox.doc.tar.xz -Source3471: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coseoul.tar.xz -Source3472: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coseoul.doc.tar.xz -Source3473: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/counttexruns.tar.xz -Source3474: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/counttexruns.doc.tar.xz -Source3476: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/courseoutline.tar.xz -Source3477: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/courseoutline.doc.tar.xz -Source3478: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coursepaper.tar.xz -Source3479: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coursepaper.doc.tar.xz -Source3480: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coverpage.tar.xz -Source3481: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coverpage.doc.tar.xz -Source3483: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cprotect.tar.xz -Source3484: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cprotect.doc.tar.xz -Source3486: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crbox.tar.xz -Source3487: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crbox.doc.tar.xz -Source3488: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossreference.tar.xz -Source3489: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossreference.doc.tar.xz -Source3491: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csquotes.tar.xz -Source3492: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csquotes.doc.tar.xz -Source3493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csvsimple.tar.xz -Source3494: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/csvsimple.doc.tar.xz -Source3495: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cuisine.tar.xz -Source3496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cuisine.doc.tar.xz -Source3498: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/currfile.tar.xz -Source3499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/currfile.doc.tar.xz -Source3501: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/currvita.tar.xz -Source3502: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/currvita.doc.tar.xz -Source3504: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cutwin.tar.xz -Source3505: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cutwin.doc.tar.xz -Source3507: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cv.tar.xz -Source3508: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cv.doc.tar.xz -Source3509: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cv4tw.tar.xz -Source3510: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cv4tw.doc.tar.xz -Source3511: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cweb-latex.tar.xz -Source3512: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cweb-latex.doc.tar.xz -Source3513: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyber.tar.xz -Source3514: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cyber.doc.tar.xz -Source3516: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cybercic.tar.xz -Source3517: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cybercic.doc.tar.xz -Source3519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dashbox.tar.xz -Source3520: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dashbox.doc.tar.xz -Source3522: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dashrule.tar.xz -Source3523: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dashrule.doc.tar.xz -Source3525: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dashundergaps.tar.xz -Source3526: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dashundergaps.doc.tar.xz -Source3527: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dataref.tar.xz -Source3528: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dataref.doc.tar.xz -Source3530: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datatool.tar.xz -Source3531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datatool.doc.tar.xz -Source3533: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dateiliste.tar.xz -Source3534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dateiliste.doc.tar.xz -Source3536: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datenumber.tar.xz -Source3537: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datenumber.doc.tar.xz -Source3539: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime.tar.xz -Source3540: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime.doc.tar.xz -Source3542: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2.tar.xz -Source3543: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2.doc.tar.xz -Source3545: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-bahasai.tar.xz -Source3546: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-bahasai.doc.tar.xz -Source3548: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-basque.tar.xz -Source3549: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-basque.doc.tar.xz -Source3551: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-breton.tar.xz -Source3552: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-breton.doc.tar.xz -Source3554: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-bulgarian.tar.xz -Source3555: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-bulgarian.doc.tar.xz -Source3557: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-catalan.tar.xz -Source3558: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-catalan.doc.tar.xz -Source3560: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-croatian.tar.xz -Source3561: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-croatian.doc.tar.xz -Source3563: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-czech.tar.xz -Source3564: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-czech.doc.tar.xz -Source3566: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-danish.tar.xz -Source3567: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-danish.doc.tar.xz -Source3569: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-dutch.tar.xz -Source3570: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-dutch.doc.tar.xz -Source3572: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-en-fulltext.tar.xz -Source3573: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-en-fulltext.doc.tar.xz -Source3575: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-english.tar.xz -Source3576: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-english.doc.tar.xz -Source3578: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-esperanto.tar.xz -Source3579: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-esperanto.doc.tar.xz -Source3581: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-estonian.tar.xz -Source3582: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-estonian.doc.tar.xz -Source3584: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-finnish.tar.xz -Source3585: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-finnish.doc.tar.xz -Source3587: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-french.tar.xz -Source3588: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-french.doc.tar.xz -Source3590: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-galician.tar.xz -Source3591: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-galician.doc.tar.xz -Source3593: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-german.tar.xz -Source3594: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-german.doc.tar.xz -Source3596: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-greek.tar.xz -Source3597: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-greek.doc.tar.xz -Source3599: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-hebrew.tar.xz -Source3600: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-hebrew.doc.tar.xz -Source3602: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-icelandic.tar.xz -Source3603: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-icelandic.doc.tar.xz -Source3605: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-irish.tar.xz -Source3606: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-irish.doc.tar.xz -Source3608: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-italian.tar.xz -Source3609: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-italian.doc.tar.xz -Source3611: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-it-fulltext.tar.xz -Source3612: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-it-fulltext.doc.tar.xz -Source3614: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-latin.tar.xz -Source3615: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-latin.doc.tar.xz -Source3617: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-lsorbian.tar.xz -Source3618: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-lsorbian.doc.tar.xz -Source3620: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-magyar.tar.xz -Source3621: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-magyar.doc.tar.xz -Source3623: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-norsk.tar.xz -Source3624: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-norsk.doc.tar.xz -Source3626: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-polish.tar.xz -Source3627: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-polish.doc.tar.xz -Source3629: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-portuges.tar.xz -Source3630: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-portuges.doc.tar.xz -Source3632: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-romanian.tar.xz -Source3633: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-romanian.doc.tar.xz -Source3635: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-russian.tar.xz -Source3636: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-russian.doc.tar.xz -Source3638: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-samin.tar.xz -Source3639: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-samin.doc.tar.xz -Source3641: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-scottish.tar.xz -Source3642: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-scottish.doc.tar.xz -Source3644: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-serbian.tar.xz -Source3645: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-serbian.doc.tar.xz -Source3647: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-slovak.tar.xz -Source3648: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-slovak.doc.tar.xz -Source3650: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-slovene.tar.xz -Source3651: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-slovene.doc.tar.xz -Source3653: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-spanish.tar.xz -Source3654: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-spanish.doc.tar.xz -Source3656: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-swedish.tar.xz -Source3657: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-swedish.doc.tar.xz -Source3659: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-turkish.tar.xz -Source3660: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-turkish.doc.tar.xz -Source3662: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-ukrainian.tar.xz -Source3663: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-ukrainian.doc.tar.xz -Source3665: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-usorbian.tar.xz -Source3666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-usorbian.doc.tar.xz -Source3668: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-welsh.tar.xz -Source3669: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/datetime2-welsh.doc.tar.xz -Source3671: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dblfloatfix.tar.xz -Source3672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dblfloatfix.doc.tar.xz -Source3673: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/decimal.tar.xz -Source3674: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/decimal.doc.tar.xz -Source3676: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/decorule.tar.xz -Source3677: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/decorule.doc.tar.xz -Source3679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/delim.tar.xz -Source3680: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/delim.doc.tar.xz -Source3682: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/delimtxt.tar.xz -Source3683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/delimtxt.doc.tar.xz -Source3685: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/denisbdoc.tar.xz -Source3686: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/denisbdoc.doc.tar.xz -Source3690: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diagbox.tar.xz -Source3691: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diagbox.doc.tar.xz -Source3693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diagnose.tar.xz -Source3694: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diagnose.doc.tar.xz -Source3695: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dialogl.tar.xz -Source3696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dialogl.doc.tar.xz -Source3698: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dichokey.tar.xz -Source3699: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dichokey.doc.tar.xz -Source3700: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dinbrief.tar.xz -Source3701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dinbrief.doc.tar.xz -Source3703: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/directory.tar.xz -Source3704: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/directory.doc.tar.xz -Source3705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dirtytalk.tar.xz -Source3706: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dirtytalk.doc.tar.xz -Source3708: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dlfltxb.tar.xz -Source3709: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dlfltxb.doc.tar.xz -Source3710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dnaseq.tar.xz -Source3711: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dnaseq.doc.tar.xz -Source3713: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doclicense.tar.xz -Source3714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doclicense.doc.tar.xz -Source3716: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/docmfp.tar.xz -Source3717: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/docmfp.doc.tar.xz -Source3719: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/docmute.tar.xz -Source3720: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/docmute.doc.tar.xz -Source3722: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doctools.tar.xz -Source3723: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doctools.doc.tar.xz -Source3725: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/documentation.tar.xz -Source3726: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/documentation.doc.tar.xz -Source3728: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doi.tar.xz -Source3729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/doi.doc.tar.xz -Source3730: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dotarrow.tar.xz -Source3731: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dotarrow.doc.tar.xz -Source3733: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dotseqn.tar.xz -Source3734: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dotseqn.doc.tar.xz -Source3736: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/download.tar.xz -Source3737: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/download.doc.tar.xz -Source3739: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dox.tar.xz -Source3740: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dox.doc.tar.xz -Source3742: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dpfloat.tar.xz -Source3743: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dpfloat.doc.tar.xz -Source3744: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dprogress.tar.xz -Source3745: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dprogress.doc.tar.xz -Source3747: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drac.tar.xz -Source3748: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drac.doc.tar.xz -Source3750: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/draftcopy.tar.xz -Source3751: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/draftcopy.doc.tar.xz -Source3753: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/draftwatermark.tar.xz -Source3754: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/draftwatermark.doc.tar.xz -Source3756: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtk.tar.xz -Source3757: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtk.doc.tar.xz -Source3758: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtxgallery.doc.tar.xz -Source3760: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvdcoll.tar.xz -Source3761: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dvdcoll.doc.tar.xz -Source3762: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dynblocks.tar.xz -Source3763: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dynblocks.doc.tar.xz -Source3764: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ean13isbn.tar.xz -Source3765: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ean13isbn.doc.tar.xz -Source3766: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easy.tar.xz -Source3767: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easy.doc.tar.xz -Source3768: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easy-todo.tar.xz -Source3769: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easy-todo.doc.tar.xz -Source3770: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easyfig.tar.xz -Source3771: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easyfig.doc.tar.xz -Source3773: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easylist.tar.xz -Source3774: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easylist.doc.tar.xz -Source3775: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easyreview.tar.xz -Source3776: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easyreview.doc.tar.xz -Source3778: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebezier.tar.xz -Source3779: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebezier.doc.tar.xz -Source3781: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecclesiastic.tar.xz -Source3782: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecclesiastic.doc.tar.xz -Source3784: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecv.tar.xz -Source3785: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecv.doc.tar.xz -Source3787: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ed.tar.xz -Source3788: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ed.doc.tar.xz -Source3790: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/edmargin.tar.xz -Source3791: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/edmargin.doc.tar.xz -Source3793: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eemeir.tar.xz -Source3794: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eemeir.doc.tar.xz -Source3796: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/efbox.tar.xz -Source3797: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/efbox.doc.tar.xz -Source3799: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/egplot.tar.xz -Source3800: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/egplot.doc.tar.xz -Source3802: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elements.tar.xz -Source3803: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elements.doc.tar.xz -Source3804: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ellipsis.tar.xz -Source3805: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ellipsis.doc.tar.xz -Source3807: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elmath.tar.xz -Source3808: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elmath.doc.tar.xz -Source3810: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elocalloc.tar.xz -Source3811: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elocalloc.doc.tar.xz -Source3813: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elpres.tar.xz -Source3814: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elpres.doc.tar.xz -Source3815: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elzcards.tar.xz -Source3816: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elzcards.doc.tar.xz -Source3818: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emarks.tar.xz -Source3819: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emarks.doc.tar.xz -Source3821: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/embedall.tar.xz -Source3822: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/embedall.doc.tar.xz -Source3824: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/embrac.tar.xz -Source3825: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/embrac.doc.tar.xz -Source3826: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emptypage.tar.xz -Source3827: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emptypage.doc.tar.xz -Source3829: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emulateapj.tar.xz -Source3830: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emulateapj.doc.tar.xz -Source3831: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endfloat.tar.xz -Source3832: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endfloat.doc.tar.xz -Source3834: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endheads.tar.xz -Source3835: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endheads.doc.tar.xz -Source3837: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endnotes.tar.xz -Source3838: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endnotes.doc.tar.xz -Source3839: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/engpron.tar.xz -Source3840: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/engpron.doc.tar.xz -Source3842: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/engrec.tar.xz -Source3843: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/engrec.doc.tar.xz -Source3845: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enotez.tar.xz -Source3846: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enotez.doc.tar.xz -Source3847: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enumitem.tar.xz -Source3848: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enumitem.doc.tar.xz -Source3849: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enumitem-zref.tar.xz -Source3850: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enumitem-zref.doc.tar.xz -Source3852: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/envbig.tar.xz -Source3853: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/envbig.doc.tar.xz -Source3854: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/environ.tar.xz -Source3855: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/environ.doc.tar.xz -Source3857: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/envlab.tar.xz -Source3858: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/envlab.doc.tar.xz -Source3860: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epigraph.tar.xz -Source3861: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epigraph.doc.tar.xz -Source3863: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epiolmec.tar.xz -Source3864: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epiolmec.doc.tar.xz -Source3868: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqell.tar.xz -Source3869: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqell.doc.tar.xz -Source3870: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqlist.tar.xz -Source3871: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqlist.doc.tar.xz -Source3873: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqname.tar.xz -Source3874: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqparbox.tar.xz -Source3875: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqparbox.doc.tar.xz -Source3877: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/errata.tar.xz -Source3878: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/errata.doc.tar.xz -Source3880: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esami.tar.xz -Source3881: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esami.doc.tar.xz -Source3882: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esdiff.tar.xz -Source3883: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esdiff.doc.tar.xz -Source3885: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esint.tar.xz -Source3886: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esint.doc.tar.xz -Source3888: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esint-type1.tar.xz -Source3889: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/esint-type1.doc.tar.xz -Source3890: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etaremune.tar.xz -Source3891: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etaremune.doc.tar.xz -Source3893: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etextools.tar.xz -Source3894: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etextools.doc.tar.xz -Source3896: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etoc.tar.xz -Source3897: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etoc.doc.tar.xz -Source3899: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etoolbox.tar.xz -Source3900: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etoolbox.doc.tar.xz -Source3901: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eukdate.tar.xz -Source3902: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eukdate.doc.tar.xz -Source3904: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/europasscv.tar.xz -Source3905: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/europasscv.doc.tar.xz -Source3906: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/europecv.tar.xz -Source3907: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/europecv.doc.tar.xz -Source3908: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/everyhook.tar.xz -Source3909: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/everyhook.doc.tar.xz -Source3911: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/everypage.tar.xz -Source3912: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/everypage.doc.tar.xz -Source3914: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exam.tar.xz -Source3915: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exam.doc.tar.xz -Source3916: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exam-n.tar.xz -Source3917: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exam-n.doc.tar.xz -Source3919: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/examdesign.tar.xz -Source3920: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/examdesign.doc.tar.xz -Source3922: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/example.tar.xz -Source3923: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/examplep.tar.xz -Source3924: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/examplep.doc.tar.xz -Source3927: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/excludeonly.tar.xz -Source3928: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/excludeonly.doc.tar.xz -Source3929: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exercise.tar.xz -Source3930: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exercise.doc.tar.xz -Source3932: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exp-testopt.tar.xz -Source3933: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exp-testopt.doc.tar.xz -Source3935: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/expdlist.tar.xz -Source3936: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/expdlist.doc.tar.xz -Source3938: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/export.tar.xz -Source3939: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/export.doc.tar.xz -Source3941: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exsheets.tar.xz -Source3942: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exsheets.doc.tar.xz -Source3943: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exsol.tar.xz -Source3944: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exsol.doc.tar.xz -Source3946: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/extract.tar.xz -Source3947: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/extract.doc.tar.xz -Source3949: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/facsimile.tar.xz -Source3950: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/facsimile.doc.tar.xz -Source3952: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/factura.tar.xz -Source3953: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/factura.doc.tar.xz -Source3955: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancylabel.tar.xz -Source3956: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancylabel.doc.tar.xz -Source3958: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancynum.tar.xz -Source3959: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancynum.doc.tar.xz -Source3961: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancypar.tar.xz -Source3962: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancypar.doc.tar.xz -Source3964: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyslides.tar.xz -Source3965: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyslides.doc.tar.xz -Source3966: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancytabs.tar.xz -Source3967: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancytabs.doc.tar.xz -Source3969: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancytooltips.tar.xz -Source3970: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancytooltips.doc.tar.xz -Source3972: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fcolumn.tar.xz -Source3973: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fcolumn.doc.tar.xz -Source3975: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fifo-stack.tar.xz -Source3976: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fifo-stack.doc.tar.xz -Source3978: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/figsize.tar.xz -Source3979: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/figsize.doc.tar.xz -Source3980: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filecontents.tar.xz -Source3981: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filecontents.doc.tar.xz -Source3983: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filedate.tar.xz -Source3984: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filedate.doc.tar.xz -Source3986: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filehook.tar.xz -Source3987: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filehook.doc.tar.xz -Source3989: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fileinfo.tar.xz -Source3990: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fileinfo.doc.tar.xz -Source3992: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filemod.tar.xz -Source3993: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filemod.doc.tar.xz -Source3994: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fink.tar.xz -Source3995: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fink.doc.tar.xz -Source3997: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/finstrut.tar.xz -Source3998: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/finstrut.doc.tar.xz -Source4000: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fithesis.tar.xz -Source4001: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fithesis.doc.tar.xz -Source4003: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixfoot.tar.xz -Source4004: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixfoot.doc.tar.xz -Source4005: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixme.tar.xz -Source4006: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixme.doc.tar.xz -Source4008: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixmetodonotes.tar.xz -Source4009: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixmetodonotes.doc.tar.xz -Source4011: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fjodor.tar.xz -Source4012: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fjodor.doc.tar.xz -Source4013: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flabels.tar.xz -Source4014: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flabels.doc.tar.xz -Source4016: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flacards.tar.xz -Source4017: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flacards.doc.tar.xz -Source4018: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flagderiv.tar.xz -Source4019: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flagderiv.doc.tar.xz -Source4021: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flashcards.tar.xz -Source4022: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flashcards.doc.tar.xz -Source4024: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flashmovie.tar.xz -Source4025: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flashmovie.doc.tar.xz -Source4026: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flipbook.tar.xz -Source4027: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flipbook.doc.tar.xz -Source4028: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flippdf.tar.xz -Source4029: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flippdf.doc.tar.xz -Source4031: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/floatflt.tar.xz -Source4032: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/floatflt.doc.tar.xz -Source4034: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/floatrow.tar.xz -Source4035: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/floatrow.doc.tar.xz -Source4037: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flowfram.tar.xz -Source4038: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/flowfram.doc.tar.xz -Source4040: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fmp.tar.xz -Source4041: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fmp.doc.tar.xz -Source4043: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fmtcount.tar.xz -Source4044: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fmtcount.doc.tar.xz -Source4046: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fn2end.tar.xz -Source4047: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fn2end.doc.tar.xz -Source4048: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnbreak.tar.xz -Source4049: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnbreak.doc.tar.xz -Source4051: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fncychap.tar.xz -Source4052: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fncychap.doc.tar.xz -Source4053: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fncylab.tar.xz -Source4054: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fncylab.doc.tar.xz -Source4055: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnpara.tar.xz -Source4056: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnpara.doc.tar.xz -Source4057: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnpct.tar.xz -Source4058: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnpct.doc.tar.xz -Source4059: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnumprint.tar.xz -Source4060: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnumprint.doc.tar.xz -Source4062: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/foilhtml.tar.xz -Source4063: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/foilhtml.doc.tar.xz -Source4065: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontaxes.tar.xz -Source4066: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontaxes.doc.tar.xz -Source4068: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fonttable.tar.xz -Source4069: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fonttable.doc.tar.xz -Source4071: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footmisc.tar.xz -Source4072: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footmisc.doc.tar.xz -Source4074: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footnotebackref.tar.xz -Source4075: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footnotebackref.doc.tar.xz -Source4076: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footnoterange.tar.xz -Source4077: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footnoterange.doc.tar.xz -Source4079: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footnpag.tar.xz -Source4080: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footnpag.doc.tar.xz -Source4082: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forarray.tar.xz -Source4083: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forarray.doc.tar.xz -Source4085: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/foreign.tar.xz -Source4086: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/foreign.doc.tar.xz -Source4088: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forloop.tar.xz -Source4089: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forloop.doc.tar.xz -Source4091: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/formlett.tar.xz -Source4092: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/formlett.doc.tar.xz -Source4093: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/formular.tar.xz -Source4094: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/formular.doc.tar.xz -Source4096: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fragments.tar.xz -Source4097: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fragments.doc.tar.xz -Source4098: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frame.tar.xz -Source4099: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frame.doc.tar.xz -Source4100: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/framed.tar.xz -Source4101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/framed.doc.tar.xz -Source4102: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frankenstein.tar.xz -Source4103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frankenstein.doc.tar.xz -Source4105: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frege.tar.xz -Source4106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frege.doc.tar.xz -Source4107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ftcap.tar.xz -Source4108: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ftcap.doc.tar.xz -Source4109: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ftnxtra.tar.xz -Source4110: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ftnxtra.doc.tar.xz -Source4112: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fullblck.tar.xz -Source4113: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fullblck.doc.tar.xz -Source4115: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fullminipage.tar.xz -Source4116: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fullminipage.doc.tar.xz -Source4118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fullwidth.tar.xz -Source4119: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fullwidth.doc.tar.xz -Source4120: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fundus-calligra.tar.xz -Source4121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fundus-calligra.doc.tar.xz -Source4123: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fundus-cyr.tar.xz -Source4124: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fundus-sueterlin.tar.xz -Source4125: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fundus-sueterlin.doc.tar.xz -Source4127: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fwlw.tar.xz -Source4128: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fwlw.doc.tar.xz -Source4129: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/g-brief.tar.xz -Source4130: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/g-brief.doc.tar.xz -Source4132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gauss.tar.xz -Source4133: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gauss.doc.tar.xz -Source4134: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gcard.tar.xz -Source4135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gcard.doc.tar.xz -Source4136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gcite.tar.xz -Source4137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gcite.doc.tar.xz -Source4139: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gender.tar.xz -Source4140: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gender.doc.tar.xz -Source4142: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/genmpage.tar.xz -Source4143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/genmpage.doc.tar.xz -Source4145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getfiledate.tar.xz -Source4146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getfiledate.doc.tar.xz -Source4147: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ginpenc.tar.xz -Source4148: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ginpenc.doc.tar.xz -Source4150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitinfo.tar.xz -Source4151: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitinfo.doc.tar.xz -Source4152: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitinfo2.tar.xz -Source4153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitinfo2.doc.tar.xz -Source4154: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gloss.tar.xz -Source4155: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gloss.doc.tar.xz -Source4159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-danish.tar.xz -Source4160: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-danish.doc.tar.xz -Source4162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-dutch.tar.xz -Source4163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-dutch.doc.tar.xz -Source4165: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-english.tar.xz -Source4166: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-english.doc.tar.xz -Source4168: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-french.tar.xz -Source4169: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-french.doc.tar.xz -Source4171: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-german.tar.xz -Source4172: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-german.doc.tar.xz -Source4174: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-irish.tar.xz -Source4175: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-irish.doc.tar.xz -Source4177: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-italian.tar.xz -Source4178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-italian.doc.tar.xz -Source4180: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-magyar.tar.xz -Source4181: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-magyar.doc.tar.xz -Source4183: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-polish.tar.xz -Source4184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-polish.doc.tar.xz -Source4186: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-portuges.tar.xz -Source4187: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-portuges.doc.tar.xz -Source4189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-serbian.tar.xz -Source4190: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-serbian.doc.tar.xz -Source4192: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-spanish.tar.xz -Source4193: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-spanish.doc.tar.xz -Source4195: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmdoc.tar.xz -Source4196: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmdoc.doc.tar.xz -Source4197: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmdoc-enhance.tar.xz -Source4198: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmdoc-enhance.doc.tar.xz -Source4200: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmiflink.tar.xz -Source4201: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmiflink.doc.tar.xz -Source4202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmutils.tar.xz -Source4203: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmutils.doc.tar.xz -Source4204: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmverb.tar.xz -Source4205: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmverb.doc.tar.xz -Source4206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphbox.tar.xz -Source4207: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphbox.doc.tar.xz -Source4209: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphicx-psmin.tar.xz -Source4210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphicx-psmin.doc.tar.xz -Source4212: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphicxbox.tar.xz -Source4213: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphicxbox.doc.tar.xz -Source4215: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grfpaste.tar.xz -Source4216: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grfpaste.doc.tar.xz -Source4217: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grid.tar.xz -Source4218: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grid.doc.tar.xz -Source4220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grid-system.tar.xz -Source4221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grid-system.doc.tar.xz -Source4222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gridset.tar.xz -Source4223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gridset.doc.tar.xz -Source4225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gtl.tar.xz -Source4226: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gtl.doc.tar.xz -Source4228: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guitlogo.tar.xz -Source4229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guitlogo.doc.tar.xz -Source4231: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/handout.tar.xz -Source4232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/handout.doc.tar.xz -Source4233: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hang.tar.xz -Source4234: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hang.doc.tar.xz -Source4235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hanging.tar.xz -Source4236: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hanging.doc.tar.xz -Source4238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hardwrap.tar.xz -Source4239: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hardwrap.doc.tar.xz -Source4241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harnon-cv.tar.xz -Source4242: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harnon-cv.doc.tar.xz -Source4243: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harpoon.tar.xz -Source4244: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harpoon.doc.tar.xz -Source4245: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hc.tar.xz -Source4246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hc.doc.tar.xz -Source4248: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/he-she.tar.xz -Source4249: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/he-she.doc.tar.xz -Source4250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hhtensor.tar.xz -Source4251: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hhtensor.doc.tar.xz -Source4253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/histogr.tar.xz -Source4254: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/histogr.doc.tar.xz -Source4256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hitec.tar.xz -Source4257: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hitec.doc.tar.xz -Source4258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hletter.tar.xz -Source4259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hletter.doc.tar.xz -Source4260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hpsdiss.tar.xz -Source4261: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hpsdiss.doc.tar.xz -Source4263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hrefhide.tar.xz -Source4264: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hrefhide.doc.tar.xz -Source4266: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hvindex.tar.xz -Source4267: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hvindex.doc.tar.xz -Source4268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hypdvips.tar.xz -Source4269: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hypdvips.doc.tar.xz -Source4270: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyper.tar.xz -Source4271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyper.doc.tar.xz -Source4273: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hypernat.tar.xz -Source4274: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hypernat.doc.tar.xz -Source4276: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyperxmp.tar.xz -Source4277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyperxmp.doc.tar.xz -Source4279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphenat.tar.xz -Source4280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphenat.doc.tar.xz -Source4282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/idxcmds.tar.xz -Source4283: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/idxcmds.doc.tar.xz -Source4284: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/idxlayout.tar.xz -Source4285: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/idxlayout.doc.tar.xz -Source4287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifmslide.tar.xz -Source4288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifmslide.doc.tar.xz -Source4289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifnextok.tar.xz -Source4290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifnextok.doc.tar.xz -Source4292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifoddpage.tar.xz -Source4293: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifoddpage.doc.tar.xz -Source4295: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifplatform.tar.xz -Source4296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifplatform.doc.tar.xz -Source4298: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifthenx.tar.xz -Source4299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifthenx.doc.tar.xz -Source4300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iitem.tar.xz -Source4301: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iitem.doc.tar.xz -Source4303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/image-gallery.tar.xz -Source4304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/image-gallery.doc.tar.xz -Source4305: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imakeidx.tar.xz -Source4306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imakeidx.doc.tar.xz -Source4308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/import.tar.xz -Source4309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/import.doc.tar.xz -Source4310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/incgraph.tar.xz -Source4311: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/incgraph.doc.tar.xz -Source4312: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/indextools.tar.xz -Source4313: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/indextools.doc.tar.xz -Source4315: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inlinedef.tar.xz -Source4316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inlinedef.doc.tar.xz -Source4318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inputtrc.tar.xz -Source4319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inputtrc.doc.tar.xz -Source4321: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interactiveworkbook.tar.xz -Source4322: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interactiveworkbook.doc.tar.xz -Source4323: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interfaces.tar.xz -Source4324: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interfaces.doc.tar.xz -Source4326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inversepath.tar.xz -Source4327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inversepath.doc.tar.xz -Source4329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/invoice.tar.xz -Source4330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/invoice.doc.tar.xz -Source4331: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iso.tar.xz -Source4332: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iso.doc.tar.xz -Source4334: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iso10303.tar.xz -Source4335: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iso10303.doc.tar.xz -Source4337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isodate.tar.xz -Source4338: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isodate.doc.tar.xz -Source4340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isodoc.tar.xz -Source4341: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isodoc.doc.tar.xz -Source4343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isonums.tar.xz -Source4344: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isonums.doc.tar.xz -Source4345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isorot.tar.xz -Source4346: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isorot.doc.tar.xz -Source4348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isotope.tar.xz -Source4349: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isotope.doc.tar.xz -Source4351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/issuulinks.tar.xz -Source4352: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/issuulinks.doc.tar.xz -Source4354: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iwhdp.tar.xz -Source4355: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iwhdp.doc.tar.xz -Source4356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jlabels.tar.xz -Source4357: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jlabels.doc.tar.xz -Source4358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jslectureplanner.tar.xz -Source4359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jslectureplanner.doc.tar.xz -Source4360: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jumplines.tar.xz -Source4361: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jumplines.doc.tar.xz -Source4362: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jvlisting.tar.xz -Source4363: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jvlisting.doc.tar.xz -Source4365: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kantlipsum.tar.xz -Source4366: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kantlipsum.doc.tar.xz -Source4368: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kerntest.tar.xz -Source4369: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kerntest.doc.tar.xz -Source4371: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keycommand.tar.xz -Source4372: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keycommand.doc.tar.xz -Source4374: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keyreader.tar.xz -Source4375: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keyreader.doc.tar.xz -Source4376: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keystroke.tar.xz -Source4377: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keystroke.doc.tar.xz -Source4378: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keyval2e.tar.xz -Source4379: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keyval2e.doc.tar.xz -Source4380: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kix.tar.xz -Source4381: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kix.doc.tar.xz -Source4382: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/koma-moderncvclassic.tar.xz -Source4383: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/koma-moderncvclassic.doc.tar.xz -Source4384: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/koma-script-sfs.tar.xz -Source4385: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/koma-script-sfs.doc.tar.xz -Source4386: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/komacv.tar.xz -Source4387: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/komacv.doc.tar.xz -Source4389: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ktv-texdata.tar.xz -Source4390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ktv-texdata.doc.tar.xz -Source4395: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labbook.tar.xz -Source4396: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labbook.doc.tar.xz -Source4401: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labels.tar.xz -Source4402: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labels.doc.tar.xz -Source4404: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lastpackage.tar.xz -Source4405: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lastpackage.doc.tar.xz -Source4407: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lastpage.tar.xz -Source4408: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lastpage.doc.tar.xz -Source4410: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexdemo.tar.xz -Source4411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexdemo.doc.tar.xz -Source4413: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/layouts.tar.xz -Source4414: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/layouts.doc.tar.xz -Source4416: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lazylist.tar.xz -Source4417: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lazylist.doc.tar.xz -Source4418: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lcd.tar.xz -Source4419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lcd.doc.tar.xz -Source4421: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lcg.tar.xz -Source4422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lcg.doc.tar.xz -Source4424: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leading.tar.xz -Source4425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leading.doc.tar.xz -Source4427: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leaflet.tar.xz -Source4428: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leaflet.doc.tar.xz -Source4430: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leftidx.tar.xz -Source4431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leftidx.doc.tar.xz -Source4433: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lengthconvert.tar.xz -Source4434: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lengthconvert.doc.tar.xz -Source4436: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lettre.tar.xz -Source4437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lettre.doc.tar.xz -Source4438: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lettrine.tar.xz -Source4439: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lettrine.doc.tar.xz -Source4441: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lewis.tar.xz -Source4442: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lewis.doc.tar.xz -Source4443: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lhelp.tar.xz -Source4444: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lhelp.doc.tar.xz -Source4446: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libgreek.tar.xz -Source4447: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libgreek.doc.tar.xz -Source4449: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/limap.tar.xz -Source4451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linegoal.tar.xz -Source4452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linegoal.doc.tar.xz -Source4454: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lipsum.tar.xz -Source4455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lipsum.doc.tar.xz -Source4457: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lisp-on-tex.tar.xz -Source4458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lisp-on-tex.doc.tar.xz -Source4459: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listing.tar.xz -Source4460: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listing.doc.tar.xz -Source4461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listlbls.tar.xz -Source4462: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listlbls.doc.tar.xz -Source4464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listliketab.tar.xz -Source4465: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listliketab.doc.tar.xz -Source4467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listofsymbols.tar.xz -Source4468: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listofsymbols.doc.tar.xz -Source4470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lkproof.tar.xz -Source4471: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lkproof.doc.tar.xz -Source4472: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lmake.tar.xz -Source4473: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lmake.doc.tar.xz -Source4475: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/locality.tar.xz -Source4476: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/locality.doc.tar.xz -Source4478: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/localloc.tar.xz -Source4479: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/localloc.doc.tar.xz -Source4481: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logbox.tar.xz -Source4482: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logbox.doc.tar.xz -Source4484: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logical-markup-utils.tar.xz -Source4485: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logical-markup-utils.doc.tar.xz -Source4486: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logpap.tar.xz -Source4487: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logpap.doc.tar.xz -Source4489: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/longfigure.tar.xz -Source4490: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/longfigure.doc.tar.xz -Source4492: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/longnamefilelist.tar.xz -Source4493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/longnamefilelist.doc.tar.xz -Source4495: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/loops.tar.xz -Source4496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/loops.doc.tar.xz -Source4497: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lsc.tar.xz -Source4498: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lsc.doc.tar.xz -Source4499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lstaddons.tar.xz -Source4500: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lstaddons.doc.tar.xz -Source4502: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lt3graph.tar.xz -Source4503: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lt3graph.doc.tar.xz -Source4504: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltablex.tar.xz -Source4505: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltablex.doc.tar.xz -Source4506: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltabptch.tar.xz -Source4507: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltabptch.doc.tar.xz -Source4508: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxdockit.tar.xz -Source4509: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxdockit.doc.tar.xz -Source4510: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxindex.tar.xz -Source4511: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxindex.doc.tar.xz -Source4513: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxkeys.tar.xz -Source4514: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxkeys.doc.tar.xz -Source4515: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxnew.tar.xz -Source4516: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxnew.doc.tar.xz -Source4518: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxtools.tar.xz -Source4519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxtools.doc.tar.xz -Source4520: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/macroswap.tar.xz -Source4521: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/macroswap.doc.tar.xz -Source4523: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/magaz.tar.xz -Source4524: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/magaz.doc.tar.xz -Source4525: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mailing.tar.xz -Source4526: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mailing.doc.tar.xz -Source4528: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mailmerge.tar.xz -Source4529: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mailmerge.doc.tar.xz -Source4531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makebarcode.tar.xz -Source4532: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makebarcode.doc.tar.xz -Source4533: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makebox.tar.xz -Source4534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makebox.doc.tar.xz -Source4536: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makecell.tar.xz -Source4537: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makecell.doc.tar.xz -Source4539: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makecirc.tar.xz -Source4540: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makecirc.doc.tar.xz -Source4541: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makecmds.tar.xz -Source4542: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makecmds.doc.tar.xz -Source4547: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeglos.tar.xz -Source4548: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeglos.doc.tar.xz -Source4549: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mandi.tar.xz -Source4550: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mandi.doc.tar.xz -Source4552: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/manfnt.tar.xz -Source4554: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/manuscript.tar.xz -Source4555: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/manuscript.doc.tar.xz -Source4557: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marginfix.tar.xz -Source4558: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marginfix.doc.tar.xz -Source4560: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marginnote.tar.xz -Source4561: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marginnote.doc.tar.xz -Source4563: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathalpha.tar.xz -Source4564: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathalpha.doc.tar.xz -Source4565: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathastext.tar.xz -Source4566: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathastext.doc.tar.xz -Source4568: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathexam.tar.xz -Source4569: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathexam.doc.tar.xz -Source4571: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/maybemath.tar.xz -Source4572: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/maybemath.doc.tar.xz -Source4575: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcaption.tar.xz -Source4576: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcaption.doc.tar.xz -Source4578: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mceinleger.tar.xz -Source4579: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mceinleger.doc.tar.xz -Source4580: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcite.tar.xz -Source4581: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcite.doc.tar.xz -Source4583: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mciteplus.tar.xz -Source4584: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mciteplus.doc.tar.xz -Source4585: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mdframed.tar.xz -Source4586: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mdframed.doc.tar.xz -Source4588: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/media9.tar.xz -Source4589: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/media9.doc.tar.xz -Source4591: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/medstarbeamer.tar.xz -Source4592: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/medstarbeamer.doc.tar.xz -Source4593: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/meetingmins.tar.xz -Source4594: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/meetingmins.doc.tar.xz -Source4596: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memexsupp.tar.xz -Source4597: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memexsupp.doc.tar.xz -Source4598: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memory.tar.xz -Source4599: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memory.doc.tar.xz -Source4601: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/menu.tar.xz -Source4602: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/menu.doc.tar.xz -Source4604: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/menukeys.tar.xz -Source4605: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/menukeys.doc.tar.xz -Source4607: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/method.tar.xz -Source4608: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/method.doc.tar.xz -Source4610: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metre.tar.xz -Source4611: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metre.doc.tar.xz -Source4613: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfirstuc.tar.xz -Source4614: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfirstuc.doc.tar.xz -Source4616: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mftinc.tar.xz -Source4617: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mftinc.doc.tar.xz -Source4619: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/midpage.tar.xz -Source4620: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/midpage.doc.tar.xz -Source4621: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minibox.tar.xz -Source4622: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minibox.doc.tar.xz -Source4624: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minifp.tar.xz -Source4625: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minifp.doc.tar.xz -Source4627: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minipage-marginpar.tar.xz -Source4628: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minipage-marginpar.doc.tar.xz -Source4630: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minitoc.tar.xz -Source4631: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minitoc.doc.tar.xz -Source4632: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minorrevision.tar.xz -Source4633: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minorrevision.doc.tar.xz -Source4634: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minted.tar.xz -Source4635: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minted.doc.tar.xz -Source4637: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minutes.tar.xz -Source4638: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minutes.doc.tar.xz -Source4640: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mla-paper.tar.xz -Source4641: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mla-paper.doc.tar.xz -Source4642: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mlist.tar.xz -Source4643: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mlist.doc.tar.xz -Source4645: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mmap.tar.xz -Source4646: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mmap.doc.tar.xz -Source4647: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mnotes.tar.xz -Source4648: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mnotes.doc.tar.xz -Source4650: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moderncv.tar.xz -Source4651: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moderncv.doc.tar.xz -Source4652: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moderntimeline.tar.xz -Source4653: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moderntimeline.doc.tar.xz -Source4655: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modref.tar.xz -Source4656: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modref.doc.tar.xz -Source4658: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modroman.tar.xz -Source4659: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modroman.doc.tar.xz -Source4661: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/monofill.tar.xz -Source4662: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/monofill.doc.tar.xz -Source4664: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moreenum.tar.xz -Source4665: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moreenum.doc.tar.xz -Source4666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/morefloats.tar.xz -Source4667: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/morefloats.doc.tar.xz -Source4669: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/morehype.tar.xz -Source4670: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/morehype.doc.tar.xz -Source4672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moresize.tar.xz -Source4673: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moresize.doc.tar.xz -Source4675: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moreverb.tar.xz -Source4676: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moreverb.doc.tar.xz -Source4678: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/morewrites.tar.xz -Source4679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/morewrites.doc.tar.xz -Source4683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mparhack.tar.xz -Source4684: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mparhack.doc.tar.xz -Source4686: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/msc.tar.xz -Source4687: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/msc.doc.tar.xz -Source4688: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/msg.tar.xz -Source4689: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/msg.doc.tar.xz -Source4691: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mslapa.tar.xz -Source4692: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mslapa.doc.tar.xz -Source4693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mtgreek.tar.xz -Source4694: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mtgreek.doc.tar.xz -Source4696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multenum.tar.xz -Source4697: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multenum.doc.tar.xz -Source4698: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multiaudience.tar.xz -Source4699: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multiaudience.doc.tar.xz -Source4701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multibbl.tar.xz -Source4702: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multibbl.doc.tar.xz -Source4704: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multicap.tar.xz -Source4705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multicap.doc.tar.xz -Source4707: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multienv.tar.xz -Source4708: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multienv.doc.tar.xz -Source4710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multiexpand.tar.xz -Source4711: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multiexpand.doc.tar.xz -Source4713: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multirow.tar.xz -Source4714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multirow.doc.tar.xz -Source4715: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mversion.tar.xz -Source4716: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mversion.doc.tar.xz -Source4718: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mwe.tar.xz -Source4719: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mwe.doc.tar.xz -Source4721: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mweights.tar.xz -Source4722: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mweights.doc.tar.xz -Source4723: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mycv.tar.xz -Source4724: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mycv.doc.tar.xz -Source4726: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mylatexformat.tar.xz -Source4727: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mylatexformat.doc.tar.xz -Source4729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nag.tar.xz -Source4730: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nag.doc.tar.xz -Source4732: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nameauth.tar.xz -Source4733: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nameauth.doc.tar.xz -Source4735: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/namespc.tar.xz -Source4736: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/namespc.doc.tar.xz -Source4738: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ncclatex.tar.xz -Source4739: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ncclatex.doc.tar.xz -Source4740: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/needspace.tar.xz -Source4741: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/needspace.doc.tar.xz -Source4743: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nestquot.tar.xz -Source4744: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newcommand.doc.tar.xz -Source4745: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newenviron.tar.xz -Source4746: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newenviron.doc.tar.xz -Source4747: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newfile.tar.xz -Source4748: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newfile.doc.tar.xz -Source4750: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newlfm.tar.xz -Source4751: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newlfm.doc.tar.xz -Source4753: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newspaper.tar.xz -Source4754: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newspaper.doc.tar.xz -Source4756: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newunicodechar.tar.xz -Source4757: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newunicodechar.doc.tar.xz -Source4759: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newvbtm.tar.xz -Source4760: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newvbtm.doc.tar.xz -Source4762: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newverbs.tar.xz -Source4763: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newverbs.doc.tar.xz -Source4765: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nextpage.tar.xz -Source4766: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nfssext-cfr.tar.xz -Source4767: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nfssext-cfr.doc.tar.xz -Source4768: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nicefilelist.tar.xz -Source4769: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nicefilelist.doc.tar.xz -Source4771: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/niceframe.tar.xz -Source4772: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/niceframe.doc.tar.xz -Source4774: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nicetext.tar.xz -Source4775: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nicetext.doc.tar.xz -Source4777: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nlctdoc.tar.xz -Source4778: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nlctdoc.doc.tar.xz -Source4779: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/noconflict.tar.xz -Source4780: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/noconflict.doc.tar.xz -Source4781: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/noindentafter.tar.xz -Source4782: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/noindentafter.doc.tar.xz -Source4783: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/noitcrul.tar.xz -Source4784: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/noitcrul.doc.tar.xz -Source4786: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nolbreaks.tar.xz -Source4787: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nolbreaks.doc.tar.xz -Source4788: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nomencl.tar.xz -Source4789: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nomencl.doc.tar.xz -Source4791: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nomentbl.tar.xz -Source4792: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nomentbl.doc.tar.xz -Source4794: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nonfloat.tar.xz -Source4795: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nonfloat.doc.tar.xz -Source4797: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nonumonpart.tar.xz -Source4798: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nonumonpart.doc.tar.xz -Source4800: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nopageno.tar.xz -Source4801: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nopageno.doc.tar.xz -Source4802: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notes.tar.xz -Source4803: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notes.doc.tar.xz -Source4805: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notoccite.tar.xz -Source4806: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notoccite.doc.tar.xz -Source4807: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nowidow.tar.xz -Source4808: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nowidow.doc.tar.xz -Source4810: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nox.tar.xz -Source4811: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nox.doc.tar.xz -Source4812: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ntheorem.tar.xz -Source4813: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ntheorem.doc.tar.xz -Source4815: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numberedblock.tar.xz -Source4816: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numberedblock.doc.tar.xz -Source4817: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numname.tar.xz -Source4818: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numname.doc.tar.xz -Source4819: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numprint.tar.xz -Source4820: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numprint.doc.tar.xz -Source4822: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocg-p.tar.xz -Source4823: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocg-p.doc.tar.xz -Source4824: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocgx.tar.xz -Source4825: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocgx.doc.tar.xz -Source4827: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocgx2.tar.xz -Source4828: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocgx2.doc.tar.xz -Source4829: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocr-latex.tar.xz -Source4830: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ocr-latex.doc.tar.xz -Source4831: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/octavo.tar.xz -Source4832: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/octavo.doc.tar.xz -Source4834: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oldstyle.tar.xz -Source4835: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oldstyle.doc.tar.xz -Source4837: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/onlyamsmath.tar.xz -Source4838: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/onlyamsmath.doc.tar.xz -Source4840: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/opcit.tar.xz -Source4841: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/opcit.doc.tar.xz -Source4843: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/optional.tar.xz -Source4844: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/optional.doc.tar.xz -Source4845: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/outline.tar.xz -Source4846: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/outline.doc.tar.xz -Source4847: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/outliner.tar.xz -Source4848: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/outliner.doc.tar.xz -Source4849: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/outlines.tar.xz -Source4850: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/outlines.doc.tar.xz -Source4851: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/overpic.tar.xz -Source4852: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/overpic.doc.tar.xz -Source4853: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pagecolor.tar.xz -Source4854: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pagecolor.doc.tar.xz -Source4856: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pagecont.tar.xz -Source4857: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pagecont.doc.tar.xz -Source4859: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pagenote.tar.xz -Source4860: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pagenote.doc.tar.xz -Source4862: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pagerange.tar.xz -Source4863: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pagerange.doc.tar.xz -Source4864: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pageslts.tar.xz -Source4865: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pageslts.doc.tar.xz -Source4867: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paper.tar.xz -Source4868: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paper.doc.tar.xz -Source4870: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/papercdcase.tar.xz -Source4871: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/papercdcase.doc.tar.xz -Source4873: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/papermas.tar.xz -Source4874: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/papermas.doc.tar.xz -Source4876: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/papertex.tar.xz -Source4877: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/papertex.doc.tar.xz -Source4879: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paracol.tar.xz -Source4880: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paracol.doc.tar.xz -Source4882: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paresse.tar.xz -Source4883: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/paresse.doc.tar.xz -Source4885: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parnotes.tar.xz -Source4886: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parnotes.doc.tar.xz -Source4887: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parselines.tar.xz -Source4888: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parselines.doc.tar.xz -Source4890: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pas-cours.tar.xz -Source4891: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pas-cours.doc.tar.xz -Source4892: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pas-cv.tar.xz -Source4893: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pas-cv.doc.tar.xz -Source4894: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pas-tableur.tar.xz -Source4895: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pas-tableur.doc.tar.xz -Source4896: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/patchcmd.tar.xz -Source4897: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/patchcmd.doc.tar.xz -Source4899: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pauldoc.tar.xz -Source4900: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pauldoc.doc.tar.xz -Source4902: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pawpict.tar.xz -Source4903: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pawpict.doc.tar.xz -Source4908: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pbox.tar.xz -Source4909: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pbox.doc.tar.xz -Source4911: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pbsheet.tar.xz -Source4912: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pbsheet.doc.tar.xz -Source4914: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdf14.tar.xz -Source4915: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdf14.doc.tar.xz -Source4917: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfcomment.tar.xz -Source4918: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfcomment.doc.tar.xz -Source4919: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfcprot.tar.xz -Source4920: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfcprot.doc.tar.xz -Source4922: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfmarginpar.tar.xz -Source4923: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfmarginpar.doc.tar.xz -Source4924: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfpagediff.tar.xz -Source4925: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfpagediff.doc.tar.xz -Source4926: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfscreen.tar.xz -Source4927: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfscreen.doc.tar.xz -Source4928: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfslide.tar.xz -Source4929: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfslide.doc.tar.xz -Source4930: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfsync.tar.xz -Source4931: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfsync.doc.tar.xz -Source4932: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfwin.tar.xz -Source4933: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfwin.doc.tar.xz -Source4934: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfx.tar.xz -Source4935: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfx.doc.tar.xz -Source4937: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pecha.tar.xz -Source4938: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pecha.doc.tar.xz -Source4942: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/permute.tar.xz -Source4943: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/permute.doc.tar.xz -Source4945: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/petiteannonce.tar.xz -Source4946: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/petiteannonce.doc.tar.xz -Source4947: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/philex.tar.xz -Source4948: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/philex.doc.tar.xz -Source4949: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/photo.tar.xz -Source4950: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/photo.doc.tar.xz -Source4952: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/piff.tar.xz -Source4953: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/piff.doc.tar.xz -Source4954: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkgloader.tar.xz -Source4955: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkgloader.doc.tar.xz -Source4956: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plantslabels.tar.xz -Source4957: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plantslabels.doc.tar.xz -Source4958: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plates.tar.xz -Source4959: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plates.doc.tar.xz -Source4960: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plweb.tar.xz -Source4961: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plweb.doc.tar.xz -Source4963: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polynom.tar.xz -Source4964: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polynom.doc.tar.xz -Source4966: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polynomial.tar.xz -Source4967: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polynomial.doc.tar.xz -Source4969: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polytable.tar.xz -Source4970: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polytable.doc.tar.xz -Source4972: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/postcards.tar.xz -Source4973: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/postcards.doc.tar.xz -Source4974: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poster-mac.tar.xz -Source4975: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poster-mac.doc.tar.xz -Source4976: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ppr-prv.tar.xz -Source4977: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ppr-prv.doc.tar.xz -Source4979: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/preprint.tar.xz -Source4980: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/preprint.doc.tar.xz -Source4982: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pressrelease.tar.xz -Source4983: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pressrelease.doc.tar.xz -Source4985: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prettyref.tar.xz -Source4986: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prettyref.doc.tar.xz -Source4988: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/printlen.tar.xz -Source4989: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/printlen.doc.tar.xz -Source4990: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/probsoln.tar.xz -Source4991: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/probsoln.doc.tar.xz -Source4993: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/program.tar.xz -Source4994: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/program.doc.tar.xz -Source4995: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/progress.tar.xz -Source4996: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/progress.doc.tar.xz -Source4997: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/progressbar.tar.xz -Source4998: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/progressbar.doc.tar.xz -Source4999: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/proofread.tar.xz -Source5000: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/proofread.doc.tar.xz -Source5002: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/properties.tar.xz -Source5003: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/properties.doc.tar.xz -Source5004: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prosper.tar.xz -Source5005: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prosper.doc.tar.xz -Source5006: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/protex.tar.xz -Source5007: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/protex.doc.tar.xz -Source5008: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/protocol.tar.xz -Source5009: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/protocol.doc.tar.xz -Source5011: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psfragx.tar.xz -Source5012: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psfragx.doc.tar.xz -Source5017: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstool.tar.xz -Source5018: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstool.doc.tar.xz -Source5020: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxgreeks.tar.xz -Source5021: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxgreeks.doc.tar.xz -Source5023: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/python.tar.xz -Source5024: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/python.doc.tar.xz -Source5025: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qcm.tar.xz -Source5026: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qcm.doc.tar.xz -Source5028: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qstest.tar.xz -Source5029: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qstest.doc.tar.xz -Source5031: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qsymbols.tar.xz -Source5032: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qsymbols.doc.tar.xz -Source5034: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quotchap.tar.xz -Source5035: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quotchap.doc.tar.xz -Source5037: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quoting.tar.xz -Source5038: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quoting.doc.tar.xz -Source5040: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quotmark.tar.xz -Source5041: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quotmark.doc.tar.xz -Source5043: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ran_toks.tar.xz -Source5044: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ran_toks.doc.tar.xz -Source5046: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/randtext.tar.xz -Source5047: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/randtext.doc.tar.xz -Source5048: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rccol.tar.xz -Source5049: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rccol.doc.tar.xz -Source5051: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rcs-multi.tar.xz -Source5052: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rcs-multi.doc.tar.xz -Source5054: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rcsinfo.tar.xz -Source5055: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rcsinfo.doc.tar.xz -Source5057: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/readarray.tar.xz -Source5058: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/readarray.doc.tar.xz -Source5059: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/realboxes.tar.xz -Source5060: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/realboxes.doc.tar.xz -Source5062: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/recipe.tar.xz -Source5063: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/recipe.doc.tar.xz -Source5064: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/recipebook.tar.xz -Source5065: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/recipebook.doc.tar.xz -Source5066: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/recipecard.tar.xz -Source5067: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/recipecard.doc.tar.xz -Source5069: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rectopma.tar.xz -Source5070: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rectopma.doc.tar.xz -Source5071: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/refcheck.tar.xz -Source5072: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/refcheck.doc.tar.xz -Source5073: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/refenums.tar.xz -Source5074: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/refenums.doc.tar.xz -Source5075: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/reflectgraphics.tar.xz -Source5076: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/reflectgraphics.doc.tar.xz -Source5078: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/refman.tar.xz -Source5079: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/refman.doc.tar.xz -Source5081: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/refstyle.tar.xz -Source5082: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/refstyle.doc.tar.xz -Source5084: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/regcount.tar.xz -Source5085: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/regcount.doc.tar.xz -Source5087: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/regexpatch.tar.xz -Source5088: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/regexpatch.doc.tar.xz -Source5090: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/register.tar.xz -Source5091: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/register.doc.tar.xz -Source5093: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/regstats.tar.xz -Source5094: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/regstats.doc.tar.xz -Source5096: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/relenc.tar.xz -Source5097: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/relenc.doc.tar.xz -Source5099: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/relsize.tar.xz -Source5100: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/relsize.doc.tar.xz -Source5101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/repeatindex.tar.xz -Source5102: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/repeatindex.doc.tar.xz -Source5103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/repltext.tar.xz -Source5104: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/repltext.doc.tar.xz -Source5106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rjlparshap.tar.xz -Source5107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rjlparshap.doc.tar.xz -Source5109: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rlepsf.tar.xz -Source5110: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rlepsf.doc.tar.xz -Source5111: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rmpage.tar.xz -Source5112: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rmpage.doc.tar.xz -Source5113: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/robustcommand.tar.xz -Source5114: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/robustcommand.doc.tar.xz -Source5116: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/robustindex.tar.xz -Source5117: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/robustindex.doc.tar.xz -Source5118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romanbar.tar.xz -Source5119: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romanbar.doc.tar.xz -Source5121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romanbarpagenumber.tar.xz -Source5122: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romanbarpagenumber.doc.tar.xz -Source5124: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romanneg.tar.xz -Source5125: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romanneg.doc.tar.xz -Source5126: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romannum.tar.xz -Source5127: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/romannum.doc.tar.xz -Source5129: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rotfloat.tar.xz -Source5130: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rotfloat.doc.tar.xz -Source5132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rotpages.tar.xz -Source5133: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rotpages.doc.tar.xz -Source5134: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/roundbox.tar.xz -Source5135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/roundbox.doc.tar.xz -Source5136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rterface.tar.xz -Source5137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rterface.doc.tar.xz -Source5138: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rtkinenc.tar.xz -Source5139: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rtkinenc.doc.tar.xz -Source5141: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rulercompass.tar.xz -Source5142: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rulercompass.doc.tar.xz -Source5144: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rvwrite.tar.xz -Source5145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rvwrite.doc.tar.xz -Source5146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/savefnmark.tar.xz -Source5147: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/savefnmark.doc.tar.xz -Source5149: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/savesym.tar.xz -Source5150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/savetrees.tar.xz -Source5151: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/savetrees.doc.tar.xz -Source5153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scale.tar.xz -Source5154: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scale.doc.tar.xz -Source5156: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scalebar.tar.xz -Source5157: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scalebar.doc.tar.xz -Source5159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scalerel.tar.xz -Source5160: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scalerel.doc.tar.xz -Source5161: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scanpages.tar.xz -Source5162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scanpages.doc.tar.xz -Source5163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sdrt.tar.xz -Source5164: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sdrt.doc.tar.xz -Source5165: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/secdot.tar.xz -Source5166: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/secdot.doc.tar.xz -Source5167: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sectionbox.tar.xz -Source5168: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sectionbox.doc.tar.xz -Source5169: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sectsty.tar.xz -Source5170: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sectsty.doc.tar.xz -Source5172: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seealso.tar.xz -Source5173: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seealso.doc.tar.xz -Source5175: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/selectp.tar.xz -Source5176: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/selectp.doc.tar.xz -Source5177: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semantic.tar.xz -Source5178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semantic.doc.tar.xz -Source5180: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semioneside.tar.xz -Source5181: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semioneside.doc.tar.xz -Source5183: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semproc.tar.xz -Source5184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semproc.doc.tar.xz -Source5186: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sepfootnotes.tar.xz -Source5187: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sepfootnotes.doc.tar.xz -Source5188: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seqsplit.tar.xz -Source5189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seqsplit.doc.tar.xz -Source5191: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sf298.tar.xz -Source5192: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sf298.doc.tar.xz -Source5194: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sffms.tar.xz -Source5195: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sffms.doc.tar.xz -Source5197: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sfmath.tar.xz -Source5198: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shadethm.tar.xz -Source5199: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shadethm.doc.tar.xz -Source5200: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shadow.tar.xz -Source5201: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shadow.doc.tar.xz -Source5202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shadowtext.tar.xz -Source5203: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shadowtext.doc.tar.xz -Source5204: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shapepar.tar.xz -Source5205: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shapepar.doc.tar.xz -Source5206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shdoc.tar.xz -Source5207: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shdoc.doc.tar.xz -Source5209: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shipunov.tar.xz -Source5210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shipunov.doc.tar.xz -Source5211: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shorttoc.tar.xz -Source5212: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shorttoc.doc.tar.xz -Source5214: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/show2e.tar.xz -Source5215: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/show2e.doc.tar.xz -Source5217: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showcharinbox.tar.xz -Source5218: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showcharinbox.doc.tar.xz -Source5220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showdim.tar.xz -Source5221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showdim.doc.tar.xz -Source5222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showexpl.tar.xz -Source5223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showexpl.doc.tar.xz -Source5225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showlabels.tar.xz -Source5226: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showlabels.doc.tar.xz -Source5228: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sidecap.tar.xz -Source5229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sidecap.doc.tar.xz -Source5231: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sidenotes.tar.xz -Source5232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sidenotes.doc.tar.xz -Source5234: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/silence.tar.xz -Source5235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/silence.doc.tar.xz -Source5237: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simplecd.tar.xz -Source5238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simplecd.doc.tar.xz -Source5240: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simplecv.tar.xz -Source5241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simplecv.doc.tar.xz -Source5243: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simplewick.tar.xz -Source5244: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simplewick.doc.tar.xz -Source5246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sitem.tar.xz -Source5247: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sitem.doc.tar.xz -Source5249: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skb.tar.xz -Source5250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skb.doc.tar.xz -Source5252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skdoc.tar.xz -Source5253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skdoc.doc.tar.xz -Source5255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skeycommand.tar.xz -Source5256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skeycommand.doc.tar.xz -Source5257: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skeyval.tar.xz -Source5258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skeyval.doc.tar.xz -Source5259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skrapport.tar.xz -Source5260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skrapport.doc.tar.xz -Source5262: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/slantsc.tar.xz -Source5263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/slantsc.doc.tar.xz -Source5265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/smalltableof.tar.xz -Source5266: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/smalltableof.doc.tar.xz -Source5267: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/smartref.tar.xz -Source5268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/smartref.doc.tar.xz -Source5269: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/snapshot.tar.xz -Source5270: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/snapshot.doc.tar.xz -Source5272: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/snotez.tar.xz -Source5273: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/snotez.doc.tar.xz -Source5274: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/soul.tar.xz -Source5275: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/soul.doc.tar.xz -Source5277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sparklines.tar.xz -Source5278: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sparklines.doc.tar.xz -Source5279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sphack.tar.xz -Source5280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sphack.doc.tar.xz -Source5284: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spot.tar.xz -Source5285: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spot.doc.tar.xz -Source5287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spotcolor.tar.xz -Source5288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spotcolor.doc.tar.xz -Source5289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spreadtab.tar.xz -Source5290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spreadtab.doc.tar.xz -Source5291: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spverbatim.tar.xz -Source5292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spverbatim.doc.tar.xz -Source5294: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srbook-mem.tar.xz -Source5295: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srbook-mem.doc.tar.xz -Source5296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srcltx.tar.xz -Source5297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srcltx.doc.tar.xz -Source5299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sseq.tar.xz -Source5300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sseq.doc.tar.xz -Source5302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sslides.tar.xz -Source5303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sslides.doc.tar.xz -Source5304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stack.tar.xz -Source5306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stackengine.tar.xz -Source5307: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stackengine.doc.tar.xz -Source5308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/standalone.tar.xz -Source5309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/standalone.doc.tar.xz -Source5311: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statistik.tar.xz -Source5312: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statistik.doc.tar.xz -Source5314: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stdclsdv.tar.xz -Source5315: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stdclsdv.doc.tar.xz -Source5317: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stdpage.tar.xz -Source5318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stdpage.doc.tar.xz -Source5320: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stex.tar.xz -Source5321: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stex.doc.tar.xz -Source5323: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/storebox.tar.xz -Source5324: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/storebox.doc.tar.xz -Source5326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/storecmd.tar.xz -Source5327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/storecmd.doc.tar.xz -Source5328: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stringstrings.tar.xz -Source5329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stringstrings.doc.tar.xz -Source5331: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sttools.tar.xz -Source5332: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sttools.doc.tar.xz -Source5334: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stubs.tar.xz -Source5335: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stubs.doc.tar.xz -Source5336: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subdepth.tar.xz -Source5337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subdepth.doc.tar.xz -Source5339: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subeqn.tar.xz -Source5340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subeqn.doc.tar.xz -Source5342: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subeqnarray.tar.xz -Source5343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subeqnarray.doc.tar.xz -Source5345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfigmat.tar.xz -Source5346: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfigmat.doc.tar.xz -Source5347: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfigure.tar.xz -Source5348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfigure.doc.tar.xz -Source5350: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfiles.tar.xz -Source5351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfiles.doc.tar.xz -Source5353: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfloat.tar.xz -Source5354: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subfloat.doc.tar.xz -Source5356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/substitutefont.tar.xz -Source5357: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/substitutefont.doc.tar.xz -Source5358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/substr.tar.xz -Source5359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/substr.doc.tar.xz -Source5360: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/supertabular.tar.xz -Source5361: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/supertabular.doc.tar.xz -Source5363: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svg.tar.xz -Source5364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svg.doc.tar.xz -Source5366: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svgcolor.tar.xz -Source5367: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svgcolor.doc.tar.xz -Source5368: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svn.tar.xz -Source5369: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svn.doc.tar.xz -Source5374: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svninfo.tar.xz -Source5375: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svninfo.doc.tar.xz -Source5377: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/syntax.tar.xz -Source5378: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/syntax.doc.tar.xz -Source5379: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/syntrace.tar.xz -Source5380: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/syntrace.doc.tar.xz -Source5382: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/synttree.tar.xz -Source5383: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/synttree.doc.tar.xz -Source5385: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabfigures.tar.xz -Source5386: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabfigures.doc.tar.xz -Source5388: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tableaux.tar.xz -Source5389: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tableaux.doc.tar.xz -Source5390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tablefootnote.tar.xz -Source5391: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tablefootnote.doc.tar.xz -Source5393: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tableof.tar.xz -Source5394: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tableof.doc.tar.xz -Source5396: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tablestyles.tar.xz -Source5397: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tablestyles.doc.tar.xz -Source5399: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tablists.tar.xz -Source5400: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tablists.doc.tar.xz -Source5402: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabls.tar.xz -Source5403: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabls.doc.tar.xz -Source5404: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabstackengine.tar.xz -Source5405: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabstackengine.doc.tar.xz -Source5406: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabto-ltx.tar.xz -Source5407: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabto-ltx.doc.tar.xz -Source5408: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabu.tar.xz -Source5409: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabu.doc.tar.xz -Source5411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabularborder.tar.xz -Source5412: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabularborder.doc.tar.xz -Source5414: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabularcalc.tar.xz -Source5415: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabularcalc.doc.tar.xz -Source5416: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabularew.tar.xz -Source5417: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabularew.doc.tar.xz -Source5419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabulary.tar.xz -Source5420: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabulary.doc.tar.xz -Source5422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tagging.tar.xz -Source5423: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tagging.doc.tar.xz -Source5424: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tagpair.tar.xz -Source5425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tagpair.doc.tar.xz -Source5426: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/talk.tar.xz -Source5427: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/talk.doc.tar.xz -Source5429: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tamefloats.tar.xz -Source5430: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tamefloats.doc.tar.xz -Source5431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tasks.tar.xz -Source5432: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tasks.doc.tar.xz -Source5433: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tcldoc.tar.xz -Source5434: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tcldoc.doc.tar.xz -Source5436: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tcolorbox.tar.xz -Source5437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tcolorbox.doc.tar.xz -Source5438: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tdclock.tar.xz -Source5439: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tdclock.doc.tar.xz -Source5440: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/technics.tar.xz -Source5441: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/technics.doc.tar.xz -Source5442: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ted.tar.xz -Source5443: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ted.doc.tar.xz -Source5445: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/templatetools.tar.xz -Source5446: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/templatetools.doc.tar.xz -Source5448: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/termcal.tar.xz -Source5449: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/termcal.doc.tar.xz -Source5451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/termlist.tar.xz -Source5452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/termlist.doc.tar.xz -Source5454: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/testhyphens.tar.xz -Source5455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/testhyphens.doc.tar.xz -Source5457: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-label.tar.xz -Source5458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-label.doc.tar.xz -Source5460: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlogos.tar.xz -Source5461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texmate.tar.xz -Source5462: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texmate.doc.tar.xz -Source5464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texments.tar.xz -Source5465: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texments.doc.tar.xz -Source5467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texpower.tar.xz -Source5468: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texpower.doc.tar.xz -Source5470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texshade.tar.xz -Source5471: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texshade.doc.tar.xz -Source5473: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textfit.tar.xz -Source5474: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textfit.doc.tar.xz -Source5476: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textgreek.tar.xz -Source5477: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textgreek.doc.tar.xz -Source5479: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textmerg.tar.xz -Source5480: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textmerg.doc.tar.xz -Source5482: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textpos.tar.xz -Source5483: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textpos.doc.tar.xz -Source5485: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/theoremref.tar.xz -Source5486: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/theoremref.doc.tar.xz -Source5487: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thinsp.tar.xz -Source5488: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thinsp.doc.tar.xz -Source5489: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thmtools.tar.xz -Source5490: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thmtools.doc.tar.xz -Source5492: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/threadcol.tar.xz -Source5493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/threadcol.doc.tar.xz -Source5495: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/threeparttable.tar.xz -Source5496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/threeparttable.doc.tar.xz -Source5497: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/threeparttablex.tar.xz -Source5498: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/threeparttablex.doc.tar.xz -Source5499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumb.tar.xz -Source5500: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumb.doc.tar.xz -Source5502: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumbs.tar.xz -Source5503: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumbs.doc.tar.xz -Source5505: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumby.tar.xz -Source5506: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thumby.doc.tar.xz -Source5507: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ticket.tar.xz -Source5508: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ticket.doc.tar.xz -Source5509: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titlecaps.tar.xz -Source5510: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titlecaps.doc.tar.xz -Source5511: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titlefoot.tar.xz -Source5512: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titlepic.tar.xz -Source5513: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titlepic.doc.tar.xz -Source5514: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titleref.tar.xz -Source5515: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titleref.doc.tar.xz -Source5516: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titlesec.tar.xz -Source5517: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titlesec.doc.tar.xz -Source5518: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titling.tar.xz -Source5519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/titling.doc.tar.xz -Source5521: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tocbibind.tar.xz -Source5522: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tocbibind.doc.tar.xz -Source5524: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tocloft.tar.xz -Source5525: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tocloft.doc.tar.xz -Source5527: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tocvsec2.tar.xz -Source5528: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tocvsec2.doc.tar.xz -Source5530: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/todo.tar.xz -Source5531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/todo.doc.tar.xz -Source5533: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/todonotes.tar.xz -Source5534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/todonotes.doc.tar.xz -Source5536: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tokenizer.tar.xz -Source5537: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tokenizer.doc.tar.xz -Source5538: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/toolbox.tar.xz -Source5539: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/toolbox.doc.tar.xz -Source5541: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/topfloat.tar.xz -Source5542: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/topfloat.doc.tar.xz -Source5543: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/totcount.tar.xz -Source5544: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/totcount.doc.tar.xz -Source5546: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/totpages.tar.xz -Source5547: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/totpages.doc.tar.xz -Source5549: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translations.tar.xz -Source5550: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translations.doc.tar.xz -Source5551: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trfsigns.tar.xz -Source5552: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trfsigns.doc.tar.xz -Source5554: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trimspaces.tar.xz -Source5555: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trimspaces.doc.tar.xz -Source5557: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trivfloat.tar.xz -Source5558: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trivfloat.doc.tar.xz -Source5560: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trsym.tar.xz -Source5561: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/trsym.doc.tar.xz -Source5563: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/truncate.tar.xz -Source5564: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/truncate.doc.tar.xz -Source5565: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tucv.tar.xz -Source5566: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tucv.doc.tar.xz -Source5568: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turnthepage.tar.xz -Source5569: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turnthepage.doc.tar.xz -Source5570: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/twoinone.tar.xz -Source5571: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/twoinone.doc.tar.xz -Source5572: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/twoup.tar.xz -Source5573: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/twoup.doc.tar.xz -Source5575: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/txgreeks.tar.xz -Source5576: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/txgreeks.doc.tar.xz -Source5578: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/type1cm.tar.xz -Source5579: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/type1cm.doc.tar.xz -Source5581: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typeface.tar.xz -Source5582: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typeface.doc.tar.xz -Source5584: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typogrid.tar.xz -Source5585: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typogrid.doc.tar.xz -Source5587: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uassign.tar.xz -Source5588: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uassign.doc.tar.xz -Source5589: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucs.tar.xz -Source5590: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucs.doc.tar.xz -Source5591: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uebungsblatt.tar.xz -Source5592: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uebungsblatt.doc.tar.xz -Source5593: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umoline.tar.xz -Source5594: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umoline.doc.tar.xz -Source5596: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/underlin.tar.xz -Source5597: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/underlin.doc.tar.xz -Source5599: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/underoverlap.tar.xz -Source5600: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/underoverlap.doc.tar.xz -Source5601: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/undolabl.tar.xz -Source5602: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/undolabl.doc.tar.xz -Source5604: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/units.tar.xz -Source5605: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/units.doc.tar.xz -Source5607: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unravel.tar.xz -Source5608: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unravel.doc.tar.xz -Source5610: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/upmethodology.tar.xz -Source5611: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/upmethodology.doc.tar.xz -Source5612: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/upquote.tar.xz -Source5613: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/upquote.doc.tar.xz -Source5615: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uri.tar.xz -Source5616: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uri.doc.tar.xz -Source5618: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ushort.tar.xz -Source5619: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ushort.doc.tar.xz -Source5621: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/varindex.tar.xz -Source5622: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/varindex.doc.tar.xz -Source5624: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/varsfromjobname.tar.xz -Source5625: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/varsfromjobname.doc.tar.xz -Source5626: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/varwidth.tar.xz -Source5627: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/varwidth.doc.tar.xz -Source5628: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vdmlisting.tar.xz -Source5629: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vdmlisting.doc.tar.xz -Source5630: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbasef.tar.xz -Source5631: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbasef.doc.tar.xz -Source5632: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbatimbox.tar.xz -Source5633: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbatimbox.doc.tar.xz -Source5634: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbatimcopy.tar.xz -Source5635: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbatimcopy.doc.tar.xz -Source5636: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbdef.tar.xz -Source5637: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbdef.doc.tar.xz -Source5638: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbments.tar.xz -Source5639: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/verbments.doc.tar.xz -Source5640: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/version.tar.xz -Source5641: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/version.doc.tar.xz -Source5642: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/versions.tar.xz -Source5643: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/versions.doc.tar.xz -Source5644: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/versonotes.tar.xz -Source5645: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/versonotes.doc.tar.xz -Source5647: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vertbars.tar.xz -Source5648: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vertbars.doc.tar.xz -Source5650: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vgrid.tar.xz -Source5651: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vgrid.doc.tar.xz -Source5653: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vhistory.tar.xz -Source5654: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vhistory.doc.tar.xz -Source5655: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vmargin.tar.xz -Source5656: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vmargin.doc.tar.xz -Source5658: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/volumes.tar.xz -Source5659: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/volumes.doc.tar.xz -Source5663: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vruler.tar.xz -Source5664: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vruler.doc.tar.xz -Source5665: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vwcol.tar.xz -Source5666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vwcol.doc.tar.xz -Source5668: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wallpaper.tar.xz -Source5669: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wallpaper.doc.tar.xz -Source5670: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/warning.tar.xz -Source5671: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/warning.doc.tar.xz -Source5672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/warpcol.tar.xz -Source5673: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/warpcol.doc.tar.xz -Source5675: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/was.tar.xz -Source5676: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/was.doc.tar.xz -Source5678: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/widetable.tar.xz -Source5679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/widetable.doc.tar.xz -Source5681: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/williams.tar.xz -Source5682: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/williams.doc.tar.xz -Source5683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/withargs.tar.xz -Source5684: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/withargs.doc.tar.xz -Source5685: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wordlike.tar.xz -Source5686: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wordlike.doc.tar.xz -Source5688: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wrapfig.tar.xz -Source5689: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wrapfig.doc.tar.xz -Source5690: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xargs.tar.xz -Source5691: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xargs.doc.tar.xz -Source5693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcolor-solarized.tar.xz -Source5694: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcolor-solarized.doc.tar.xz -Source5696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcomment.tar.xz -Source5697: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcomment.doc.tar.xz -Source5698: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xdoc.tar.xz -Source5699: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xdoc.doc.tar.xz -Source5701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xfor.tar.xz -Source5702: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xfor.doc.tar.xz -Source5704: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xhfill.tar.xz -Source5705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xhfill.doc.tar.xz -Source5706: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xint.tar.xz -Source5707: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xint.doc.tar.xz -Source5709: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xmpincl.tar.xz -Source5710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xmpincl.doc.tar.xz -Source5712: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xnewcommand.tar.xz -Source5713: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xnewcommand.doc.tar.xz -Source5714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xoptarg.tar.xz -Source5715: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xoptarg.doc.tar.xz -Source5716: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpatch.tar.xz -Source5717: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpatch.doc.tar.xz -Source5719: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpeek.tar.xz -Source5720: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpeek.doc.tar.xz -Source5722: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xprintlen.tar.xz -Source5723: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xprintlen.doc.tar.xz -Source5724: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpunctuate.tar.xz -Source5725: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpunctuate.doc.tar.xz -Source5727: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xstring.tar.xz -Source5728: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xstring.doc.tar.xz -Source5729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xtab.tar.xz -Source5730: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xtab.doc.tar.xz -Source5732: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xwatermark.tar.xz -Source5733: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xwatermark.doc.tar.xz -Source5734: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xytree.tar.xz -Source5735: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xytree.doc.tar.xz -Source5736: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yafoot.tar.xz -Source5737: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yafoot.doc.tar.xz -Source5739: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yagusylo.tar.xz -Source5740: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yagusylo.doc.tar.xz -Source5742: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ydoc.tar.xz -Source5743: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ydoc.doc.tar.xz -Source5747: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zed-csp.tar.xz -Source5748: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zed-csp.doc.tar.xz -Source5749: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ziffer.tar.xz -Source5750: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ziffer.doc.tar.xz -Source5751: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zwgetfdate.tar.xz -Source5752: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zwgetfdate.doc.tar.xz -Source5753: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zwpagelayout.tar.xz -Source5754: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zwpagelayout.doc.tar.xz -Source5755: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enigma.tar.xz -Source5756: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/enigma.doc.tar.xz -Source5757: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interpreter.tar.xz -Source5758: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interpreter.doc.tar.xz -Source5759: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lua-check-hyphen.tar.xz -Source5760: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lua-check-hyphen.doc.tar.xz -Source5761: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lua-visual-debug.tar.xz -Source5762: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lua-visual-debug.doc.tar.xz -Source5765: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luabibentry.tar.xz -Source5766: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luabibentry.doc.tar.xz -Source5768: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luabidi.tar.xz -Source5769: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luabidi.doc.tar.xz -Source5770: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luacode.tar.xz -Source5771: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luacode.doc.tar.xz -Source5773: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaindex.tar.xz -Source5774: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaindex.doc.tar.xz -Source5776: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luainputenc.tar.xz -Source5777: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luainputenc.doc.tar.xz -Source5779: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaintro.doc.tar.xz -Source5780: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lualatex-doc.doc.tar.xz -Source5782: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lualatex-math.tar.xz -Source5783: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lualatex-math.doc.tar.xz -Source5785: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lualibs.tar.xz -Source5786: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lualibs.doc.tar.xz -Source5788: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luamplib.tar.xz -Source5789: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luamplib.doc.tar.xz -Source5794: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luasseq.tar.xz -Source5795: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luasseq.doc.tar.xz -Source5797: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatexbase.tar.xz -Source5798: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatexbase.doc.tar.xz -Source5800: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatexko.tar.xz -Source5801: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatexko.doc.tar.xz -Source5802: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatextra.tar.xz -Source5803: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatextra.doc.tar.xz -Source5805: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatodonotes.tar.xz -Source5806: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatodonotes.doc.tar.xz -Source5808: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaxml.tar.xz -Source5809: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaxml.doc.tar.xz -Source5810: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/odsfile.tar.xz -Source5811: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/odsfile.doc.tar.xz -Source5812: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/placeat.tar.xz -Source5813: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/placeat.doc.tar.xz -Source5815: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/selnolig.tar.xz -Source5816: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/selnolig.doc.tar.xz -Source5817: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showhyphens.tar.xz -Source5818: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/showhyphens.doc.tar.xz -Source5819: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spelling.tar.xz -Source5820: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spelling.doc.tar.xz -Source5821: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucharcat.tar.xz -Source5822: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucharcat.doc.tar.xz -Source5824: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/commath.tar.xz -Source5825: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/commath.doc.tar.xz -Source5826: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concmath.tar.xz -Source5827: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concmath.doc.tar.xz -Source5829: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concrete.tar.xz -Source5830: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/concrete.doc.tar.xz -Source5831: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/conteq.tar.xz -Source5832: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/conteq.doc.tar.xz -Source5834: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebproof.tar.xz -Source5835: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebproof.doc.tar.xz -Source5836: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqnarray.tar.xz -Source5837: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqnarray.doc.tar.xz -Source5839: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/extarrows.tar.xz -Source5840: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/extarrows.doc.tar.xz -Source5841: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/extpfeil.tar.xz -Source5842: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/extpfeil.doc.tar.xz -Source5844: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/faktor.tar.xz -Source5845: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/faktor.doc.tar.xz -Source5847: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grundgesetze.tar.xz -Source5848: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grundgesetze.doc.tar.xz -Source5850: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interval.tar.xz -Source5851: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interval.doc.tar.xz -Source5852: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ionumbers.tar.xz -Source5853: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ionumbers.doc.tar.xz -Source5855: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isomath.tar.xz -Source5856: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isomath.doc.tar.xz -Source5857: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logicproof.tar.xz -Source5858: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/logicproof.doc.tar.xz -Source5860: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lpform.tar.xz -Source5861: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lpform.doc.tar.xz -Source5862: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lplfitch.tar.xz -Source5863: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lplfitch.doc.tar.xz -Source5865: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathcomp.tar.xz -Source5866: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathcomp.doc.tar.xz -Source5868: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mattens.tar.xz -Source5869: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mattens.doc.tar.xz -Source5871: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mhequ.tar.xz -Source5872: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mhequ.doc.tar.xz -Source5873: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multiobjective.tar.xz -Source5874: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multiobjective.doc.tar.xz -Source5876: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/natded.tar.xz -Source5877: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/natded.doc.tar.xz -Source5878: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nath.tar.xz -Source5879: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nath.doc.tar.xz -Source5880: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ot-tableau.tar.xz -Source5881: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ot-tableau.doc.tar.xz -Source5882: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oubraces.tar.xz -Source5883: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oubraces.doc.tar.xz -Source5884: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/perfectcut.tar.xz -Source5885: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/perfectcut.doc.tar.xz -Source5886: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prftree.tar.xz -Source5887: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prftree.doc.tar.xz -Source5888: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/proba.tar.xz -Source5889: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/proba.doc.tar.xz -Source5891: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rec-thy.tar.xz -Source5892: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rec-thy.doc.tar.xz -Source5893: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ribbonproofs.tar.xz -Source5894: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ribbonproofs.doc.tar.xz -Source5895: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rmathbr.tar.xz -Source5896: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rmathbr.doc.tar.xz -Source5898: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sesamanuel.tar.xz -Source5899: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sesamanuel.doc.tar.xz -Source5901: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shuffle.tar.xz -Source5902: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shuffle.doc.tar.xz -Source5904: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skmath.tar.xz -Source5905: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/skmath.doc.tar.xz -Source5907: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statex.tar.xz -Source5908: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statex.doc.tar.xz -Source5909: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statex2.tar.xz -Source5910: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statex2.doc.tar.xz -Source5911: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subsupscripts.tar.xz -Source5912: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subsupscripts.doc.tar.xz -Source5913: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/susy.tar.xz -Source5914: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/susy.doc.tar.xz -Source5915: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/syllogism.tar.xz -Source5916: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/syllogism.doc.tar.xz -Source5917: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sympytexpackage.tar.xz -Source5918: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sympytexpackage.doc.tar.xz -Source5920: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/synproof.tar.xz -Source5921: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/synproof.doc.tar.xz -Source5922: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tablor.tar.xz -Source5923: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tablor.doc.tar.xz -Source5924: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tensor.tar.xz -Source5925: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tensor.doc.tar.xz -Source5927: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-ewd.tar.xz -Source5928: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-ewd.doc.tar.xz -Source5929: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thmbox.tar.xz -Source5930: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thmbox.doc.tar.xz -Source5932: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turnstile.tar.xz -Source5933: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turnstile.doc.tar.xz -Source5935: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unicode-math.tar.xz -Source5936: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unicode-math.doc.tar.xz -Source5938: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/venn.tar.xz -Source5939: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/venn.doc.tar.xz -Source5940: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yhmath.tar.xz -Source5941: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yhmath.doc.tar.xz -Source5943: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ytableau.tar.xz -Source5944: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ytableau.doc.tar.xz -Source5946: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drv.tar.xz -Source5947: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drv.doc.tar.xz -Source5948: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviincl.tar.xz -Source5949: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dviincl.doc.tar.xz -Source5950: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emp.tar.xz -Source5951: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emp.doc.tar.xz -Source5953: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epsincl.tar.xz -Source5954: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epsincl.doc.tar.xz -Source5955: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/expressg.tar.xz -Source5956: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/expressg.doc.tar.xz -Source5958: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exteps.tar.xz -Source5959: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exteps.doc.tar.xz -Source5960: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/featpost.tar.xz -Source5961: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/featpost.doc.tar.xz -Source5962: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/feynmf.tar.xz -Source5963: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/feynmf.doc.tar.xz -Source5965: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/feynmp-auto.tar.xz -Source5966: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/feynmp-auto.doc.tar.xz -Source5968: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/garrigues.tar.xz -Source5969: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/garrigues.doc.tar.xz -Source5970: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmp.tar.xz -Source5971: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gmp.doc.tar.xz -Source5973: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexmp.tar.xz -Source5974: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexmp.doc.tar.xz -Source5975: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcf2graph.tar.xz -Source5976: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcf2graph.doc.tar.xz -Source5977: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metago.tar.xz -Source5978: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metago.doc.tar.xz -Source5979: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metaobj.tar.xz -Source5980: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metaobj.doc.tar.xz -Source5981: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metaplot.tar.xz -Source5982: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metaplot.doc.tar.xz -Source5983: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metauml.tar.xz -Source5984: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metauml.doc.tar.xz -Source5985: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfpic.tar.xz -Source5986: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfpic.doc.tar.xz -Source5988: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfpic4ode.tar.xz -Source5989: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mfpic4ode.doc.tar.xz -Source5991: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mp3d.tar.xz -Source5992: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mp3d.doc.tar.xz -Source5993: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpcolornames.tar.xz -Source5994: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpcolornames.doc.tar.xz -Source5996: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpattern.tar.xz -Source5997: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpattern.doc.tar.xz -Source5998: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpgraphics.tar.xz -Source5999: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpgraphics.doc.tar.xz -Source6001: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/piechartmp.tar.xz -Source6002: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/piechartmp.doc.tar.xz -Source6003: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/repere.tar.xz -Source6004: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/repere.doc.tar.xz -Source6005: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/roex.tar.xz -Source6007: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/roundrect.tar.xz -Source6008: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/roundrect.doc.tar.xz -Source6010: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shapes.tar.xz -Source6011: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shapes.doc.tar.xz -Source6013: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/slideshow.tar.xz -Source6014: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/slideshow.doc.tar.xz -Source6015: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/splines.tar.xz -Source6016: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/splines.doc.tar.xz -Source6018: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/suanpan.tar.xz -Source6019: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/suanpan.doc.tar.xz -Source6020: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textpath.tar.xz -Source6021: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textpath.doc.tar.xz -Source6022: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/threeddice.tar.xz -Source6023: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/threeddice.doc.tar.xz -Source6024: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/figbas.tar.xz -Source6025: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/figbas.doc.tar.xz -Source6026: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gchords.tar.xz -Source6027: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gchords.doc.tar.xz -Source6028: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gtrcrd.tar.xz -Source6029: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gtrcrd.doc.tar.xz -Source6030: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guitar.tar.xz -Source6031: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guitar.doc.tar.xz -Source6033: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guitarchordschemes.tar.xz -Source6034: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guitarchordschemes.doc.tar.xz -Source6035: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harmony.tar.xz -Source6036: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/harmony.doc.tar.xz -Source6037: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leadsheets.tar.xz -Source6038: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/leadsheets.doc.tar.xz -Source6044: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixguit.tar.xz -Source6045: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixguit.doc.tar.xz -Source6049: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtex-fonts.tar.xz -Source6050: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musixtex-fonts.doc.tar.xz -Source6053: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/piano.tar.xz -Source6054: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/piano.doc.tar.xz -Source6059: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/songbook.tar.xz -Source6060: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/songbook.doc.tar.xz -Source6062: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/songs.tar.xz -Source6063: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/songs.doc.tar.xz -Source6065: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpiano.tar.xz -Source6066: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xpiano.doc.tar.xz -Source6068: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mxedruli.tar.xz -Source6069: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mxedruli.doc.tar.xz -Source6072: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/otibet.tar.xz -Source6073: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/otibet.doc.tar.xz -Source6075: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epsf-dvipdfmx.tar.xz -Source6076: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/epsf-dvipdfmx.doc.tar.xz -Source6077: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/figflow.tar.xz -Source6078: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/figflow.doc.tar.xz -Source6079: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixpdfmag.tar.xz -Source6080: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/font-change.tar.xz -Source6081: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/font-change.doc.tar.xz -Source6082: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontch.tar.xz -Source6083: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontch.doc.tar.xz -Source6084: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getoptk.tar.xz -Source6085: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getoptk.doc.tar.xz -Source6086: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfnotation.tar.xz -Source6087: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfnotation.doc.tar.xz -Source6088: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphics-pln.tar.xz -Source6089: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphics-pln.doc.tar.xz -Source6091: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyplain.tar.xz -Source6092: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyplain.doc.tar.xz -Source6093: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/js-misc.tar.xz -Source6094: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/js-misc.doc.tar.xz -Source6095: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkpattern.tar.xz -Source6096: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mkpattern.doc.tar.xz -Source6097: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newsletr.tar.xz -Source6098: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/newsletr.doc.tar.xz -Source6099: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pitex.tar.xz -Source6100: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pitex.doc.tar.xz -Source6101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/placeins-plain.tar.xz -Source6102: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plipsum.tar.xz -Source6103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plipsum.doc.tar.xz -Source6104: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plnfss.tar.xz -Source6105: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plnfss.doc.tar.xz -Source6106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plstmary.tar.xz -Source6107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plstmary.doc.tar.xz -Source6108: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/present.tar.xz -Source6109: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/present.doc.tar.xz -Source6110: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/resumemac.tar.xz -Source6111: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/resumemac.doc.tar.xz -Source6112: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texinfo.tar.xz -Source6113: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/timetable.tar.xz -Source6114: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/treetex.tar.xz -Source6115: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/treetex.doc.tar.xz -Source6116: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/varisize.tar.xz -Source6117: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/varisize.doc.tar.xz -Source6118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xii.doc.tar.xz -Source6119: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dsptricks.tar.xz -Source6120: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dsptricks.doc.tar.xz -Source6121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeplot.tar.xz -Source6122: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makeplot.doc.tar.xz -Source6124: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftricks.tar.xz -Source6125: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftricks.doc.tar.xz -Source6126: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftricks2.tar.xz -Source6127: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdftricks2.doc.tar.xz -Source6130: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psbao.tar.xz -Source6131: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/psbao.doc.tar.xz -Source6132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-2dplot.tar.xz -Source6133: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-2dplot.doc.tar.xz -Source6134: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-3d.tar.xz -Source6135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-3d.doc.tar.xz -Source6137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-3dplot.tar.xz -Source6138: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-3dplot.doc.tar.xz -Source6139: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-abspos.tar.xz -Source6140: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-abspos.doc.tar.xz -Source6142: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-am.tar.xz -Source6143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-am.doc.tar.xz -Source6145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-asr.tar.xz -Source6146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-asr.doc.tar.xz -Source6147: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-bar.tar.xz -Source6148: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-bar.doc.tar.xz -Source6150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-barcode.tar.xz -Source6151: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-barcode.doc.tar.xz -Source6152: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-bezier.tar.xz -Source6153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-bezier.doc.tar.xz -Source6155: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-blur.tar.xz -Source6156: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-blur.doc.tar.xz -Source6158: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-bspline.tar.xz -Source6159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-bspline.doc.tar.xz -Source6160: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-calendar.tar.xz -Source6161: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-calendar.doc.tar.xz -Source6162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-circ.tar.xz -Source6163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-circ.doc.tar.xz -Source6164: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-coil.tar.xz -Source6165: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-coil.doc.tar.xz -Source6166: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-cox.tar.xz -Source6167: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-cox.doc.tar.xz -Source6168: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-dbicons.tar.xz -Source6169: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-dbicons.doc.tar.xz -Source6171: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-diffraction.tar.xz -Source6172: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-diffraction.doc.tar.xz -Source6174: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-electricfield.tar.xz -Source6175: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-electricfield.doc.tar.xz -Source6177: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-eps.tar.xz -Source6178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-eps.doc.tar.xz -Source6180: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-eucl.tar.xz -Source6181: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-eucl.doc.tar.xz -Source6182: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-exa.tar.xz -Source6183: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-exa.doc.tar.xz -Source6184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fill.tar.xz -Source6185: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fill.doc.tar.xz -Source6187: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fit.tar.xz -Source6188: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fit.doc.tar.xz -Source6190: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fr3d.tar.xz -Source6191: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fr3d.doc.tar.xz -Source6193: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fractal.tar.xz -Source6194: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fractal.doc.tar.xz -Source6195: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fun.tar.xz -Source6196: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-fun.doc.tar.xz -Source6198: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-func.tar.xz -Source6199: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-func.doc.tar.xz -Source6200: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-gantt.tar.xz -Source6201: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-gantt.doc.tar.xz -Source6202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-geo.tar.xz -Source6203: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-geo.doc.tar.xz -Source6204: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-ghsb.tar.xz -Source6205: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-ghsb.doc.tar.xz -Source6206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-gr3d.tar.xz -Source6207: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-gr3d.doc.tar.xz -Source6209: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-grad.tar.xz -Source6210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-grad.doc.tar.xz -Source6211: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-graphicx.tar.xz -Source6212: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-graphicx.doc.tar.xz -Source6213: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-infixplot.tar.xz -Source6214: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-infixplot.doc.tar.xz -Source6215: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-intersect.tar.xz -Source6216: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-intersect.doc.tar.xz -Source6218: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-jtree.tar.xz -Source6219: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-jtree.doc.tar.xz -Source6220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-knot.tar.xz -Source6221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-knot.doc.tar.xz -Source6222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-labo.tar.xz -Source6223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-labo.doc.tar.xz -Source6224: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-layout.tar.xz -Source6225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-layout.doc.tar.xz -Source6226: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-lens.tar.xz -Source6227: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-lens.doc.tar.xz -Source6229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-light3d.tar.xz -Source6230: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-light3d.doc.tar.xz -Source6232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-magneticfield.tar.xz -Source6233: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-magneticfield.doc.tar.xz -Source6235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-math.tar.xz -Source6236: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-math.doc.tar.xz -Source6237: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-mirror.tar.xz -Source6238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-mirror.doc.tar.xz -Source6239: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-node.tar.xz -Source6240: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-node.doc.tar.xz -Source6241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-ob3d.tar.xz -Source6242: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-ob3d.doc.tar.xz -Source6244: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-ode.tar.xz -Source6245: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-ode.doc.tar.xz -Source6246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-optexp.tar.xz -Source6247: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-optexp.doc.tar.xz -Source6249: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-optic.tar.xz -Source6250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-optic.doc.tar.xz -Source6252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-osci.tar.xz -Source6253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-osci.doc.tar.xz -Source6254: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-ovl.tar.xz -Source6255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-ovl.doc.tar.xz -Source6256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pad.tar.xz -Source6257: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pad.doc.tar.xz -Source6259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pdgr.tar.xz -Source6260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pdgr.doc.tar.xz -Source6262: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-perspective.tar.xz -Source6263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-perspective.doc.tar.xz -Source6264: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-platon.tar.xz -Source6265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-platon.doc.tar.xz -Source6267: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-plot.tar.xz -Source6268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-plot.doc.tar.xz -Source6269: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-poly.tar.xz -Source6270: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-poly.doc.tar.xz -Source6271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pulley.tar.xz -Source6272: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-pulley.doc.tar.xz -Source6274: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-qtree.tar.xz -Source6275: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-qtree.doc.tar.xz -Source6276: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-rubans.tar.xz -Source6277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-rubans.doc.tar.xz -Source6279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-sigsys.tar.xz -Source6280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-sigsys.doc.tar.xz -Source6281: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-slpe.tar.xz -Source6282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-slpe.doc.tar.xz -Source6284: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-solarsystem.tar.xz -Source6285: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-solarsystem.doc.tar.xz -Source6287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-solides3d.tar.xz -Source6288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-solides3d.doc.tar.xz -Source6289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-soroban.tar.xz -Source6290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-soroban.doc.tar.xz -Source6292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-spectra.tar.xz -Source6293: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-spectra.doc.tar.xz -Source6294: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-spirograph.tar.xz -Source6295: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-spirograph.doc.tar.xz -Source6296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-stru.tar.xz -Source6297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-stru.doc.tar.xz -Source6298: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-support.doc.tar.xz -Source6299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-text.tar.xz -Source6300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-text.doc.tar.xz -Source6302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-thick.tar.xz -Source6303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-thick.doc.tar.xz -Source6305: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-tools.tar.xz -Source6306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-tools.doc.tar.xz -Source6307: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-tree.tar.xz -Source6308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-tree.doc.tar.xz -Source6310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-tvz.tar.xz -Source6311: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-tvz.doc.tar.xz -Source6313: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-uml.tar.xz -Source6314: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-uml.doc.tar.xz -Source6316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-vectorian.tar.xz -Source6317: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-vectorian.doc.tar.xz -Source6318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-vowel.tar.xz -Source6319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-vowel.doc.tar.xz -Source6320: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-vue3d.tar.xz -Source6321: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-vue3d.doc.tar.xz -Source6325: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstricks.tar.xz -Source6326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstricks.doc.tar.xz -Source6327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstricks-add.tar.xz -Source6328: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstricks-add.doc.tar.xz -Source6329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstricks_calcnotes.doc.tar.xz -Source6330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uml.tar.xz -Source6331: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uml.doc.tar.xz -Source6333: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vaucanson-g.tar.xz -Source6334: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vaucanson-g.doc.tar.xz -Source6335: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vocaltract.tar.xz -Source6336: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vocaltract.doc.tar.xz -Source6337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/IEEEconf.tar.xz -Source6338: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/IEEEconf.doc.tar.xz -Source6340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/IEEEtran.tar.xz -Source6341: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/IEEEtran.doc.tar.xz -Source6342: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/confproc.tar.xz -Source6343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/confproc.doc.tar.xz -Source6345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dccpaper.tar.xz -Source6346: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dccpaper.doc.tar.xz -Source6348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dithesis.tar.xz -Source6349: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dithesis.doc.tar.xz -Source6350: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebook.tar.xz -Source6351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebook.doc.tar.xz -Source6352: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebsthesis.tar.xz -Source6353: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ebsthesis.doc.tar.xz -Source6355: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ejpecp.tar.xz -Source6356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ejpecp.doc.tar.xz -Source6358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ekaia.tar.xz -Source6359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ekaia.doc.tar.xz -Source6361: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elbioimp.tar.xz -Source6362: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elbioimp.doc.tar.xz -Source6364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elsarticle.tar.xz -Source6365: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elsarticle.doc.tar.xz -Source6367: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elteikthesis.tar.xz -Source6368: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elteikthesis.doc.tar.xz -Source6370: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/erdc.tar.xz -Source6371: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/erdc.doc.tar.xz -Source6373: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/estcpmm.tar.xz -Source6374: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/estcpmm.doc.tar.xz -Source6376: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fbithesis.tar.xz -Source6377: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fbithesis.doc.tar.xz -Source6379: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fcavtex.tar.xz -Source6380: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fcavtex.doc.tar.xz -Source6381: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fcltxdoc.tar.xz -Source6382: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fcltxdoc.doc.tar.xz -Source6384: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fei.tar.xz -Source6385: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fei.doc.tar.xz -Source6387: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gaceta.tar.xz -Source6388: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gaceta.doc.tar.xz -Source6389: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gatech-thesis.tar.xz -Source6390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gatech-thesis.doc.tar.xz -Source6391: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gsemthesis.tar.xz -Source6392: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gsemthesis.doc.tar.xz -Source6394: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gzt.tar.xz -Source6395: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gzt.doc.tar.xz -Source6397: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/har2nat.tar.xz -Source6398: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/har2nat.doc.tar.xz -Source6399: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hobete.tar.xz -Source6400: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hobete.doc.tar.xz -Source6401: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/icsv.tar.xz -Source6402: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/icsv.doc.tar.xz -Source6404: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ieeepes.tar.xz -Source6405: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ieeepes.doc.tar.xz -Source6406: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ijmart.tar.xz -Source6407: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ijmart.doc.tar.xz -Source6409: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imac.tar.xz -Source6410: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imac.doc.tar.xz -Source6411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imtekda.tar.xz -Source6412: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imtekda.doc.tar.xz -Source6414: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jmlr.tar.xz -Source6415: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jmlr.doc.tar.xz -Source6417: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jpsj.tar.xz -Source6418: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jpsj.doc.tar.xz -Source6419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kdgdocs.tar.xz -Source6420: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kdgdocs.doc.tar.xz -Source6422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kluwer.tar.xz -Source6423: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kluwer.doc.tar.xz -Source6425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lps.tar.xz -Source6426: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lps.doc.tar.xz -Source6428: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/matc3.tar.xz -Source6429: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/matc3.doc.tar.xz -Source6431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/matc3mem.tar.xz -Source6432: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/matc3mem.doc.tar.xz -Source6434: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcmthesis.tar.xz -Source6435: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcmthesis.doc.tar.xz -Source6437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mentis.tar.xz -Source6438: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mentis.doc.tar.xz -Source6440: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mnras.tar.xz -Source6441: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mnras.doc.tar.xz -Source6442: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/msu-thesis.tar.xz -Source6443: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/msu-thesis.doc.tar.xz -Source6444: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mugsthesis.tar.xz -Source6445: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mugsthesis.doc.tar.xz -Source6447: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musuos.tar.xz -Source6448: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musuos.doc.tar.xz -Source6450: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/muthesis.tar.xz -Source6451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/muthesis.doc.tar.xz -Source6452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nature.tar.xz -Source6453: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nature.doc.tar.xz -Source6454: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nddiss.tar.xz -Source6455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nddiss.doc.tar.xz -Source6457: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ndsu-thesis.tar.xz -Source6458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ndsu-thesis.doc.tar.xz -Source6459: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nih.tar.xz -Source6460: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nih.doc.tar.xz -Source6461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nostarch.tar.xz -Source6462: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nostarch.doc.tar.xz -Source6464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nrc.tar.xz -Source6465: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nrc.doc.tar.xz -Source6467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/onrannual.tar.xz -Source6468: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/onrannual.doc.tar.xz -Source6469: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/opteng.tar.xz -Source6470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/opteng.doc.tar.xz -Source6471: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/philosophersimprint.tar.xz -Source6472: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/philosophersimprint.doc.tar.xz -Source6474: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pittetd.tar.xz -Source6475: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pittetd.doc.tar.xz -Source6477: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkuthss.tar.xz -Source6478: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pkuthss.doc.tar.xz -Source6479: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/powerdot-FUBerlin.tar.xz -Source6480: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/powerdot-FUBerlin.doc.tar.xz -Source6481: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pracjourn.tar.xz -Source6482: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pracjourn.doc.tar.xz -Source6484: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/procIAGssymp.tar.xz -Source6485: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/procIAGssymp.doc.tar.xz -Source6486: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/proposal.tar.xz -Source6487: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/proposal.doc.tar.xz -Source6489: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptptex.tar.xz -Source6490: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptptex.doc.tar.xz -Source6493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/resphilosophica.tar.xz -Source6494: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/resphilosophica.doc.tar.xz -Source6496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/resumecls.tar.xz -Source6497: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/resumecls.doc.tar.xz -Source6499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/revtex.tar.xz -Source6500: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/revtex.doc.tar.xz -Source6502: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/revtex4.tar.xz -Source6503: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/revtex4.doc.tar.xz -Source6505: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ryethesis.tar.xz -Source6506: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ryethesis.doc.tar.xz -Source6508: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sageep.tar.xz -Source6509: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sageep.doc.tar.xz -Source6511: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sapthesis.tar.xz -Source6512: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sapthesis.doc.tar.xz -Source6513: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scrjrnl.tar.xz -Source6514: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scrjrnl.doc.tar.xz -Source6516: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schule.tar.xz -Source6517: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schule.doc.tar.xz -Source6519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sduthesis.tar.xz -Source6520: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sduthesis.doc.tar.xz -Source6522: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seuthesis.tar.xz -Source6523: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seuthesis.doc.tar.xz -Source6525: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/soton.tar.xz -Source6526: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/soton.doc.tar.xz -Source6527: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sphdthesis.tar.xz -Source6528: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sphdthesis.doc.tar.xz -Source6529: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spie.tar.xz -Source6530: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spie.doc.tar.xz -Source6531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sr-vorl.tar.xz -Source6532: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sr-vorl.doc.tar.xz -Source6534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stellenbosch.tar.xz -Source6535: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stellenbosch.doc.tar.xz -Source6537: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/suftesi.tar.xz -Source6538: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/suftesi.doc.tar.xz -Source6540: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sugconf.tar.xz -Source6541: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sugconf.doc.tar.xz -Source6542: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabriz-thesis.tar.xz -Source6543: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tabriz-thesis.doc.tar.xz -Source6544: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texilikechaps.tar.xz -Source6545: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texilikecover.tar.xz -Source6546: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thesis-ekf.tar.xz -Source6547: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thesis-ekf.doc.tar.xz -Source6549: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thesis-titlepage-fhac.tar.xz -Source6550: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thesis-titlepage-fhac.doc.tar.xz -Source6552: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thuthesis.tar.xz -Source6553: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thuthesis.doc.tar.xz -Source6555: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/toptesi.tar.xz -Source6556: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/toptesi.doc.tar.xz -Source6558: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tudscr.tar.xz -Source6559: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tudscr.doc.tar.xz -Source6561: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tugboat.tar.xz -Source6562: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tugboat.doc.tar.xz -Source6564: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tugboat-plain.tar.xz -Source6565: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tugboat-plain.doc.tar.xz -Source6566: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turabian.tar.xz -Source6567: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/turabian.doc.tar.xz -Source6568: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tui.tar.xz -Source6569: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tui.doc.tar.xz -Source6570: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uaclasses.tar.xz -Source6571: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uaclasses.doc.tar.xz -Source6576: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uafthesis.tar.xz -Source6577: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uafthesis.doc.tar.xz -Source6578: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucbthesis.tar.xz -Source6579: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucbthesis.doc.tar.xz -Source6580: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucdavisthesis.tar.xz -Source6581: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucdavisthesis.doc.tar.xz -Source6583: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucthesis.tar.xz -Source6584: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucthesis.doc.tar.xz -Source6585: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uestcthesis.tar.xz -Source6586: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uestcthesis.doc.tar.xz -Source6587: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uiucredborder.tar.xz -Source6588: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uiucredborder.doc.tar.xz -Source6590: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uiucthesis.tar.xz -Source6591: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uiucthesis.doc.tar.xz -Source6593: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ulthese.tar.xz -Source6594: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ulthese.doc.tar.xz -Source6596: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umthesis.tar.xz -Source6597: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umthesis.doc.tar.xz -Source6598: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umich-thesis.tar.xz -Source6599: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umich-thesis.doc.tar.xz -Source6600: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unamth-template.doc.tar.xz -Source6601: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unamthesis.tar.xz -Source6602: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unamthesis.doc.tar.xz -Source6603: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unswcover.tar.xz -Source6604: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unswcover.doc.tar.xz -Source6605: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uothesis.tar.xz -Source6606: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uothesis.doc.tar.xz -Source6608: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/urcls.tar.xz -Source6609: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/urcls.doc.tar.xz -Source6610: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uowthesis.tar.xz -Source6611: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uowthesis.doc.tar.xz -Source6612: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uowthesistitlepage.tar.xz -Source6613: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uowthesistitlepage.doc.tar.xz -Source6614: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uspatent.tar.xz -Source6615: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uspatent.doc.tar.xz -Source6616: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ut-thesis.tar.xz -Source6617: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ut-thesis.doc.tar.xz -Source6618: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uwthesis.tar.xz -Source6619: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uwthesis.doc.tar.xz -Source6620: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vancouver.tar.xz -Source6621: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vancouver.doc.tar.xz -Source6622: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wsemclassic.tar.xz -Source6623: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wsemclassic.doc.tar.xz -Source6625: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcookybooky.tar.xz -Source6626: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcookybooky.doc.tar.xz -Source6628: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yathesis.tar.xz -Source6629: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yathesis.doc.tar.xz -Source6631: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/york-thesis.tar.xz -Source6632: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/york-thesis.doc.tar.xz -Source6634: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/SIstyle.tar.xz -Source6635: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/SIstyle.doc.tar.xz -Source6637: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/SIunits.tar.xz -Source6638: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/SIunits.doc.tar.xz -Source6640: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/complexity.tar.xz -Source6641: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/complexity.doc.tar.xz -Source6642: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/computational-complexity.tar.xz -Source6643: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/computational-complexity.doc.tar.xz -Source6645: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cryptocode.tar.xz -Source6646: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cryptocode.doc.tar.xz -Source6647: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/digiconfigs.tar.xz -Source6648: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/digiconfigs.doc.tar.xz -Source6649: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drawstack.tar.xz -Source6650: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drawstack.doc.tar.xz -Source6651: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dyntree.tar.xz -Source6652: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dyntree.doc.tar.xz -Source6654: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eltex.tar.xz -Source6655: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eltex.doc.tar.xz -Source6656: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endiagram.tar.xz -Source6657: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endiagram.doc.tar.xz -Source6658: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/engtlc.tar.xz -Source6659: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/engtlc.doc.tar.xz -Source6660: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fouridx.tar.xz -Source6661: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fouridx.doc.tar.xz -Source6663: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/functan.tar.xz -Source6664: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/functan.doc.tar.xz -Source6666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/galois.tar.xz -Source6667: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/galois.doc.tar.xz -Source6669: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gastex.tar.xz -Source6670: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gastex.doc.tar.xz -Source6671: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gene-logic.tar.xz -Source6672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gene-logic.doc.tar.xz -Source6673: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ghsystem.tar.xz -Source6674: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ghsystem.doc.tar.xz -Source6675: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gu.tar.xz -Source6676: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gu.doc.tar.xz -Source6677: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hep.tar.xz -Source6678: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hep.doc.tar.xz -Source6679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hepnames.tar.xz -Source6680: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hepnames.doc.tar.xz -Source6681: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hepparticles.tar.xz -Source6682: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hepparticles.doc.tar.xz -Source6683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hepthesis.tar.xz -Source6684: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hepthesis.doc.tar.xz -Source6685: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hepunits.tar.xz -Source6686: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hepunits.doc.tar.xz -Source6687: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/karnaugh.tar.xz -Source6688: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/karnaugh.doc.tar.xz -Source6689: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/karnaughmap.tar.xz -Source6690: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/karnaughmap.doc.tar.xz -Source6692: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/matlab-prettifier.tar.xz -Source6693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/matlab-prettifier.doc.tar.xz -Source6695: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mhchem.tar.xz -Source6696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mhchem.doc.tar.xz -Source6697: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/miller.tar.xz -Source6698: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/miller.doc.tar.xz -Source6700: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mychemistry.tar.xz -Source6701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mychemistry.doc.tar.xz -Source6702: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nuc.tar.xz -Source6703: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nuc.doc.tar.xz -Source6704: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/objectz.tar.xz -Source6705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/objectz.doc.tar.xz -Source6707: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/physics.tar.xz -Source6708: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/physics.doc.tar.xz -Source6709: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pseudocode.tar.xz -Source6710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pseudocode.doc.tar.xz -Source6713: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sasnrdisplay.tar.xz -Source6714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sasnrdisplay.doc.tar.xz -Source6715: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sciposter.tar.xz -Source6716: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sciposter.doc.tar.xz -Source6717: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sclang-prettifier.tar.xz -Source6718: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sclang-prettifier.doc.tar.xz -Source6720: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sfg.tar.xz -Source6721: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sfg.doc.tar.xz -Source6722: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/siunitx.tar.xz -Source6723: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/siunitx.doc.tar.xz -Source6725: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/steinmetz.tar.xz -Source6726: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/steinmetz.doc.tar.xz -Source6728: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/struktex.tar.xz -Source6729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/struktex.doc.tar.xz -Source6731: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/substances.tar.xz -Source6732: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/substances.doc.tar.xz -Source6733: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/t-angles.tar.xz -Source6734: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/t-angles.doc.tar.xz -Source6735: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textopo.tar.xz -Source6736: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textopo.doc.tar.xz -Source6741: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unitsdef.tar.xz -Source6742: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unitsdef.doc.tar.xz -Source6744: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xymtex.tar.xz -Source6745: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xymtex.doc.tar.xz -Source6747: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/youngtab.tar.xz -Source6748: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/youngtab.doc.tar.xz -Source6750: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixlatvian.tar.xz -Source6751: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixlatvian.doc.tar.xz -Source6753: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontbook.tar.xz -Source6754: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontbook.doc.tar.xz -Source6756: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontwrap.tar.xz -Source6757: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontwrap.doc.tar.xz -Source6758: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interchar.tar.xz -Source6759: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/interchar.doc.tar.xz -Source6760: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathspec.tar.xz -Source6761: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathspec.doc.tar.xz -Source6762: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/philokalia.tar.xz -Source6763: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/philokalia.doc.tar.xz -Source6765: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polyglossia.tar.xz -Source6766: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polyglossia.doc.tar.xz -Source6768: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptext.tar.xz -Source6769: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptext.doc.tar.xz -Source6770: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quran.tar.xz -Source6771: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quran.doc.tar.xz -Source6772: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/realscripts.tar.xz -Source6773: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/realscripts.doc.tar.xz -Source6775: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucharclasses.tar.xz -Source6776: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucharclasses.doc.tar.xz -Source6777: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unisugar.tar.xz -Source6778: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unisugar.doc.tar.xz -Source6779: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xebaposter.tar.xz -Source6780: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xebaposter.doc.tar.xz -Source6781: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xecjk.tar.xz -Source6782: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xecjk.doc.tar.xz -Source6784: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xecolor.tar.xz -Source6785: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xecolor.doc.tar.xz -Source6786: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xecyr.tar.xz -Source6787: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xecyr.doc.tar.xz -Source6788: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xeindex.tar.xz -Source6789: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xeindex.doc.tar.xz -Source6790: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xepersian.tar.xz -Source6791: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xepersian.doc.tar.xz -Source6793: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xesearch.tar.xz -Source6794: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xesearch.doc.tar.xz -Source6795: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xespotcolor.tar.xz -Source6796: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xespotcolor.doc.tar.xz -Source6799: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex-itrans.tar.xz -Source6800: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex-itrans.doc.tar.xz -Source6801: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex-pstricks.tar.xz -Source6802: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex-pstricks.doc.tar.xz -Source6803: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex-tibetan.tar.xz -Source6804: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetex-tibetan.doc.tar.xz -Source6805: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetexfontinfo.tar.xz -Source6806: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetexfontinfo.doc.tar.xz -Source6807: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetexko.tar.xz -Source6808: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xetexko.doc.tar.xz -Source6809: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xevlna.tar.xz -Source6810: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xevlna.doc.tar.xz -Source6811: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xltxtra.tar.xz -Source6812: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xltxtra.doc.tar.xz -Source6814: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xunicode.tar.xz -Source6815: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xunicode.doc.tar.xz -Source6816: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-docindex.tar.xz -Source6817: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-docindex.doc.tar.xz -Source7023: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-basic.tar.xz -Source7035: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-bibtexextra.tar.xz -Source7036: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-latex.tar.xz -Source7043: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-binextra.tar.xz -Source7101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-context.tar.xz -Source7105: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-fontsextra.tar.xz -Source7106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-fontsrecommended.tar.xz -Source7107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-fontutils.tar.xz -Source7118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-formatsextra.tar.xz -Source7123: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-games.tar.xz -Source7131: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-humanities.tar.xz -Source7134: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langarabic.tar.xz -Source7135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langchinese.tar.xz -Source7136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langcjk.tar.xz -Source7137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langcyrillic.tar.xz -Source7139: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langczechslovak.tar.xz -Source7143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langenglish.tar.xz -Source7144: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langeuropean.tar.xz -Source7145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langfrench.tar.xz -Source7146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langgerman.tar.xz -Source7147: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langgreek.tar.xz -Source7152: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langitalian.tar.xz -Source7153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langjapanese.tar.xz -Source7159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langkorean.tar.xz -Source7161: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langother.tar.xz -Source7162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langpolish.tar.xz -Source7164: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langportuguese.tar.xz -Source7165: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-langspanish.tar.xz -Source7166: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-latexextra.tar.xz -Source7167: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-latexrecommended.tar.xz -Source7169: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-pictures.tar.xz -Source7184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-luatex.tar.xz -Source7188: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-metapost.tar.xz -Source7189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-music.tar.xz -Source7199: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-pstricks.tar.xz -Source7202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-publishers.tar.xz -Source7206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-xetex.tar.xz -Source7207: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scheme-basic.tar.xz -Source7208: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scheme-context.tar.xz -Source7209: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scheme-full.tar.xz -Source7210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scheme-gust.tar.xz -Source7211: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scheme-medium.tar.xz -Source7212: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scheme-minimal.tar.xz -Source7213: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scheme-small.tar.xz -Source7214: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scheme-tetex.tar.xz -Source7216: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acmart.tar.xz -Source7217: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/acmart.doc.tar.xz -Source7219: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabi-add.tar.xz -Source7220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabi-add.doc.tar.xz -Source7221: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabluatex.tar.xz -Source7223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabluatex.doc.tar.xz -Source7224: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/archaeologie.tar.xz -Source7225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/archaeologie.doc.tar.xz -Source7226: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asapsym.tar.xz -Source7227: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asapsym.doc.tar.xz -Source7229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asciilist.tar.xz -Source7230: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asciilist.doc.tar.xz -Source7232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-belarusian.tar.xz -Source7233: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-belarusian.doc.tar.xz -Source7235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-macedonian.tar.xz -Source7236: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-macedonian.doc.tar.xz -Source7238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-occitan.tar.xz -Source7239: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-occitan.doc.tar.xz -Source7241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-vietnamese.doc.tar.xz -Source7242: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamercolorthemeowl.tar.xz -Source7243: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamercolorthemeowl.doc.tar.xz -Source7245: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-detlevcm.tar.xz -Source7246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-detlevcm.doc.tar.xz -Source7247: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-epyt.tar.xz -Source7248: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-epyt.doc.tar.xz -Source7249: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-metropolis.tar.xz -Source7250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-metropolis.doc.tar.xz -Source7252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer-verona.tar.xz -Source7253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer-verona.doc.tar.xz -Source7254: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-abnt.tar.xz -Source7255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-abnt.doc.tar.xz -Source7256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-bookinother.tar.xz -Source7257: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-bookinother.doc.tar.xz -Source7258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-iso690.tar.xz -Source7259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-iso690.doc.tar.xz -Source7260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-morenames.tar.xz -Source7261: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-morenames.doc.tar.xz -Source7262: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibletext.tar.xz -Source7263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibletext.doc.tar.xz -Source7265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bibtexperllibs.doc.tar.xz -Source7267: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bitpattern.tar.xz -Source7268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bitpattern.doc.tar.xz -Source7270: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/breakcites.tar.xz -Source7271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/breakcites.doc.tar.xz -Source7272: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxdvidriver.tar.xz -Source7273: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxdvidriver.doc.tar.xz -Source7274: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxenclose.tar.xz -Source7275: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxenclose.doc.tar.xz -Source7276: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxnewfont.tar.xz -Source7277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxnewfont.doc.tar.xz -Source7278: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxpapersize.tar.xz -Source7279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxpapersize.doc.tar.xz -Source7280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/carbohydrates.tar.xz -Source7281: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/carbohydrates.doc.tar.xz -Source7282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chivo.tar.xz -Source7283: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chivo.doc.tar.xz -Source7285: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/churchslavonic.tar.xz -Source7286: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/churchslavonic.doc.tar.xz -Source7287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmdtrack.tar.xz -Source7288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmdtrack.doc.tar.xz -Source7290: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmexb.tar.xz -Source7291: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmexb.doc.tar.xz -Source7292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cochineal.tar.xz -Source7293: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cochineal.doc.tar.xz -Source7294: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coloring.tar.xz -Source7295: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coloring.doc.tar.xz -Source7296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/continue.tar.xz -Source7297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/continue.doc.tar.xz -Source7299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cquthesis.tar.xz -Source7300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cquthesis.doc.tar.xz -Source7302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crimson.tar.xz -Source7303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crimson.doc.tar.xz -Source7304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctablestack.tar.xz -Source7305: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ctablestack.doc.tar.xz -Source7307: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/delimseasy.tar.xz -Source7308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/delimseasy.doc.tar.xz -Source7309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drawmatrix.tar.xz -Source7310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/drawmatrix.doc.tar.xz -Source7315: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dynamicnumber.tar.xz -Source7316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dynamicnumber.doc.tar.xz -Source7318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecobiblatex.tar.xz -Source7319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecobiblatex.doc.tar.xz -Source7320: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/econometrics.tar.xz -Source7321: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/econometrics.doc.tar.xz -Source7322: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/einfuehrung2.doc.tar.xz -Source7323: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ellipse.tar.xz -Source7324: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ellipse.doc.tar.xz -Source7326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emisa.tar.xz -Source7327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emisa.doc.tar.xz -Source7329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exercises.tar.xz -Source7330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exercises.doc.tar.xz -Source7332: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ffslides.tar.xz -Source7333: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ffslides.doc.tar.xz -Source7334: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fibeamer.tar.xz -Source7335: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fibeamer.doc.tar.xz -Source7337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixcmex.tar.xz -Source7338: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixcmex.doc.tar.xz -Source7340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/font-change-xetex.tar.xz -Source7341: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/font-change-xetex.doc.tar.xz -Source7342: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footnotehyper.tar.xz -Source7343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footnotehyper.doc.tar.xz -Source7348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getitems.tar.xz -Source7349: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/getitems.doc.tar.xz -Source7351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitlog.tar.xz -Source7352: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitlog.doc.tar.xz -Source7353: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-extra.tar.xz -Source7354: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-extra.doc.tar.xz -Source7356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gloss-occitan.tar.xz -Source7357: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gloss-occitan.doc.tar.xz -Source7359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gobble.tar.xz -Source7360: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gobble.doc.tar.xz -Source7362: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gradstudentresume.tar.xz -Source7363: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gradstudentresume.doc.tar.xz -Source7364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphics-cfg.tar.xz -Source7365: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphics-cfg.doc.tar.xz -Source7366: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greektonoi.tar.xz -Source7367: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/greektonoi.doc.tar.xz -Source7371: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/h2020proposal.tar.xz -Source7372: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/h2020proposal.doc.tar.xz -Source7376: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-churchslavonic.tar.xz -Source7379: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-occitan.tar.xz -Source7380: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-sanskrit.doc.tar.xz -Source7381: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-spanish.doc.tar.xz -Source7385: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ietfbibs.doc.tar.xz -Source7386: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iffont.tar.xz -Source7387: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iffont.doc.tar.xz -Source7389: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imfellenglish.tar.xz -Source7390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/imfellenglish.doc.tar.xz -Source7391: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jacow.tar.xz -Source7392: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jacow.doc.tar.xz -Source7393: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keyvaltable.tar.xz -Source7394: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keyvaltable.doc.tar.xz -Source7396: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ksp-thesis.tar.xz -Source7397: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ksp-thesis.doc.tar.xz -Source7398: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/langsci.tar.xz -Source7399: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/langsci.doc.tar.xz -Source7400: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex2e-help-texinfo-fr.doc.tar.xz -Source7401: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-bib2-ex.doc.tar.xz -Source7402: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-tds.doc.tar.xz -Source7404: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinegc.tar.xz -Source7405: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinegc.doc.tar.xz -Source7406: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinus.tar.xz -Source7407: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinus.doc.tar.xz -Source7408: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinust1math.tar.xz -Source7409: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinust1math.doc.tar.xz -Source7410: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librebodoni.tar.xz -Source7411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librebodoni.doc.tar.xz -Source7412: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linop.tar.xz -Source7413: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linop.doc.tar.xz -Source7414: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/longfbox.tar.xz -Source7415: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/longfbox.doc.tar.xz -Source7416: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lroundrect.tar.xz -Source7417: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lroundrect.doc.tar.xz -Source7419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lstbayes.tar.xz -Source7420: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lstbayes.doc.tar.xz -Source7422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatex85.tar.xz -Source7423: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luatex85.doc.tar.xz -Source7425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makebase.tar.xz -Source7426: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makebase.doc.tar.xz -Source7428: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/markdown.tar.xz -Source7429: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/markdown.doc.tar.xz -Source7431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathpartir.tar.xz -Source7432: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathpartir.doc.tar.xz -Source7437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/miama.tar.xz -Source7438: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/miama.doc.tar.xz -Source7440: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moodle.tar.xz -Source7441: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/moodle.doc.tar.xz -Source7443: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mparrows.tar.xz -Source7444: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mparrows.doc.tar.xz -Source7445: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multidef.tar.xz -Source7446: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multidef.doc.tar.xz -Source7448: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mynsfc.tar.xz -Source7449: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mynsfc.doc.tar.xz -Source7451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nihbiosketch.tar.xz -Source7452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nihbiosketch.doc.tar.xz -Source7453: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nimbus15.tar.xz -Source7454: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nimbus15.doc.tar.xz -Source7455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/normalcolor.tar.xz -Source7456: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/normalcolor.doc.tar.xz -Source7458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/noto.tar.xz -Source7459: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/noto.doc.tar.xz -Source7460: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nucleardata.tar.xz -Source7461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nucleardata.doc.tar.xz -Source7463: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nwejm.tar.xz -Source7464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nwejm.doc.tar.xz -Source7466: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/optidef.tar.xz -Source7467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/optidef.doc.tar.xz -Source7468: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/options.tar.xz -Source7469: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/options.doc.tar.xz -Source7470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parades.tar.xz -Source7471: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/parades.doc.tar.xz -Source7473: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pbibtex-base.tar.xz -Source7474: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pbibtex-base.doc.tar.xz -Source7478: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfornament.tar.xz -Source7479: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfornament.doc.tar.xz -Source7480: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-spectra.tar.xz -Source7481: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-spectra.doc.tar.xz -Source7482: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/platex.tar.xz -Source7483: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/platex.doc.tar.xz -Source7489: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prooftrees.tar.xz -Source7490: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prooftrees.doc.tar.xz -Source7491: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-cie.tar.xz -Source7492: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-cie.doc.tar.xz -Source7493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rosario.tar.xz -Source7494: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rosario.doc.tar.xz -Source7496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/russ.tar.xz -Source7497: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/russ.doc.tar.xz -Source7498: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sanitize-umlaut.tar.xz -Source7499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sanitize-umlaut.doc.tar.xz -Source7500: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scrlttr2copy.tar.xz -Source7501: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scrlttr2copy.doc.tar.xz -Source7502: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seuthesix.tar.xz -Source7503: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/seuthesix.doc.tar.xz -Source7505: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/signchart.tar.xz -Source7506: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/signchart.doc.tar.xz -Source7508: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simpler-wick.tar.xz -Source7509: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simpler-wick.doc.tar.xz -Source7510: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/smartunits.tar.xz -Source7511: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/smartunits.doc.tar.xz -Source7515: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svrsymbols.tar.xz -Source7516: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/svrsymbols.doc.tar.xz -Source7518: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tempora.tar.xz -Source7519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tempora.doc.tar.xz -Source7521: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-ini-files.tar.xz -Source7522: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-ini-files.doc.tar.xz -Source7523: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texlive-es.doc.tar.xz -Source7524: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texvc.tar.xz -Source7525: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texvc.doc.tar.xz -Source7527: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texworks.doc.tar.xz -Source7528: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-feynman.tar.xz -Source7529: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-feynman.doc.tar.xz -Source7530: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tipfr.tar.xz -Source7531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typed-checklist.tar.xz -Source7532: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typed-checklist.doc.tar.xz -Source7534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uantwerpendocs.tar.xz -Source7535: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uantwerpendocs.doc.tar.xz -Source7537: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uhrzeit.tar.xz -Source7538: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uhrzeit.doc.tar.xz -Source7539: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umbclegislation.tar.xz -Source7540: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/umbclegislation.doc.tar.xz -Source7541: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unicode-data.tar.xz -Source7542: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unicode-data.doc.tar.xz -Source7543: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/updmap-map.tar.xz -Source7544: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uplatex.tar.xz -Source7550: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/visualpstricks.doc.tar.xz -Source7551: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/visualtikz.doc.tar.xz -Source7554: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xassoccnt.tar.xz -Source7555: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xassoccnt.doc.tar.xz -Source7556: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcntperchap.tar.xz -Source7557: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcntperchap.doc.tar.xz -Source7558: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xduthesis.tar.xz -Source7559: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xduthesis.doc.tar.xz -Source7561: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xellipsis.tar.xz -Source7562: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xellipsis.doc.tar.xz -Source7567: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xsavebox.tar.xz -Source7568: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xsavebox.doc.tar.xz -Source7570: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ycbook.tar.xz -Source7571: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ycbook.doc.tar.xz -Source7572: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yfonts-t1.tar.xz -Source7573: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yfonts-t1.doc.tar.xz -Source7574: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yinit-otf.tar.xz -Source7575: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yinit-otf.doc.tar.xz -Source7576: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhmetrics-uptex.tar.xz -Source7577: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhmetrics-uptex.doc.tar.xz -Source7578: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fonts-churchslavonic.tar.xz -Source7579: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fonts-churchslavonic.doc.tar.xz -Source7580: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adtrees.tar.xz -Source7581: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adtrees.doc.tar.xz -Source7582: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-base.tar.xz -Source7583: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-base.doc.tar.xz -Source7584: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-fonts.tar.xz -Source7585: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-fonts.doc.tar.xz -Source7586: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uptex-base.tar.xz -Source7587: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uptex-base.doc.tar.xz -Source7588: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uptex-fonts.tar.xz -Source7589: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uptex-fonts.doc.tar.xz -Source7596: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lshort-estonian.doc.tar.xz +Source0679: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/begingreek.tar.xz +Source0680: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/begingreek.doc.tar.xz +Source0682: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/begriff.tar.xz +Source0683: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/begriff.doc.tar.xz +Source0684: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/belleek.tar.xz +Source0685: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/belleek.doc.tar.xz +Source0687: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bengali.tar.xz +Source0688: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bengali.doc.tar.xz +Source0690: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bera.tar.xz +Source0691: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bera.doc.tar.xz +Source0692: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/berenisadf.tar.xz +Source0693: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/berenisadf.doc.tar.xz +Source0694: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/besjournals.tar.xz +Source0695: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/besjournals.doc.tar.xz +Source0696: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/betababel.tar.xz +Source0697: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/betababel.doc.tar.xz +Source0698: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beton.tar.xz +Source0699: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beton.doc.tar.xz +Source0701: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bewerbung.tar.xz +Source0702: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bewerbung.doc.tar.xz +Source0704: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bez123.tar.xz +Source0705: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bez123.doc.tar.xz +Source0707: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bezos.tar.xz +Source0708: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bezos.doc.tar.xz +Source0709: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bgreek.tar.xz +Source0710: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bgreek.doc.tar.xz +Source0711: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bgteubner.tar.xz +Source0712: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bgteubner.doc.tar.xz +Source0714: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bguq.tar.xz +Source0715: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bguq.doc.tar.xz +Source0717: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bhcexam.tar.xz +Source0718: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bhcexam.doc.tar.xz +Source0720: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibarts.tar.xz +Source0721: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibarts.doc.tar.xz +Source0726: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bib-fr.tar.xz +Source0727: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bib-fr.doc.tar.xz +Source0728: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibhtml.tar.xz +Source0729: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibhtml.doc.tar.xz +Source0730: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-anonymous.tar.xz +Source0731: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-anonymous.doc.tar.xz +Source0732: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-apa.tar.xz +Source0733: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-apa.doc.tar.xz +Source0734: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-bookinarticle.tar.xz +Source0735: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-bookinarticle.doc.tar.xz +Source0736: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-bwl.tar.xz +Source0737: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-bwl.doc.tar.xz +Source0738: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-caspervector.tar.xz +Source0739: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-caspervector.doc.tar.xz +Source0740: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-chem.tar.xz +Source0741: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-chem.doc.tar.xz +Source0742: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-chicago.tar.xz +Source0743: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-chicago.doc.tar.xz +Source0744: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-dw.tar.xz +Source0745: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-dw.doc.tar.xz +Source0746: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-fiwi.tar.xz +Source0747: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-fiwi.doc.tar.xz +Source0748: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-gost.tar.xz +Source0749: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-gost.doc.tar.xz +Source0750: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-historian.tar.xz +Source0751: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-historian.doc.tar.xz +Source0752: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-ieee.tar.xz +Source0753: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-ieee.doc.tar.xz +Source0754: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-juradiss.tar.xz +Source0755: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-juradiss.doc.tar.xz +Source0756: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-luh-ipw.tar.xz +Source0757: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-luh-ipw.doc.tar.xz +Source0758: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-manuscripts-philology.tar.xz +Source0759: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-manuscripts-philology.doc.tar.xz +Source0760: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-mla.tar.xz +Source0761: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-mla.doc.tar.xz +Source0762: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-multiple-dm.tar.xz +Source0763: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-multiple-dm.doc.tar.xz +Source0764: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-musuos.tar.xz +Source0765: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-musuos.doc.tar.xz +Source0766: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-nature.tar.xz +Source0767: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-nature.doc.tar.xz +Source0768: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-nejm.tar.xz +Source0769: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-nejm.doc.tar.xz +Source0770: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-opcit-booktitle.tar.xz +Source0771: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-opcit-booktitle.doc.tar.xz +Source0772: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-philosophy.tar.xz +Source0773: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-philosophy.doc.tar.xz +Source0775: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-phys.tar.xz +Source0776: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-phys.doc.tar.xz +Source0777: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-publist.tar.xz +Source0778: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-publist.doc.tar.xz +Source0779: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-realauthor.tar.xz +Source0780: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-realauthor.doc.tar.xz +Source0781: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-science.tar.xz +Source0782: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-science.doc.tar.xz +Source0783: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-source-division.tar.xz +Source0784: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-source-division.doc.tar.xz +Source0785: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-subseries.tar.xz +Source0786: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-subseries.doc.tar.xz +Source0787: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-swiss-legal.tar.xz +Source0788: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-swiss-legal.doc.tar.xz +Source0789: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex.tar.xz +Source0790: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex.doc.tar.xz +Source0791: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-trad.tar.xz +Source0792: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-trad.doc.tar.xz +Source0793: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-true-citepages-omit.tar.xz +Source0794: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-true-citepages-omit.doc.tar.xz +Source0795: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-french.tar.xz +Source0796: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-french.doc.tar.xz +Source0798: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-german.tar.xz +Source0799: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-german.doc.tar.xz +Source0800: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-lds.tar.xz +Source0801: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-lds.doc.tar.xz +Source0803: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-mouth.tar.xz +Source0804: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-mouth.doc.tar.xz +Source0806: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-parse.tar.xz +Source0807: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref-parse.doc.tar.xz +Source0808: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref.tar.xz +Source0809: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibleref.doc.tar.xz +Source0811: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblist.tar.xz +Source0812: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblist.doc.tar.xz +Source0819: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibtopicprefix.tar.xz +Source0820: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibtopicprefix.doc.tar.xz +Source0822: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibtopic.tar.xz +Source0823: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibtopic.doc.tar.xz +Source0825: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibunits.tar.xz +Source0826: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibunits.doc.tar.xz +Source0828: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidi-atbegshi.tar.xz +Source0829: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidi-atbegshi.doc.tar.xz +Source0830: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidicontour.tar.xz +Source0831: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidicontour.doc.tar.xz +Source0832: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidihl.tar.xz +Source0833: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidihl.doc.tar.xz +Source0834: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidipagegrid.tar.xz +Source0835: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidipagegrid.doc.tar.xz +Source0836: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidipresentation.tar.xz +Source0837: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidipresentation.doc.tar.xz +Source0838: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidishadowtext.tar.xz +Source0839: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidishadowtext.doc.tar.xz +Source0840: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidi.tar.xz +Source0841: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bidi.doc.tar.xz +Source0843: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bigfoot.tar.xz +Source0844: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bigfoot.doc.tar.xz +Source0846: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bigints.tar.xz +Source0847: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bigints.doc.tar.xz +Source0848: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/binomexp.tar.xz +Source0849: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/binomexp.doc.tar.xz +Source0851: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biocon.tar.xz +Source0852: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biocon.doc.tar.xz +Source0853: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bitelist.tar.xz +Source0854: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bitelist.doc.tar.xz +Source0856: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bizcard.tar.xz +Source0857: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bizcard.doc.tar.xz +Source0859: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blacklettert1.tar.xz +Source0860: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blacklettert1.doc.tar.xz +Source0862: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blindtext.tar.xz +Source0863: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blindtext.doc.tar.xz +Source0865: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blkarray.tar.xz +Source0866: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blkarray.doc.tar.xz +Source0867: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blochsphere.tar.xz +Source0868: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blochsphere.doc.tar.xz +Source0870: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blockdraw_mp.tar.xz +Source0871: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blockdraw_mp.doc.tar.xz +Source0872: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/block.tar.xz +Source0873: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/block.doc.tar.xz +Source0874: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bloques.tar.xz +Source0875: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bloques.doc.tar.xz +# Source0876: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blowup.tar.xz +# Source0877: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blowup.doc.tar.xz +Source0879: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blox.tar.xz +Source0880: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/blox.doc.tar.xz +Source0882: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bnumexpr.tar.xz +Source0883: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bnumexpr.doc.tar.xz +Source0885: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bodegraph.tar.xz +Source0886: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bodegraph.doc.tar.xz +Source0887: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bohr.tar.xz +Source0888: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bohr.doc.tar.xz +Source0889: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boisik.tar.xz +Source0890: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boisik.doc.tar.xz +Source0891: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boites.tar.xz +Source0892: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boites.doc.tar.xz +Source0894: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bold-extra.tar.xz +Source0895: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bold-extra.doc.tar.xz +Source0896: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boldtensors.tar.xz +Source0897: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boldtensors.doc.tar.xz +Source0898: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bondgraphs.tar.xz +Source0899: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bondgraphs.doc.tar.xz +Source0901: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bondgraph.tar.xz +Source0902: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bondgraph.doc.tar.xz +Source0903: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookcover.tar.xz +Source0904: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookcover.doc.tar.xz +Source0906: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookdb.tar.xz +Source0907: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookdb.doc.tar.xz +Source0908: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookest.tar.xz +Source0909: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookest.doc.tar.xz +Source0910: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookhands.tar.xz +Source0911: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookhands.doc.tar.xz +Source0913: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/booklet.tar.xz +Source0914: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/booklet.doc.tar.xz +Source0916: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bookman.tar.xz +Source0917: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/booktabs-de.doc.tar.xz +Source0918: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/booktabs-fr.doc.tar.xz +Source0919: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/booktabs.tar.xz +Source0920: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/booktabs.doc.tar.xz +Source0922: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boolexpr.tar.xz +Source0923: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boolexpr.doc.tar.xz +Source0925: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boondox.tar.xz +Source0926: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boondox.doc.tar.xz +Source0927: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bophook.tar.xz +Source0928: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bophook.doc.tar.xz +Source0930: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/borceux.tar.xz +Source0931: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/borceux.doc.tar.xz +Source0932: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bosisio.tar.xz +Source0933: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bosisio.doc.tar.xz +Source0935: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boxedminipage2e.tar.xz +Source0936: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boxedminipage2e.doc.tar.xz +Source0938: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boxedminipage.tar.xz +Source0939: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boxedminipage.doc.tar.xz +Source0940: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boxhandler.tar.xz +Source0941: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/boxhandler.doc.tar.xz +Source0943: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bpchem.tar.xz +Source0944: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bpchem.doc.tar.xz +Source0946: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bpolynomial.tar.xz +Source0947: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bpolynomial.doc.tar.xz +Source0948: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bracketkey.tar.xz +Source0949: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bracketkey.doc.tar.xz +Source0950: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/braids.tar.xz +Source0951: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/braids.doc.tar.xz +Source0953: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/braille.tar.xz +Source0954: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/braille.doc.tar.xz +Source0955: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/braket.tar.xz +Source0956: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/braket.doc.tar.xz +Source0957: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/brandeis-dissertation.tar.xz +Source0958: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/brandeis-dissertation.doc.tar.xz +Source0960: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/breakurl.tar.xz +Source0961: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/breakurl.doc.tar.xz +Source0963: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/breqn.tar.xz +Source0964: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/breqn.doc.tar.xz +Source0966: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/br-lex.tar.xz +Source0967: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/br-lex.doc.tar.xz +Source0968: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bropd.tar.xz +Source0969: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bropd.doc.tar.xz +Source0971: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/brushscr.tar.xz +Source0972: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/brushscr.doc.tar.xz +Source0973: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bullcntr.tar.xz +Source0974: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bullcntr.doc.tar.xz +Source0978: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/burmese.tar.xz +Source0979: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/burmese.doc.tar.xz +Source0981: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bussproofs.tar.xz +Source0982: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bussproofs.doc.tar.xz +Source0983: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxbase.tar.xz +Source0984: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxbase.doc.tar.xz +Source0985: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxcjkjatype.tar.xz +Source0986: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxcjkjatype.doc.tar.xz +Source0987: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxdpx-beamer.tar.xz +Source0988: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxdpx-beamer.doc.tar.xz +Source0989: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxeepic.tar.xz +Source0990: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxeepic.doc.tar.xz +Source0991: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxjscls.tar.xz +Source0992: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxjscls.doc.tar.xz +Source0994: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxpdfver.tar.xz +Source0995: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxpdfver.doc.tar.xz +Source0996: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bytefield.tar.xz +Source0997: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bytefield.doc.tar.xz +Source0999: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/c90.tar.xz +Source1000: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/c90.doc.tar.xz +Source1002: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cabin.tar.xz +Source1003: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cabin.doc.tar.xz +Source1006: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/caladea.tar.xz +Source1007: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/caladea.doc.tar.xz +Source1008: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calcage.tar.xz +Source1009: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calcage.doc.tar.xz +Source1011: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calctab.tar.xz +Source1012: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calctab.doc.tar.xz +Source1013: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calculation.tar.xz +Source1014: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calculation.doc.tar.xz +Source1016: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calculator.tar.xz +Source1017: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calculator.doc.tar.xz +Source1019: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calligra.tar.xz +Source1020: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calligra.doc.tar.xz +Source1021: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calligra-type1.tar.xz +Source1022: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calligra-type1.doc.tar.xz +Source1023: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calrsfs.tar.xz +Source1024: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calrsfs.doc.tar.xz +Source1025: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cals.tar.xz +Source1026: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cals.doc.tar.xz +Source1028: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calxxxx-yyyy.tar.xz +Source1029: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/calxxxx-yyyy.doc.tar.xz +Source1030: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cancel.tar.xz +Source1031: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cancel.doc.tar.xz +Source1032: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/canoniclayout.tar.xz +Source1033: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/canoniclayout.doc.tar.xz +Source1035: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cantarell.tar.xz +Source1036: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cantarell.doc.tar.xz +Source1038: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/captcont.tar.xz +Source1039: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/captcont.doc.tar.xz +Source1041: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/captdef.tar.xz +Source1042: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/captdef.doc.tar.xz +Source1043: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/caption.tar.xz +Source1044: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/caption.doc.tar.xz +Source1046: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/capt-of.tar.xz +Source1047: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/capt-of.doc.tar.xz +Source1049: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/carlisle.tar.xz +Source1050: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/carlisle.doc.tar.xz +Source1052: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/carlito.tar.xz +Source1053: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/carlito.doc.tar.xz +Source1054: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/carolmin-ps.tar.xz +Source1055: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/carolmin-ps.doc.tar.xz +Source1056: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cascadilla.tar.xz +Source1057: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cascadilla.doc.tar.xz +Source1058: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cases.tar.xz +Source1059: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cases.doc.tar.xz +Source1060: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/casyl.tar.xz +Source1061: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/casyl.doc.tar.xz +Source1062: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/catchfilebetweentags.tar.xz +Source1063: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/catchfilebetweentags.doc.tar.xz +Source1065: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/catcodes.tar.xz +Source1066: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/catcodes.doc.tar.xz +Source1068: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/catechis.tar.xz +Source1069: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/catechis.doc.tar.xz +Source1071: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/catoptions.tar.xz +Source1072: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/catoptions.doc.tar.xz +Source1073: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cbcoptic.tar.xz +Source1074: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cbcoptic.doc.tar.xz +Source1075: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cbfonts-fd.tar.xz +Source1076: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cbfonts-fd.doc.tar.xz +Source1078: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cbfonts.tar.xz +Source1079: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cbfonts.doc.tar.xz +Source1080: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ccaption.tar.xz +Source1081: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ccaption.doc.tar.xz +Source1083: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ccfonts.tar.xz +Source1084: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ccfonts.doc.tar.xz +Source1086: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ccicons.tar.xz +Source1087: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ccicons.doc.tar.xz +Source1089: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cclicenses.tar.xz +Source1090: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cclicenses.doc.tar.xz +Source1092: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cc-pl.tar.xz +Source1093: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cc-pl.doc.tar.xz +Source1094: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cd-cover.tar.xz +Source1095: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cd-cover.doc.tar.xz +Source1097: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cdpbundl.tar.xz +Source1098: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cdpbundl.doc.tar.xz +Source1100: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cd.tar.xz +Source1101: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cd.doc.tar.xz +Source1103: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cellspace.tar.xz +Source1104: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cellspace.doc.tar.xz +Source1105: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cell.tar.xz +Source1106: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cell.doc.tar.xz +Source1107: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/celtic.tar.xz +Source1108: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/celtic.doc.tar.xz +Source1110: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/censor.tar.xz +Source1111: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/censor.doc.tar.xz +Source1112: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cfr-initials.tar.xz +Source1113: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cfr-initials.doc.tar.xz +Source1114: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cfr-lm.tar.xz +Source1115: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cfr-lm.doc.tar.xz +Source1117: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/changebar.tar.xz +Source1118: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/changebar.doc.tar.xz +Source1120: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/changelayout.tar.xz +Source1121: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/changelayout.doc.tar.xz +Source1122: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/changepage.tar.xz +Source1123: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/changepage.doc.tar.xz +Source1125: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/changes.tar.xz +Source1126: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/changes.doc.tar.xz +Source1128: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chappg.tar.xz +Source1129: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chappg.doc.tar.xz +Source1131: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chapterfolder.tar.xz +Source1132: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chapterfolder.doc.tar.xz +Source1134: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/charter.tar.xz +Source1135: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/charter.doc.tar.xz +Source1136: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chbibref.tar.xz +Source1137: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chbibref.doc.tar.xz +Source1143: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemarrow.tar.xz +Source1144: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemarrow.doc.tar.xz +Source1146: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chembst.tar.xz +Source1147: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chembst.doc.tar.xz +Source1149: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemcompounds.tar.xz +Source1150: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemcompounds.doc.tar.xz +Source1152: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemcono.tar.xz +Source1153: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemcono.doc.tar.xz +Source1154: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemexec.tar.xz +Source1155: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemexec.doc.tar.xz +Source1156: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemfig.tar.xz +Source1157: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemfig.doc.tar.xz +Source1158: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemformula.tar.xz +Source1159: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemformula.doc.tar.xz +Source1160: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemgreek.tar.xz +Source1161: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemgreek.doc.tar.xz +Source1162: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chem-journal.tar.xz +Source1163: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemmacros.tar.xz +Source1164: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemmacros.doc.tar.xz +Source1165: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemnum.tar.xz +Source1166: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemnum.doc.tar.xz +Source1167: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemschemex.tar.xz +Source1168: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemschemex.doc.tar.xz +Source1170: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemstyle.tar.xz +Source1171: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chemstyle.doc.tar.xz +Source1173: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cherokee.tar.xz +Source1174: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cherokee.doc.tar.xz +Source1175: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chessboard.tar.xz +Source1176: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chessboard.doc.tar.xz +Source1178: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chessfss.tar.xz +Source1179: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chessfss.doc.tar.xz +Source1181: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chess-problem-diagrams.tar.xz +Source1182: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chess-problem-diagrams.doc.tar.xz +Source1184: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chess.tar.xz +Source1185: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chess.doc.tar.xz +Source1186: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chet.tar.xz +Source1187: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chet.doc.tar.xz +Source1188: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chextras.tar.xz +Source1189: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chextras.doc.tar.xz +Source1191: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chicago-annote.tar.xz +Source1192: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chicago-annote.doc.tar.xz +Source1193: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chicago.tar.xz +Source1194: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chickenize.tar.xz +Source1195: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chickenize.doc.tar.xz +Source1197: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chkfloat.tar.xz +Source1198: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chkfloat.doc.tar.xz +Source1201: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chletter.tar.xz +Source1202: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chletter.doc.tar.xz +Source1204: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chngcntr.tar.xz +Source1205: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chngcntr.doc.tar.xz +Source1206: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chronology.tar.xz +Source1207: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chronology.doc.tar.xz +Source1208: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chronosys.tar.xz +Source1209: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chronosys.doc.tar.xz +Source1210: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chscite.tar.xz +Source1211: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chscite.doc.tar.xz +Source1213: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cinzel.tar.xz +Source1214: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cinzel.doc.tar.xz +Source1215: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/circ.tar.xz +Source1216: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/circ.doc.tar.xz +Source1218: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/circuitikz.tar.xz +Source1219: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/circuitikz.doc.tar.xz +Source1220: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/citeall.tar.xz +Source1221: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/citeall.doc.tar.xz +Source1222: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cite.tar.xz +Source1223: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cite.doc.tar.xz +Source1224: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cjhebrew.tar.xz +Source1225: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cjhebrew.doc.tar.xz +Source1228: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cjk-ko.tar.xz +Source1229: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cjk-ko.doc.tar.xz +Source1230: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cjkpunct.tar.xz +Source1231: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cjkpunct.doc.tar.xz +Source1233: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cjk.tar.xz +Source1234: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cjk.doc.tar.xz +Source1236: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cns.tar.xz +Source1237: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cns.doc.tar.xz +Source1238: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/garuda-c90.tar.xz +Source1240: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fonts-tlwg.tar.xz +Source1241: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fonts-tlwg.doc.tar.xz +Source1243: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/norasi-c90.tar.xz +Source1245: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uhc.tar.xz +Source1246: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uhc.doc.tar.xz +Source1247: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wadalab.tar.xz +Source1248: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wadalab.doc.tar.xz +Source1251: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/classics.tar.xz +Source1252: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/classics.doc.tar.xz +Source1253: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/classicthesis.tar.xz +Source1254: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/classicthesis.doc.tar.xz +Source1255: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/classpack.tar.xz +Source1256: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/classpack.doc.tar.xz +Source1258: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cleanthesis.tar.xz +Source1259: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cleanthesis.doc.tar.xz +Source1260: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clearsans.tar.xz +Source1261: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clearsans.doc.tar.xz +Source1262: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clefval.tar.xz +Source1263: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clefval.doc.tar.xz +Source1265: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cleveref.tar.xz +Source1266: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cleveref.doc.tar.xz +Source1268: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clipboard.tar.xz +Source1269: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clipboard.doc.tar.xz +Source1270: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clock.tar.xz +Source1271: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clock.doc.tar.xz +Source1272: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cloze.tar.xz +Source1273: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cloze.doc.tar.xz +Source1275: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clrscode3e.tar.xz +Source1276: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clrscode3e.doc.tar.xz +Source1277: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clrscode.tar.xz +Source1278: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/clrscode.doc.tar.xz +Source1279: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmap.tar.xz +Source1280: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmap.doc.tar.xz +Source1281: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmarrows.tar.xz +Source1282: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmarrows.doc.tar.xz +Source1283: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmbright.tar.xz +Source1284: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmbright.doc.tar.xz +Source1286: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmcyr.tar.xz +Source1287: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmcyr.doc.tar.xz +Source1288: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmdstring.tar.xz +Source1289: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmdstring.doc.tar.xz +Source1290: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmextra.tar.xz +Source1291: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cm-lgc.tar.xz +Source1292: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cm-lgc.doc.tar.xz +Source1293: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmll.tar.xz +Source1294: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmll.doc.tar.xz +Source1296: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmpica.tar.xz +Source1297: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmpica.doc.tar.xz +Source1298: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmpj.tar.xz +Source1299: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmpj.doc.tar.xz +Source1300: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmsd.tar.xz +Source1301: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmsd.doc.tar.xz +Source1302: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cm-super.tar.xz +Source1303: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cm-super.doc.tar.xz +Source1304: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmtiup.tar.xz +Source1305: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmtiup.doc.tar.xz +Source1306: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cm.tar.xz +Source1307: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cm.doc.tar.xz +Source1308: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cm-unicode.tar.xz +Source1309: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cm-unicode.doc.tar.xz +Source1310: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cnbwp.tar.xz +Source1311: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cnbwp.doc.tar.xz +Source1312: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cnltx.tar.xz +Source1313: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cnltx.doc.tar.xz +Source1314: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cntformats.tar.xz +Source1315: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cntformats.doc.tar.xz +Source1316: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cntperchap.tar.xz +Source1317: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cntperchap.doc.tar.xz +Source1318: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/codedoc.tar.xz +Source1319: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/codedoc.doc.tar.xz +Source1320: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/codepage.tar.xz +Source1321: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/codepage.doc.tar.xz +Source1323: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/codesection.tar.xz +Source1324: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/codesection.doc.tar.xz +Source1326: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/codicefiscaleitaliano.tar.xz +Source1327: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/codicefiscaleitaliano.doc.tar.xz +Source1329: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collcell.tar.xz +Source1330: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collcell.doc.tar.xz +Source1332: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collectbox.tar.xz +Source1333: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collectbox.doc.tar.xz +Source1343: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enctex.tar.xz +Source1344: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enctex.doc.tar.xz +Source1345: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etex.tar.xz +Source1346: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etex.doc.tar.xz +Source1347: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etex-pkg.tar.xz +Source1348: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etex-pkg.doc.tar.xz +Source1351: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyph-utf8.tar.xz +Source1352: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyph-utf8.doc.tar.xz +Source1354: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-base.tar.xz +Source1355: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifluatex.tar.xz +Source1356: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifluatex.doc.tar.xz +Source1358: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifxetex.tar.xz +Source1359: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifxetex.doc.tar.xz +Source1361: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knuth-lib.tar.xz +Source1362: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knuth-local.tar.xz +Source1363: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lua-alt-getopt.tar.xz +Source1364: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lua-alt-getopt.doc.tar.xz +Source1369: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mflogo.tar.xz +Source1370: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mflogo.doc.tar.xz +Source1378: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-common.doc.tar.xz +Source1381: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-msg-translations.tar.xz +Source1386: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colortbl.tar.xz +Source1387: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colortbl.doc.tar.xz +Source1389: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyhdr.tar.xz +Source1390: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyhdr.doc.tar.xz +Source1391: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fix2col.tar.xz +Source1392: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fix2col.doc.tar.xz +Source1394: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/geometry.tar.xz +Source1395: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/geometry.doc.tar.xz +Source1397: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphics.tar.xz +Source1398: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphics.doc.tar.xz +Source1400: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyperref.tar.xz +Source1401: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyperref.doc.tar.xz +Source1405: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxmisc.tar.xz +Source1406: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mfnfss.tar.xz +Source1407: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mfnfss.doc.tar.xz +Source1411: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/natbib.tar.xz +Source1412: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/natbib.doc.tar.xz +Source1417: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pslatex.tar.xz +Source1419: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psnfss.tar.xz +Source1420: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psnfss.doc.tar.xz +Source1422: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pspicture.tar.xz +Source1423: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pspicture.doc.tar.xz +Source1425: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tools.tar.xz +Source1426: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tools.doc.tar.xz +Source1428: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/url.tar.xz +Source1429: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/url.doc.tar.xz +Source1430: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collref.tar.xz +Source1431: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collref.doc.tar.xz +Source1433: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/compactbib.tar.xz +Source1436: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/custom-bib.tar.xz +Source1437: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/custom-bib.doc.tar.xz +Source1439: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/din1505.tar.xz +Source1440: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/din1505.doc.tar.xz +Source1441: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dk-bib.tar.xz +Source1442: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dk-bib.doc.tar.xz +Source1444: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doipubmed.tar.xz +Source1445: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doipubmed.doc.tar.xz +Source1447: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/economic.tar.xz +Source1448: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/economic.doc.tar.xz +Source1449: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fbs.tar.xz +Source1450: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/figbib.tar.xz +Source1451: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/figbib.doc.tar.xz +Source1452: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footbib.tar.xz +Source1453: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footbib.doc.tar.xz +Source1455: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/francais-bst.tar.xz +Source1456: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/francais-bst.doc.tar.xz +Source1457: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/geschichtsfrkl.tar.xz +Source1458: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/geschichtsfrkl.doc.tar.xz +Source1460: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harvard.tar.xz +Source1461: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harvard.doc.tar.xz +Source1463: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harvmac.tar.xz +Source1464: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harvmac.doc.tar.xz +Source1465: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/historische-zeitschrift.tar.xz +Source1466: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/historische-zeitschrift.doc.tar.xz +Source1467: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ijqc.tar.xz +Source1468: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ijqc.doc.tar.xz +Source1469: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inlinebib.tar.xz +Source1470: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inlinebib.doc.tar.xz +Source1471: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iopart-num.tar.xz +Source1472: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iopart-num.doc.tar.xz +Source1473: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jneurosci.tar.xz +Source1474: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jneurosci.doc.tar.xz +Source1475: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jurabib.tar.xz +Source1476: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jurabib.doc.tar.xz +Source1478: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ksfh_nat.tar.xz +Source1482: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logreq.tar.xz +Source1483: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logreq.doc.tar.xz +Source1484: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/margbib.tar.xz +Source1485: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/margbib.doc.tar.xz +Source1487: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multibib.tar.xz +Source1488: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multibib.doc.tar.xz +Source1493: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/munich.tar.xz +Source1494: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/munich.doc.tar.xz +Source1495: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nar.tar.xz +Source1496: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nmbib.tar.xz +Source1497: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nmbib.doc.tar.xz +Source1499: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notes2bib.tar.xz +Source1500: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notes2bib.doc.tar.xz +Source1502: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oscola.tar.xz +Source1503: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oscola.doc.tar.xz +Source1504: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/perception.tar.xz +Source1505: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/perception.doc.tar.xz +Source1506: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pnas2009.tar.xz +Source1507: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rsc.tar.xz +Source1508: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rsc.doc.tar.xz +Source1510: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showtags.tar.xz +Source1511: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showtags.doc.tar.xz +Source1512: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sort-by-letters.tar.xz +Source1513: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sort-by-letters.doc.tar.xz +Source1514: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/splitbib.tar.xz +Source1515: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/splitbib.doc.tar.xz +Source1517: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turabian-formatting.tar.xz +Source1518: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turabian-formatting.doc.tar.xz +Source1519: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uni-wtal-ger.tar.xz +Source1520: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uni-wtal-ger.doc.tar.xz +Source1521: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uni-wtal-lin.tar.xz +Source1522: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uni-wtal-lin.doc.tar.xz +Source1526: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/usebib.tar.xz +Source1527: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/usebib.doc.tar.xz +Source1529: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vak.tar.xz +Source1530: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vak.doc.tar.xz +Source1531: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcite.tar.xz +Source1532: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcite.doc.tar.xz +Source1534: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctan_chk.doc.tar.xz +Source1570: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hook-pre-commit-pkg.doc.tar.xz +Source1571: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphenex.tar.xz +Source1664: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetexconfig.tar.xz +Source1665: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lm.tar.xz +Source1666: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lm.doc.tar.xz +Source1668: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lm-math.tar.xz +Source1669: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lm-math.doc.tar.xz +Source1670: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/manfnt-font.tar.xz +Source1671: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mflogo-font.tar.xz +Source1672: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mflogo-font.doc.tar.xz +Source1673: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stmaryrd.tar.xz +Source1674: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stmaryrd.doc.tar.xz +Source1676: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jmn.tar.xz +Source1677: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-account.tar.xz +Source1678: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-account.doc.tar.xz +Source1679: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-algorithmic.tar.xz +Source1680: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-animation.tar.xz +Source1681: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-animation.doc.tar.xz +Source1682: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-annotation.tar.xz +Source1683: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-annotation.doc.tar.xz +Source1684: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-bnf.tar.xz +Source1685: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-bnf.doc.tar.xz +Source1686: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-chromato.tar.xz +Source1687: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-chromato.doc.tar.xz +Source1688: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-construction-plan.tar.xz +Source1689: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-construction-plan.doc.tar.xz +Source1690: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-cyrillicnumbers.tar.xz +Source1691: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-cyrillicnumbers.doc.tar.xz +Source1692: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-degrade.tar.xz +Source1693: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-degrade.doc.tar.xz +Source1694: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-fancybreak.tar.xz +Source1695: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-fancybreak.doc.tar.xz +Source1696: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-filter.tar.xz +Source1697: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-filter.doc.tar.xz +# Source1698: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-fixme.tar.xz +Source1699: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-french.tar.xz +Source1700: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-french.doc.tar.xz +Source1701: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-fullpage.tar.xz +Source1702: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-fullpage.doc.tar.xz +# Source1703: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-games.tar.xz +# Source1704: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-games.doc.tar.xz +Source1705: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skaknew.tar.xz +Source1706: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skaknew.doc.tar.xz +Source1707: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-gantt.tar.xz +Source1708: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-gantt.doc.tar.xz +Source1709: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hatching.tar.xz +Source1710: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hatching.doc.tar.xz +Source1711: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-gnuplot.tar.xz +Source1712: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-gnuplot.doc.tar.xz +Source1713: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-letter.tar.xz +Source1714: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-letter.doc.tar.xz +Source1715: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-lettrine.tar.xz +Source1716: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-lettrine.doc.tar.xz +# Source1717: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-lilypond.tar.xz +# Source1718: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-lilypond.doc.tar.xz +Source1719: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-mathsets.tar.xz +Source1720: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-mathsets.doc.tar.xz +Source1721: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-notes-zh-cn.tar.xz +Source1722: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-notes-zh-cn.doc.tar.xz +Source1723: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-rst.tar.xz +Source1724: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-rst.doc.tar.xz +Source1725: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-ruby.tar.xz +Source1726: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-ruby.doc.tar.xz +Source1727: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-simplefonts.tar.xz +Source1728: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-simplefonts.doc.tar.xz +Source1729: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-simpleslides.tar.xz +Source1730: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-simpleslides.doc.tar.xz +Source1731: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-title.tar.xz +Source1732: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-title.doc.tar.xz +Source1733: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-transliterator.tar.xz +Source1734: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-transliterator.doc.tar.xz +Source1735: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-typearea.tar.xz +Source1736: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-typearea.doc.tar.xz +Source1737: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-typescripts.tar.xz +Source1738: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-typescripts.doc.tar.xz +Source1739: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-vim.tar.xz +Source1740: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-vim.doc.tar.xz +Source1741: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-visualcounter.tar.xz +Source1742: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-visualcounter.doc.tar.xz +Source1744: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comfortaa.tar.xz +Source1745: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comfortaa.doc.tar.xz +Source1747: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comicneue.tar.xz +Source1748: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comicneue.doc.tar.xz +Source1749: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concmath-fonts.tar.xz +Source1750: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concmath-fonts.doc.tar.xz +Source1751: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cookingsymbols.tar.xz +Source1752: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cookingsymbols.doc.tar.xz +Source1754: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/countriesofeurope.tar.xz +Source1755: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/countriesofeurope.doc.tar.xz +Source1756: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/courier-scaled.tar.xz +Source1757: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/courier-scaled.doc.tar.xz +Source1758: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cryst.tar.xz +Source1759: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cryst.doc.tar.xz +Source1760: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cyklop.tar.xz +Source1761: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cyklop.doc.tar.xz +Source1762: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dancers.tar.xz +Source1763: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dantelogo.tar.xz +Source1764: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dantelogo.doc.tar.xz +Source1765: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dejavu.tar.xz +Source1766: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dejavu.doc.tar.xz +Source1767: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dice.tar.xz +Source1768: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dice.doc.tar.xz +Source1769: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dictsym.tar.xz +Source1770: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dictsym.doc.tar.xz +Source1771: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dingbat.tar.xz +Source1772: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dingbat.doc.tar.xz +Source1774: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doublestroke.tar.xz +Source1775: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doublestroke.doc.tar.xz +Source1776: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dozenal.tar.xz +Source1777: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dozenal.doc.tar.xz +Source1779: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drm.tar.xz +Source1780: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drm.doc.tar.xz +Source1782: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/droid.tar.xz +Source1783: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/droid.doc.tar.xz +Source1785: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/duerer.tar.xz +Source1786: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/duerer.doc.tar.xz +Source1787: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/duerer-latex.tar.xz +Source1788: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/duerer-latex.doc.tar.xz +Source1789: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dutchcal.tar.xz +Source1790: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dutchcal.doc.tar.xz +Source1791: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ean.tar.xz +Source1792: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ean.doc.tar.xz +Source1793: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebgaramond.tar.xz +Source1794: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebgaramond.doc.tar.xz +Source1795: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebgaramond-maths.tar.xz +Source1796: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebgaramond-maths.doc.tar.xz +Source1797: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecc.tar.xz +Source1798: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecc.doc.tar.xz +Source1799: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eco.tar.xz +Source1800: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eco.doc.tar.xz +Source1802: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eiad.tar.xz +Source1803: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eiad.doc.tar.xz +Source1804: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eiad-ltx.tar.xz +Source1805: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eiad-ltx.doc.tar.xz +Source1807: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/electrum.tar.xz +Source1808: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/electrum.doc.tar.xz +Source1810: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elvish.tar.xz +Source1811: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elvish.doc.tar.xz +Source1812: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epigrafica.tar.xz +Source1813: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epigrafica.doc.tar.xz +Source1814: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epsdice.tar.xz +Source1815: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epsdice.doc.tar.xz +Source1817: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/erewhon.tar.xz +Source1818: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/erewhon.doc.tar.xz +Source1819: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esrelation.tar.xz +Source1820: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esrelation.doc.tar.xz +Source1822: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esstix.tar.xz +Source1823: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esstix.doc.tar.xz +Source1824: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esvect.tar.xz +Source1825: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esvect.doc.tar.xz +Source1827: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eulervm.tar.xz +Source1828: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eulervm.doc.tar.xz +Source1830: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/euxm.tar.xz +Source1831: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fbb.tar.xz +Source1832: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fbb.doc.tar.xz +Source1833: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fdsymbol.tar.xz +Source1834: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fdsymbol.doc.tar.xz +Source1836: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fetamont.tar.xz +Source1837: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fetamont.doc.tar.xz +Source1839: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/feyn.tar.xz +Source1840: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/feyn.doc.tar.xz +Source1842: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fge.tar.xz +Source1843: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fge.doc.tar.xz +Source1845: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fira.tar.xz +Source1846: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fira.doc.tar.xz +Source1847: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/foekfont.tar.xz +Source1848: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/foekfont.doc.tar.xz +Source1849: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fonetika.tar.xz +Source1850: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fonetika.doc.tar.xz +Source1851: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontawesome.tar.xz +Source1852: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontawesome.doc.tar.xz +Source1853: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontmfizz.tar.xz +Source1854: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontmfizz.doc.tar.xz +Source1855: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/old-arrows.tar.xz +Source1856: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/old-arrows.doc.tar.xz +Source1857: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fourier.tar.xz +Source1858: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fourier.doc.tar.xz +Source1860: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fouriernc.tar.xz +Source1861: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fouriernc.doc.tar.xz +Source1862: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frcursive.tar.xz +Source1863: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frcursive.doc.tar.xz +Source1864: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/genealogy.tar.xz +Source1865: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/genealogy.doc.tar.xz +Source1866: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gentium-tug.tar.xz +Source1867: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gentium-tug.doc.tar.xz +Source1869: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsartemisia.tar.xz +Source1870: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsartemisia.doc.tar.xz +Source1871: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsbodoni.tar.xz +Source1872: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsbodoni.doc.tar.xz +Source1873: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfscomplutum.tar.xz +Source1874: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfscomplutum.doc.tar.xz +Source1875: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsdidot.tar.xz +Source1876: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsdidot.doc.tar.xz +Source1877: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsneohellenic.tar.xz +Source1878: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsneohellenic.doc.tar.xz +Source1879: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfssolomos.tar.xz +Source1880: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfssolomos.doc.tar.xz +Source1881: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gillcm.tar.xz +Source1882: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gillcm.doc.tar.xz +Source1883: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gillius.tar.xz +Source1884: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gillius.doc.tar.xz +Source1885: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gnu-freefont.tar.xz +Source1886: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gnu-freefont.doc.tar.xz +Source1888: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gothic.tar.xz +Source1889: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gothic.doc.tar.xz +Source1891: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greenpoint.tar.xz +Source1892: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greenpoint.doc.tar.xz +Source1893: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grotesq.tar.xz +Source1894: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grotesq.doc.tar.xz +Source1895: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hacm.tar.xz +Source1896: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hacm.doc.tar.xz +Source1897: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hands.tar.xz +Source1898: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/heuristica.tar.xz +Source1899: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/heuristica.doc.tar.xz +Source1900: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hfbright.tar.xz +Source1901: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hfbright.doc.tar.xz +Source1902: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hfoldsty.tar.xz +Source1903: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hfoldsty.doc.tar.xz +Source1905: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifsym.tar.xz +Source1906: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifsym.doc.tar.xz +Source1907: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inconsolata.tar.xz +Source1908: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inconsolata.doc.tar.xz +Source1909: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/initials.tar.xz +Source1910: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/initials.doc.tar.xz +Source1911: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ipaex-type1.tar.xz +Source1912: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ipaex-type1.doc.tar.xz +Source1913: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iwona.tar.xz +Source1914: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iwona.doc.tar.xz +Source1915: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jablantile.tar.xz +Source1916: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jablantile.doc.tar.xz +Source1917: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jamtimes.tar.xz +Source1918: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jamtimes.doc.tar.xz +Source1919: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/junicode.tar.xz +Source1920: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/junicode.doc.tar.xz +Source1921: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kixfont.tar.xz +Source1922: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kixfont.doc.tar.xz +# Source1923: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knuthotherfonts.tar.xz +Source1924: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kpfonts.tar.xz +Source1925: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kpfonts.doc.tar.xz +Source1926: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kurier.tar.xz +Source1927: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kurier.doc.tar.xz +Source1928: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lato.tar.xz +Source1929: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lato.doc.tar.xz +Source1931: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lfb.tar.xz +Source1932: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lfb.doc.tar.xz +Source1933: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libertine.tar.xz +Source1934: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libertine.doc.tar.xz +Source1935: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/librebaskerville.tar.xz +Source1936: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/librebaskerville.doc.tar.xz +Source1937: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/librecaslon.tar.xz +Source1938: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/librecaslon.doc.tar.xz +Source1939: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libris.tar.xz +Source1940: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libris.doc.tar.xz +Source1942: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/linearA.tar.xz +Source1943: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/linearA.doc.tar.xz +Source1945: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lobster2.tar.xz +Source1946: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lobster2.doc.tar.xz +Source1947: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lxfonts.tar.xz +Source1948: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lxfonts.doc.tar.xz +Source1950: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ly1.tar.xz +Source1951: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ly1.doc.tar.xz +Source1952: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathabx.tar.xz +Source1953: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathabx.doc.tar.xz +Source1954: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathabx-type1.tar.xz +Source1955: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathabx-type1.doc.tar.xz +Source1956: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathdesign.tar.xz +Source1957: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathdesign.doc.tar.xz +Source1958: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mdputu.tar.xz +Source1959: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mdputu.doc.tar.xz +Source1960: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mdsymbol.tar.xz +Source1961: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mdsymbol.doc.tar.xz +Source1963: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/merriweather.tar.xz +Source1964: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/merriweather.doc.tar.xz +Source1965: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mintspirit.tar.xz +Source1966: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mintspirit.doc.tar.xz +Source1967: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mnsymbol.tar.xz +Source1968: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mnsymbol.doc.tar.xz +Source1970: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newpx.tar.xz +Source1971: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newpx.doc.tar.xz +Source1972: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newtx.tar.xz +Source1973: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newtx.doc.tar.xz +Source1974: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newtxsf.tar.xz +Source1975: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newtxsf.doc.tar.xz +Source1976: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newtxtt.tar.xz +Source1977: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newtxtt.doc.tar.xz +Source1978: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nkarta.tar.xz +Source1979: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nkarta.doc.tar.xz +Source1981: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/obnov.tar.xz +Source1982: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/obnov.doc.tar.xz +Source1983: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocherokee.tar.xz +Source1984: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocherokee.doc.tar.xz +Source1985: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocr-b.tar.xz +Source1986: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocr-b.doc.tar.xz +Source1987: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocr-b-outline.tar.xz +Source1988: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocr-b-outline.doc.tar.xz +Source1990: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ogham.tar.xz +Source1991: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ogham.doc.tar.xz +Source1992: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oinuit.tar.xz +Source1993: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oinuit.doc.tar.xz +Source1995: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oldlatin.tar.xz +Source1996: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oldlatin.doc.tar.xz +Source1997: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oldstandard.tar.xz +Source1998: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oldstandard.doc.tar.xz +Source2000: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/opensans.tar.xz +Source2001: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/opensans.doc.tar.xz +Source2003: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/orkhun.tar.xz +Source2004: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/orkhun.doc.tar.xz +Source2005: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/overlock.tar.xz +Source2006: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/overlock.doc.tar.xz +Source2007: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pacioli.tar.xz +Source2008: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pacioli.doc.tar.xz +Source2010: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paratype.tar.xz +Source2011: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paratype.doc.tar.xz +Source2012: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phaistos.tar.xz +Source2013: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phaistos.doc.tar.xz +Source2015: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phonetic.tar.xz +Source2016: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phonetic.doc.tar.xz +Source2017: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pigpen.tar.xz +Source2018: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pigpen.doc.tar.xz +Source2019: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/playfair.tar.xz +Source2020: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/playfair.doc.tar.xz +Source2021: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poltawski.tar.xz +Source2022: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poltawski.doc.tar.xz +Source2023: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prodint.tar.xz +Source2024: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prodint.doc.tar.xz +Source2025: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/punk.tar.xz +Source2026: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/punk.doc.tar.xz +Source2027: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/punk-latex.tar.xz +Source2028: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/punk-latex.doc.tar.xz +Source2029: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/punknova.tar.xz +Source2030: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/punknova.doc.tar.xz +Source2031: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxtxalfa.tar.xz +Source2032: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxtxalfa.doc.tar.xz +Source2033: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quattrocento.tar.xz +Source2034: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quattrocento.doc.tar.xz +Source2035: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/raleway.tar.xz +Source2036: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/raleway.doc.tar.xz +Source2037: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/recycle.tar.xz +Source2038: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/recycle.doc.tar.xz +Source2039: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/roboto.tar.xz +Source2040: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/roboto.doc.tar.xz +Source2041: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romande.tar.xz +Source2042: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romande.doc.tar.xz +Source2044: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rsfso.tar.xz +Source2045: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rsfso.doc.tar.xz +Source2046: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sansmathaccent.tar.xz +Source2047: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sansmathaccent.doc.tar.xz +Source2048: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sansmathfonts.tar.xz +Source2049: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sansmathfonts.doc.tar.xz +Source2050: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sauter.tar.xz +Source2051: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sauterfonts.tar.xz +Source2052: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sauterfonts.doc.tar.xz +Source2054: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schulschriften.tar.xz +Source2055: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schulschriften.doc.tar.xz +Source2056: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/semaphor.tar.xz +Source2057: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/semaphor.doc.tar.xz +Source2058: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skull.tar.xz +Source2060: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sourcecodepro.tar.xz +Source2061: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sourcecodepro.doc.tar.xz +Source2062: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sourcesanspro.tar.xz +Source2063: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sourcesanspro.doc.tar.xz +Source2064: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sourceserifpro.tar.xz +Source2065: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sourceserifpro.doc.tar.xz +Source2066: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/starfont.tar.xz +Source2067: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/starfont.doc.tar.xz +Source2068: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/staves.tar.xz +Source2069: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/staves.doc.tar.xz +Source2071: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stix.tar.xz +Source2072: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stix.doc.tar.xz +Source2074: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/superiors.tar.xz +Source2075: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/superiors.doc.tar.xz +Source2076: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tapir.tar.xz +Source2077: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tapir.doc.tar.xz +Source2078: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tengwarscript.tar.xz +Source2079: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tengwarscript.doc.tar.xz +Source2081: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tfrupee.tar.xz +Source2082: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tfrupee.doc.tar.xz +Source2084: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tpslifonts.tar.xz +Source2085: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tpslifonts.doc.tar.xz +Source2087: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trajan.tar.xz +Source2088: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trajan.doc.tar.xz +Source2090: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/txfontsb.tar.xz +Source2091: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/txfontsb.doc.tar.xz +Source2093: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typicons.tar.xz +Source2094: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typicons.doc.tar.xz +Source2095: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umtypewriter.tar.xz +Source2096: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/universa.tar.xz +Source2097: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/universa.doc.tar.xz +Source2099: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/universalis.tar.xz +Source2100: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/universalis.doc.tar.xz +Source2101: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/urwchancal.tar.xz +Source2102: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/urwchancal.doc.tar.xz +Source2103: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/venturisadf.tar.xz +Source2104: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/venturisadf.doc.tar.xz +Source2106: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wsuipa.tar.xz +Source2107: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wsuipa.doc.tar.xz +Source2108: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcharter.tar.xz +Source2109: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcharter.doc.tar.xz +Source2110: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xits.tar.xz +Source2111: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xits.doc.tar.xz +Source2113: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yfonts.tar.xz +Source2114: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yfonts.doc.tar.xz +Source2118: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zlmtt.tar.xz +Source2119: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zlmtt.doc.tar.xz +Source2120: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/courier.tar.xz +Source2121: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ec.tar.xz +Source2122: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ec.doc.tar.xz +Source2123: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/euro.tar.xz +Source2124: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/euro.doc.tar.xz +Source2126: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eurosym.tar.xz +Source2127: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eurosym.doc.tar.xz +Source2128: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fpl.tar.xz +Source2129: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fpl.doc.tar.xz +Source2131: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/helvetic.tar.xz +Source2132: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/marvosym.tar.xz +Source2133: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/marvosym.doc.tar.xz +Source2135: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathpazo.tar.xz +Source2136: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathpazo.doc.tar.xz +Source2138: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ncntrsbk.tar.xz +Source2139: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/palatino.tar.xz +Source2140: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxfonts.tar.xz +Source2141: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxfonts.doc.tar.xz +Source2142: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rsfs.tar.xz +Source2143: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rsfs.doc.tar.xz +Source2144: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/symbol.tar.xz +Source2145: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-gyre.tar.xz +Source2146: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-gyre.doc.tar.xz +Source2147: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-gyre-math.tar.xz +Source2148: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-gyre-math.doc.tar.xz +Source2149: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/times.tar.xz +Source2150: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tipa.tar.xz +Source2151: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tipa.doc.tar.xz +Source2152: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/txfonts.tar.xz +Source2153: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/txfonts.doc.tar.xz +Source2154: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/utopia.tar.xz +Source2155: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/utopia.doc.tar.xz +Source2156: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wasy.tar.xz +Source2157: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wasy.doc.tar.xz +Source2158: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wasy2-ps.tar.xz +Source2159: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wasy2-ps.doc.tar.xz +Source2160: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wasysym.tar.xz +Source2161: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wasysym.doc.tar.xz +Source2163: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zapfchan.tar.xz +Source2164: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zapfding.tar.xz +Source2178: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dvipsconfig.tar.xz +Source2188: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/edmac.tar.xz +Source2189: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/edmac.doc.tar.xz +Source2198: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psizzl.tar.xz +Source2199: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psizzl.doc.tar.xz +Source2201: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/startex.tar.xz +Source2202: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/startex.doc.tar.xz +Source2206: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crossword.tar.xz +Source2207: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crossword.doc.tar.xz +Source2209: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crosswrd.tar.xz +Source2210: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crosswrd.doc.tar.xz +Source2212: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/egameps.tar.xz +Source2213: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/egameps.doc.tar.xz +Source2214: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gamebook.tar.xz +Source2215: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gamebook.doc.tar.xz +Source2217: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/go.tar.xz +Source2218: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/go.doc.tar.xz +Source2220: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hanoi.tar.xz +Source2221: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/havannah.tar.xz +Source2222: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/havannah.doc.tar.xz +Source2224: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hexgame.tar.xz +Source2225: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hexgame.doc.tar.xz +Source2226: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/horoscop.tar.xz +Source2227: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/horoscop.doc.tar.xz +Source2229: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/labyrinth.tar.xz +Source2230: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/labyrinth.doc.tar.xz +Source2231: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logicpuzzle.tar.xz +Source2232: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logicpuzzle.doc.tar.xz +Source2233: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/othello.tar.xz +Source2234: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/othello.doc.tar.xz +Source2235: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/othelloboard.tar.xz +Source2236: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/othelloboard.doc.tar.xz +Source2237: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pas-crosswords.tar.xz +Source2238: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pas-crosswords.doc.tar.xz +Source2239: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psgo.tar.xz +Source2240: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psgo.doc.tar.xz +Source2241: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/reverxii.doc.tar.xz +Source2245: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schwalbe-chess.tar.xz +Source2246: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schwalbe-chess.doc.tar.xz +Source2248: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sgame.tar.xz +Source2249: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sgame.doc.tar.xz +Source2250: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skak.tar.xz +Source2251: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skak.doc.tar.xz +Source2252: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sudoku.tar.xz +Source2253: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sudoku.doc.tar.xz +Source2255: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sudokubundle.tar.xz +Source2256: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sudokubundle.doc.tar.xz +Source2258: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xq.tar.xz +Source2259: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xq.doc.tar.xz +Source2260: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xskak.tar.xz +Source2261: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xskak.doc.tar.xz +Source2263: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/c-pascal.tar.xz +Source2264: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/c-pascal.doc.tar.xz +Source2265: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorsep.tar.xz +Source2266: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dinat.tar.xz +Source2267: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dinat.doc.tar.xz +Source2268: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dirtree.tar.xz +Source2269: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dirtree.doc.tar.xz +Source2271: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/docbytex.tar.xz +Source2272: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/docbytex.doc.tar.xz +Source2273: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dowith.tar.xz +Source2274: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dowith.doc.tar.xz +Source2276: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eijkhout.tar.xz +Source2277: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/encxvlna.tar.xz +Source2278: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/encxvlna.doc.tar.xz +Source2279: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epigram.tar.xz +Source2280: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fenixpar.tar.xz +Source2281: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fenixpar.doc.tar.xz +Source2282: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fltpoint.tar.xz +Source2283: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fltpoint.doc.tar.xz +Source2285: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fntproof.tar.xz +Source2286: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fntproof.doc.tar.xz +Source2287: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gates.tar.xz +Source2288: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gates.doc.tar.xz +Source2289: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifetex.tar.xz +Source2290: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifetex.doc.tar.xz +Source2292: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iftex.tar.xz +Source2293: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iftex.doc.tar.xz +Source2294: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/insbox.tar.xz +Source2295: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/insbox.doc.tar.xz +Source2296: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lambda-lists.tar.xz +Source2297: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lambda-lists.doc.tar.xz +Source2298: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/langcode.tar.xz +Source2299: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/langcode.doc.tar.xz +Source2301: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lecturer.tar.xz +Source2302: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lecturer.doc.tar.xz +Source2303: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/librarian.tar.xz +Source2304: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/librarian.doc.tar.xz +Source2305: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathdots.tar.xz +Source2306: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathdots.doc.tar.xz +Source2308: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metatex.tar.xz +Source2309: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metatex.doc.tar.xz +Source2310: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/midnight.tar.xz +Source2311: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/midnight.doc.tar.xz +Source2312: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/navigator.tar.xz +Source2313: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/navigator.doc.tar.xz +Source2314: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ofs.tar.xz +Source2315: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ofs.doc.tar.xz +Source2316: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdf-trans.tar.xz +Source2317: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdf-trans.doc.tar.xz +Source2318: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plainpkg.tar.xz +Source2319: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plainpkg.doc.tar.xz +Source2321: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schemata.tar.xz +Source2322: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schemata.doc.tar.xz +Source2324: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shade.tar.xz +Source2325: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shade.doc.tar.xz +Source2326: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/systeme.tar.xz +Source2327: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/systeme.doc.tar.xz +Source2328: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabto-generic.tar.xz +Source2329: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/termmenu.tar.xz +Source2330: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/termmenu.doc.tar.xz +Source2332: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tracklang.tar.xz +Source2333: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tracklang.doc.tar.xz +Source2335: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texapi.tar.xz +Source2336: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texapi.doc.tar.xz +Source2337: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/upca.tar.xz +Source2338: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/upca.doc.tar.xz +Source2339: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xlop.tar.xz +Source2340: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xlop.doc.tar.xz +Source2342: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yax.tar.xz +Source2343: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yax.doc.tar.xz +Source2344: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epsf.tar.xz +Source2345: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epsf.doc.tar.xz +Source2346: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontname.tar.xz +Source2347: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontname.doc.tar.xz +Source2348: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/genmisc.tar.xz +Source2349: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kastrup.tar.xz +Source2350: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kastrup.doc.tar.xz +Source2352: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multido.tar.xz +Source2353: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multido.doc.tar.xz +Source2355: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/path.tar.xz +Source2356: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/path.doc.tar.xz +Source2357: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-ps.tar.xz +Source2358: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-ps.doc.tar.xz +Source2359: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ulem.tar.xz +Source2360: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ulem.doc.tar.xz +Source2364: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/passivetex.tar.xz +Source2369: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xmltexconfig.tar.xz +Source2370: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/covington.tar.xz +Source2371: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/covington.doc.tar.xz +Source2374: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dramatist.tar.xz +Source2375: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dramatist.doc.tar.xz +Source2377: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dvgloss.tar.xz +Source2378: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dvgloss.doc.tar.xz +Source2380: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecltree.tar.xz +Source2381: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecltree.doc.tar.xz +Source2382: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/edfnotes.tar.xz +Source2383: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/edfnotes.doc.tar.xz +Source2385: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ednotes.tar.xz +Source2386: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ednotes.doc.tar.xz +Source2387: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ncctools.tar.xz +Source2388: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ncctools.doc.tar.xz +Source2390: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eledform.tar.xz +Source2391: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eledform.doc.tar.xz +Source2393: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eledmac.tar.xz +Source2394: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eledmac.doc.tar.xz +Source2396: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/expex.tar.xz +Source2397: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/expex.doc.tar.xz +Source2398: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gb4e.tar.xz +Source2399: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gb4e.doc.tar.xz +Source2400: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmverse.tar.xz +Source2401: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmverse.doc.tar.xz +Source2402: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jura.tar.xz +Source2403: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jura.doc.tar.xz +Source2405: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/juraabbrev.tar.xz +Source2406: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/juraabbrev.doc.tar.xz +Source2408: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/juramisc.tar.xz +Source2409: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/juramisc.doc.tar.xz +Source2410: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jurarsp.tar.xz +Source2411: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jurarsp.doc.tar.xz +Source2413: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ledmac.tar.xz +Source2414: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ledmac.doc.tar.xz +Source2416: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leipzig.tar.xz +Source2417: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leipzig.doc.tar.xz +Source2419: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lexikon.tar.xz +Source2420: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lexikon.doc.tar.xz +Source2421: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lexref.tar.xz +Source2422: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lexref.doc.tar.xz +Source2423: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/linguex.tar.xz +Source2424: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/linguex.doc.tar.xz +Source2425: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/liturg.tar.xz +Source2426: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/liturg.doc.tar.xz +Source2428: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metrix.tar.xz +Source2429: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metrix.doc.tar.xz +Source2431: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parallel.tar.xz +Source2432: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parallel.doc.tar.xz +Source2434: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parrun.tar.xz +Source2435: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parrun.doc.tar.xz +Source2437: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phonrule.tar.xz +Source2438: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phonrule.doc.tar.xz +Source2439: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plari.tar.xz +Source2440: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plari.doc.tar.xz +Source2442: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/play.tar.xz +Source2443: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/play.doc.tar.xz +Source2445: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poemscol.tar.xz +Source2446: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poemscol.doc.tar.xz +Source2448: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poetrytex.tar.xz +Source2449: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poetrytex.doc.tar.xz +Source2451: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qobitree.tar.xz +Source2452: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qobitree.doc.tar.xz +Source2453: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qtree.tar.xz +Source2454: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qtree.doc.tar.xz +Source2455: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/reledmac.tar.xz +Source2456: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/reledmac.doc.tar.xz +Source2458: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rrgtrees.tar.xz +Source2459: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rrgtrees.doc.tar.xz +Source2461: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rtklage.tar.xz +Source2462: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rtklage.doc.tar.xz +Source2463: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/screenplay.tar.xz +Source2464: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/screenplay.doc.tar.xz +Source2466: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/screenplay-pkg.tar.xz +Source2467: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/screenplay-pkg.doc.tar.xz +Source2468: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sides.tar.xz +Source2469: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sides.doc.tar.xz +Source2470: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stage.tar.xz +Source2471: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stage.doc.tar.xz +Source2472: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textglos.tar.xz +Source2473: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textglos.doc.tar.xz +Source2475: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thalie.tar.xz +Source2476: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thalie.doc.tar.xz +Source2478: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tree-dvips.tar.xz +Source2479: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tree-dvips.doc.tar.xz +Source2480: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verse.tar.xz +Source2481: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verse.doc.tar.xz +Source2483: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xyling.tar.xz +Source2484: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xyling.doc.tar.xz +Source2485: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ethiop.tar.xz +Source2486: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ethiop.doc.tar.xz +Source2488: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ethiop-t1.tar.xz +Source2489: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ethiop-t1.doc.tar.xz +Source2490: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fc.tar.xz +Source2491: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fc.doc.tar.xz +Source2492: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-ethiopic.tar.xz +Source2493: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dad.tar.xz +Source2494: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dad.doc.tar.xz +Source2495: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ghab.tar.xz +Source2496: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ghab.doc.tar.xz +Source2497: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-arabic.tar.xz +Source2498: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-farsi.tar.xz +Source2499: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imsproc.tar.xz +Source2500: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imsproc.doc.tar.xz +Source2501: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-persian.doc.tar.xz +Source2502: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/persian-bib.tar.xz +Source2503: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/persian-bib.doc.tar.xz +Source2504: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simurgh.tar.xz +Source2505: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simurgh.doc.tar.xz +Source2506: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tram.tar.xz +Source2507: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tram.doc.tar.xz +Source2508: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dnp.tar.xz +Source2509: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcjk2uni.tar.xz +Source2510: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcjk2uni.doc.tar.xz +Source2512: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zxjafont.tar.xz +Source2513: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zxjafont.doc.tar.xz +Source2514: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctex.tar.xz +Source2515: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctex.doc.tar.xz +Source2517: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctex-faq.doc.tar.xz +Source2518: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fandol.tar.xz +Source2519: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fandol.doc.tar.xz +Source2520: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-chinese.tar.xz +Source2521: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/impatient-cn.doc.tar.xz +Source2522: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-notes-zh-cn.doc.tar.xz +Source2523: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-chinese.doc.tar.xz +Source2524: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-zh-cn.doc.tar.xz +Source2525: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpinyin.tar.xz +Source2526: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpinyin.doc.tar.xz +Source2528: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhmetrics.tar.xz +Source2529: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhmetrics.doc.tar.xz +Source2531: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhnumber.tar.xz +Source2532: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhnumber.doc.tar.xz +Source2534: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhspacing.tar.xz +Source2535: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhspacing.doc.tar.xz +Source2541: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cyrplain.tar.xz +Source2542: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/disser.tar.xz +Source2543: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/disser.doc.tar.xz +Source2545: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eskd.tar.xz +Source2546: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eskd.doc.tar.xz +Source2548: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eskdx.tar.xz +Source2549: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eskdx.doc.tar.xz +Source2550: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gost.tar.xz +Source2551: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gost.doc.tar.xz +Source2553: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-bulgarian.tar.xz +Source2554: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-mongolian.tar.xz +Source2555: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-russian.tar.xz +Source2556: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ruhyphen.tar.xz +Source2558: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-serbian.tar.xz +Source2559: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-ukrainian.tar.xz +Source2560: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ukrhyph.tar.xz +Source2561: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ukrhyph.doc.tar.xz +Source2562: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lcyw.tar.xz +Source2563: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lcyw.doc.tar.xz +Source2565: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lh.tar.xz +Source2566: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lh.doc.tar.xz +Source2568: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lhcyr.tar.xz +Source2570: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-bulgarian.doc.tar.xz +Source2571: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-mongol.doc.tar.xz +Source2572: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-russian.doc.tar.xz +Source2573: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-ukr.doc.tar.xz +Source2574: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mongolian-babel.tar.xz +Source2575: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mongolian-babel.doc.tar.xz +Source2577: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/montex.tar.xz +Source2578: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/montex.doc.tar.xz +Source2579: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpman-ru.doc.tar.xz +Source2580: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-eucl-translation-bg.doc.tar.xz +Source2581: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/serbian-apostrophe.tar.xz +Source2582: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/serbian-apostrophe.doc.tar.xz +Source2583: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/serbian-date-lat.tar.xz +Source2584: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/serbian-date-lat.doc.tar.xz +Source2585: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/serbian-def-cyr.tar.xz +Source2586: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/serbian-def-cyr.doc.tar.xz +Source2587: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/serbian-lig.tar.xz +Source2588: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/serbian-lig.doc.tar.xz +Source2589: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/t2.tar.xz +Source2590: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/t2.doc.tar.xz +Source2591: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-ru.doc.tar.xz +Source2592: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-sr.doc.tar.xz +Source2593: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cs.tar.xz +Source2594: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/csbulletin.tar.xz +Source2595: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/csbulletin.doc.tar.xz +Source2599: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cstex.doc.tar.xz +Source2600: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-czech.tar.xz +Source2601: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-slovak.tar.xz +Source2604: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-czech.doc.tar.xz +Source2605: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-slovak.doc.tar.xz +Source2606: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-cz.doc.tar.xz +Source2607: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-english.tar.xz +Source2608: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/FAQ-en.doc.tar.xz +Source2609: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/MemoirChapStyles.doc.tar.xz +Source2610: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/Type1fonts.doc.tar.xz +Source2611: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/components-of-TeX.doc.tar.xz +Source2612: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comprehensive.doc.tar.xz +Source2613: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dickimaw.doc.tar.xz +Source2614: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dtxtut.doc.tar.xz +Source2615: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/first-latex-doc.doc.tar.xz +Source2616: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gentle.doc.tar.xz +Source2617: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/guide-to-latex.doc.tar.xz +Source2618: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/happy4th.doc.tar.xz +Source2619: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/impatient.doc.tar.xz +Source2620: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/intro-scientific.doc.tar.xz +Source2621: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knuth.doc.tar.xz +Source2623: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l2tabu-english.doc.tar.xz +Source2624: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-brochure.doc.tar.xz +Source2625: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-course.doc.tar.xz +Source2626: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-doc-ptr.doc.tar.xz +Source2627: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-graphics-companion.doc.tar.xz +Source2628: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-veryshortguide.doc.tar.xz +Source2629: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-web-companion.doc.tar.xz +Source2630: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex2e-help-texinfo.tar.xz +Source2631: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex2e-help-texinfo.doc.tar.xz +Source2632: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex4wp.doc.tar.xz +Source2633: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexcheat.doc.tar.xz +Source2634: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexcourse-rug.doc.tar.xz +Source2635: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexfileinfo-pkgs.tar.xz +Source2636: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexfileinfo-pkgs.doc.tar.xz +Source2638: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-english.doc.tar.xz +Source2639: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/macros2e.doc.tar.xz +Source2640: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/math-e.doc.tar.xz +Source2641: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/maths-symbols.doc.tar.xz +Source2642: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/memdesign.doc.tar.xz +Source2643: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metafont-beginners.doc.tar.xz +Source2644: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metapost-examples.doc.tar.xz +Source2646: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/patgen2-tutorial.doc.tar.xz +Source2647: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pictexsum.doc.tar.xz +Source2648: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plain-doc.doc.tar.xz +Source2649: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/presentations-en.doc.tar.xz +# Source2650: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstricks-examples-en.doc.tar.xz +Source2651: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simplified-latex.doc.tar.xz +Source2652: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svg-inkscape.doc.tar.xz +Source2653: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabulars-e.doc.tar.xz +Source2654: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tamethebeast.doc.tar.xz +Source2655: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tds.doc.tar.xz +Source2656: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-font-errors-cheatsheet.doc.tar.xz +Source2657: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-overview.doc.tar.xz +Source2658: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-refs.doc.tar.xz +Source2659: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texbytopic.doc.tar.xz +Source2660: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titlepages.doc.tar.xz +Source2661: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tlc2.doc.tar.xz +Source2662: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/visualfaq.doc.tar.xz +# Source2663: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/voss-mathmode.doc.tar.xz +Source2664: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/webguide.doc.tar.xz +Source2665: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetexref.doc.tar.xz +Source2666: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/finbib.tar.xz +Source2667: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hrlatex.tar.xz +Source2668: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hrlatex.doc.tar.xz +Source2670: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-armenian.tar.xz +Source2671: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-croatian.tar.xz +Source2672: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-danish.tar.xz +Source2673: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-dutch.tar.xz +Source2674: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-estonian.tar.xz +Source2675: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-finnish.tar.xz +Source2676: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-friulan.tar.xz +Source2677: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-hungarian.tar.xz +Source2678: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-hungarian.doc.tar.xz +Source2679: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-icelandic.tar.xz +Source2680: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-irish.tar.xz +Source2681: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-kurmanji.tar.xz +Source2682: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-latin.tar.xz +Source2683: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-latvian.tar.xz +Source2684: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-lithuanian.tar.xz +Source2685: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-norwegian.tar.xz +Source2686: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-piedmontese.tar.xz +Source2687: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-romanian.tar.xz +Source2688: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-romansh.tar.xz +Source2689: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-slovenian.tar.xz +Source2690: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-swedish.tar.xz +Source2691: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-turkish.tar.xz +Source2692: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-uppersorbian.tar.xz +Source2693: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-welsh.tar.xz +Source2694: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lithuanian.tar.xz +Source2695: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lithuanian.doc.tar.xz +Source2696: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-dutch.doc.tar.xz +Source2697: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-finnish.doc.tar.xz +Source2698: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-slovenian.doc.tar.xz +Source2699: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-turkish.doc.tar.xz +Source2700: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nevelok.tar.xz +Source2701: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nevelok.doc.tar.xz +Source2703: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/swebib.tar.xz +Source2704: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/swebib.doc.tar.xz +Source2705: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turkmen.tar.xz +Source2706: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turkmen.doc.tar.xz +Source2708: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/droit-fr.tar.xz +Source2709: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/droit-fr.doc.tar.xz +Source2710: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/e-french.tar.xz +Source2711: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/e-french.doc.tar.xz +Source2712: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epslatex-fr.doc.tar.xz +Source2713: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/facture.tar.xz +Source2714: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/facture.doc.tar.xz +Source2716: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frletter.tar.xz +Source2717: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frletter.doc.tar.xz +Source2718: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-basque.tar.xz +Source2719: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-french.tar.xz +Source2720: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/impatient-fr.doc.tar.xz +Source2721: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/impnattypo.tar.xz +Source2722: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/impnattypo.doc.tar.xz +Source2724: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l2tabu-french.doc.tar.xz +Source2725: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-french.doc.tar.xz +Source2726: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mafr.tar.xz +Source2727: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mafr.doc.tar.xz +Source2728: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabvar.tar.xz +Source2729: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabvar.doc.tar.xz +Source2731: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tdsfrmath.tar.xz +Source2732: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tdsfrmath.doc.tar.xz +Source2734: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-fr.doc.tar.xz +Source2735: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-array-fr.doc.tar.xz +Source2736: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-dcolumn-fr.doc.tar.xz +Source2737: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-natbib-fr.doc.tar.xz +Source2738: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-tabbing-fr.doc.tar.xz +Source2739: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/variations.tar.xz +Source2740: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/variations.doc.tar.xz +Source2741: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/csquotes-de.doc.tar.xz +Source2742: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dehyph-exptl.tar.xz +Source2743: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dehyph-exptl.doc.tar.xz +Source2744: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dhua.tar.xz +Source2745: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dhua.doc.tar.xz +Source2747: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/einfuehrung.doc.tar.xz +Source2748: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etdipa.doc.tar.xz +Source2749: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etoolbox-de.doc.tar.xz +Source2750: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fifinddo-info.doc.tar.xz +Source2752: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/geometry-de.doc.tar.xz +Source2753: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/german.tar.xz +Source2754: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/german.doc.tar.xz +Source2756: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/germbib.tar.xz +Source2757: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/germbib.doc.tar.xz +Source2758: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/germkorr.tar.xz +Source2759: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/germkorr.doc.tar.xz +Source2760: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hausarbeit-jura.tar.xz +Source2761: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hausarbeit-jura.doc.tar.xz +Source2763: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-german.tar.xz +Source2764: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/koma-script-examples.doc.tar.xz +Source2765: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l2picfaq.doc.tar.xz +Source2766: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l2tabu.doc.tar.xz +Source2767: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-bib-ex.doc.tar.xz +Source2768: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-referenz.doc.tar.xz +Source2769: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-tabellen.doc.tar.xz +Source2770: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexcheat-de.doc.tar.xz +Source2771: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-german.doc.tar.xz +Source2772: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lualatex-doc-de.doc.tar.xz +Source2773: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/microtype-de.doc.tar.xz +Source2774: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/presentations.doc.tar.xz +# Source2775: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstricks-examples.doc.tar.xz +Source2776: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/r_und_s.tar.xz +Source2777: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/r_und_s.doc.tar.xz +Source2778: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/templates-fenn.doc.tar.xz +Source2779: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/templates-sommer.doc.tar.xz +Source2780: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-de.doc.tar.xz +Source2781: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tipa-de.doc.tar.xz +Source2782: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-arsclassica-de.doc.tar.xz +Source2783: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-biblatex-de.doc.tar.xz +Source2784: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-chemsym-de.doc.tar.xz +Source2785: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-ecv-de.doc.tar.xz +Source2786: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-enumitem-de.doc.tar.xz +Source2787: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-europecv-de.doc.tar.xz +Source2788: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-filecontents-de.doc.tar.xz +Source2789: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translation-moreverb-de.doc.tar.xz +Source2790: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/udesoftec.tar.xz +Source2791: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/udesoftec.doc.tar.xz +Source2793: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umlaute.tar.xz +Source2794: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umlaute.doc.tar.xz +Source2796: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/voss-mathcol.doc.tar.xz +Source2797: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsbaskerville.tar.xz +Source2798: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsbaskerville.doc.tar.xz +Source2799: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsporson.tar.xz +Source2800: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfsporson.doc.tar.xz +Source2801: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greek-fontenc.tar.xz +Source2802: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greek-fontenc.doc.tar.xz +Source2803: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greek-inputenc.tar.xz +Source2804: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greek-inputenc.doc.tar.xz +Source2805: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greekdates.tar.xz +Source2806: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greekdates.doc.tar.xz +Source2808: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greektex.tar.xz +Source2809: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greektex.doc.tar.xz +Source2810: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-greek.tar.xz +Source2811: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-greek.doc.tar.xz +Source2812: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-ancientgreek.tar.xz +Source2813: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ibycus-babel.tar.xz +Source2814: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ibycus-babel.doc.tar.xz +Source2816: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ibygrk.tar.xz +Source2817: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ibygrk.doc.tar.xz +Source2818: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kerkis.tar.xz +Source2819: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kerkis.doc.tar.xz +Source2820: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/levy.tar.xz +Source2821: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/levy.doc.tar.xz +Source2822: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lgreek.tar.xz +Source2823: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lgreek.doc.tar.xz +Source2826: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/teubner.tar.xz +Source2827: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/teubner.doc.tar.xz +Source2829: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xgreek.tar.xz +Source2830: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xgreek.doc.tar.xz +Source2832: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yannisgr.tar.xz +Source2833: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yannisgr.doc.tar.xz +Source2837: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-indic.tar.xz +Source2838: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-sanskrit.tar.xz +Source2839: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sanskrit.tar.xz +Source2840: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sanskrit.doc.tar.xz +Source2842: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sanskrit-t1.tar.xz +Source2843: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sanskrit-t1.doc.tar.xz +Source2846: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetex-devanagari.tar.xz +Source2847: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetex-devanagari.doc.tar.xz +Source2848: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wnri.tar.xz +Source2849: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wnri.doc.tar.xz +Source2850: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wnri-latex.tar.xz +Source2851: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wnri-latex.doc.tar.xz +Source2853: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyhdr-it.doc.tar.xz +Source2854: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixltxhyph.tar.xz +Source2855: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixltxhyph.doc.tar.xz +Source2857: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frontespizio.tar.xz +Source2858: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frontespizio.doc.tar.xz +Source2860: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-italian.tar.xz +Source2861: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/itnumpar.tar.xz +Source2862: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/itnumpar.doc.tar.xz +Source2864: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l2tabu-italian.doc.tar.xz +Source2865: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex4wp-it.doc.tar.xz +Source2866: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/layaureo.tar.xz +Source2867: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/layaureo.doc.tar.xz +Source2869: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-italian.doc.tar.xz +Source2870: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psfrag-italian.doc.tar.xz +Source2871: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-it.doc.tar.xz +Source2874: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ipaex.tar.xz +Source2875: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ipaex.doc.tar.xz +# Source2876: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/japanese.tar.xz +# Source2877: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/japanese.doc.tar.xz +Source2879: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/japanese-otf.tar.xz +Source2880: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/japanese-otf.doc.tar.xz +Source2882: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/japanese-otf-uptex.tar.xz +Source2883: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/japanese-otf-uptex.doc.tar.xz +Source2888: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jsclasses.tar.xz +Source2889: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jsclasses.doc.tar.xz +Source2891: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-japanese.doc.tar.xz +Source2892: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatexja.tar.xz +Source2893: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatexja.doc.tar.xz +Source2900: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxbase.tar.xz +Source2901: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxbase.doc.tar.xz +Source2902: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxchfon.tar.xz +Source2903: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxchfon.doc.tar.xz +Source2904: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxcjkcat.tar.xz +Source2905: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxcjkcat.doc.tar.xz +Source2906: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxjahyper.tar.xz +Source2907: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxjahyper.doc.tar.xz +Source2908: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxrubrica.tar.xz +Source2909: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxrubrica.doc.tar.xz +Source2914: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zxjafbfont.tar.xz +Source2915: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zxjafbfont.doc.tar.xz +Source2916: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zxjatype.tar.xz +Source2917: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zxjatype.doc.tar.xz +Source2918: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kotex-oblivoir.tar.xz +Source2919: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kotex-oblivoir.doc.tar.xz +Source2920: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/memoir.tar.xz +Source2921: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/memoir.doc.tar.xz +Source2923: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kotex-utf.tar.xz +Source2924: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kotex-utf.doc.tar.xz +Source2925: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kotex-plain.tar.xz +Source2926: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kotex-plain.doc.tar.xz +Source2929: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-korean.doc.tar.xz +Source2930: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nanumtype1.tar.xz +Source2931: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nanumtype1.doc.tar.xz +Source2932: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctib.tar.xz +Source2933: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctib.doc.tar.xz +Source2935: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-afrikaans.tar.xz +Source2936: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-coptic.tar.xz +Source2937: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-esperanto.tar.xz +Source2938: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-georgian.tar.xz +Source2939: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-indonesian.tar.xz +Source2940: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-interlingua.tar.xz +Source2941: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-thai.tar.xz +Source2942: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-turkmen.tar.xz +Source2943: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-thai.doc.tar.xz +Source2944: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-vietnamese.doc.tar.xz +Source2945: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ntheorem-vn.doc.tar.xz +Source2946: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vntex.tar.xz +Source2947: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vntex.doc.tar.xz +Source2949: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gustlib.tar.xz +Source2950: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gustlib.doc.tar.xz +Source2951: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gustprog.doc.tar.xz +Source2952: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-polish.tar.xz +Source2953: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-polish.doc.tar.xz +Source2957: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pl.tar.xz +Source2958: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pl.doc.tar.xz +Source2959: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mwcls.tar.xz +Source2960: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mwcls.doc.tar.xz +Source2962: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polski.tar.xz +Source2963: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polski.doc.tar.xz +Source2965: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/przechlewski-book.tar.xz +Source2966: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/przechlewski-book.doc.tar.xz +Source2967: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qpxqtx.tar.xz +Source2968: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qpxqtx.doc.tar.xz +Source2969: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tap.tar.xz +Source2970: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tap.doc.tar.xz +Source2971: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-virtual-academy-pl.doc.tar.xz +Source2972: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-pl.doc.tar.xz +Source2973: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/utf8mex.tar.xz +Source2974: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/utf8mex.doc.tar.xz +Source2975: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cursolatex.doc.tar.xz +Source2976: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/feupphdteses.tar.xz +Source2977: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/feupphdteses.doc.tar.xz +Source2978: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-portuguese.tar.xz +Source2979: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexcheat-ptbr.doc.tar.xz +Source2980: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-portuguese.doc.tar.xz +Source2981: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ordinalpt.tar.xz +Source2982: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ordinalpt.doc.tar.xz +Source2984: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xypic-tut-pt.doc.tar.xz +Source2985: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/es-tex-faq.doc.tar.xz +Source2986: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-catalan.tar.xz +Source2987: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-galician.tar.xz +Source2988: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-spanish.tar.xz +Source2989: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l2tabu-spanish.doc.tar.xz +Source2990: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex2e-help-texinfo-spanish.tar.xz +Source2991: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex2e-help-texinfo-spanish.doc.tar.xz +Source2992: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexcheat-esmx.doc.tar.xz +Source2993: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-spanish.doc.tar.xz +Source2994: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spanish-mx.tar.xz +Source2995: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spanish-mx.doc.tar.xz +Source2996: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crop.tar.xz +Source2997: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crop.doc.tar.xz +Source2999: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctable.tar.xz +Source3000: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctable.doc.tar.xz +Source3002: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eso-pic.tar.xz +Source3003: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eso-pic.doc.tar.xz +Source3005: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/euenc.tar.xz +Source3006: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/euenc.doc.tar.xz +Source3008: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/euler.tar.xz +Source3009: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/euler.doc.tar.xz +Source3011: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/extsizes.tar.xz +Source3012: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/extsizes.doc.tar.xz +Source3013: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancybox.tar.xz +Source3014: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancybox.doc.tar.xz +Source3015: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyref.tar.xz +Source3016: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyref.doc.tar.xz +Source3018: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyvrb.tar.xz +Source3019: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyvrb.doc.tar.xz +Source3021: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/float.tar.xz +Source3022: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/float.doc.tar.xz +Source3024: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontspec.tar.xz +Source3025: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontspec.doc.tar.xz +Source3027: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l3kernel.tar.xz +Source3028: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l3kernel.doc.tar.xz +Source3030: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l3packages.tar.xz +Source3031: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l3packages.doc.tar.xz +Source3033: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fp.tar.xz +Source3034: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fp.doc.tar.xz +Source3035: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/index.tar.xz +Source3036: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/index.doc.tar.xz +Source3038: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jknapltx.tar.xz +Source3039: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jknapltx.doc.tar.xz +Source3040: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/koma-script.tar.xz +Source3041: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l3experimental.tar.xz +Source3042: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/l3experimental.doc.tar.xz +Source3044: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lineno.tar.xz +Source3045: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lineno.doc.tar.xz +Source3047: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listings.tar.xz +Source3048: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listings.doc.tar.xz +Source3050: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathtools.tar.xz +Source3051: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathtools.doc.tar.xz +Source3053: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mdwtools.tar.xz +Source3054: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mdwtools.doc.tar.xz +Source3056: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metalogo.tar.xz +Source3057: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metalogo.doc.tar.xz +Source3059: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/microtype.tar.xz +Source3060: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/microtype.doc.tar.xz +Source3062: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ms.tar.xz +Source3063: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ms.doc.tar.xz +Source3065: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ntgclass.tar.xz +Source3066: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ntgclass.doc.tar.xz +Source3068: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parskip.tar.xz +Source3069: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parskip.doc.tar.xz +Source3070: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfpages.tar.xz +Source3071: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfpages.doc.tar.xz +Source3073: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/powerdot.tar.xz +Source3074: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/powerdot.doc.tar.xz +Source3076: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psfrag.tar.xz +Source3077: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psfrag.doc.tar.xz +Source3079: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rcs.tar.xz +Source3080: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rcs.doc.tar.xz +# Source3082: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rotating.tar.xz +# Source3083: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rotating.doc.tar.xz +Source3085: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sansmath.tar.xz +Source3086: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sansmath.doc.tar.xz +Source3087: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/section.tar.xz +Source3088: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/section.doc.tar.xz +Source3089: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seminar.tar.xz +Source3090: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seminar.doc.tar.xz +Source3091: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sepnum.tar.xz +Source3092: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sepnum.doc.tar.xz +Source3093: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/setspace.tar.xz +Source3094: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/setspace.doc.tar.xz +Source3095: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfig.tar.xz +Source3096: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfig.doc.tar.xz +Source3098: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textcase.tar.xz +Source3099: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textcase.doc.tar.xz +Source3103: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typehtml.tar.xz +Source3104: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typehtml.doc.tar.xz +Source3106: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/underscore.tar.xz +Source3107: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/underscore.doc.tar.xz +Source3108: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/combinedgraphics.tar.xz +Source3109: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/combinedgraphics.doc.tar.xz +Source3111: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/curve.tar.xz +Source3112: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/curve.doc.tar.xz +Source3114: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/curve2e.tar.xz +Source3115: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/curve2e.doc.tar.xz +Source3117: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/curves.tar.xz +Source3118: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/curves.doc.tar.xz +Source3120: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dcpic.tar.xz +Source3121: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dcpic.doc.tar.xz +Source3122: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/diagmac2.tar.xz +Source3123: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/diagmac2.doc.tar.xz +Source3124: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doc-pictex.doc.tar.xz +Source3125: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dottex.tar.xz +Source3126: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dottex.doc.tar.xz +Source3128: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dot2texi.tar.xz +Source3129: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dot2texi.doc.tar.xz +Source3130: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dratex.tar.xz +Source3131: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dratex.doc.tar.xz +Source3132: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drs.tar.xz +Source3133: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drs.doc.tar.xz +Source3134: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/duotenzor.tar.xz +Source3135: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/duotenzor.doc.tar.xz +Source3136: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eepic.tar.xz +Source3137: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eepic.doc.tar.xz +Source3140: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epspdfconversion.tar.xz +Source3141: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epspdfconversion.doc.tar.xz +Source3142: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esk.tar.xz +Source3143: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esk.doc.tar.xz +Source3145: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fast-diagram.tar.xz +Source3146: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fast-diagram.doc.tar.xz +Source3149: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fitbox.tar.xz +Source3150: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fitbox.doc.tar.xz +Source3152: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flowchart.tar.xz +Source3153: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flowchart.doc.tar.xz +Source3155: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forest.tar.xz +Source3156: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forest.doc.tar.xz +Source3158: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/genealogytree.tar.xz +Source3159: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/genealogytree.doc.tar.xz +Source3162: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gincltex.tar.xz +Source3163: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gincltex.doc.tar.xz +Source3165: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gnuplottex.tar.xz +Source3166: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gnuplottex.doc.tar.xz +Source3168: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gradientframe.tar.xz +Source3169: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gradientframe.doc.tar.xz +Source3171: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grafcet.tar.xz +Source3172: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grafcet.doc.tar.xz +Source3173: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphviz.tar.xz +Source3174: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphviz.doc.tar.xz +Source3176: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harveyballs.tar.xz +Source3177: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harveyballs.doc.tar.xz +Source3178: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/here.tar.xz +Source3179: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/here.doc.tar.xz +Source3180: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hf-tikz.tar.xz +Source3181: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hf-tikz.doc.tar.xz +Source3183: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hobby.tar.xz +Source3184: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hobby.doc.tar.xz +Source3186: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hvfloat.tar.xz +Source3187: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hvfloat.doc.tar.xz +Source3188: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knitting.tar.xz +Source3189: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knitting.doc.tar.xz +Source3190: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knittingpattern.tar.xz +Source3191: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knittingpattern.doc.tar.xz +Source3192: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lapdf.tar.xz +Source3193: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lapdf.doc.tar.xz +Source3194: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-make.tar.xz +Source3195: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-make.doc.tar.xz +Source3197: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lpic.tar.xz +Source3198: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lpic.doc.tar.xz +Source3199: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makeshape.tar.xz +Source3200: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makeshape.doc.tar.xz +Source3204: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/miniplot.tar.xz +Source3205: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/miniplot.doc.tar.xz +Source3208: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/modiagram.tar.xz +Source3209: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/modiagram.doc.tar.xz +Source3210: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/neuralnetwork.tar.xz +Source3211: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/neuralnetwork.doc.tar.xz +Source3212: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numericplots.tar.xz +Source3213: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numericplots.doc.tar.xz +Source3214: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pb-diagram.tar.xz +Source3215: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pb-diagram.doc.tar.xz +Source3218: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-blur.tar.xz +Source3219: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-blur.doc.tar.xz +Source3221: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-soroban.tar.xz +Source3222: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-soroban.doc.tar.xz +Source3223: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-umlcd.tar.xz +Source3224: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-umlcd.doc.tar.xz +Source3225: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-umlsd.tar.xz +Source3226: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-umlsd.doc.tar.xz +Source3227: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfgantt.tar.xz +Source3228: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfgantt.doc.tar.xz +Source3230: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfkeyx.tar.xz +Source3231: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfkeyx.doc.tar.xz +Source3232: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfmolbio.tar.xz +Source3233: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfmolbio.doc.tar.xz +Source3235: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfopts.tar.xz +Source3236: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfopts.doc.tar.xz +Source3238: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfplots.tar.xz +Source3239: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfplots.doc.tar.xz +Source3241: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/picinpar.tar.xz +Source3242: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/picinpar.doc.tar.xz +Source3243: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pict2e.tar.xz +Source3244: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pict2e.doc.tar.xz +Source3246: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pictex.tar.xz +Source3247: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pictex.doc.tar.xz +Source3248: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pictex2.tar.xz +Source3249: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pinlabel.tar.xz +Source3250: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pinlabel.doc.tar.xz +Source3251: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pmgraph.tar.xz +Source3252: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pmgraph.doc.tar.xz +Source3253: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prerex.tar.xz +Source3254: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prerex.doc.tar.xz +Source3255: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/productbox.tar.xz +Source3256: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/productbox.doc.tar.xz +Source3258: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxpgfmark.tar.xz +Source3259: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxpgfmark.doc.tar.xz +Source3260: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qcircuit.tar.xz +Source3261: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qcircuit.doc.tar.xz +Source3262: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qrcode.tar.xz +Source3263: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qrcode.doc.tar.xz +Source3265: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/randbild.tar.xz +Source3266: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/randbild.doc.tar.xz +Source3268: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/randomwalk.tar.xz +Source3269: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/randomwalk.doc.tar.xz +Source3271: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/reotex.tar.xz +Source3272: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/reotex.doc.tar.xz +Source3273: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rviewport.tar.xz +Source3274: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rviewport.doc.tar.xz +Source3276: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sa-tikz.tar.xz +Source3277: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sa-tikz.doc.tar.xz +Source3278: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schemabloc.tar.xz +Source3279: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schemabloc.doc.tar.xz +Source3280: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/setdeck.tar.xz +Source3281: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/setdeck.doc.tar.xz +Source3282: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/smartdiagram.tar.xz +Source3283: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/smartdiagram.doc.tar.xz +Source3285: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spath3.tar.xz +Source3286: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spath3.doc.tar.xz +Source3288: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/swimgraf.tar.xz +Source3289: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/swimgraf.doc.tar.xz +Source3290: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texdraw.tar.xz +Source3291: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texdraw.doc.tar.xz +Source3292: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ticollege.tar.xz +Source3293: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ticollege.doc.tar.xz +Source3294: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tipfr.doc.tar.xz +Source3295: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-3dplot.tar.xz +Source3296: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-3dplot.doc.tar.xz +Source3297: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-bayesnet.tar.xz +Source3298: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-bayesnet.doc.tar.xz +Source3299: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-cd.tar.xz +Source3300: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-cd.doc.tar.xz +Source3301: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-dependency.tar.xz +Source3302: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-dependency.doc.tar.xz +Source3303: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-dimline.tar.xz +Source3304: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-dimline.doc.tar.xz +Source3305: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-inet.tar.xz +Source3306: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-inet.doc.tar.xz +Source3307: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-opm.tar.xz +Source3308: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-opm.doc.tar.xz +Source3309: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-palattice.tar.xz +Source3310: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-palattice.doc.tar.xz +Source3311: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-qtree.tar.xz +Source3312: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-qtree.doc.tar.xz +Source3313: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-timing.tar.xz +Source3314: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-timing.doc.tar.xz +Source3316: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svn-prov.tar.xz +Source3317: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svn-prov.doc.tar.xz +Source3319: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzinclude.tar.xz +Source3320: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzinclude.doc.tar.xz +Source3322: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzmark.tar.xz +Source3323: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzmark.doc.tar.xz +Source3325: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzorbital.tar.xz +Source3326: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzorbital.doc.tar.xz +Source3327: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzpagenodes.tar.xz +Source3328: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzpagenodes.doc.tar.xz +Source3330: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzpfeile.tar.xz +Source3331: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzpfeile.doc.tar.xz +Source3333: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzposter.tar.xz +Source3334: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzposter.doc.tar.xz +Source3336: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzscale.tar.xz +Source3337: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzscale.doc.tar.xz +Source3339: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzsymbols.tar.xz +Source3340: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzsymbols.doc.tar.xz +Source3342: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/timing-diagrams.tar.xz +Source3343: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/timing-diagrams.doc.tar.xz +Source3344: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tqft.tar.xz +Source3345: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tqft.doc.tar.xz +Source3347: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-base.tar.xz +Source3348: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-base.doc.tar.xz +Source3349: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-berge.tar.xz +Source3350: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-berge.doc.tar.xz +Source3351: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-doc.tar.xz +Source3352: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-doc.doc.tar.xz +Source3353: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-euclide.tar.xz +Source3354: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-euclide.doc.tar.xz +Source3355: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-fct.tar.xz +Source3356: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-fct.doc.tar.xz +Source3357: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-graph.tar.xz +Source3358: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-graph.doc.tar.xz +Source3359: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-kiviat.tar.xz +Source3360: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-kiviat.doc.tar.xz +Source3361: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-linknodes.tar.xz +Source3362: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-linknodes.doc.tar.xz +Source3363: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-orm.tar.xz +Source3364: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-orm.doc.tar.xz +Source3365: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-tab.tar.xz +Source3366: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tkz-tab.doc.tar.xz +Source3367: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tsemlines.tar.xz +Source3368: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tufte-latex.tar.xz +Source3369: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tufte-latex.doc.tar.xz +Source3370: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xifthen.tar.xz +Source3371: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xifthen.doc.tar.xz +Source3372: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifmtarg.tar.xz +Source3373: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifmtarg.doc.tar.xz +Source3375: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paralist.tar.xz +Source3376: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paralist.doc.tar.xz +Source3378: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sauerj.tar.xz +Source3379: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sauerj.doc.tar.xz +Source3381: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/placeins.tar.xz +Source3382: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/placeins.doc.tar.xz +Source3383: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/venndiagram.tar.xz +Source3384: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/venndiagram.doc.tar.xz +Source3386: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpicture.tar.xz +Source3387: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpicture.doc.tar.xz +Source3389: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xypic.tar.xz +Source3390: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xypic.doc.tar.xz +Source3391: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ESIEEcv.tar.xz +Source3392: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ESIEEcv.doc.tar.xz +Source3394: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/GS1.tar.xz +Source3395: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/GS1.doc.tar.xz +Source3397: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/HA-prosper.tar.xz +Source3398: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/HA-prosper.doc.tar.xz +Source3400: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/Tabbing.tar.xz +Source3401: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/Tabbing.doc.tar.xz +Source3403: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colordoc.tar.xz +Source3404: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colordoc.doc.tar.xz +Source3406: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorinfo.tar.xz +Source3407: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorinfo.doc.tar.xz +Source3408: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorspace.tar.xz +Source3409: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorspace.doc.tar.xz +Source3410: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colortab.tar.xz +Source3411: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colortab.doc.tar.xz +Source3412: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorwav.tar.xz +Source3413: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorwav.doc.tar.xz +Source3415: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorweb.tar.xz +Source3416: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colorweb.doc.tar.xz +Source3418: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colourchange.tar.xz +Source3419: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/colourchange.doc.tar.xz +Source3420: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/combelow.tar.xz +Source3421: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/combelow.doc.tar.xz +Source3422: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/combine.tar.xz +Source3423: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/combine.doc.tar.xz +Source3425: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comma.tar.xz +Source3426: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comma.doc.tar.xz +Source3427: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/commado.tar.xz +Source3428: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/commado.doc.tar.xz +Source3430: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comment.tar.xz +Source3431: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/comment.doc.tar.xz +Source3432: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concepts.tar.xz +Source3433: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concepts.doc.tar.xz +Source3434: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concprog.tar.xz +Source3435: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concprog.doc.tar.xz +Source3436: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/constants.tar.xz +Source3437: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/constants.doc.tar.xz +Source3439: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/contour.tar.xz +Source3440: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/contour.doc.tar.xz +Source3442: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/contracard.tar.xz +Source3443: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/contracard.doc.tar.xz +Source3445: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cooking.tar.xz +Source3446: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cooking.doc.tar.xz +Source3448: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cool.tar.xz +Source3449: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cool.doc.tar.xz +Source3451: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coollist.tar.xz +Source3452: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coollist.doc.tar.xz +Source3454: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coolstr.tar.xz +Source3455: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coolstr.doc.tar.xz +Source3457: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coolthms.tar.xz +Source3458: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coolthms.doc.tar.xz +Source3460: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cooltooltips.tar.xz +Source3461: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cooltooltips.doc.tar.xz +Source3463: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coordsys.tar.xz +Source3464: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coordsys.doc.tar.xz +Source3466: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/copyedit.tar.xz +Source3467: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/copyedit.doc.tar.xz +Source3469: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/copyrightbox.tar.xz +Source3470: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/copyrightbox.doc.tar.xz +Source3471: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coseoul.tar.xz +Source3472: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coseoul.doc.tar.xz +Source3473: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/counttexruns.tar.xz +Source3474: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/counttexruns.doc.tar.xz +Source3476: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/courseoutline.tar.xz +Source3477: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/courseoutline.doc.tar.xz +Source3478: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coursepaper.tar.xz +Source3479: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coursepaper.doc.tar.xz +Source3480: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coverpage.tar.xz +Source3481: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coverpage.doc.tar.xz +Source3483: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cprotect.tar.xz +Source3484: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cprotect.doc.tar.xz +Source3486: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crbox.tar.xz +Source3487: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crbox.doc.tar.xz +Source3488: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crossreference.tar.xz +Source3489: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crossreference.doc.tar.xz +Source3491: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/csquotes.tar.xz +Source3492: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/csquotes.doc.tar.xz +Source3493: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/csvsimple.tar.xz +Source3494: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/csvsimple.doc.tar.xz +Source3495: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cuisine.tar.xz +Source3496: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cuisine.doc.tar.xz +Source3498: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/currfile.tar.xz +Source3499: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/currfile.doc.tar.xz +Source3501: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/currvita.tar.xz +Source3502: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/currvita.doc.tar.xz +Source3504: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cutwin.tar.xz +Source3505: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cutwin.doc.tar.xz +Source3507: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cv.tar.xz +Source3508: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cv.doc.tar.xz +Source3509: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cv4tw.tar.xz +Source3510: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cv4tw.doc.tar.xz +Source3511: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cweb-latex.tar.xz +Source3512: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cweb-latex.doc.tar.xz +Source3513: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cyber.tar.xz +Source3514: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cyber.doc.tar.xz +Source3516: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cybercic.tar.xz +Source3517: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cybercic.doc.tar.xz +Source3519: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dashbox.tar.xz +Source3520: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dashbox.doc.tar.xz +Source3522: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dashrule.tar.xz +Source3523: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dashrule.doc.tar.xz +Source3525: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dashundergaps.tar.xz +Source3526: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dashundergaps.doc.tar.xz +Source3527: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dataref.tar.xz +Source3528: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dataref.doc.tar.xz +Source3530: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datatool.tar.xz +Source3531: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datatool.doc.tar.xz +Source3533: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dateiliste.tar.xz +Source3534: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dateiliste.doc.tar.xz +Source3536: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datenumber.tar.xz +Source3537: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datenumber.doc.tar.xz +Source3539: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime.tar.xz +Source3540: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime.doc.tar.xz +Source3542: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2.tar.xz +Source3543: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2.doc.tar.xz +Source3545: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-bahasai.tar.xz +Source3546: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-bahasai.doc.tar.xz +Source3548: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-basque.tar.xz +Source3549: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-basque.doc.tar.xz +Source3551: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-breton.tar.xz +Source3552: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-breton.doc.tar.xz +Source3554: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-bulgarian.tar.xz +Source3555: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-bulgarian.doc.tar.xz +Source3557: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-catalan.tar.xz +Source3558: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-catalan.doc.tar.xz +Source3560: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-croatian.tar.xz +Source3561: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-croatian.doc.tar.xz +Source3563: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-czech.tar.xz +Source3564: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-czech.doc.tar.xz +Source3566: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-danish.tar.xz +Source3567: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-danish.doc.tar.xz +Source3569: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-dutch.tar.xz +Source3570: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-dutch.doc.tar.xz +Source3572: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-en-fulltext.tar.xz +Source3573: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-en-fulltext.doc.tar.xz +Source3575: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-english.tar.xz +Source3576: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-english.doc.tar.xz +Source3578: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-esperanto.tar.xz +Source3579: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-esperanto.doc.tar.xz +Source3581: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-estonian.tar.xz +Source3582: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-estonian.doc.tar.xz +Source3584: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-finnish.tar.xz +Source3585: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-finnish.doc.tar.xz +Source3587: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-french.tar.xz +Source3588: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-french.doc.tar.xz +Source3590: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-galician.tar.xz +Source3591: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-galician.doc.tar.xz +Source3593: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-german.tar.xz +Source3594: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-german.doc.tar.xz +Source3596: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-greek.tar.xz +Source3597: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-greek.doc.tar.xz +Source3599: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-hebrew.tar.xz +Source3600: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-hebrew.doc.tar.xz +Source3602: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-icelandic.tar.xz +Source3603: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-icelandic.doc.tar.xz +Source3605: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-irish.tar.xz +Source3606: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-irish.doc.tar.xz +Source3608: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-italian.tar.xz +Source3609: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-italian.doc.tar.xz +Source3611: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-it-fulltext.tar.xz +Source3612: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-it-fulltext.doc.tar.xz +Source3614: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-latin.tar.xz +Source3615: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-latin.doc.tar.xz +Source3617: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-lsorbian.tar.xz +Source3618: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-lsorbian.doc.tar.xz +Source3620: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-magyar.tar.xz +Source3621: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-magyar.doc.tar.xz +Source3623: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-norsk.tar.xz +Source3624: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-norsk.doc.tar.xz +Source3626: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-polish.tar.xz +Source3627: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-polish.doc.tar.xz +Source3629: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-portuges.tar.xz +Source3630: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-portuges.doc.tar.xz +Source3632: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-romanian.tar.xz +Source3633: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-romanian.doc.tar.xz +Source3635: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-russian.tar.xz +Source3636: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-russian.doc.tar.xz +Source3638: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-samin.tar.xz +Source3639: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-samin.doc.tar.xz +Source3641: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-scottish.tar.xz +Source3642: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-scottish.doc.tar.xz +Source3644: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-serbian.tar.xz +Source3645: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-serbian.doc.tar.xz +Source3647: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-slovak.tar.xz +Source3648: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-slovak.doc.tar.xz +Source3650: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-slovene.tar.xz +Source3651: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-slovene.doc.tar.xz +Source3653: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-spanish.tar.xz +Source3654: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-spanish.doc.tar.xz +Source3656: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-swedish.tar.xz +Source3657: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-swedish.doc.tar.xz +Source3659: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-turkish.tar.xz +Source3660: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-turkish.doc.tar.xz +Source3662: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-ukrainian.tar.xz +Source3663: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-ukrainian.doc.tar.xz +Source3665: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-usorbian.tar.xz +Source3666: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-usorbian.doc.tar.xz +Source3668: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-welsh.tar.xz +Source3669: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/datetime2-welsh.doc.tar.xz +Source3671: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dblfloatfix.tar.xz +Source3672: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dblfloatfix.doc.tar.xz +Source3673: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/decimal.tar.xz +Source3674: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/decimal.doc.tar.xz +Source3676: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/decorule.tar.xz +Source3677: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/decorule.doc.tar.xz +Source3679: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/delim.tar.xz +Source3680: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/delim.doc.tar.xz +Source3682: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/delimtxt.tar.xz +Source3683: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/delimtxt.doc.tar.xz +Source3685: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/denisbdoc.tar.xz +Source3686: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/denisbdoc.doc.tar.xz +Source3690: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/diagbox.tar.xz +Source3691: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/diagbox.doc.tar.xz +Source3693: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/diagnose.tar.xz +Source3694: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/diagnose.doc.tar.xz +Source3695: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dialogl.tar.xz +Source3696: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dialogl.doc.tar.xz +Source3698: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dichokey.tar.xz +Source3699: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dichokey.doc.tar.xz +Source3700: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dinbrief.tar.xz +Source3701: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dinbrief.doc.tar.xz +Source3703: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/directory.tar.xz +Source3704: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/directory.doc.tar.xz +Source3705: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dirtytalk.tar.xz +Source3706: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dirtytalk.doc.tar.xz +Source3708: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dlfltxb.tar.xz +Source3709: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dlfltxb.doc.tar.xz +Source3710: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dnaseq.tar.xz +Source3711: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dnaseq.doc.tar.xz +Source3713: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doclicense.tar.xz +Source3714: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doclicense.doc.tar.xz +Source3716: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/docmfp.tar.xz +Source3717: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/docmfp.doc.tar.xz +Source3719: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/docmute.tar.xz +Source3720: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/docmute.doc.tar.xz +Source3722: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doctools.tar.xz +Source3723: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doctools.doc.tar.xz +Source3725: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/documentation.tar.xz +Source3726: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/documentation.doc.tar.xz +Source3728: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doi.tar.xz +Source3729: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/doi.doc.tar.xz +Source3730: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dotarrow.tar.xz +Source3731: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dotarrow.doc.tar.xz +Source3733: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dotseqn.tar.xz +Source3734: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dotseqn.doc.tar.xz +Source3736: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/download.tar.xz +Source3737: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/download.doc.tar.xz +Source3739: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dox.tar.xz +Source3740: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dox.doc.tar.xz +Source3742: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dpfloat.tar.xz +Source3743: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dpfloat.doc.tar.xz +Source3744: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dprogress.tar.xz +Source3745: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dprogress.doc.tar.xz +Source3747: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drac.tar.xz +Source3748: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drac.doc.tar.xz +Source3750: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/draftcopy.tar.xz +Source3751: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/draftcopy.doc.tar.xz +Source3753: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/draftwatermark.tar.xz +Source3754: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/draftwatermark.doc.tar.xz +Source3756: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dtk.tar.xz +Source3757: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dtk.doc.tar.xz +Source3758: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dtxgallery.doc.tar.xz +Source3760: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dvdcoll.tar.xz +Source3761: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dvdcoll.doc.tar.xz +Source3762: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dynblocks.tar.xz +Source3763: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dynblocks.doc.tar.xz +Source3764: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ean13isbn.tar.xz +Source3765: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ean13isbn.doc.tar.xz +Source3766: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easy.tar.xz +Source3767: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easy.doc.tar.xz +Source3768: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easy-todo.tar.xz +Source3769: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easy-todo.doc.tar.xz +Source3770: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easyfig.tar.xz +Source3771: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easyfig.doc.tar.xz +Source3773: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easylist.tar.xz +Source3774: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easylist.doc.tar.xz +Source3775: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easyreview.tar.xz +Source3776: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easyreview.doc.tar.xz +Source3778: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebezier.tar.xz +Source3779: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebezier.doc.tar.xz +Source3781: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecclesiastic.tar.xz +Source3782: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecclesiastic.doc.tar.xz +Source3784: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecv.tar.xz +Source3785: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecv.doc.tar.xz +Source3787: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ed.tar.xz +Source3788: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ed.doc.tar.xz +Source3790: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/edmargin.tar.xz +Source3791: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/edmargin.doc.tar.xz +Source3793: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eemeir.tar.xz +Source3794: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eemeir.doc.tar.xz +Source3796: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/efbox.tar.xz +Source3797: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/efbox.doc.tar.xz +Source3799: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/egplot.tar.xz +Source3800: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/egplot.doc.tar.xz +Source3802: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elements.tar.xz +Source3803: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elements.doc.tar.xz +Source3804: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ellipsis.tar.xz +Source3805: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ellipsis.doc.tar.xz +Source3807: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elmath.tar.xz +Source3808: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elmath.doc.tar.xz +Source3810: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elocalloc.tar.xz +Source3811: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elocalloc.doc.tar.xz +Source3813: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elpres.tar.xz +Source3814: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elpres.doc.tar.xz +Source3815: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elzcards.tar.xz +Source3816: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elzcards.doc.tar.xz +Source3818: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emarks.tar.xz +Source3819: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emarks.doc.tar.xz +Source3821: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/embedall.tar.xz +Source3822: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/embedall.doc.tar.xz +Source3824: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/embrac.tar.xz +Source3825: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/embrac.doc.tar.xz +Source3826: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emptypage.tar.xz +Source3827: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emptypage.doc.tar.xz +Source3829: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emulateapj.tar.xz +Source3830: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emulateapj.doc.tar.xz +Source3831: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endfloat.tar.xz +Source3832: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endfloat.doc.tar.xz +Source3834: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endheads.tar.xz +Source3835: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endheads.doc.tar.xz +Source3837: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endnotes.tar.xz +Source3838: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endnotes.doc.tar.xz +Source3839: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/engpron.tar.xz +Source3840: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/engpron.doc.tar.xz +Source3842: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/engrec.tar.xz +Source3843: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/engrec.doc.tar.xz +Source3845: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enotez.tar.xz +Source3846: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enotez.doc.tar.xz +Source3847: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enumitem.tar.xz +Source3848: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enumitem.doc.tar.xz +Source3849: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enumitem-zref.tar.xz +Source3850: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enumitem-zref.doc.tar.xz +Source3852: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/envbig.tar.xz +Source3853: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/envbig.doc.tar.xz +Source3854: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/environ.tar.xz +Source3855: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/environ.doc.tar.xz +Source3857: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/envlab.tar.xz +Source3858: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/envlab.doc.tar.xz +Source3860: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epigraph.tar.xz +Source3861: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epigraph.doc.tar.xz +Source3863: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epiolmec.tar.xz +Source3864: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epiolmec.doc.tar.xz +Source3868: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqell.tar.xz +Source3869: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqell.doc.tar.xz +Source3870: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqlist.tar.xz +Source3871: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqlist.doc.tar.xz +Source3873: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqname.tar.xz +Source3874: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqparbox.tar.xz +Source3875: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqparbox.doc.tar.xz +Source3877: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/errata.tar.xz +Source3878: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/errata.doc.tar.xz +Source3880: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esami.tar.xz +Source3881: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esami.doc.tar.xz +Source3882: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esdiff.tar.xz +Source3883: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esdiff.doc.tar.xz +Source3885: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esint.tar.xz +Source3886: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esint.doc.tar.xz +Source3888: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esint-type1.tar.xz +Source3889: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/esint-type1.doc.tar.xz +Source3890: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etaremune.tar.xz +Source3891: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etaremune.doc.tar.xz +Source3893: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etextools.tar.xz +Source3894: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etextools.doc.tar.xz +Source3896: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etoc.tar.xz +Source3897: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etoc.doc.tar.xz +Source3899: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etoolbox.tar.xz +Source3900: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/etoolbox.doc.tar.xz +Source3901: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eukdate.tar.xz +Source3902: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eukdate.doc.tar.xz +Source3904: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/europasscv.tar.xz +Source3905: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/europasscv.doc.tar.xz +Source3906: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/europecv.tar.xz +Source3907: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/europecv.doc.tar.xz +Source3908: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/everyhook.tar.xz +Source3909: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/everyhook.doc.tar.xz +Source3911: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/everypage.tar.xz +Source3912: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/everypage.doc.tar.xz +Source3914: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exam.tar.xz +Source3915: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exam.doc.tar.xz +Source3916: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exam-n.tar.xz +Source3917: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exam-n.doc.tar.xz +Source3919: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/examdesign.tar.xz +Source3920: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/examdesign.doc.tar.xz +Source3922: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/example.tar.xz +Source3923: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/examplep.tar.xz +Source3924: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/examplep.doc.tar.xz +Source3927: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/excludeonly.tar.xz +Source3928: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/excludeonly.doc.tar.xz +Source3929: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exercise.tar.xz +Source3930: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exercise.doc.tar.xz +Source3932: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exp-testopt.tar.xz +Source3933: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exp-testopt.doc.tar.xz +Source3935: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/expdlist.tar.xz +Source3936: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/expdlist.doc.tar.xz +Source3938: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/export.tar.xz +Source3939: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/export.doc.tar.xz +Source3941: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exsheets.tar.xz +Source3942: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exsheets.doc.tar.xz +Source3943: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exsol.tar.xz +Source3944: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exsol.doc.tar.xz +Source3946: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/extract.tar.xz +Source3947: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/extract.doc.tar.xz +Source3949: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/facsimile.tar.xz +Source3950: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/facsimile.doc.tar.xz +Source3952: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/factura.tar.xz +Source3953: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/factura.doc.tar.xz +Source3955: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancylabel.tar.xz +Source3956: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancylabel.doc.tar.xz +Source3958: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancynum.tar.xz +Source3959: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancynum.doc.tar.xz +Source3961: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancypar.tar.xz +Source3962: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancypar.doc.tar.xz +Source3964: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyslides.tar.xz +Source3965: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancyslides.doc.tar.xz +Source3966: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancytabs.tar.xz +Source3967: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancytabs.doc.tar.xz +Source3969: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancytooltips.tar.xz +Source3970: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fancytooltips.doc.tar.xz +Source3972: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fcolumn.tar.xz +Source3973: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fcolumn.doc.tar.xz +Source3975: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fifo-stack.tar.xz +Source3976: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fifo-stack.doc.tar.xz +Source3978: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/figsize.tar.xz +Source3979: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/figsize.doc.tar.xz +Source3980: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filecontents.tar.xz +Source3981: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filecontents.doc.tar.xz +Source3983: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filedate.tar.xz +Source3984: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filedate.doc.tar.xz +Source3986: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filehook.tar.xz +Source3987: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filehook.doc.tar.xz +Source3989: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fileinfo.tar.xz +Source3990: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fileinfo.doc.tar.xz +Source3992: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filemod.tar.xz +Source3993: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filemod.doc.tar.xz +Source3994: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fink.tar.xz +Source3995: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fink.doc.tar.xz +Source3997: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/finstrut.tar.xz +Source3998: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/finstrut.doc.tar.xz +Source4000: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fithesis.tar.xz +Source4001: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fithesis.doc.tar.xz +Source4003: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixfoot.tar.xz +Source4004: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixfoot.doc.tar.xz +Source4005: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixme.tar.xz +Source4006: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixme.doc.tar.xz +Source4008: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixmetodonotes.tar.xz +Source4009: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixmetodonotes.doc.tar.xz +Source4011: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fjodor.tar.xz +Source4012: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fjodor.doc.tar.xz +Source4013: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flabels.tar.xz +Source4014: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flabels.doc.tar.xz +Source4016: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flacards.tar.xz +Source4017: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flacards.doc.tar.xz +Source4018: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flagderiv.tar.xz +Source4019: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flagderiv.doc.tar.xz +Source4021: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flashcards.tar.xz +Source4022: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flashcards.doc.tar.xz +Source4024: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flashmovie.tar.xz +Source4025: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flashmovie.doc.tar.xz +Source4026: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flipbook.tar.xz +Source4027: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flipbook.doc.tar.xz +Source4028: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flippdf.tar.xz +Source4029: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flippdf.doc.tar.xz +Source4031: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/floatflt.tar.xz +Source4032: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/floatflt.doc.tar.xz +Source4034: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/floatrow.tar.xz +Source4035: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/floatrow.doc.tar.xz +Source4037: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flowfram.tar.xz +Source4038: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/flowfram.doc.tar.xz +Source4040: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fmp.tar.xz +Source4041: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fmp.doc.tar.xz +Source4043: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fmtcount.tar.xz +Source4044: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fmtcount.doc.tar.xz +Source4046: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fn2end.tar.xz +Source4047: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fn2end.doc.tar.xz +Source4048: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fnbreak.tar.xz +Source4049: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fnbreak.doc.tar.xz +Source4051: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fncychap.tar.xz +Source4052: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fncychap.doc.tar.xz +Source4053: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fncylab.tar.xz +Source4054: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fncylab.doc.tar.xz +Source4055: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fnpara.tar.xz +Source4056: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fnpara.doc.tar.xz +Source4057: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fnpct.tar.xz +Source4058: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fnpct.doc.tar.xz +Source4059: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fnumprint.tar.xz +Source4060: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fnumprint.doc.tar.xz +Source4062: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/foilhtml.tar.xz +Source4063: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/foilhtml.doc.tar.xz +Source4065: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontaxes.tar.xz +Source4066: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontaxes.doc.tar.xz +Source4068: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fonttable.tar.xz +Source4069: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fonttable.doc.tar.xz +Source4071: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footmisc.tar.xz +Source4072: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footmisc.doc.tar.xz +Source4074: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footnotebackref.tar.xz +Source4075: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footnotebackref.doc.tar.xz +Source4076: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footnoterange.tar.xz +Source4077: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footnoterange.doc.tar.xz +Source4079: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footnpag.tar.xz +Source4080: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footnpag.doc.tar.xz +Source4082: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forarray.tar.xz +Source4083: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forarray.doc.tar.xz +Source4085: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/foreign.tar.xz +Source4086: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/foreign.doc.tar.xz +Source4088: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forloop.tar.xz +Source4089: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forloop.doc.tar.xz +Source4091: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/formlett.tar.xz +Source4092: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/formlett.doc.tar.xz +Source4093: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/formular.tar.xz +Source4094: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/formular.doc.tar.xz +Source4096: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fragments.tar.xz +Source4097: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fragments.doc.tar.xz +Source4098: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frame.tar.xz +Source4099: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frame.doc.tar.xz +Source4100: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/framed.tar.xz +Source4101: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/framed.doc.tar.xz +Source4102: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frankenstein.tar.xz +Source4103: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frankenstein.doc.tar.xz +Source4105: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frege.tar.xz +Source4106: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frege.doc.tar.xz +Source4107: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ftcap.tar.xz +Source4108: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ftcap.doc.tar.xz +Source4109: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ftnxtra.tar.xz +Source4110: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ftnxtra.doc.tar.xz +Source4112: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fullblck.tar.xz +Source4113: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fullblck.doc.tar.xz +Source4115: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fullminipage.tar.xz +Source4116: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fullminipage.doc.tar.xz +Source4118: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fullwidth.tar.xz +Source4119: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fullwidth.doc.tar.xz +Source4120: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fundus-calligra.tar.xz +Source4121: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fundus-calligra.doc.tar.xz +Source4123: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fundus-cyr.tar.xz +Source4124: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fundus-sueterlin.tar.xz +Source4125: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fundus-sueterlin.doc.tar.xz +Source4127: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fwlw.tar.xz +Source4128: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fwlw.doc.tar.xz +Source4129: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/g-brief.tar.xz +Source4130: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/g-brief.doc.tar.xz +Source4132: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gauss.tar.xz +Source4133: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gauss.doc.tar.xz +Source4134: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gcard.tar.xz +Source4135: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gcard.doc.tar.xz +Source4136: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gcite.tar.xz +Source4137: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gcite.doc.tar.xz +Source4139: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gender.tar.xz +Source4140: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gender.doc.tar.xz +Source4142: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/genmpage.tar.xz +Source4143: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/genmpage.doc.tar.xz +Source4145: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/getfiledate.tar.xz +Source4146: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/getfiledate.doc.tar.xz +Source4147: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ginpenc.tar.xz +Source4148: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ginpenc.doc.tar.xz +Source4150: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gitinfo.tar.xz +Source4151: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gitinfo.doc.tar.xz +Source4152: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gitinfo2.tar.xz +Source4153: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gitinfo2.doc.tar.xz +Source4154: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gloss.tar.xz +Source4155: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gloss.doc.tar.xz +Source4159: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-danish.tar.xz +Source4160: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-danish.doc.tar.xz +Source4162: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-dutch.tar.xz +Source4163: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-dutch.doc.tar.xz +Source4165: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-english.tar.xz +Source4166: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-english.doc.tar.xz +Source4168: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-french.tar.xz +Source4169: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-french.doc.tar.xz +Source4171: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-german.tar.xz +Source4172: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-german.doc.tar.xz +Source4174: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-irish.tar.xz +Source4175: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-irish.doc.tar.xz +Source4177: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-italian.tar.xz +Source4178: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-italian.doc.tar.xz +Source4180: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-magyar.tar.xz +Source4181: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-magyar.doc.tar.xz +Source4183: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-polish.tar.xz +Source4184: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-polish.doc.tar.xz +Source4186: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-portuges.tar.xz +Source4187: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-portuges.doc.tar.xz +Source4189: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-serbian.tar.xz +Source4190: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-serbian.doc.tar.xz +Source4192: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-spanish.tar.xz +Source4193: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-spanish.doc.tar.xz +Source4195: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmdoc.tar.xz +Source4196: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmdoc.doc.tar.xz +Source4197: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmdoc-enhance.tar.xz +Source4198: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmdoc-enhance.doc.tar.xz +Source4200: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmiflink.tar.xz +Source4201: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmiflink.doc.tar.xz +Source4202: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmutils.tar.xz +Source4203: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmutils.doc.tar.xz +Source4204: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmverb.tar.xz +Source4205: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmverb.doc.tar.xz +Source4206: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphbox.tar.xz +Source4207: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphbox.doc.tar.xz +Source4209: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphicx-psmin.tar.xz +Source4210: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphicx-psmin.doc.tar.xz +Source4212: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphicxbox.tar.xz +Source4213: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphicxbox.doc.tar.xz +Source4215: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grfpaste.tar.xz +Source4216: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grfpaste.doc.tar.xz +Source4217: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grid.tar.xz +Source4218: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grid.doc.tar.xz +Source4220: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grid-system.tar.xz +Source4221: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grid-system.doc.tar.xz +Source4222: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gridset.tar.xz +Source4223: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gridset.doc.tar.xz +Source4225: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gtl.tar.xz +Source4226: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gtl.doc.tar.xz +Source4228: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/guitlogo.tar.xz +Source4229: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/guitlogo.doc.tar.xz +Source4231: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/handout.tar.xz +Source4232: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/handout.doc.tar.xz +Source4233: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hang.tar.xz +Source4234: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hang.doc.tar.xz +Source4235: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hanging.tar.xz +Source4236: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hanging.doc.tar.xz +Source4238: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hardwrap.tar.xz +Source4239: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hardwrap.doc.tar.xz +Source4241: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harnon-cv.tar.xz +Source4242: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harnon-cv.doc.tar.xz +Source4243: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harpoon.tar.xz +Source4244: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harpoon.doc.tar.xz +Source4245: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hc.tar.xz +Source4246: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hc.doc.tar.xz +Source4248: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/he-she.tar.xz +Source4249: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/he-she.doc.tar.xz +Source4250: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hhtensor.tar.xz +Source4251: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hhtensor.doc.tar.xz +Source4253: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/histogr.tar.xz +Source4254: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/histogr.doc.tar.xz +Source4256: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hitec.tar.xz +Source4257: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hitec.doc.tar.xz +Source4258: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hletter.tar.xz +Source4259: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hletter.doc.tar.xz +Source4260: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hpsdiss.tar.xz +Source4261: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hpsdiss.doc.tar.xz +Source4263: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hrefhide.tar.xz +Source4264: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hrefhide.doc.tar.xz +Source4266: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hvindex.tar.xz +Source4267: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hvindex.doc.tar.xz +Source4268: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hypdvips.tar.xz +Source4269: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hypdvips.doc.tar.xz +Source4270: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyper.tar.xz +Source4271: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyper.doc.tar.xz +Source4273: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hypernat.tar.xz +Source4274: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hypernat.doc.tar.xz +Source4275: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyperref-docsrc.doc.tar.xz +Source4276: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyperxmp.tar.xz +Source4277: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyperxmp.doc.tar.xz +Source4279: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphenat.tar.xz +Source4280: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphenat.doc.tar.xz +Source4282: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/idxcmds.tar.xz +Source4283: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/idxcmds.doc.tar.xz +Source4284: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/idxlayout.tar.xz +Source4285: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/idxlayout.doc.tar.xz +Source4287: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifmslide.tar.xz +Source4288: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifmslide.doc.tar.xz +Source4289: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifnextok.tar.xz +Source4290: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifnextok.doc.tar.xz +Source4292: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifoddpage.tar.xz +Source4293: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifoddpage.doc.tar.xz +Source4295: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifplatform.tar.xz +Source4296: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifplatform.doc.tar.xz +Source4298: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifthenx.tar.xz +Source4299: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifthenx.doc.tar.xz +Source4300: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iitem.tar.xz +Source4301: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iitem.doc.tar.xz +Source4303: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/image-gallery.tar.xz +Source4304: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/image-gallery.doc.tar.xz +Source4305: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imakeidx.tar.xz +Source4306: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imakeidx.doc.tar.xz +Source4308: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/import.tar.xz +Source4309: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/import.doc.tar.xz +Source4310: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/incgraph.tar.xz +Source4311: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/incgraph.doc.tar.xz +Source4312: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/indextools.tar.xz +Source4313: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/indextools.doc.tar.xz +Source4315: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inlinedef.tar.xz +Source4316: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inlinedef.doc.tar.xz +Source4318: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inputtrc.tar.xz +Source4319: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inputtrc.doc.tar.xz +Source4321: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interactiveworkbook.tar.xz +Source4322: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interactiveworkbook.doc.tar.xz +Source4323: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interfaces.tar.xz +Source4324: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interfaces.doc.tar.xz +Source4326: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inversepath.tar.xz +Source4327: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/inversepath.doc.tar.xz +Source4329: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/invoice.tar.xz +Source4330: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/invoice.doc.tar.xz +Source4331: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iso.tar.xz +Source4332: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iso.doc.tar.xz +Source4334: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iso10303.tar.xz +Source4335: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iso10303.doc.tar.xz +Source4337: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isodate.tar.xz +Source4338: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isodate.doc.tar.xz +Source4340: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isodoc.tar.xz +Source4341: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isodoc.doc.tar.xz +Source4343: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isonums.tar.xz +Source4344: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isonums.doc.tar.xz +Source4345: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isorot.tar.xz +Source4346: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isorot.doc.tar.xz +Source4348: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isotope.tar.xz +Source4349: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isotope.doc.tar.xz +Source4351: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/issuulinks.tar.xz +Source4352: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/issuulinks.doc.tar.xz +Source4354: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iwhdp.tar.xz +Source4355: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iwhdp.doc.tar.xz +Source4356: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jlabels.tar.xz +Source4357: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jlabels.doc.tar.xz +Source4358: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jslectureplanner.tar.xz +Source4359: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jslectureplanner.doc.tar.xz +Source4360: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jumplines.tar.xz +Source4361: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jumplines.doc.tar.xz +Source4362: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jvlisting.tar.xz +Source4363: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jvlisting.doc.tar.xz +Source4365: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kantlipsum.tar.xz +Source4366: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kantlipsum.doc.tar.xz +Source4368: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kerntest.tar.xz +Source4369: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kerntest.doc.tar.xz +Source4371: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keycommand.tar.xz +Source4372: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keycommand.doc.tar.xz +Source4374: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keyreader.tar.xz +Source4375: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keyreader.doc.tar.xz +Source4376: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keystroke.tar.xz +Source4377: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keystroke.doc.tar.xz +Source4378: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keyval2e.tar.xz +Source4379: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keyval2e.doc.tar.xz +Source4380: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kix.tar.xz +Source4381: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kix.doc.tar.xz +Source4382: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/koma-moderncvclassic.tar.xz +Source4383: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/koma-moderncvclassic.doc.tar.xz +Source4384: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/koma-script-sfs.tar.xz +Source4385: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/koma-script-sfs.doc.tar.xz +Source4386: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/komacv.tar.xz +Source4387: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/komacv.doc.tar.xz +Source4389: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ktv-texdata.tar.xz +Source4390: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ktv-texdata.doc.tar.xz +Source4395: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/labbook.tar.xz +Source4396: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/labbook.doc.tar.xz +Source4401: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/labels.tar.xz +Source4402: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/labels.doc.tar.xz +Source4404: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lastpackage.tar.xz +Source4405: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lastpackage.doc.tar.xz +Source4407: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lastpage.tar.xz +Source4408: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lastpage.doc.tar.xz +Source4410: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexdemo.tar.xz +Source4411: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexdemo.doc.tar.xz +Source4413: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/layouts.tar.xz +Source4414: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/layouts.doc.tar.xz +Source4416: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lazylist.tar.xz +Source4417: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lazylist.doc.tar.xz +Source4418: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lcd.tar.xz +Source4419: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lcd.doc.tar.xz +Source4421: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lcg.tar.xz +Source4422: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lcg.doc.tar.xz +Source4424: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leading.tar.xz +Source4425: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leading.doc.tar.xz +Source4427: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leaflet.tar.xz +Source4428: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leaflet.doc.tar.xz +Source4430: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leftidx.tar.xz +Source4431: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leftidx.doc.tar.xz +Source4433: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lengthconvert.tar.xz +Source4434: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lengthconvert.doc.tar.xz +Source4436: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lettre.tar.xz +Source4437: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lettre.doc.tar.xz +Source4438: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lettrine.tar.xz +Source4439: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lettrine.doc.tar.xz +Source4441: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lewis.tar.xz +Source4442: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lewis.doc.tar.xz +Source4443: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lhelp.tar.xz +Source4444: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lhelp.doc.tar.xz +Source4446: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libgreek.tar.xz +Source4447: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libgreek.doc.tar.xz +Source4449: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/limap.tar.xz +Source4451: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/linegoal.tar.xz +Source4452: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/linegoal.doc.tar.xz +Source4454: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lipsum.tar.xz +Source4455: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lipsum.doc.tar.xz +Source4457: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lisp-on-tex.tar.xz +Source4458: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lisp-on-tex.doc.tar.xz +Source4459: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listing.tar.xz +Source4460: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listing.doc.tar.xz +Source4461: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listlbls.tar.xz +Source4462: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listlbls.doc.tar.xz +Source4464: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listliketab.tar.xz +Source4465: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listliketab.doc.tar.xz +Source4467: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listofsymbols.tar.xz +Source4468: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listofsymbols.doc.tar.xz +Source4470: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lkproof.tar.xz +Source4471: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lkproof.doc.tar.xz +Source4472: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lmake.tar.xz +Source4473: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lmake.doc.tar.xz +Source4475: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/locality.tar.xz +Source4476: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/locality.doc.tar.xz +Source4478: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/localloc.tar.xz +Source4479: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/localloc.doc.tar.xz +Source4481: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logbox.tar.xz +Source4482: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logbox.doc.tar.xz +Source4484: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logical-markup-utils.tar.xz +Source4485: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logical-markup-utils.doc.tar.xz +Source4486: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logpap.tar.xz +Source4487: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logpap.doc.tar.xz +Source4489: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/longfigure.tar.xz +Source4490: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/longfigure.doc.tar.xz +Source4492: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/longnamefilelist.tar.xz +Source4493: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/longnamefilelist.doc.tar.xz +Source4495: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/loops.tar.xz +Source4496: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/loops.doc.tar.xz +Source4497: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lsc.tar.xz +Source4498: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lsc.doc.tar.xz +Source4499: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lstaddons.tar.xz +Source4500: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lstaddons.doc.tar.xz +Source4502: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lt3graph.tar.xz +Source4503: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lt3graph.doc.tar.xz +Source4504: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltablex.tar.xz +Source4505: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltablex.doc.tar.xz +Source4506: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltabptch.tar.xz +Source4507: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltabptch.doc.tar.xz +Source4508: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxdockit.tar.xz +Source4509: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxdockit.doc.tar.xz +Source4510: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxindex.tar.xz +Source4511: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxindex.doc.tar.xz +Source4513: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxkeys.tar.xz +Source4514: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxkeys.doc.tar.xz +Source4515: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxnew.tar.xz +Source4516: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxnew.doc.tar.xz +Source4518: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxtools.tar.xz +Source4519: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltxtools.doc.tar.xz +Source4520: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/macroswap.tar.xz +Source4521: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/macroswap.doc.tar.xz +Source4523: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/magaz.tar.xz +Source4524: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/magaz.doc.tar.xz +Source4525: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mailing.tar.xz +Source4526: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mailing.doc.tar.xz +Source4528: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mailmerge.tar.xz +Source4529: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mailmerge.doc.tar.xz +Source4531: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makebarcode.tar.xz +Source4532: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makebarcode.doc.tar.xz +Source4533: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makebox.tar.xz +Source4534: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makebox.doc.tar.xz +Source4536: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makecell.tar.xz +Source4537: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makecell.doc.tar.xz +Source4539: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makecirc.tar.xz +Source4540: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makecirc.doc.tar.xz +Source4541: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makecmds.tar.xz +Source4542: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makecmds.doc.tar.xz +Source4547: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makeglos.tar.xz +Source4548: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makeglos.doc.tar.xz +Source4549: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mandi.tar.xz +Source4550: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mandi.doc.tar.xz +Source4552: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/manfnt.tar.xz +Source4554: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/manuscript.tar.xz +Source4555: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/manuscript.doc.tar.xz +Source4557: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/marginfix.tar.xz +Source4558: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/marginfix.doc.tar.xz +Source4560: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/marginnote.tar.xz +Source4561: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/marginnote.doc.tar.xz +Source4563: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathalfa.tar.xz +Source4564: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathalfa.doc.tar.xz +Source4565: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathastext.tar.xz +Source4566: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathastext.doc.tar.xz +Source4568: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathexam.tar.xz +Source4569: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathexam.doc.tar.xz +Source4571: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/maybemath.tar.xz +Source4572: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/maybemath.doc.tar.xz +Source4573: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mbenotes.tar.xz +Source4574: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mbenotes.doc.tar.xz +Source4575: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcaption.tar.xz +Source4576: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcaption.doc.tar.xz +Source4578: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mceinleger.tar.xz +Source4579: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mceinleger.doc.tar.xz +Source4580: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcite.tar.xz +Source4581: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcite.doc.tar.xz +Source4583: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mciteplus.tar.xz +Source4584: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mciteplus.doc.tar.xz +Source4585: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mdframed.tar.xz +Source4586: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mdframed.doc.tar.xz +Source4588: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/media9.tar.xz +Source4589: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/media9.doc.tar.xz +Source4591: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/medstarbeamer.tar.xz +Source4592: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/medstarbeamer.doc.tar.xz +Source4593: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/meetingmins.tar.xz +Source4594: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/meetingmins.doc.tar.xz +Source4596: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/memexsupp.tar.xz +Source4597: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/memexsupp.doc.tar.xz +Source4598: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/memory.tar.xz +Source4599: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/memory.doc.tar.xz +Source4601: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/menu.tar.xz +Source4602: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/menu.doc.tar.xz +Source4604: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/menukeys.tar.xz +Source4605: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/menukeys.doc.tar.xz +Source4607: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/method.tar.xz +Source4608: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/method.doc.tar.xz +Source4610: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metre.tar.xz +Source4611: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metre.doc.tar.xz +Source4613: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mfirstuc.tar.xz +Source4614: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mfirstuc.doc.tar.xz +Source4616: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mftinc.tar.xz +Source4617: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mftinc.doc.tar.xz +Source4619: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/midpage.tar.xz +Source4620: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/midpage.doc.tar.xz +Source4621: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minibox.tar.xz +Source4622: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minibox.doc.tar.xz +Source4624: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minifp.tar.xz +Source4625: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minifp.doc.tar.xz +Source4627: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minipage-marginpar.tar.xz +Source4628: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minipage-marginpar.doc.tar.xz +Source4630: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minitoc.tar.xz +Source4631: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minitoc.doc.tar.xz +Source4632: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minorrevision.tar.xz +Source4633: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minorrevision.doc.tar.xz +Source4634: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minted.tar.xz +Source4635: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minted.doc.tar.xz +Source4637: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minutes.tar.xz +Source4638: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/minutes.doc.tar.xz +Source4640: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mla-paper.tar.xz +Source4641: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mla-paper.doc.tar.xz +Source4642: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mlist.tar.xz +Source4643: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mlist.doc.tar.xz +Source4645: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mmap.tar.xz +Source4646: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mmap.doc.tar.xz +Source4647: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mnotes.tar.xz +Source4648: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mnotes.doc.tar.xz +Source4650: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moderncv.tar.xz +Source4651: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moderncv.doc.tar.xz +Source4652: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moderntimeline.tar.xz +Source4653: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moderntimeline.doc.tar.xz +Source4655: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/modref.tar.xz +Source4656: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/modref.doc.tar.xz +Source4658: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/modroman.tar.xz +Source4659: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/modroman.doc.tar.xz +Source4661: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/monofill.tar.xz +Source4662: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/monofill.doc.tar.xz +Source4664: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moreenum.tar.xz +Source4665: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moreenum.doc.tar.xz +Source4666: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/morefloats.tar.xz +Source4667: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/morefloats.doc.tar.xz +Source4669: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/morehype.tar.xz +Source4670: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/morehype.doc.tar.xz +Source4672: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moresize.tar.xz +Source4673: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moresize.doc.tar.xz +Source4675: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moreverb.tar.xz +Source4676: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moreverb.doc.tar.xz +Source4678: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/morewrites.tar.xz +Source4679: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/morewrites.doc.tar.xz +Source4683: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mparhack.tar.xz +Source4684: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mparhack.doc.tar.xz +Source4686: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/msc.tar.xz +Source4687: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/msc.doc.tar.xz +Source4688: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/msg.tar.xz +Source4689: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/msg.doc.tar.xz +Source4691: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mslapa.tar.xz +Source4692: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mslapa.doc.tar.xz +Source4693: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mtgreek.tar.xz +Source4694: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mtgreek.doc.tar.xz +Source4696: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multenum.tar.xz +Source4697: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multenum.doc.tar.xz +Source4698: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multiaudience.tar.xz +Source4699: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multiaudience.doc.tar.xz +Source4701: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multibbl.tar.xz +Source4702: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multibbl.doc.tar.xz +Source4704: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multicap.tar.xz +Source4705: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multicap.doc.tar.xz +Source4707: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multienv.tar.xz +Source4708: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multienv.doc.tar.xz +Source4710: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multiexpand.tar.xz +Source4711: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multiexpand.doc.tar.xz +Source4713: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multirow.tar.xz +Source4714: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multirow.doc.tar.xz +Source4715: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mversion.tar.xz +Source4716: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mversion.doc.tar.xz +Source4718: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mwe.tar.xz +Source4719: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mwe.doc.tar.xz +Source4721: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mweights.tar.xz +Source4722: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mweights.doc.tar.xz +Source4723: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mycv.tar.xz +Source4724: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mycv.doc.tar.xz +Source4726: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mylatexformat.tar.xz +Source4727: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mylatexformat.doc.tar.xz +Source4729: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nag.tar.xz +Source4730: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nag.doc.tar.xz +Source4732: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nameauth.tar.xz +Source4733: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nameauth.doc.tar.xz +Source4735: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/namespc.tar.xz +Source4736: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/namespc.doc.tar.xz +Source4738: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ncclatex.tar.xz +Source4739: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ncclatex.doc.tar.xz +Source4740: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/needspace.tar.xz +Source4741: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/needspace.doc.tar.xz +Source4743: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nestquot.tar.xz +Source4744: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newcommand.doc.tar.xz +Source4745: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newenviron.tar.xz +Source4746: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newenviron.doc.tar.xz +Source4747: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newfile.tar.xz +Source4748: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newfile.doc.tar.xz +Source4750: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newlfm.tar.xz +Source4751: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newlfm.doc.tar.xz +Source4753: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newspaper.tar.xz +Source4754: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newspaper.doc.tar.xz +Source4756: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newunicodechar.tar.xz +Source4757: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newunicodechar.doc.tar.xz +Source4759: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newvbtm.tar.xz +Source4760: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newvbtm.doc.tar.xz +Source4762: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newverbs.tar.xz +Source4763: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newverbs.doc.tar.xz +Source4765: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nextpage.tar.xz +Source4766: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nfssext-cfr.tar.xz +Source4767: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nfssext-cfr.doc.tar.xz +Source4768: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nicefilelist.tar.xz +Source4769: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nicefilelist.doc.tar.xz +Source4771: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/niceframe.tar.xz +Source4772: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/niceframe.doc.tar.xz +Source4774: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nicetext.tar.xz +Source4775: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nicetext.doc.tar.xz +Source4777: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nlctdoc.tar.xz +Source4778: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nlctdoc.doc.tar.xz +Source4779: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/noconflict.tar.xz +Source4780: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/noconflict.doc.tar.xz +Source4781: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/noindentafter.tar.xz +Source4782: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/noindentafter.doc.tar.xz +Source4783: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/noitcrul.tar.xz +Source4784: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/noitcrul.doc.tar.xz +Source4786: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nolbreaks.tar.xz +Source4787: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nolbreaks.doc.tar.xz +Source4788: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nomencl.tar.xz +Source4789: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nomencl.doc.tar.xz +Source4791: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nomentbl.tar.xz +Source4792: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nomentbl.doc.tar.xz +Source4794: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nonfloat.tar.xz +Source4795: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nonfloat.doc.tar.xz +Source4797: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nonumonpart.tar.xz +Source4798: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nonumonpart.doc.tar.xz +Source4800: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nopageno.tar.xz +Source4801: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nopageno.doc.tar.xz +Source4802: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notes.tar.xz +Source4803: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notes.doc.tar.xz +Source4805: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notoccite.tar.xz +Source4806: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notoccite.doc.tar.xz +Source4807: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nowidow.tar.xz +Source4808: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nowidow.doc.tar.xz +Source4810: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nox.tar.xz +Source4811: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nox.doc.tar.xz +Source4812: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ntheorem.tar.xz +Source4813: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ntheorem.doc.tar.xz +Source4815: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numberedblock.tar.xz +Source4816: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numberedblock.doc.tar.xz +Source4817: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numname.tar.xz +Source4818: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numname.doc.tar.xz +Source4819: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numprint.tar.xz +Source4820: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numprint.doc.tar.xz +Source4822: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocg-p.tar.xz +Source4823: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocg-p.doc.tar.xz +Source4824: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocgx.tar.xz +Source4825: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocgx.doc.tar.xz +Source4827: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocgx2.tar.xz +Source4828: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocgx2.doc.tar.xz +Source4829: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocr-latex.tar.xz +Source4830: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ocr-latex.doc.tar.xz +Source4831: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/octavo.tar.xz +Source4832: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/octavo.doc.tar.xz +Source4834: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oldstyle.tar.xz +Source4835: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oldstyle.doc.tar.xz +Source4837: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/onlyamsmath.tar.xz +Source4838: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/onlyamsmath.doc.tar.xz +Source4840: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/opcit.tar.xz +Source4841: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/opcit.doc.tar.xz +Source4843: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/optional.tar.xz +Source4844: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/optional.doc.tar.xz +Source4845: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/outline.tar.xz +Source4846: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/outline.doc.tar.xz +Source4847: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/outliner.tar.xz +Source4848: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/outliner.doc.tar.xz +Source4849: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/outlines.tar.xz +Source4850: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/outlines.doc.tar.xz +Source4851: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/overpic.tar.xz +Source4852: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/overpic.doc.tar.xz +Source4853: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pagecolor.tar.xz +Source4854: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pagecolor.doc.tar.xz +Source4856: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pagecont.tar.xz +Source4857: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pagecont.doc.tar.xz +Source4859: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pagenote.tar.xz +Source4860: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pagenote.doc.tar.xz +Source4862: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pagerange.tar.xz +Source4863: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pagerange.doc.tar.xz +Source4864: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pageslts.tar.xz +Source4865: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pageslts.doc.tar.xz +Source4867: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paper.tar.xz +Source4868: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paper.doc.tar.xz +Source4870: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/papercdcase.tar.xz +Source4871: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/papercdcase.doc.tar.xz +Source4873: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/papermas.tar.xz +Source4874: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/papermas.doc.tar.xz +Source4876: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/papertex.tar.xz +Source4877: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/papertex.doc.tar.xz +Source4879: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paracol.tar.xz +Source4880: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paracol.doc.tar.xz +Source4882: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paresse.tar.xz +Source4883: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/paresse.doc.tar.xz +Source4885: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parnotes.tar.xz +Source4886: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parnotes.doc.tar.xz +Source4887: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parselines.tar.xz +Source4888: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parselines.doc.tar.xz +Source4890: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pas-cours.tar.xz +Source4891: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pas-cours.doc.tar.xz +Source4892: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pas-cv.tar.xz +Source4893: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pas-cv.doc.tar.xz +Source4894: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pas-tableur.tar.xz +Source4895: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pas-tableur.doc.tar.xz +Source4896: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/patchcmd.tar.xz +Source4897: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/patchcmd.doc.tar.xz +Source4899: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pauldoc.tar.xz +Source4900: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pauldoc.doc.tar.xz +Source4902: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pawpict.tar.xz +Source4903: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pawpict.doc.tar.xz +Source4908: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pbox.tar.xz +Source4909: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pbox.doc.tar.xz +Source4911: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pbsheet.tar.xz +Source4912: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pbsheet.doc.tar.xz +Source4914: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdf14.tar.xz +Source4915: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdf14.doc.tar.xz +Source4917: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfcomment.tar.xz +Source4918: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfcomment.doc.tar.xz +Source4919: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfcprot.tar.xz +Source4920: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfcprot.doc.tar.xz +Source4922: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfmarginpar.tar.xz +Source4923: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfmarginpar.doc.tar.xz +Source4924: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfpagediff.tar.xz +Source4925: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfpagediff.doc.tar.xz +Source4926: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfscreen.tar.xz +Source4927: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfscreen.doc.tar.xz +Source4928: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfslide.tar.xz +Source4929: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfslide.doc.tar.xz +Source4930: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfsync.tar.xz +Source4931: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfsync.doc.tar.xz +Source4932: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfwin.tar.xz +Source4933: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfwin.doc.tar.xz +Source4934: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfx.tar.xz +Source4935: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfx.doc.tar.xz +Source4937: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pecha.tar.xz +Source4938: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pecha.doc.tar.xz +Source4942: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/permute.tar.xz +Source4943: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/permute.doc.tar.xz +Source4945: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/petiteannonce.tar.xz +Source4946: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/petiteannonce.doc.tar.xz +Source4947: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/philex.tar.xz +Source4948: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/philex.doc.tar.xz +Source4949: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/photo.tar.xz +Source4950: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/photo.doc.tar.xz +Source4952: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/piff.tar.xz +Source4953: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/piff.doc.tar.xz +Source4954: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pkgloader.tar.xz +Source4955: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pkgloader.doc.tar.xz +Source4956: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plantslabels.tar.xz +Source4957: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plantslabels.doc.tar.xz +Source4958: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plates.tar.xz +Source4959: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plates.doc.tar.xz +Source4960: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plweb.tar.xz +Source4961: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plweb.doc.tar.xz +Source4963: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polynom.tar.xz +Source4964: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polynom.doc.tar.xz +Source4966: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polynomial.tar.xz +Source4967: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polynomial.doc.tar.xz +Source4969: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polytable.tar.xz +Source4970: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polytable.doc.tar.xz +Source4972: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/postcards.tar.xz +Source4973: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/postcards.doc.tar.xz +Source4974: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poster-mac.tar.xz +Source4975: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poster-mac.doc.tar.xz +Source4976: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ppr-prv.tar.xz +Source4977: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ppr-prv.doc.tar.xz +Source4979: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/preprint.tar.xz +Source4980: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/preprint.doc.tar.xz +Source4982: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pressrelease.tar.xz +Source4983: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pressrelease.doc.tar.xz +Source4985: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prettyref.tar.xz +Source4986: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prettyref.doc.tar.xz +Source4988: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/printlen.tar.xz +Source4989: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/printlen.doc.tar.xz +Source4990: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/probsoln.tar.xz +Source4991: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/probsoln.doc.tar.xz +Source4993: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/program.tar.xz +Source4994: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/program.doc.tar.xz +Source4995: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/progress.tar.xz +Source4996: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/progress.doc.tar.xz +Source4997: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/progressbar.tar.xz +Source4998: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/progressbar.doc.tar.xz +Source4999: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/proofread.tar.xz +Source5000: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/proofread.doc.tar.xz +Source5002: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/properties.tar.xz +Source5003: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/properties.doc.tar.xz +Source5004: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prosper.tar.xz +Source5005: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prosper.doc.tar.xz +Source5006: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/protex.tar.xz +Source5007: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/protex.doc.tar.xz +Source5008: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/protocol.tar.xz +Source5009: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/protocol.doc.tar.xz +Source5011: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psfragx.tar.xz +Source5012: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psfragx.doc.tar.xz +Source5017: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstool.tar.xz +Source5018: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstool.doc.tar.xz +Source5020: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxgreeks.tar.xz +Source5021: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxgreeks.doc.tar.xz +Source5023: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/python.tar.xz +Source5024: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/python.doc.tar.xz +Source5025: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qcm.tar.xz +Source5026: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qcm.doc.tar.xz +Source5028: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qstest.tar.xz +Source5029: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qstest.doc.tar.xz +Source5031: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qsymbols.tar.xz +Source5032: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/qsymbols.doc.tar.xz +Source5034: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quotchap.tar.xz +Source5035: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quotchap.doc.tar.xz +Source5037: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quoting.tar.xz +Source5038: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quoting.doc.tar.xz +Source5040: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quotmark.tar.xz +Source5041: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quotmark.doc.tar.xz +Source5043: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ran_toks.tar.xz +Source5044: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ran_toks.doc.tar.xz +Source5046: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/randtext.tar.xz +Source5047: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/randtext.doc.tar.xz +Source5048: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rccol.tar.xz +Source5049: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rccol.doc.tar.xz +Source5051: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rcs-multi.tar.xz +Source5052: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rcs-multi.doc.tar.xz +Source5054: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rcsinfo.tar.xz +Source5055: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rcsinfo.doc.tar.xz +Source5057: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/readarray.tar.xz +Source5058: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/readarray.doc.tar.xz +Source5059: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/realboxes.tar.xz +Source5060: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/realboxes.doc.tar.xz +Source5062: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/recipe.tar.xz +Source5063: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/recipe.doc.tar.xz +Source5064: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/recipebook.tar.xz +Source5065: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/recipebook.doc.tar.xz +Source5066: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/recipecard.tar.xz +Source5067: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/recipecard.doc.tar.xz +Source5069: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rectopma.tar.xz +Source5070: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rectopma.doc.tar.xz +Source5071: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/refcheck.tar.xz +Source5072: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/refcheck.doc.tar.xz +Source5073: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/refenums.tar.xz +Source5074: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/refenums.doc.tar.xz +Source5075: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/reflectgraphics.tar.xz +Source5076: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/reflectgraphics.doc.tar.xz +Source5078: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/refman.tar.xz +Source5079: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/refman.doc.tar.xz +Source5081: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/refstyle.tar.xz +Source5082: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/refstyle.doc.tar.xz +Source5084: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/regcount.tar.xz +Source5085: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/regcount.doc.tar.xz +Source5087: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/regexpatch.tar.xz +Source5088: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/regexpatch.doc.tar.xz +Source5090: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/register.tar.xz +Source5091: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/register.doc.tar.xz +Source5093: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/regstats.tar.xz +Source5094: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/regstats.doc.tar.xz +Source5096: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/relenc.tar.xz +Source5097: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/relenc.doc.tar.xz +Source5099: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/relsize.tar.xz +Source5100: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/relsize.doc.tar.xz +Source5101: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/repeatindex.tar.xz +Source5102: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/repeatindex.doc.tar.xz +Source5103: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/repltext.tar.xz +Source5104: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/repltext.doc.tar.xz +Source5106: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rjlparshap.tar.xz +Source5107: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rjlparshap.doc.tar.xz +Source5109: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rlepsf.tar.xz +Source5110: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rlepsf.doc.tar.xz +Source5111: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rmpage.tar.xz +Source5112: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rmpage.doc.tar.xz +Source5113: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/robustcommand.tar.xz +Source5114: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/robustcommand.doc.tar.xz +Source5116: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/robustindex.tar.xz +Source5117: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/robustindex.doc.tar.xz +Source5118: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romanbar.tar.xz +Source5119: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romanbar.doc.tar.xz +Source5121: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romanbarpagenumber.tar.xz +Source5122: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romanbarpagenumber.doc.tar.xz +Source5124: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romanneg.tar.xz +Source5125: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romanneg.doc.tar.xz +Source5126: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romannum.tar.xz +Source5127: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/romannum.doc.tar.xz +Source5129: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rotfloat.tar.xz +Source5130: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rotfloat.doc.tar.xz +Source5132: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rotpages.tar.xz +Source5133: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rotpages.doc.tar.xz +Source5134: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/roundbox.tar.xz +Source5135: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/roundbox.doc.tar.xz +Source5136: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rterface.tar.xz +Source5137: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rterface.doc.tar.xz +Source5138: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rtkinenc.tar.xz +Source5139: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rtkinenc.doc.tar.xz +Source5141: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rulercompass.tar.xz +Source5142: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rulercompass.doc.tar.xz +Source5144: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rvwrite.tar.xz +Source5145: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rvwrite.doc.tar.xz +Source5146: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/savefnmark.tar.xz +Source5147: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/savefnmark.doc.tar.xz +Source5149: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/savesym.tar.xz +Source5150: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/savetrees.tar.xz +Source5151: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/savetrees.doc.tar.xz +Source5153: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scale.tar.xz +Source5154: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scale.doc.tar.xz +Source5156: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scalebar.tar.xz +Source5157: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scalebar.doc.tar.xz +Source5159: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scalerel.tar.xz +Source5160: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scalerel.doc.tar.xz +Source5161: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scanpages.tar.xz +Source5162: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scanpages.doc.tar.xz +Source5163: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sdrt.tar.xz +Source5164: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sdrt.doc.tar.xz +Source5165: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/secdot.tar.xz +Source5166: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/secdot.doc.tar.xz +Source5167: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sectionbox.tar.xz +Source5168: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sectionbox.doc.tar.xz +Source5169: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sectsty.tar.xz +Source5170: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sectsty.doc.tar.xz +Source5172: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seealso.tar.xz +Source5173: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seealso.doc.tar.xz +Source5175: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/selectp.tar.xz +Source5176: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/selectp.doc.tar.xz +Source5177: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/semantic.tar.xz +Source5178: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/semantic.doc.tar.xz +Source5180: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/semioneside.tar.xz +Source5181: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/semioneside.doc.tar.xz +Source5183: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/semproc.tar.xz +Source5184: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/semproc.doc.tar.xz +Source5186: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sepfootnotes.tar.xz +Source5187: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sepfootnotes.doc.tar.xz +Source5188: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seqsplit.tar.xz +Source5189: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seqsplit.doc.tar.xz +Source5191: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sf298.tar.xz +Source5192: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sf298.doc.tar.xz +Source5194: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sffms.tar.xz +Source5195: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sffms.doc.tar.xz +Source5197: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sfmath.tar.xz +Source5198: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shadethm.tar.xz +Source5199: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shadethm.doc.tar.xz +Source5200: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shadow.tar.xz +Source5201: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shadow.doc.tar.xz +Source5202: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shadowtext.tar.xz +Source5203: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shadowtext.doc.tar.xz +Source5204: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shapepar.tar.xz +Source5205: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shapepar.doc.tar.xz +Source5206: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shdoc.tar.xz +Source5207: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shdoc.doc.tar.xz +Source5209: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shipunov.tar.xz +Source5210: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shipunov.doc.tar.xz +Source5211: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shorttoc.tar.xz +Source5212: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shorttoc.doc.tar.xz +Source5214: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/show2e.tar.xz +Source5215: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/show2e.doc.tar.xz +Source5217: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showcharinbox.tar.xz +Source5218: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showcharinbox.doc.tar.xz +Source5220: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showdim.tar.xz +Source5221: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showdim.doc.tar.xz +Source5222: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showexpl.tar.xz +Source5223: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showexpl.doc.tar.xz +Source5225: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showlabels.tar.xz +Source5226: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showlabels.doc.tar.xz +Source5228: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sidecap.tar.xz +Source5229: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sidecap.doc.tar.xz +Source5231: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sidenotes.tar.xz +Source5232: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sidenotes.doc.tar.xz +Source5234: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/silence.tar.xz +Source5235: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/silence.doc.tar.xz +Source5237: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simplecd.tar.xz +Source5238: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simplecd.doc.tar.xz +Source5240: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simplecv.tar.xz +Source5241: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simplecv.doc.tar.xz +Source5243: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simplewick.tar.xz +Source5244: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simplewick.doc.tar.xz +Source5246: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sitem.tar.xz +Source5247: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sitem.doc.tar.xz +Source5249: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skb.tar.xz +Source5250: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skb.doc.tar.xz +Source5252: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skdoc.tar.xz +Source5253: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skdoc.doc.tar.xz +Source5255: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skeycommand.tar.xz +Source5256: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skeycommand.doc.tar.xz +Source5257: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skeyval.tar.xz +Source5258: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skeyval.doc.tar.xz +Source5259: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skrapport.tar.xz +Source5260: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skrapport.doc.tar.xz +Source5262: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/slantsc.tar.xz +Source5263: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/slantsc.doc.tar.xz +Source5265: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/smalltableof.tar.xz +Source5266: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/smalltableof.doc.tar.xz +Source5267: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/smartref.tar.xz +Source5268: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/smartref.doc.tar.xz +Source5269: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/snapshot.tar.xz +Source5270: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/snapshot.doc.tar.xz +Source5272: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/snotez.tar.xz +Source5273: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/snotez.doc.tar.xz +Source5274: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/soul.tar.xz +Source5275: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/soul.doc.tar.xz +Source5277: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sparklines.tar.xz +Source5278: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sparklines.doc.tar.xz +Source5279: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sphack.tar.xz +Source5280: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sphack.doc.tar.xz +Source5284: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spot.tar.xz +Source5285: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spot.doc.tar.xz +Source5287: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spotcolor.tar.xz +Source5288: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spotcolor.doc.tar.xz +Source5289: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spreadtab.tar.xz +Source5290: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spreadtab.doc.tar.xz +Source5291: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spverbatim.tar.xz +Source5292: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spverbatim.doc.tar.xz +Source5294: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/srbook-mem.tar.xz +Source5295: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/srbook-mem.doc.tar.xz +Source5296: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/srcltx.tar.xz +Source5297: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/srcltx.doc.tar.xz +Source5299: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sseq.tar.xz +Source5300: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sseq.doc.tar.xz +Source5302: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sslides.tar.xz +Source5303: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sslides.doc.tar.xz +Source5304: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stack.tar.xz +Source5306: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stackengine.tar.xz +Source5307: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stackengine.doc.tar.xz +Source5308: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/standalone.tar.xz +Source5309: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/standalone.doc.tar.xz +Source5311: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/statistik.tar.xz +Source5312: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/statistik.doc.tar.xz +Source5314: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stdclsdv.tar.xz +Source5315: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stdclsdv.doc.tar.xz +Source5317: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stdpage.tar.xz +Source5318: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stdpage.doc.tar.xz +Source5320: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stex.tar.xz +Source5321: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stex.doc.tar.xz +Source5323: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/storebox.tar.xz +Source5324: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/storebox.doc.tar.xz +Source5326: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/storecmd.tar.xz +Source5327: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/storecmd.doc.tar.xz +Source5328: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stringstrings.tar.xz +Source5329: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stringstrings.doc.tar.xz +Source5331: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sttools.tar.xz +Source5332: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sttools.doc.tar.xz +Source5334: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stubs.tar.xz +Source5335: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stubs.doc.tar.xz +Source5336: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subdepth.tar.xz +Source5337: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subdepth.doc.tar.xz +Source5339: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subeqn.tar.xz +Source5340: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subeqn.doc.tar.xz +Source5342: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subeqnarray.tar.xz +Source5343: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subeqnarray.doc.tar.xz +Source5345: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfigmat.tar.xz +Source5346: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfigmat.doc.tar.xz +Source5347: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfigure.tar.xz +Source5348: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfigure.doc.tar.xz +Source5350: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfiles.tar.xz +Source5351: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfiles.doc.tar.xz +Source5353: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfloat.tar.xz +Source5354: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subfloat.doc.tar.xz +Source5356: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/substitutefont.tar.xz +Source5357: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/substitutefont.doc.tar.xz +Source5358: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/substr.tar.xz +Source5359: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/substr.doc.tar.xz +Source5360: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/supertabular.tar.xz +Source5361: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/supertabular.doc.tar.xz +Source5363: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svg.tar.xz +Source5364: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svg.doc.tar.xz +Source5366: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svgcolor.tar.xz +Source5367: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svgcolor.doc.tar.xz +Source5368: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svn.tar.xz +Source5369: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svn.doc.tar.xz +Source5374: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svninfo.tar.xz +Source5375: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svninfo.doc.tar.xz +Source5377: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/syntax.tar.xz +Source5378: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/syntax.doc.tar.xz +Source5379: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/syntrace.tar.xz +Source5380: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/syntrace.doc.tar.xz +Source5382: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/synttree.tar.xz +Source5383: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/synttree.doc.tar.xz +Source5385: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabfigures.tar.xz +Source5386: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabfigures.doc.tar.xz +Source5388: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tableaux.tar.xz +Source5389: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tableaux.doc.tar.xz +Source5390: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tablefootnote.tar.xz +Source5391: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tablefootnote.doc.tar.xz +Source5393: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tableof.tar.xz +Source5394: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tableof.doc.tar.xz +Source5396: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tablestyles.tar.xz +Source5397: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tablestyles.doc.tar.xz +Source5399: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tablists.tar.xz +Source5400: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tablists.doc.tar.xz +Source5402: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabls.tar.xz +Source5403: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabls.doc.tar.xz +Source5404: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabstackengine.tar.xz +Source5405: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabstackengine.doc.tar.xz +Source5406: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabto-ltx.tar.xz +Source5407: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabto-ltx.doc.tar.xz +Source5408: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabu.tar.xz +Source5409: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabu.doc.tar.xz +Source5411: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabularborder.tar.xz +Source5412: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabularborder.doc.tar.xz +Source5414: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabularcalc.tar.xz +Source5415: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabularcalc.doc.tar.xz +Source5416: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabularew.tar.xz +Source5417: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabularew.doc.tar.xz +Source5419: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabulary.tar.xz +Source5420: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabulary.doc.tar.xz +Source5422: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tagging.tar.xz +Source5423: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tagging.doc.tar.xz +Source5424: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tagpair.tar.xz +Source5425: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tagpair.doc.tar.xz +Source5426: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/talk.tar.xz +Source5427: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/talk.doc.tar.xz +Source5429: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tamefloats.tar.xz +Source5430: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tamefloats.doc.tar.xz +Source5431: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tasks.tar.xz +Source5432: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tasks.doc.tar.xz +Source5433: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tcldoc.tar.xz +Source5434: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tcldoc.doc.tar.xz +Source5436: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tcolorbox.tar.xz +Source5437: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tcolorbox.doc.tar.xz +Source5438: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tdclock.tar.xz +Source5439: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tdclock.doc.tar.xz +Source5440: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/technics.tar.xz +Source5441: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/technics.doc.tar.xz +Source5442: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ted.tar.xz +Source5443: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ted.doc.tar.xz +Source5445: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/templatetools.tar.xz +Source5446: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/templatetools.doc.tar.xz +Source5448: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/termcal.tar.xz +Source5449: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/termcal.doc.tar.xz +Source5451: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/termlist.tar.xz +Source5452: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/termlist.doc.tar.xz +Source5454: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/testhyphens.tar.xz +Source5455: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/testhyphens.doc.tar.xz +Source5457: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-label.tar.xz +Source5458: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-label.doc.tar.xz +Source5460: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlogos.tar.xz +Source5461: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texmate.tar.xz +Source5462: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texmate.doc.tar.xz +Source5464: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texments.tar.xz +Source5465: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texments.doc.tar.xz +Source5467: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texpower.tar.xz +Source5468: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texpower.doc.tar.xz +Source5470: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texshade.tar.xz +Source5471: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texshade.doc.tar.xz +Source5473: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textfit.tar.xz +Source5474: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textfit.doc.tar.xz +Source5476: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textgreek.tar.xz +Source5477: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textgreek.doc.tar.xz +Source5479: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textmerg.tar.xz +Source5480: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textmerg.doc.tar.xz +Source5482: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textpos.tar.xz +Source5483: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textpos.doc.tar.xz +Source5485: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/theoremref.tar.xz +Source5486: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/theoremref.doc.tar.xz +Source5487: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thinsp.tar.xz +Source5488: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thinsp.doc.tar.xz +Source5489: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thmtools.tar.xz +Source5490: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thmtools.doc.tar.xz +Source5492: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/threadcol.tar.xz +Source5493: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/threadcol.doc.tar.xz +Source5495: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/threeparttable.tar.xz +Source5496: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/threeparttable.doc.tar.xz +Source5497: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/threeparttablex.tar.xz +Source5498: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/threeparttablex.doc.tar.xz +Source5499: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thumb.tar.xz +Source5500: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thumb.doc.tar.xz +Source5502: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thumbs.tar.xz +Source5503: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thumbs.doc.tar.xz +Source5505: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thumby.tar.xz +Source5506: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thumby.doc.tar.xz +Source5507: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ticket.tar.xz +Source5508: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ticket.doc.tar.xz +Source5509: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titlecaps.tar.xz +Source5510: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titlecaps.doc.tar.xz +Source5511: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titlefoot.tar.xz +Source5512: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titlepic.tar.xz +Source5513: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titlepic.doc.tar.xz +Source5514: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titleref.tar.xz +Source5515: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titleref.doc.tar.xz +Source5516: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titlesec.tar.xz +Source5517: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titlesec.doc.tar.xz +Source5518: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titling.tar.xz +Source5519: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/titling.doc.tar.xz +Source5521: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tocbibind.tar.xz +Source5522: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tocbibind.doc.tar.xz +Source5524: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tocloft.tar.xz +Source5525: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tocloft.doc.tar.xz +Source5527: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tocvsec2.tar.xz +Source5528: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tocvsec2.doc.tar.xz +Source5530: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/todo.tar.xz +Source5531: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/todo.doc.tar.xz +Source5533: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/todonotes.tar.xz +Source5534: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/todonotes.doc.tar.xz +Source5536: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tokenizer.tar.xz +Source5537: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tokenizer.doc.tar.xz +Source5538: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/toolbox.tar.xz +Source5539: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/toolbox.doc.tar.xz +Source5541: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/topfloat.tar.xz +Source5542: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/topfloat.doc.tar.xz +Source5543: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/totcount.tar.xz +Source5544: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/totcount.doc.tar.xz +Source5546: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/totpages.tar.xz +Source5547: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/totpages.doc.tar.xz +Source5549: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translations.tar.xz +Source5550: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translations.doc.tar.xz +Source5551: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trfsigns.tar.xz +Source5552: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trfsigns.doc.tar.xz +Source5554: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trimspaces.tar.xz +Source5555: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trimspaces.doc.tar.xz +Source5557: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trivfloat.tar.xz +Source5558: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trivfloat.doc.tar.xz +Source5560: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trsym.tar.xz +Source5561: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/trsym.doc.tar.xz +Source5563: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/truncate.tar.xz +Source5564: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/truncate.doc.tar.xz +Source5565: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tucv.tar.xz +Source5566: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tucv.doc.tar.xz +Source5568: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turnthepage.tar.xz +Source5569: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turnthepage.doc.tar.xz +Source5570: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/twoinone.tar.xz +Source5571: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/twoinone.doc.tar.xz +Source5572: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/twoup.tar.xz +Source5573: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/twoup.doc.tar.xz +Source5575: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/txgreeks.tar.xz +Source5576: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/txgreeks.doc.tar.xz +Source5578: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/type1cm.tar.xz +Source5579: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/type1cm.doc.tar.xz +Source5581: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typeface.tar.xz +Source5582: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typeface.doc.tar.xz +Source5584: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typogrid.tar.xz +Source5585: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typogrid.doc.tar.xz +Source5587: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uassign.tar.xz +Source5588: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uassign.doc.tar.xz +Source5589: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucs.tar.xz +Source5590: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucs.doc.tar.xz +Source5591: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uebungsblatt.tar.xz +Source5592: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uebungsblatt.doc.tar.xz +Source5593: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umoline.tar.xz +Source5594: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umoline.doc.tar.xz +Source5596: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/underlin.tar.xz +Source5597: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/underlin.doc.tar.xz +Source5599: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/underoverlap.tar.xz +Source5600: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/underoverlap.doc.tar.xz +Source5601: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/undolabl.tar.xz +Source5602: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/undolabl.doc.tar.xz +Source5604: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/units.tar.xz +Source5605: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/units.doc.tar.xz +Source5607: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unravel.tar.xz +Source5608: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unravel.doc.tar.xz +Source5610: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/upmethodology.tar.xz +Source5611: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/upmethodology.doc.tar.xz +Source5612: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/upquote.tar.xz +Source5613: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/upquote.doc.tar.xz +Source5615: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uri.tar.xz +Source5616: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uri.doc.tar.xz +Source5618: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ushort.tar.xz +Source5619: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ushort.doc.tar.xz +Source5621: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/varindex.tar.xz +Source5622: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/varindex.doc.tar.xz +Source5624: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/varsfromjobname.tar.xz +Source5625: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/varsfromjobname.doc.tar.xz +Source5626: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/varwidth.tar.xz +Source5627: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/varwidth.doc.tar.xz +Source5628: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vdmlisting.tar.xz +Source5629: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vdmlisting.doc.tar.xz +Source5630: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbasef.tar.xz +Source5631: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbasef.doc.tar.xz +Source5632: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbatimbox.tar.xz +Source5633: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbatimbox.doc.tar.xz +Source5634: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbatimcopy.tar.xz +Source5635: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbatimcopy.doc.tar.xz +Source5636: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbdef.tar.xz +Source5637: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbdef.doc.tar.xz +Source5638: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbments.tar.xz +Source5639: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/verbments.doc.tar.xz +Source5640: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/version.tar.xz +Source5641: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/version.doc.tar.xz +Source5642: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/versions.tar.xz +Source5643: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/versions.doc.tar.xz +Source5644: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/versonotes.tar.xz +Source5645: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/versonotes.doc.tar.xz +Source5647: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vertbars.tar.xz +Source5648: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vertbars.doc.tar.xz +Source5650: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vgrid.tar.xz +Source5651: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vgrid.doc.tar.xz +Source5653: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vhistory.tar.xz +Source5654: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vhistory.doc.tar.xz +Source5655: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vmargin.tar.xz +Source5656: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vmargin.doc.tar.xz +Source5658: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/volumes.tar.xz +Source5659: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/volumes.doc.tar.xz +Source5663: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vruler.tar.xz +Source5664: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vruler.doc.tar.xz +Source5665: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vwcol.tar.xz +Source5666: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vwcol.doc.tar.xz +Source5668: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wallpaper.tar.xz +Source5669: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wallpaper.doc.tar.xz +Source5670: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/warning.tar.xz +Source5671: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/warning.doc.tar.xz +Source5672: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/warpcol.tar.xz +Source5673: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/warpcol.doc.tar.xz +Source5675: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/was.tar.xz +Source5676: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/was.doc.tar.xz +Source5678: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/widetable.tar.xz +Source5679: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/widetable.doc.tar.xz +Source5681: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/williams.tar.xz +Source5682: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/williams.doc.tar.xz +Source5683: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/withargs.tar.xz +Source5684: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/withargs.doc.tar.xz +Source5685: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wordlike.tar.xz +Source5686: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wordlike.doc.tar.xz +Source5688: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wrapfig.tar.xz +Source5689: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wrapfig.doc.tar.xz +Source5690: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xargs.tar.xz +Source5691: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xargs.doc.tar.xz +Source5693: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcolor-solarized.tar.xz +Source5694: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcolor-solarized.doc.tar.xz +Source5696: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcomment.tar.xz +Source5697: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcomment.doc.tar.xz +Source5698: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xdoc.tar.xz +Source5699: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xdoc.doc.tar.xz +Source5701: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xfor.tar.xz +Source5702: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xfor.doc.tar.xz +Source5704: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xhfill.tar.xz +Source5705: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xhfill.doc.tar.xz +Source5706: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xint.tar.xz +Source5707: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xint.doc.tar.xz +Source5709: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xmpincl.tar.xz +Source5710: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xmpincl.doc.tar.xz +Source5712: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xnewcommand.tar.xz +Source5713: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xnewcommand.doc.tar.xz +Source5714: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xoptarg.tar.xz +Source5715: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xoptarg.doc.tar.xz +Source5716: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpatch.tar.xz +Source5717: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpatch.doc.tar.xz +Source5719: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpeek.tar.xz +Source5720: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpeek.doc.tar.xz +Source5722: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xprintlen.tar.xz +Source5723: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xprintlen.doc.tar.xz +Source5724: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpunctuate.tar.xz +Source5725: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpunctuate.doc.tar.xz +Source5727: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xstring.tar.xz +Source5728: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xstring.doc.tar.xz +Source5729: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xtab.tar.xz +Source5730: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xtab.doc.tar.xz +Source5732: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xwatermark.tar.xz +Source5733: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xwatermark.doc.tar.xz +Source5734: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xytree.tar.xz +Source5735: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xytree.doc.tar.xz +Source5736: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yafoot.tar.xz +Source5737: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yafoot.doc.tar.xz +Source5739: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yagusylo.tar.xz +Source5740: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yagusylo.doc.tar.xz +Source5742: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ydoc.tar.xz +Source5743: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ydoc.doc.tar.xz +Source5747: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zed-csp.tar.xz +Source5748: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zed-csp.doc.tar.xz +Source5749: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ziffer.tar.xz +Source5750: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ziffer.doc.tar.xz +Source5751: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zwgetfdate.tar.xz +Source5752: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zwgetfdate.doc.tar.xz +Source5753: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zwpagelayout.tar.xz +Source5754: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zwpagelayout.doc.tar.xz +Source5755: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enigma.tar.xz +Source5756: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/enigma.doc.tar.xz +Source5757: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interpreter.tar.xz +Source5758: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interpreter.doc.tar.xz +Source5759: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lua-check-hyphen.tar.xz +Source5760: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lua-check-hyphen.doc.tar.xz +Source5761: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lua-visual-debug.tar.xz +Source5762: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lua-visual-debug.doc.tar.xz +Source5765: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luabibentry.tar.xz +Source5766: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luabibentry.doc.tar.xz +Source5768: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luabidi.tar.xz +Source5769: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luabidi.doc.tar.xz +Source5770: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luacode.tar.xz +Source5771: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luacode.doc.tar.xz +Source5773: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luaindex.tar.xz +Source5774: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luaindex.doc.tar.xz +Source5776: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luainputenc.tar.xz +Source5777: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luainputenc.doc.tar.xz +Source5779: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luaintro.doc.tar.xz +Source5780: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lualatex-doc.doc.tar.xz +Source5782: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lualatex-math.tar.xz +Source5783: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lualatex-math.doc.tar.xz +Source5785: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lualibs.tar.xz +Source5786: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lualibs.doc.tar.xz +Source5788: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luamplib.tar.xz +Source5789: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luamplib.doc.tar.xz +Source5794: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luasseq.tar.xz +Source5795: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luasseq.doc.tar.xz +Source5797: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatexbase.tar.xz +Source5798: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatexbase.doc.tar.xz +Source5800: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatexko.tar.xz +Source5801: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatexko.doc.tar.xz +Source5802: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatextra.tar.xz +Source5803: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatextra.doc.tar.xz +Source5805: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatodonotes.tar.xz +Source5806: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatodonotes.doc.tar.xz +Source5808: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luaxml.tar.xz +Source5809: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luaxml.doc.tar.xz +Source5810: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/odsfile.tar.xz +Source5811: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/odsfile.doc.tar.xz +Source5812: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/placeat.tar.xz +Source5813: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/placeat.doc.tar.xz +Source5815: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/selnolig.tar.xz +Source5816: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/selnolig.doc.tar.xz +Source5817: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showhyphens.tar.xz +Source5818: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/showhyphens.doc.tar.xz +Source5819: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spelling.tar.xz +Source5820: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spelling.doc.tar.xz +Source5821: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucharcat.tar.xz +Source5822: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucharcat.doc.tar.xz +Source5824: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/commath.tar.xz +Source5825: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/commath.doc.tar.xz +Source5826: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concmath.tar.xz +Source5827: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concmath.doc.tar.xz +Source5829: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concrete.tar.xz +Source5830: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/concrete.doc.tar.xz +Source5831: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/conteq.tar.xz +Source5832: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/conteq.doc.tar.xz +Source5834: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebproof.tar.xz +Source5835: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebproof.doc.tar.xz +Source5836: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqnarray.tar.xz +Source5837: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqnarray.doc.tar.xz +Source5839: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/extarrows.tar.xz +Source5840: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/extarrows.doc.tar.xz +Source5841: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/extpfeil.tar.xz +Source5842: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/extpfeil.doc.tar.xz +Source5844: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/faktor.tar.xz +Source5845: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/faktor.doc.tar.xz +Source5847: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grundgesetze.tar.xz +Source5848: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grundgesetze.doc.tar.xz +Source5850: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interval.tar.xz +Source5851: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interval.doc.tar.xz +Source5852: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ionumbers.tar.xz +Source5853: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ionumbers.doc.tar.xz +Source5855: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isomath.tar.xz +Source5856: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isomath.doc.tar.xz +Source5857: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logicproof.tar.xz +Source5858: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/logicproof.doc.tar.xz +Source5860: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lpform.tar.xz +Source5861: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lpform.doc.tar.xz +Source5862: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lplfitch.tar.xz +Source5863: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lplfitch.doc.tar.xz +Source5865: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathcomp.tar.xz +Source5866: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathcomp.doc.tar.xz +Source5868: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mattens.tar.xz +Source5869: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mattens.doc.tar.xz +Source5871: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mhequ.tar.xz +Source5872: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mhequ.doc.tar.xz +Source5873: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multiobjective.tar.xz +Source5874: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multiobjective.doc.tar.xz +Source5876: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/natded.tar.xz +Source5877: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/natded.doc.tar.xz +Source5878: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nath.tar.xz +Source5879: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nath.doc.tar.xz +Source5880: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ot-tableau.tar.xz +Source5881: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ot-tableau.doc.tar.xz +Source5882: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oubraces.tar.xz +Source5883: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/oubraces.doc.tar.xz +Source5884: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/perfectcut.tar.xz +Source5885: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/perfectcut.doc.tar.xz +Source5886: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prftree.tar.xz +Source5887: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prftree.doc.tar.xz +Source5888: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/proba.tar.xz +Source5889: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/proba.doc.tar.xz +Source5891: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rec-thy.tar.xz +Source5892: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rec-thy.doc.tar.xz +Source5893: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ribbonproofs.tar.xz +Source5894: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ribbonproofs.doc.tar.xz +Source5895: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rmathbr.tar.xz +Source5896: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rmathbr.doc.tar.xz +Source5898: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sesamanuel.tar.xz +Source5899: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sesamanuel.doc.tar.xz +Source5901: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shuffle.tar.xz +Source5902: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shuffle.doc.tar.xz +Source5904: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skmath.tar.xz +Source5905: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/skmath.doc.tar.xz +Source5907: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/statex.tar.xz +Source5908: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/statex.doc.tar.xz +Source5909: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/statex2.tar.xz +Source5910: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/statex2.doc.tar.xz +Source5911: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subsupscripts.tar.xz +Source5912: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/subsupscripts.doc.tar.xz +Source5913: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/susy.tar.xz +Source5914: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/susy.doc.tar.xz +Source5915: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/syllogism.tar.xz +Source5916: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/syllogism.doc.tar.xz +Source5917: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sympytexpackage.tar.xz +Source5918: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sympytexpackage.doc.tar.xz +Source5920: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/synproof.tar.xz +Source5921: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/synproof.doc.tar.xz +Source5922: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tablor.tar.xz +Source5923: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tablor.doc.tar.xz +Source5924: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tensor.tar.xz +Source5925: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tensor.doc.tar.xz +Source5927: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-ewd.tar.xz +Source5928: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-ewd.doc.tar.xz +Source5929: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thmbox.tar.xz +Source5930: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thmbox.doc.tar.xz +Source5932: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turnstile.tar.xz +Source5933: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turnstile.doc.tar.xz +Source5935: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unicode-math.tar.xz +Source5936: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unicode-math.doc.tar.xz +Source5938: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/venn.tar.xz +Source5939: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/venn.doc.tar.xz +Source5940: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yhmath.tar.xz +Source5941: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yhmath.doc.tar.xz +Source5943: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ytableau.tar.xz +Source5944: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ytableau.doc.tar.xz +Source5946: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drv.tar.xz +Source5947: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drv.doc.tar.xz +Source5948: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dviincl.tar.xz +Source5949: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dviincl.doc.tar.xz +Source5950: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emp.tar.xz +Source5951: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emp.doc.tar.xz +Source5953: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epsincl.tar.xz +Source5954: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epsincl.doc.tar.xz +Source5955: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/expressg.tar.xz +Source5956: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/expressg.doc.tar.xz +Source5958: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exteps.tar.xz +Source5959: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exteps.doc.tar.xz +Source5960: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/featpost.tar.xz +Source5961: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/featpost.doc.tar.xz +Source5962: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/feynmf.tar.xz +Source5963: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/feynmf.doc.tar.xz +Source5965: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/feynmp-auto.tar.xz +Source5966: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/feynmp-auto.doc.tar.xz +Source5968: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/garrigues.tar.xz +Source5969: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/garrigues.doc.tar.xz +Source5970: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmp.tar.xz +Source5971: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gmp.doc.tar.xz +Source5973: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexmp.tar.xz +Source5974: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexmp.doc.tar.xz +Source5975: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcf2graph.tar.xz +Source5976: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcf2graph.doc.tar.xz +Source5977: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metago.tar.xz +Source5978: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metago.doc.tar.xz +Source5979: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metaobj.tar.xz +Source5980: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metaobj.doc.tar.xz +Source5981: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metaplot.tar.xz +Source5982: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metaplot.doc.tar.xz +Source5983: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metauml.tar.xz +Source5984: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/metauml.doc.tar.xz +Source5985: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mfpic.tar.xz +Source5986: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mfpic.doc.tar.xz +Source5988: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mfpic4ode.tar.xz +Source5989: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mfpic4ode.doc.tar.xz +Source5991: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mp3d.tar.xz +Source5992: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mp3d.doc.tar.xz +Source5993: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpcolornames.tar.xz +Source5994: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpcolornames.doc.tar.xz +Source5996: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpattern.tar.xz +Source5997: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpattern.doc.tar.xz +Source5998: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpgraphics.tar.xz +Source5999: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpgraphics.doc.tar.xz +Source6001: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/piechartmp.tar.xz +Source6002: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/piechartmp.doc.tar.xz +Source6003: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/repere.tar.xz +Source6004: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/repere.doc.tar.xz +Source6005: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/roex.tar.xz +Source6007: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/roundrect.tar.xz +Source6008: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/roundrect.doc.tar.xz +Source6010: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shapes.tar.xz +Source6011: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shapes.doc.tar.xz +Source6013: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/slideshow.tar.xz +Source6014: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/slideshow.doc.tar.xz +Source6015: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/splines.tar.xz +Source6016: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/splines.doc.tar.xz +Source6018: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/suanpan.tar.xz +Source6019: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/suanpan.doc.tar.xz +Source6020: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textpath.tar.xz +Source6021: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textpath.doc.tar.xz +Source6022: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/threeddice.tar.xz +Source6023: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/threeddice.doc.tar.xz +Source6024: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/figbas.tar.xz +Source6025: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/figbas.doc.tar.xz +Source6026: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gchords.tar.xz +Source6027: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gchords.doc.tar.xz +Source6028: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gtrcrd.tar.xz +Source6029: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gtrcrd.doc.tar.xz +Source6030: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/guitar.tar.xz +Source6031: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/guitar.doc.tar.xz +Source6033: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/guitarchordschemes.tar.xz +Source6034: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/guitarchordschemes.doc.tar.xz +Source6035: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harmony.tar.xz +Source6036: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/harmony.doc.tar.xz +Source6037: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leadsheets.tar.xz +Source6038: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/leadsheets.doc.tar.xz +Source6044: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/musixguit.tar.xz +Source6045: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/musixguit.doc.tar.xz +Source6049: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/musixtex-fonts.tar.xz +Source6050: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/musixtex-fonts.doc.tar.xz +Source6053: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/piano.tar.xz +Source6054: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/piano.doc.tar.xz +Source6059: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/songbook.tar.xz +Source6060: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/songbook.doc.tar.xz +Source6062: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/songs.tar.xz +Source6063: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/songs.doc.tar.xz +Source6065: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpiano.tar.xz +Source6066: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xpiano.doc.tar.xz +Source6068: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mxedruli.tar.xz +Source6069: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mxedruli.doc.tar.xz +Source6072: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/otibet.tar.xz +Source6073: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/otibet.doc.tar.xz +Source6075: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epsf-dvipdfmx.tar.xz +Source6076: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/epsf-dvipdfmx.doc.tar.xz +Source6077: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/figflow.tar.xz +Source6078: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/figflow.doc.tar.xz +Source6079: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixpdfmag.tar.xz +Source6080: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/font-change.tar.xz +Source6081: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/font-change.doc.tar.xz +Source6082: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontch.tar.xz +Source6083: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontch.doc.tar.xz +Source6084: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/getoptk.tar.xz +Source6085: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/getoptk.doc.tar.xz +Source6086: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfnotation.tar.xz +Source6087: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gfnotation.doc.tar.xz +Source6088: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphics-pln.tar.xz +Source6089: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphics-pln.doc.tar.xz +Source6091: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyplain.tar.xz +Source6092: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyplain.doc.tar.xz +Source6093: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/js-misc.tar.xz +Source6094: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/js-misc.doc.tar.xz +Source6095: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mkpattern.tar.xz +Source6096: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mkpattern.doc.tar.xz +Source6097: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newsletr.tar.xz +Source6098: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/newsletr.doc.tar.xz +Source6099: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pitex.tar.xz +Source6100: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pitex.doc.tar.xz +Source6101: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/placeins-plain.tar.xz +Source6102: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plipsum.tar.xz +Source6103: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plipsum.doc.tar.xz +Source6104: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plnfss.tar.xz +Source6105: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plnfss.doc.tar.xz +Source6106: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plstmary.tar.xz +Source6107: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/plstmary.doc.tar.xz +Source6108: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/present.tar.xz +Source6109: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/present.doc.tar.xz +Source6110: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/resumemac.tar.xz +Source6111: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/resumemac.doc.tar.xz +Source6112: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texinfo.tar.xz +Source6113: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/timetable.tar.xz +Source6114: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/treetex.tar.xz +Source6115: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/treetex.doc.tar.xz +Source6116: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/varisize.tar.xz +Source6117: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/varisize.doc.tar.xz +Source6118: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xii.doc.tar.xz +Source6119: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dsptricks.tar.xz +Source6120: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dsptricks.doc.tar.xz +Source6121: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makeplot.tar.xz +Source6122: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makeplot.doc.tar.xz +Source6124: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdftricks.tar.xz +Source6125: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdftricks.doc.tar.xz +Source6126: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdftricks2.tar.xz +Source6127: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdftricks2.doc.tar.xz +Source6130: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psbao.tar.xz +Source6131: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psbao.doc.tar.xz +Source6132: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-2dplot.tar.xz +Source6133: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-2dplot.doc.tar.xz +Source6134: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-3d.tar.xz +Source6135: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-3d.doc.tar.xz +Source6137: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-3dplot.tar.xz +Source6138: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-3dplot.doc.tar.xz +Source6139: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-abspos.tar.xz +Source6140: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-abspos.doc.tar.xz +Source6142: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-am.tar.xz +Source6143: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-am.doc.tar.xz +Source6145: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-asr.tar.xz +Source6146: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-asr.doc.tar.xz +Source6147: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-bar.tar.xz +Source6148: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-bar.doc.tar.xz +Source6150: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-barcode.tar.xz +Source6151: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-barcode.doc.tar.xz +Source6152: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-bezier.tar.xz +Source6153: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-bezier.doc.tar.xz +Source6155: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-blur.tar.xz +Source6156: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-blur.doc.tar.xz +Source6158: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-bspline.tar.xz +Source6159: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-bspline.doc.tar.xz +Source6160: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-calendar.tar.xz +Source6161: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-calendar.doc.tar.xz +Source6162: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-circ.tar.xz +Source6163: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-circ.doc.tar.xz +Source6164: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-coil.tar.xz +Source6165: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-coil.doc.tar.xz +Source6166: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-cox.tar.xz +Source6167: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-cox.doc.tar.xz +Source6168: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-dbicons.tar.xz +Source6169: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-dbicons.doc.tar.xz +Source6171: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-diffraction.tar.xz +Source6172: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-diffraction.doc.tar.xz +Source6174: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-electricfield.tar.xz +Source6175: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-electricfield.doc.tar.xz +Source6177: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-eps.tar.xz +Source6178: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-eps.doc.tar.xz +Source6180: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-eucl.tar.xz +Source6181: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-eucl.doc.tar.xz +Source6182: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-exa.tar.xz +Source6183: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-exa.doc.tar.xz +Source6184: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fill.tar.xz +Source6185: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fill.doc.tar.xz +Source6187: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fit.tar.xz +Source6188: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fit.doc.tar.xz +Source6190: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fr3d.tar.xz +Source6191: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fr3d.doc.tar.xz +Source6193: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fractal.tar.xz +Source6194: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fractal.doc.tar.xz +Source6195: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fun.tar.xz +Source6196: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-fun.doc.tar.xz +Source6198: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-func.tar.xz +Source6199: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-func.doc.tar.xz +Source6200: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-gantt.tar.xz +Source6201: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-gantt.doc.tar.xz +Source6202: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-geo.tar.xz +Source6203: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-geo.doc.tar.xz +Source6204: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-ghsb.tar.xz +Source6205: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-ghsb.doc.tar.xz +Source6206: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-gr3d.tar.xz +Source6207: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-gr3d.doc.tar.xz +Source6209: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-grad.tar.xz +Source6210: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-grad.doc.tar.xz +Source6211: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-graphicx.tar.xz +Source6212: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-graphicx.doc.tar.xz +Source6213: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-infixplot.tar.xz +Source6214: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-infixplot.doc.tar.xz +Source6215: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-intersect.tar.xz +Source6216: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-intersect.doc.tar.xz +Source6218: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-jtree.tar.xz +Source6219: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-jtree.doc.tar.xz +Source6220: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-knot.tar.xz +Source6221: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-knot.doc.tar.xz +Source6222: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-labo.tar.xz +Source6223: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-labo.doc.tar.xz +Source6224: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-layout.tar.xz +Source6225: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-layout.doc.tar.xz +Source6226: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-lens.tar.xz +Source6227: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-lens.doc.tar.xz +Source6229: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-light3d.tar.xz +Source6230: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-light3d.doc.tar.xz +Source6232: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-magneticfield.tar.xz +Source6233: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-magneticfield.doc.tar.xz +Source6235: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-math.tar.xz +Source6236: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-math.doc.tar.xz +Source6237: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-mirror.tar.xz +Source6238: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-mirror.doc.tar.xz +Source6239: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-node.tar.xz +Source6240: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-node.doc.tar.xz +Source6241: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-ob3d.tar.xz +Source6242: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-ob3d.doc.tar.xz +Source6244: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-ode.tar.xz +Source6245: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-ode.doc.tar.xz +Source6246: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-optexp.tar.xz +Source6247: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-optexp.doc.tar.xz +Source6249: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-optic.tar.xz +Source6250: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-optic.doc.tar.xz +Source6252: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-osci.tar.xz +Source6253: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-osci.doc.tar.xz +Source6254: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-ovl.tar.xz +Source6255: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-ovl.doc.tar.xz +Source6256: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-pad.tar.xz +Source6257: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-pad.doc.tar.xz +Source6259: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-pdgr.tar.xz +Source6260: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-pdgr.doc.tar.xz +Source6262: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-perspective.tar.xz +Source6263: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-perspective.doc.tar.xz +Source6264: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-platon.tar.xz +Source6265: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-platon.doc.tar.xz +Source6267: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-plot.tar.xz +Source6268: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-plot.doc.tar.xz +Source6269: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-poly.tar.xz +Source6270: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-poly.doc.tar.xz +Source6271: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-pulley.tar.xz +Source6272: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-pulley.doc.tar.xz +Source6274: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-qtree.tar.xz +Source6275: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-qtree.doc.tar.xz +Source6276: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-rubans.tar.xz +Source6277: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-rubans.doc.tar.xz +Source6279: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-sigsys.tar.xz +Source6280: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-sigsys.doc.tar.xz +Source6281: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-slpe.tar.xz +Source6282: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-slpe.doc.tar.xz +Source6284: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-solarsystem.tar.xz +Source6285: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-solarsystem.doc.tar.xz +Source6287: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-solides3d.tar.xz +Source6288: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-solides3d.doc.tar.xz +Source6289: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-soroban.tar.xz +Source6290: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-soroban.doc.tar.xz +Source6292: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-spectra.tar.xz +Source6293: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-spectra.doc.tar.xz +Source6294: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-spirograph.tar.xz +Source6295: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-spirograph.doc.tar.xz +Source6296: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-stru.tar.xz +Source6297: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-stru.doc.tar.xz +Source6298: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-support.doc.tar.xz +Source6299: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-text.tar.xz +Source6300: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-text.doc.tar.xz +Source6302: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-thick.tar.xz +Source6303: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-thick.doc.tar.xz +Source6305: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-tools.tar.xz +Source6306: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-tools.doc.tar.xz +Source6307: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-tree.tar.xz +Source6308: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-tree.doc.tar.xz +Source6310: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-tvz.tar.xz +Source6311: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-tvz.doc.tar.xz +Source6313: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-uml.tar.xz +Source6314: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-uml.doc.tar.xz +Source6316: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-vectorian.tar.xz +Source6317: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-vectorian.doc.tar.xz +Source6318: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-vowel.tar.xz +Source6319: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-vowel.doc.tar.xz +Source6320: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-vue3d.tar.xz +Source6321: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-vue3d.doc.tar.xz +Source6325: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstricks.tar.xz +Source6326: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstricks.doc.tar.xz +Source6327: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstricks-add.tar.xz +Source6328: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstricks-add.doc.tar.xz +Source6329: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstricks_calcnotes.doc.tar.xz +Source6330: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uml.tar.xz +Source6331: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uml.doc.tar.xz +Source6333: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vaucanson-g.tar.xz +Source6334: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vaucanson-g.doc.tar.xz +Source6335: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vocaltract.tar.xz +Source6336: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vocaltract.doc.tar.xz +Source6337: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/IEEEconf.tar.xz +Source6338: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/IEEEconf.doc.tar.xz +Source6340: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/IEEEtran.tar.xz +Source6341: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/IEEEtran.doc.tar.xz +Source6342: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/confproc.tar.xz +Source6343: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/confproc.doc.tar.xz +Source6345: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dccpaper.tar.xz +Source6346: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dccpaper.doc.tar.xz +Source6348: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dithesis.tar.xz +Source6349: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dithesis.doc.tar.xz +Source6350: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebook.tar.xz +Source6351: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebook.doc.tar.xz +Source6352: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebsthesis.tar.xz +Source6353: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ebsthesis.doc.tar.xz +Source6355: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ejpecp.tar.xz +Source6356: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ejpecp.doc.tar.xz +Source6358: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ekaia.tar.xz +Source6359: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ekaia.doc.tar.xz +Source6361: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elbioimp.tar.xz +Source6362: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elbioimp.doc.tar.xz +Source6364: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elsarticle.tar.xz +Source6365: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elsarticle.doc.tar.xz +Source6367: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elteikthesis.tar.xz +Source6368: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/elteikthesis.doc.tar.xz +Source6370: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/erdc.tar.xz +Source6371: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/erdc.doc.tar.xz +Source6373: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/estcpmm.tar.xz +Source6374: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/estcpmm.doc.tar.xz +Source6376: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fbithesis.tar.xz +Source6377: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fbithesis.doc.tar.xz +Source6379: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fcavtex.tar.xz +Source6380: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fcavtex.doc.tar.xz +Source6381: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fcltxdoc.tar.xz +Source6382: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fcltxdoc.doc.tar.xz +Source6384: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fei.tar.xz +Source6385: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fei.doc.tar.xz +Source6387: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gaceta.tar.xz +Source6388: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gaceta.doc.tar.xz +Source6389: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gatech-thesis.tar.xz +Source6390: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gatech-thesis.doc.tar.xz +Source6391: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gsemthesis.tar.xz +Source6392: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gsemthesis.doc.tar.xz +Source6394: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gzt.tar.xz +Source6395: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gzt.doc.tar.xz +Source6397: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/har2nat.tar.xz +Source6398: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/har2nat.doc.tar.xz +Source6399: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hobete.tar.xz +Source6400: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hobete.doc.tar.xz +Source6401: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/icsv.tar.xz +Source6402: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/icsv.doc.tar.xz +Source6404: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ieeepes.tar.xz +Source6405: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ieeepes.doc.tar.xz +Source6406: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ijmart.tar.xz +Source6407: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ijmart.doc.tar.xz +Source6409: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imac.tar.xz +Source6410: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imac.doc.tar.xz +Source6411: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imtekda.tar.xz +Source6412: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imtekda.doc.tar.xz +Source6414: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jmlr.tar.xz +Source6415: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jmlr.doc.tar.xz +Source6417: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jpsj.tar.xz +Source6418: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jpsj.doc.tar.xz +Source6419: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kdgdocs.tar.xz +Source6420: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kdgdocs.doc.tar.xz +Source6422: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kluwer.tar.xz +Source6423: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/kluwer.doc.tar.xz +Source6425: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lps.tar.xz +Source6426: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lps.doc.tar.xz +Source6428: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/matc3.tar.xz +Source6429: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/matc3.doc.tar.xz +Source6431: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/matc3mem.tar.xz +Source6432: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/matc3mem.doc.tar.xz +Source6434: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcmthesis.tar.xz +Source6435: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcmthesis.doc.tar.xz +Source6437: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mentis.tar.xz +Source6438: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mentis.doc.tar.xz +Source6440: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mnras.tar.xz +Source6441: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mnras.doc.tar.xz +Source6442: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/msu-thesis.tar.xz +Source6443: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/msu-thesis.doc.tar.xz +Source6444: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mugsthesis.tar.xz +Source6445: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mugsthesis.doc.tar.xz +Source6447: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/musuos.tar.xz +Source6448: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/musuos.doc.tar.xz +Source6450: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/muthesis.tar.xz +Source6451: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/muthesis.doc.tar.xz +Source6452: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nature.tar.xz +Source6453: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nature.doc.tar.xz +Source6454: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nddiss.tar.xz +Source6455: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nddiss.doc.tar.xz +Source6457: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ndsu-thesis.tar.xz +Source6458: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ndsu-thesis.doc.tar.xz +Source6459: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nih.tar.xz +Source6460: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nih.doc.tar.xz +Source6461: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nostarch.tar.xz +Source6462: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nostarch.doc.tar.xz +Source6464: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nrc.tar.xz +Source6465: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nrc.doc.tar.xz +Source6467: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/onrannual.tar.xz +Source6468: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/onrannual.doc.tar.xz +Source6469: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/opteng.tar.xz +Source6470: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/opteng.doc.tar.xz +Source6471: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/philosophersimprint.tar.xz +Source6472: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/philosophersimprint.doc.tar.xz +Source6474: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pittetd.tar.xz +Source6475: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pittetd.doc.tar.xz +Source6477: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pkuthss.tar.xz +Source6478: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pkuthss.doc.tar.xz +Source6479: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/powerdot-FUBerlin.tar.xz +Source6480: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/powerdot-FUBerlin.doc.tar.xz +Source6481: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pracjourn.tar.xz +Source6482: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pracjourn.doc.tar.xz +Source6484: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/procIAGssymp.tar.xz +Source6485: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/procIAGssymp.doc.tar.xz +Source6486: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/proposal.tar.xz +Source6487: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/proposal.doc.tar.xz +Source6489: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ptptex.tar.xz +Source6490: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ptptex.doc.tar.xz +Source6491: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psu-thesis.tar.xz +Source6492: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/psu-thesis.doc.tar.xz +Source6493: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/resphilosophica.tar.xz +Source6494: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/resphilosophica.doc.tar.xz +Source6496: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/resumecls.tar.xz +Source6497: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/resumecls.doc.tar.xz +Source6499: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/revtex.tar.xz +Source6500: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/revtex.doc.tar.xz +Source6502: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/revtex4.tar.xz +Source6503: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/revtex4.doc.tar.xz +Source6505: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ryethesis.tar.xz +Source6506: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ryethesis.doc.tar.xz +Source6508: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sageep.tar.xz +Source6509: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sageep.doc.tar.xz +Source6511: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sapthesis.tar.xz +Source6512: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sapthesis.doc.tar.xz +Source6513: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scrjrnl.tar.xz +Source6514: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scrjrnl.doc.tar.xz +Source6516: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schule.tar.xz +Source6517: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/schule.doc.tar.xz +Source6519: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sduthesis.tar.xz +Source6520: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sduthesis.doc.tar.xz +Source6522: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seuthesis.tar.xz +Source6523: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seuthesis.doc.tar.xz +Source6525: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/soton.tar.xz +Source6526: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/soton.doc.tar.xz +Source6527: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sphdthesis.tar.xz +Source6528: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sphdthesis.doc.tar.xz +Source6529: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spie.tar.xz +Source6530: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spie.doc.tar.xz +Source6531: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sr-vorl.tar.xz +Source6532: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sr-vorl.doc.tar.xz +Source6534: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stellenbosch.tar.xz +Source6535: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/stellenbosch.doc.tar.xz +Source6537: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/suftesi.tar.xz +Source6538: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/suftesi.doc.tar.xz +Source6540: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sugconf.tar.xz +Source6541: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sugconf.doc.tar.xz +Source6542: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabriz-thesis.tar.xz +Source6543: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tabriz-thesis.doc.tar.xz +Source6544: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texilikechaps.tar.xz +Source6545: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texilikecover.tar.xz +Source6546: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thesis-ekf.tar.xz +Source6547: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thesis-ekf.doc.tar.xz +Source6549: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thesis-titlepage-fhac.tar.xz +Source6550: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thesis-titlepage-fhac.doc.tar.xz +Source6552: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thuthesis.tar.xz +Source6553: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thuthesis.doc.tar.xz +Source6555: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/toptesi.tar.xz +Source6556: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/toptesi.doc.tar.xz +Source6558: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tudscr.tar.xz +Source6559: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tudscr.doc.tar.xz +Source6561: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tugboat.tar.xz +Source6562: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tugboat.doc.tar.xz +Source6564: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tugboat-plain.tar.xz +Source6565: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tugboat-plain.doc.tar.xz +Source6566: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turabian.tar.xz +Source6567: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/turabian.doc.tar.xz +Source6568: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tui.tar.xz +Source6569: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tui.doc.tar.xz +Source6570: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uaclasses.tar.xz +Source6571: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uaclasses.doc.tar.xz +Source6576: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uafthesis.tar.xz +Source6577: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uafthesis.doc.tar.xz +Source6578: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucbthesis.tar.xz +Source6579: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucbthesis.doc.tar.xz +Source6580: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucdavisthesis.tar.xz +Source6581: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucdavisthesis.doc.tar.xz +Source6583: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucthesis.tar.xz +Source6584: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucthesis.doc.tar.xz +Source6585: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uestcthesis.tar.xz +Source6586: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uestcthesis.doc.tar.xz +Source6587: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uiucredborder.tar.xz +Source6588: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uiucredborder.doc.tar.xz +Source6590: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uiucthesis.tar.xz +Source6591: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uiucthesis.doc.tar.xz +Source6593: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ulthese.tar.xz +Source6594: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ulthese.doc.tar.xz +Source6596: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umthesis.tar.xz +Source6597: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umthesis.doc.tar.xz +Source6598: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umich-thesis.tar.xz +Source6599: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umich-thesis.doc.tar.xz +Source6600: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unamth-template.doc.tar.xz +Source6601: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unamthesis.tar.xz +Source6602: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unamthesis.doc.tar.xz +Source6603: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unswcover.tar.xz +Source6604: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unswcover.doc.tar.xz +Source6605: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uothesis.tar.xz +Source6606: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uothesis.doc.tar.xz +Source6608: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/urcls.tar.xz +Source6609: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/urcls.doc.tar.xz +Source6610: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uowthesis.tar.xz +Source6611: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uowthesis.doc.tar.xz +Source6612: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uowthesistitlepage.tar.xz +Source6613: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uowthesistitlepage.doc.tar.xz +Source6614: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uspatent.tar.xz +Source6615: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uspatent.doc.tar.xz +Source6616: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ut-thesis.tar.xz +Source6617: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ut-thesis.doc.tar.xz +Source6618: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uwthesis.tar.xz +Source6619: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uwthesis.doc.tar.xz +Source6620: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vancouver.tar.xz +Source6621: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/vancouver.doc.tar.xz +Source6622: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wsemclassic.tar.xz +Source6623: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wsemclassic.doc.tar.xz +Source6625: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcookybooky.tar.xz +Source6626: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcookybooky.doc.tar.xz +Source6628: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yathesis.tar.xz +Source6629: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yathesis.doc.tar.xz +Source6631: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/york-thesis.tar.xz +Source6632: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/york-thesis.doc.tar.xz +Source6634: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/SIstyle.tar.xz +Source6635: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/SIstyle.doc.tar.xz +Source6637: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/SIunits.tar.xz +Source6638: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/SIunits.doc.tar.xz +Source6640: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/complexity.tar.xz +Source6641: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/complexity.doc.tar.xz +Source6642: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/computational-complexity.tar.xz +Source6643: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/computational-complexity.doc.tar.xz +Source6645: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cryptocode.tar.xz +Source6646: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cryptocode.doc.tar.xz +Source6647: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/digiconfigs.tar.xz +Source6648: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/digiconfigs.doc.tar.xz +Source6649: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drawstack.tar.xz +Source6650: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drawstack.doc.tar.xz +Source6651: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dyntree.tar.xz +Source6652: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dyntree.doc.tar.xz +Source6654: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eltex.tar.xz +Source6655: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eltex.doc.tar.xz +Source6656: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endiagram.tar.xz +Source6657: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endiagram.doc.tar.xz +Source6658: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/engtlc.tar.xz +Source6659: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/engtlc.doc.tar.xz +Source6660: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fouridx.tar.xz +Source6661: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fouridx.doc.tar.xz +Source6663: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/functan.tar.xz +Source6664: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/functan.doc.tar.xz +Source6666: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/galois.tar.xz +Source6667: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/galois.doc.tar.xz +Source6669: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gastex.tar.xz +Source6670: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gastex.doc.tar.xz +Source6671: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gene-logic.tar.xz +Source6672: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gene-logic.doc.tar.xz +Source6673: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ghsystem.tar.xz +Source6674: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ghsystem.doc.tar.xz +Source6675: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gu.tar.xz +Source6676: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gu.doc.tar.xz +Source6677: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hep.tar.xz +Source6678: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hep.doc.tar.xz +Source6679: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hepnames.tar.xz +Source6680: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hepnames.doc.tar.xz +Source6681: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hepparticles.tar.xz +Source6682: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hepparticles.doc.tar.xz +Source6683: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hepthesis.tar.xz +Source6684: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hepthesis.doc.tar.xz +Source6685: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hepunits.tar.xz +Source6686: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hepunits.doc.tar.xz +Source6687: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/karnaugh.tar.xz +Source6688: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/karnaugh.doc.tar.xz +Source6689: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/karnaughmap.tar.xz +Source6690: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/karnaughmap.doc.tar.xz +Source6692: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/matlab-prettifier.tar.xz +Source6693: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/matlab-prettifier.doc.tar.xz +Source6695: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mhchem.tar.xz +Source6696: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mhchem.doc.tar.xz +Source6697: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/miller.tar.xz +Source6698: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/miller.doc.tar.xz +Source6700: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mychemistry.tar.xz +Source6701: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mychemistry.doc.tar.xz +Source6702: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nuc.tar.xz +Source6703: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nuc.doc.tar.xz +Source6704: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/objectz.tar.xz +Source6705: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/objectz.doc.tar.xz +Source6707: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/physics.tar.xz +Source6708: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/physics.doc.tar.xz +Source6709: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pseudocode.tar.xz +Source6710: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pseudocode.doc.tar.xz +Source6713: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sasnrdisplay.tar.xz +Source6714: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sasnrdisplay.doc.tar.xz +Source6715: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sciposter.tar.xz +Source6716: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sciposter.doc.tar.xz +Source6717: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sclang-prettifier.tar.xz +Source6718: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sclang-prettifier.doc.tar.xz +Source6720: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sfg.tar.xz +Source6721: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sfg.doc.tar.xz +Source6722: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/siunitx.tar.xz +Source6723: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/siunitx.doc.tar.xz +Source6725: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/steinmetz.tar.xz +Source6726: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/steinmetz.doc.tar.xz +Source6728: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/struktex.tar.xz +Source6729: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/struktex.doc.tar.xz +Source6731: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/substances.tar.xz +Source6732: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/substances.doc.tar.xz +Source6733: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/t-angles.tar.xz +Source6734: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/t-angles.doc.tar.xz +Source6735: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textopo.tar.xz +Source6736: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/textopo.doc.tar.xz +Source6741: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unitsdef.tar.xz +Source6742: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unitsdef.doc.tar.xz +Source6744: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xymtex.tar.xz +Source6745: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xymtex.doc.tar.xz +Source6747: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/youngtab.tar.xz +Source6748: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/youngtab.doc.tar.xz +Source6750: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixlatvian.tar.xz +Source6751: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixlatvian.doc.tar.xz +Source6753: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontbook.tar.xz +Source6754: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontbook.doc.tar.xz +Source6756: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontwrap.tar.xz +Source6757: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontwrap.doc.tar.xz +Source6758: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interchar.tar.xz +Source6759: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/interchar.doc.tar.xz +Source6760: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathspec.tar.xz +Source6761: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathspec.doc.tar.xz +Source6762: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/philokalia.tar.xz +Source6763: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/philokalia.doc.tar.xz +Source6765: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polyglossia.tar.xz +Source6766: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/polyglossia.doc.tar.xz +Source6768: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ptext.tar.xz +Source6769: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ptext.doc.tar.xz +Source6770: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quran.tar.xz +Source6771: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quran.doc.tar.xz +Source6772: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/realscripts.tar.xz +Source6773: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/realscripts.doc.tar.xz +Source6775: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucharclasses.tar.xz +Source6776: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ucharclasses.doc.tar.xz +Source6777: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unisugar.tar.xz +Source6778: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unisugar.doc.tar.xz +Source6779: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xebaposter.tar.xz +Source6780: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xebaposter.doc.tar.xz +Source6781: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xecjk.tar.xz +Source6782: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xecjk.doc.tar.xz +Source6784: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xecolor.tar.xz +Source6785: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xecolor.doc.tar.xz +Source6786: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xecyr.tar.xz +Source6787: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xecyr.doc.tar.xz +Source6788: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xeindex.tar.xz +Source6789: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xeindex.doc.tar.xz +Source6790: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xepersian.tar.xz +Source6791: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xepersian.doc.tar.xz +Source6793: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xesearch.tar.xz +Source6794: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xesearch.doc.tar.xz +Source6795: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xespotcolor.tar.xz +Source6796: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xespotcolor.doc.tar.xz +Source6799: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetex-itrans.tar.xz +Source6800: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetex-itrans.doc.tar.xz +Source6801: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetex-pstricks.tar.xz +Source6802: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetex-pstricks.doc.tar.xz +Source6803: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetex-tibetan.tar.xz +Source6804: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetex-tibetan.doc.tar.xz +Source6805: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetexfontinfo.tar.xz +Source6806: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetexfontinfo.doc.tar.xz +Source6807: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetexko.tar.xz +Source6808: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xetexko.doc.tar.xz +Source6809: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xevlna.tar.xz +Source6810: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xevlna.doc.tar.xz +Source6811: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xltxtra.tar.xz +Source6812: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xltxtra.doc.tar.xz +Source6814: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xunicode.tar.xz +Source6815: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xunicode.doc.tar.xz +Source6816: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-docindex.tar.xz +Source6817: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-docindex.doc.tar.xz +Source7023: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-basic.tar.xz +Source7035: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-bibtexextra.tar.xz +Source7036: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-latex.tar.xz +Source7043: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-binextra.tar.xz +Source7101: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-context.tar.xz +Source7105: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-fontsextra.tar.xz +Source7106: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-fontsrecommended.tar.xz +Source7107: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-fontutils.tar.xz +Source7118: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-formatsextra.tar.xz +Source7123: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-games.tar.xz +# Source7125: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-genericextra.tar.xz +# Source7126: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-genericrecommended.tar.xz +# Source7127: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-htmlxml.tar.xz +Source7131: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-humanities.tar.xz +# Source7133: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langafrican.tar.xz +Source7134: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langarabic.tar.xz +Source7135: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langchinese.tar.xz +Source7136: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langcjk.tar.xz +Source7137: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langcyrillic.tar.xz +Source7139: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langczechslovak.tar.xz +Source7143: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langenglish.tar.xz +Source7144: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langeuropean.tar.xz +Source7145: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langfrench.tar.xz +Source7146: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langgerman.tar.xz +Source7147: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langgreek.tar.xz +# Source7149: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langindic.tar.xz +Source7152: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langitalian.tar.xz +Source7153: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langjapanese.tar.xz +Source7159: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langkorean.tar.xz +Source7161: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langother.tar.xz +Source7162: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langpolish.tar.xz +Source7164: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langportuguese.tar.xz +Source7165: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-langspanish.tar.xz +Source7166: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-latexextra.tar.xz +Source7167: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-latexrecommended.tar.xz +Source7169: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-pictures.tar.xz +Source7184: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-luatex.tar.xz +# Source7187: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-mathextra.tar.xz +Source7188: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-metapost.tar.xz +Source7189: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-music.tar.xz +# Source7196: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-omega.tar.xz +# Source7198: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-plainextra.tar.xz +Source7199: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-pstricks.tar.xz +Source7202: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-publishers.tar.xz +# Source7203: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-science.tar.xz +Source7206: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-xetex.tar.xz +Source7207: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-basic.tar.xz +Source7208: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-context.tar.xz +Source7209: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-full.tar.xz +Source7210: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-gust.tar.xz +Source7211: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-medium.tar.xz +Source7212: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-minimal.tar.xz +Source7213: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-small.tar.xz +Source7214: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-tetex.tar.xz +# Source7215: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scheme-xml.tar.xz +# New in 2016 +Source7216: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acmart.tar.xz +Source7217: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/acmart.doc.tar.xz +Source7219: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabi-add.tar.xz +Source7220: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabi-add.doc.tar.xz +Source7221: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabluatex.tar.xz +Source7223: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arabluatex.doc.tar.xz +Source7224: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/archaeologie.tar.xz +Source7225: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/archaeologie.doc.tar.xz +Source7226: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asapsym.tar.xz +Source7227: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asapsym.doc.tar.xz +Source7229: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asciilist.tar.xz +Source7230: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asciilist.doc.tar.xz +Source7232: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-belarusian.tar.xz +Source7233: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-belarusian.doc.tar.xz +Source7235: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-macedonian.tar.xz +Source7236: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-macedonian.doc.tar.xz +Source7238: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-occitan.tar.xz +Source7239: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-occitan.doc.tar.xz +Source7241: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-vietnamese.doc.tar.xz +Source7242: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamercolorthemeowl.tar.xz +Source7243: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamercolorthemeowl.doc.tar.xz +Source7245: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-detlevcm.tar.xz +Source7246: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-detlevcm.doc.tar.xz +Source7247: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-epyt.tar.xz +Source7248: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-epyt.doc.tar.xz +Source7249: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-metropolis.tar.xz +Source7250: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamertheme-metropolis.doc.tar.xz +Source7252: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamer-verona.tar.xz +Source7253: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamer-verona.doc.tar.xz +Source7254: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-abnt.tar.xz +Source7255: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-abnt.doc.tar.xz +Source7256: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-bookinother.tar.xz +Source7257: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-bookinother.doc.tar.xz +Source7258: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-iso690.tar.xz +Source7259: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-iso690.doc.tar.xz +Source7260: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-morenames.tar.xz +Source7261: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-morenames.doc.tar.xz +Source7262: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibletext.tar.xz +Source7263: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibletext.doc.tar.xz +Source7264: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibtexperllibs.tar.xz +Source7265: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bibtexperllibs.doc.tar.xz +Source7267: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bitpattern.tar.xz +Source7268: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bitpattern.doc.tar.xz +Source7270: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/breakcites.tar.xz +Source7271: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/breakcites.doc.tar.xz +Source7272: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxdvidriver.tar.xz +Source7273: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxdvidriver.doc.tar.xz +Source7274: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxenclose.tar.xz +Source7275: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxenclose.doc.tar.xz +Source7276: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxnewfont.tar.xz +Source7277: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxnewfont.doc.tar.xz +Source7278: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxpapersize.tar.xz +Source7279: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxpapersize.doc.tar.xz +Source7280: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/carbohydrates.tar.xz +Source7281: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/carbohydrates.doc.tar.xz +Source7282: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chivo.tar.xz +Source7283: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/chivo.doc.tar.xz +Source7285: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/churchslavonic.tar.xz +Source7286: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/churchslavonic.doc.tar.xz +Source7287: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmdtrack.tar.xz +Source7288: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmdtrack.doc.tar.xz +Source7290: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmexb.tar.xz +Source7291: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cmexb.doc.tar.xz +Source7292: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cochineal.tar.xz +Source7293: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cochineal.doc.tar.xz +Source7294: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coloring.tar.xz +Source7295: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/coloring.doc.tar.xz +Source7296: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/continue.tar.xz +Source7297: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/continue.doc.tar.xz +Source7299: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cquthesis.tar.xz +Source7300: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cquthesis.doc.tar.xz +Source7302: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crimson.tar.xz +Source7303: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crimson.doc.tar.xz +Source7304: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctablestack.tar.xz +Source7305: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ctablestack.doc.tar.xz +Source7307: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/delimseasy.tar.xz +Source7308: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/delimseasy.doc.tar.xz +Source7309: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drawmatrix.tar.xz +Source7310: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/drawmatrix.doc.tar.xz +Source7315: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dynamicnumber.tar.xz +Source7316: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dynamicnumber.doc.tar.xz +Source7318: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecobiblatex.tar.xz +Source7319: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecobiblatex.doc.tar.xz +Source7320: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/econometrics.tar.xz +Source7321: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/econometrics.doc.tar.xz +Source7322: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/einfuehrung2.doc.tar.xz +Source7323: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ellipse.tar.xz +Source7324: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ellipse.doc.tar.xz +Source7326: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emisa.tar.xz +Source7327: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/emisa.doc.tar.xz +Source7329: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exercises.tar.xz +Source7330: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/exercises.doc.tar.xz +Source7332: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ffslides.tar.xz +Source7333: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ffslides.doc.tar.xz +Source7334: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fibeamer.tar.xz +Source7335: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fibeamer.doc.tar.xz +Source7337: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixcmex.tar.xz +Source7338: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixcmex.doc.tar.xz +Source7340: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/font-change-xetex.tar.xz +Source7341: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/font-change-xetex.doc.tar.xz +Source7342: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footnotehyper.tar.xz +Source7343: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footnotehyper.doc.tar.xz +Source7345: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/formation-latex-ul.doc.tar.xz +Source7348: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/getitems.tar.xz +Source7349: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/getitems.doc.tar.xz +Source7351: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gitlog.tar.xz +Source7352: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gitlog.doc.tar.xz +Source7353: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-extra.tar.xz +Source7354: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/glossaries-extra.doc.tar.xz +Source7356: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gloss-occitan.tar.xz +Source7357: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gloss-occitan.doc.tar.xz +Source7359: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gobble.tar.xz +Source7360: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gobble.doc.tar.xz +Source7362: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gradstudentresume.tar.xz +Source7363: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gradstudentresume.doc.tar.xz +Source7364: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphics-cfg.tar.xz +Source7365: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphics-cfg.doc.tar.xz +Source7366: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greektonoi.tar.xz +Source7367: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/greektonoi.doc.tar.xz +Source7371: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/h2020proposal.tar.xz +Source7372: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/h2020proposal.doc.tar.xz +Source7375: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-bulgarian.doc.tar.xz +Source7376: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-churchslavonic.tar.xz +Source7379: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-occitan.tar.xz +Source7380: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-sanskrit.doc.tar.xz +Source7381: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-spanish.doc.tar.xz +Source7385: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ietfbibs.doc.tar.xz +Source7386: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iffont.tar.xz +Source7387: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iffont.doc.tar.xz +Source7389: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imfellenglish.tar.xz +Source7390: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/imfellenglish.doc.tar.xz +Source7391: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jacow.tar.xz +Source7392: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jacow.doc.tar.xz +Source7393: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keyvaltable.tar.xz +Source7394: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keyvaltable.doc.tar.xz +Source7396: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ksp-thesis.tar.xz +Source7397: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ksp-thesis.doc.tar.xz +Source7398: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/langsci.tar.xz +Source7399: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/langsci.doc.tar.xz +Source7400: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex2e-help-texinfo-fr.doc.tar.xz +Source7401: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-bib2-ex.doc.tar.xz +Source7402: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-tds.doc.tar.xz +Source7404: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libertinegc.tar.xz +Source7405: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libertinegc.doc.tar.xz +Source7406: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libertinus.tar.xz +Source7407: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libertinus.doc.tar.xz +Source7408: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libertinust1math.tar.xz +Source7409: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/libertinust1math.doc.tar.xz +Source7410: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/librebodoni.tar.xz +Source7411: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/librebodoni.doc.tar.xz +Source7412: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/linop.tar.xz +Source7413: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/linop.doc.tar.xz +Source7414: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/longfbox.tar.xz +Source7415: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/longfbox.doc.tar.xz +Source7416: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lroundrect.tar.xz +Source7417: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lroundrect.doc.tar.xz +Source7419: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lstbayes.tar.xz +Source7420: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lstbayes.doc.tar.xz +Source7422: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatex85.tar.xz +Source7423: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatex85.doc.tar.xz +Source7425: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makebase.tar.xz +Source7426: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/makebase.doc.tar.xz +Source7428: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/markdown.tar.xz +Source7429: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/markdown.doc.tar.xz +Source7431: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathpartir.tar.xz +Source7432: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mathpartir.doc.tar.xz +Source7437: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/miama.tar.xz +Source7438: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/miama.doc.tar.xz +Source7440: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moodle.tar.xz +Source7441: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/moodle.doc.tar.xz +Source7443: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mparrows.tar.xz +Source7444: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mparrows.doc.tar.xz +Source7445: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multidef.tar.xz +Source7446: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multidef.doc.tar.xz +Source7448: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mynsfc.tar.xz +Source7449: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mynsfc.doc.tar.xz +Source7451: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nihbiosketch.tar.xz +Source7452: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nihbiosketch.doc.tar.xz +Source7453: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nimbus15.tar.xz +Source7454: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nimbus15.doc.tar.xz +Source7455: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/normalcolor.tar.xz +Source7456: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/normalcolor.doc.tar.xz +Source7458: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/noto.tar.xz +Source7459: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/noto.doc.tar.xz +Source7460: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nucleardata.tar.xz +Source7461: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nucleardata.doc.tar.xz +Source7463: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nwejm.tar.xz +Source7464: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nwejm.doc.tar.xz +Source7466: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/optidef.tar.xz +Source7467: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/optidef.doc.tar.xz +Source7468: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/options.tar.xz +Source7469: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/options.doc.tar.xz +Source7470: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parades.tar.xz +Source7471: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/parades.doc.tar.xz +Source7473: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pbibtex-base.tar.xz +Source7474: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pbibtex-base.doc.tar.xz +Source7478: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfornament.tar.xz +Source7479: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgfornament.doc.tar.xz +Source7480: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-spectra.tar.xz +Source7481: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pgf-spectra.doc.tar.xz +Source7482: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/platex.tar.xz +Source7483: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/platex.doc.tar.xz +# preview is generated from emacs-auctex +# Source7486: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/preview.tar.xz +# Source7487: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/preview.doc.tar.xz +Source7489: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prooftrees.tar.xz +Source7490: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/prooftrees.doc.tar.xz +Source7491: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-cie.tar.xz +Source7492: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-cie.doc.tar.xz +Source7493: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rosario.tar.xz +Source7494: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rosario.doc.tar.xz +Source7496: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/russ.tar.xz +Source7497: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/russ.doc.tar.xz +Source7498: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sanitize-umlaut.tar.xz +Source7499: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sanitize-umlaut.doc.tar.xz +Source7500: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scrlttr2copy.tar.xz +Source7501: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scrlttr2copy.doc.tar.xz +Source7502: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seuthesix.tar.xz +Source7503: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/seuthesix.doc.tar.xz +Source7505: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/signchart.tar.xz +Source7506: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/signchart.doc.tar.xz +Source7508: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simpler-wick.tar.xz +Source7509: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simpler-wick.doc.tar.xz +Source7510: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/smartunits.tar.xz +Source7511: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/smartunits.doc.tar.xz +Source7515: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svrsymbols.tar.xz +Source7516: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/svrsymbols.doc.tar.xz +Source7518: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tempora.tar.xz +Source7519: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tempora.doc.tar.xz +Source7521: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-ini-files.tar.xz +Source7522: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tex-ini-files.doc.tar.xz +Source7523: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texlive-es.doc.tar.xz +Source7524: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texvc.tar.xz +Source7525: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texvc.doc.tar.xz +# windows only? +Source7527: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texworks.doc.tar.xz +Source7528: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-feynman.tar.xz +Source7529: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-feynman.doc.tar.xz +Source7530: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tipfr.tar.xz +Source7531: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typed-checklist.tar.xz +Source7532: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typed-checklist.doc.tar.xz +Source7534: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uantwerpendocs.tar.xz +Source7535: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uantwerpendocs.doc.tar.xz +Source7537: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uhrzeit.tar.xz +Source7538: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uhrzeit.doc.tar.xz +Source7539: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umbclegislation.tar.xz +Source7540: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/umbclegislation.doc.tar.xz +Source7541: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unicode-data.tar.xz +Source7542: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unicode-data.doc.tar.xz +Source7543: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/updmap-map.tar.xz +Source7544: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uplatex.tar.xz +# Non-free. +# Source7548: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uwmslide.tar.xz +# Source7549: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uwmslide.doc.tar.xz +Source7550: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/visualpstricks.doc.tar.xz +Source7551: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/visualtikz.doc.tar.xz +Source7554: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xassoccnt.tar.xz +Source7555: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xassoccnt.doc.tar.xz +Source7556: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcntperchap.tar.xz +Source7557: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcntperchap.doc.tar.xz +Source7558: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xduthesis.tar.xz +Source7559: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xduthesis.doc.tar.xz +Source7561: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xellipsis.tar.xz +Source7562: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xellipsis.doc.tar.xz +Source7567: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xsavebox.tar.xz +Source7568: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xsavebox.doc.tar.xz +Source7570: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ycbook.tar.xz +Source7571: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ycbook.doc.tar.xz +Source7572: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yfonts-t1.tar.xz +Source7573: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yfonts-t1.doc.tar.xz +Source7574: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yinit-otf.tar.xz +Source7575: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yinit-otf.doc.tar.xz +Source7576: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhmetrics-uptex.tar.xz +Source7577: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhmetrics-uptex.doc.tar.xz +Source7578: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fonts-churchslavonic.tar.xz +Source7579: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fonts-churchslavonic.doc.tar.xz +Source7580: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adtrees.tar.xz +Source7581: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/adtrees.doc.tar.xz +Source7582: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ptex-base.tar.xz +Source7583: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ptex-base.doc.tar.xz +Source7584: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ptex-fonts.tar.xz +Source7585: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ptex-fonts.doc.tar.xz +Source7586: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uptex-base.tar.xz +Source7587: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uptex-base.doc.tar.xz +Source7588: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uptex-fonts.tar.xz +Source7589: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uptex-fonts.doc.tar.xz +# Source7591: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatex-def.tar.xz +# Source7592: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luatex-def.doc.tar.xz +Source7596: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lshort-estonian.doc.tar.xz # License clarification proof for yfonts-t1 Source7597: yfonts-t1-license-email.pdf -Source7598: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bestpapers.tar.xz -Source7599: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bestpapers.doc.tar.xz -Source7600: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-claves.tar.xz -Source7601: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-claves.doc.tar.xz -Source7602: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-ijsra.tar.xz -Source7603: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-ijsra.doc.tar.xz -Source7604: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-lni.tar.xz -Source7605: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-lni.doc.tar.xz -Source7606: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-nottsclassic.tar.xz -Source7607: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-nottsclassic.doc.tar.xz -Source7608: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphics-def.tar.xz -Source7609: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-indonesian.tar.xz -Source7610: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-indonesian.doc.tar.xz -Source7611: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-malay.tar.xz -Source7612: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-malay.doc.tar.xz -Source7613: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-plaingeneric.tar.xz -Source7614: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-mathscience.tar.xz -Source7615: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listofitems.tar.xz -Source7616: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/listofitems.doc.tar.xz -Source7617: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abnt.tar.xz -Source7618: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/abnt.doc.tar.xz -Source7619: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/actuarialsymbol.tar.xz -Source7620: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/actuarialsymbol.doc.tar.xz -Source7621: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/addfont.tar.xz -Source7622: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/addfont.doc.tar.xz -Source7623: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algolrevived.tar.xz -Source7624: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algolrevived.doc.tar.xz -Source7625: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alkalami.tar.xz -Source7626: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alkalami.doc.tar.xz -Source7627: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apalike-german.tar.xz -Source7628: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apalike-german.doc.tar.xz -Source7629: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arimo.tar.xz -Source7630: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arimo.doc.tar.xz -Source7631: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arphic-ttf.tar.xz -Source7632: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arphic-ttf.doc.tar.xz -Source7633: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asymptote-by-example-zh-cn.doc.tar.xz -Source7634: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asymptote-faq-zh-cn.doc.tar.xz -Source7635: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asymptote-manual-zh-cn.doc.tar.xz -Source7636: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aucklandthesis.tar.xz -Source7637: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aucklandthesis.doc.tar.xz -Source7638: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aurl.tar.xz -Source7639: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aurl.doc.tar.xz -Source7640: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/awesomebox.tar.xz -Source7641: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/awesomebox.doc.tar.xz -Source7642: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-azerbaijani.tar.xz -Source7643: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-azerbaijani.doc.tar.xz -Source7644: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/baekmuk.tar.xz -Source7645: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/baekmuk.doc.tar.xz -Source7646: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bangorexam.tar.xz -Source7647: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bangorexam.doc.tar.xz -Source7648: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/baskervillef.tar.xz -Source7649: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/baskervillef.doc.tar.xz -Source7650: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerswitch.tar.xz -Source7651: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerswitch.doc.tar.xz -Source7652: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beilstein.tar.xz -Source7653: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beilstein.doc.tar.xz -Source7654: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beuron.tar.xz -Source7655: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beuron.doc.tar.xz -Source7658: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-cheatsheet.doc.tar.xz -Source7659: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-enc.tar.xz -Source7660: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-enc.doc.tar.xz -Source7661: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-gb7714-2015.tar.xz -Source7662: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-gb7714-2015.doc.tar.xz -Source7663: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-oxref.tar.xz -Source7664: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-oxref.doc.tar.xz -Source7665: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-sbl.tar.xz -Source7666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-sbl.doc.tar.xz -Source7667: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-shortfields.tar.xz -Source7668: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-shortfields.doc.tar.xz -Source7669: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/binarytree.tar.xz -Source7670: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/binarytree.doc.tar.xz -Source7671: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biochemistry-colors.tar.xz -Source7672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biochemistry-colors.doc.tar.xz -Source7673: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biolett-bst.tar.xz -Source7674: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biolett-bst.doc.tar.xz -Source7675: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bredzenie.tar.xz -Source7676: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bredzenie.doc.tar.xz -Source7677: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxcalc.tar.xz -Source7678: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxcalc.doc.tar.xz -Source7679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxjalipsum.tar.xz -Source7680: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxjalipsum.doc.tar.xz -Source7681: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxjaprnind.tar.xz -Source7682: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxjaprnind.doc.tar.xz -Source7683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxorigcapt.tar.xz -Source7684: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxorigcapt.doc.tar.xz -Source7685: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/callouts.tar.xz -Source7686: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/callouts.doc.tar.xz -Source7687: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cesenaexam.tar.xz -Source7688: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cesenaexam.doc.tar.xz -Source7689: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cheatsheet.tar.xz -Source7690: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cheatsheet.doc.tar.xz -Source7691: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/childdoc.tar.xz -Source7692: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/childdoc.doc.tar.xz -Source7693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cje.tar.xz -Source7694: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cje.doc.tar.xz -Source7695: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/collection-texworks.tar.xz -Source7696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/combofont.tar.xz -Source7697: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/combofont.doc.tar.xz -Source7698: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-cmscbf.tar.xz -Source7699: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-cmscbf.doc.tar.xz -Source7700: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-cmttbf.tar.xz -Source7701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-cmttbf.doc.tar.xz -Source7702: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-inifile.tar.xz -Source7703: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-inifile.doc.tar.xz -Source7704: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-layout.tar.xz -Source7705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-layout.doc.tar.xz -Source7706: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/conv-xkv.tar.xz -Source7707: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/conv-xkv.doc.tar.xz -Source7708: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cooking-units.tar.xz -Source7709: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cooking-units.doc.tar.xz -Source7710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cormorantgaramond.tar.xz -Source7711: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cormorantgaramond.doc.tar.xz -Source7712: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossreftools.tar.xz -Source7713: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crossreftools.doc.tar.xz -Source7714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/css-colors.tar.xz -Source7715: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/css-colors.doc.tar.xz -Source7716: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cstypo.tar.xz -Source7717: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cstypo.doc.tar.xz -Source7718: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/currency.tar.xz -Source7719: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/currency.doc.tar.xz -Source7720: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/docsurvey.doc.tar.xz -Source7721: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/draftfigure.tar.xz -Source7722: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/draftfigure.doc.tar.xz -Source7723: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtxdescribe.tar.xz -Source7724: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dtxdescribe.doc.tar.xz -Source7725: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ducksay.tar.xz -Source7726: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ducksay.doc.tar.xz -Source7729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dynkin-diagrams.tar.xz -Source7730: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dynkin-diagrams.doc.tar.xz -Source7731: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easyformat.tar.xz -Source7732: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/easyformat.doc.tar.xz -Source7735: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecgdraw.tar.xz -Source7736: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecgdraw.doc.tar.xz -Source7737: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endofproofwd.tar.xz -Source7738: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endofproofwd.doc.tar.xz -Source7739: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqnalign.tar.xz -Source7740: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqnalign.doc.tar.xz -Source7741: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eulerpx.tar.xz -Source7742: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eulerpx.doc.tar.xz -Source7743: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fetchcls.tar.xz -Source7744: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fetchcls.doc.tar.xz -Source7745: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fgruler.tar.xz -Source7746: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fgruler.doc.tar.xz -Source7747: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filecontentsdef.tar.xz -Source7748: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/filecontentsdef.doc.tar.xz -Source7749: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixjfm.tar.xz -Source7750: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fixjfm.doc.tar.xz -Source7753: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footmisx.tar.xz -Source7754: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/footmisx.doc.tar.xz -Source7756: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forest-quickstart.doc.tar.xz -Source7757: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forms16be.tar.xz -Source7758: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forms16be.doc.tar.xz -Source7759: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frederika2016.tar.xz -Source7760: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/frederika2016.doc.tar.xz -Source7761: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitfile-info.tar.xz -Source7762: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitfile-info.doc.tar.xz -Source7763: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gofonts.tar.xz -Source7764: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gofonts.doc.tar.xz -Source7765: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grant.tar.xz -Source7766: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grant.doc.tar.xz -Source7767: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grayhints.tar.xz -Source7768: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grayhints.doc.tar.xz -Source7769: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gtrlib-largetrees.tar.xz -Source7770: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gtrlib-largetrees.doc.tar.xz -Source7771: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/halloweenmath.tar.xz -Source7772: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/halloweenmath.doc.tar.xz -Source7773: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hackthefootline.tar.xz -Source7774: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hackthefootline.doc.tar.xz -Source7775: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hecthese.tar.xz -Source7776: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hecthese.doc.tar.xz -Source7777: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hithesis.tar.xz -Source7778: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hithesis.doc.tar.xz -Source7779: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hustthesis.tar.xz -Source7780: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hustthesis.doc.tar.xz -Source7781: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyphen-belarusian.tar.xz -Source7782: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifptex.tar.xz -Source7783: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifptex.doc.tar.xz -Source7784: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifxptex.tar.xz -Source7785: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ifxptex.doc.tar.xz -Source7786: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ijsra.tar.xz -Source7787: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ijsra.doc.tar.xz -Source7788: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/invoice2.tar.xz -Source7789: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/invoice2.doc.tar.xz -Source7790: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iscram.tar.xz -Source7791: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iscram.doc.tar.xz -Source7792: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isopt.tar.xz -Source7793: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/isopt.doc.tar.xz -Source7794: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/istgame.tar.xz -Source7795: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/istgame.doc.tar.xz -Source7798: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jlreq.tar.xz -Source7799: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jlreq.doc.tar.xz -Source7800: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keyfloat.tar.xz -Source7801: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/keyfloat.doc.tar.xz -Source7802: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knowledge.tar.xz -Source7803: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/knowledge.doc.tar.xz -Source7804: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/komacv-rg.tar.xz -Source7805: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/komacv-rg.doc.tar.xz -Source7806: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ku-template.tar.xz -Source7807: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ku-template.doc.tar.xz -Source7808: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ladder.tar.xz -Source7809: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ladder.doc.tar.xz -Source7810: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-mr.doc.tar.xz -Source7813: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-refsheet.doc.tar.xz -Source7816: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexbangla.tar.xz -Source7817: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexbangla.doc.tar.xz -Source7818: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexbug.tar.xz -Source7819: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexbug.doc.tar.xz -Source7820: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexgit.tar.xz -Source7821: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexgit.doc.tar.xz -Source7824: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/limecv.tar.xz -Source7825: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/limecv.doc.tar.xz -Source7826: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ling-macros.tar.xz -Source7827: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ling-macros.doc.tar.xz -Source7828: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lion-msc.tar.xz -Source7829: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lion-msc.doc.tar.xz -Source7830: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lni.tar.xz -Source7831: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lni.doc.tar.xz -Source7832: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltb2bib.tar.xz -Source7833: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltb2bib.doc.tar.xz -Source7834: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luahyphenrules.tar.xz -Source7835: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luahyphenrules.doc.tar.xz -Source7836: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luamesh.tar.xz -Source7837: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luamesh.doc.tar.xz -Source7838: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luapackageloader.tar.xz -Source7839: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luapackageloader.doc.tar.xz -Source7842: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/maker.tar.xz -Source7843: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/maker.doc.tar.xz -Source7844: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marginfit.tar.xz -Source7845: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marginfit.doc.tar.xz -Source7846: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/math-into-latex-4.doc.tar.xz -Source7847: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcexam.tar.xz -Source7848: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mcexam.doc.tar.xz -Source7849: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mendex-doc.doc.tar.xz -Source7850: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/milog.tar.xz -Source7851: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/milog.doc.tar.xz -Source7852: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/missaali.tar.xz -Source7853: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/missaali.doc.tar.xz -Source7854: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modular.tar.xz -Source7855: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modular.doc.tar.xz -Source7856: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/montserrat.tar.xz -Source7857: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/montserrat.doc.tar.xz -Source7858: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpostinl.tar.xz -Source7859: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mpostinl.doc.tar.xz -Source7860: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mucproc.tar.xz -Source7861: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mucproc.doc.tar.xz -Source7862: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multilang.tar.xz -Source7863: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multilang.doc.tar.xz -Source7864: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musicography.tar.xz -Source7865: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musicography.doc.tar.xz -Source7866: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/na-box.tar.xz -Source7867: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/na-box.doc.tar.xz -Source7868: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/na-position.tar.xz -Source7869: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/na-position.doc.tar.xz -Source7870: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/navydocs.tar.xz -Source7871: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/navydocs.doc.tar.xz -Source7872: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/niceframe-type1.tar.xz -Source7873: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/niceframe-type1.doc.tar.xz -Source7874: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nodetree.tar.xz -Source7875: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nodetree.doc.tar.xz -Source7876: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notespages.tar.xz -Source7877: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notespages.doc.tar.xz -Source7878: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notestex.tar.xz -Source7879: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notestex.doc.tar.xz -Source7880: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/novel.tar.xz -Source7881: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/novel.doc.tar.xz -Source7882: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numnameru.tar.xz -Source7883: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numnameru.doc.tar.xz -Source7884: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numspell.tar.xz -Source7885: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numspell.doc.tar.xz -Source7886: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/octave.tar.xz -Source7887: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/octave.doc.tar.xz -Source7888: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/padauk.tar.xz -Source7889: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/padauk.doc.tar.xz -Source7892: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfreview.tar.xz -Source7893: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfreview.doc.tar.xz -Source7894: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phffullpagefigure.tar.xz -Source7895: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phffullpagefigure.doc.tar.xz -Source7896: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfnote.tar.xz -Source7897: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfnote.doc.tar.xz -Source7898: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfparen.tar.xz -Source7899: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfparen.doc.tar.xz -Source7900: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfqit.tar.xz -Source7901: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfqit.doc.tar.xz -Source7902: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfquotetext.tar.xz -Source7903: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfquotetext.doc.tar.xz -Source7904: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfsvnwatermark.tar.xz -Source7905: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfsvnwatermark.doc.tar.xz -Source7906: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfthm.tar.xz -Source7907: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phfthm.doc.tar.xz -Source7908: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phonenumbers.tar.xz -Source7909: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/phonenumbers.doc.tar.xz -Source7910: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/platex-tools.tar.xz -Source7911: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/platex-tools.doc.tar.xz -Source7912: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/platexcheat.doc.tar.xz -Source7913: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poetry.tar.xz -Source7914: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poetry.doc.tar.xz -Source7915: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-arrow.tar.xz -Source7916: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-arrow.doc.tar.xz -Source7917: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-geometrictools.tar.xz -Source7918: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-geometrictools.doc.tar.xz -Source7919: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-poker.tar.xz -Source7920: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-poker.doc.tar.xz -Source7921: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-rputover.tar.xz -Source7922: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-rputover.doc.tar.xz -Source7923: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-shell.tar.xz -Source7924: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-shell.doc.tar.xz -Source7925: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-vehicle.tar.xz -Source7926: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-vehicle.doc.tar.xz -Source7927: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstring.tar.xz -Source7928: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pstring.doc.tar.xz -Source7931: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxtatescale.tar.xz -Source7932: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxtatescale.doc.tar.xz -Source7933: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxufont.tar.xz -Source7934: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxufont.doc.tar.xz -Source7935: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quicktype.tar.xz -Source7936: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quicktype.doc.tar.xz -Source7937: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rutitlepage.tar.xz -Source7938: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rutitlepage.doc.tar.xz -Source7939: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scsnowman.tar.xz -Source7940: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scsnowman.doc.tar.xz -Source7941: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scratch.tar.xz -Source7942: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scratch.doc.tar.xz -Source7943: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sesstime.tar.xz -Source7944: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sesstime.doc.tar.xz -Source7945: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shobhika.tar.xz -Source7946: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/shobhika.doc.tar.xz -Source7947: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simple-resume-cv.tar.xz -Source7948: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simple-resume-cv.doc.tar.xz -Source7949: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simple-thesis-dissertation.tar.xz -Source7950: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simple-thesis-dissertation.doc.tar.xz -Source7951: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/soup.tar.xz -Source7952: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/soup.doc.tar.xz -Source7953: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spark-otf.tar.xz -Source7954: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spark-otf.doc.tar.xz -Source7955: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spectralsequences.tar.xz -Source7956: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spectralsequences.doc.tar.xz -Source7957: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/studenthandouts.tar.xz -Source7958: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/studenthandouts.doc.tar.xz -Source7959: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/table-fct.tar.xz -Source7960: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/table-fct.doc.tar.xz -Source7961: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/termcal-de.tar.xz -Source7962: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/termcal-de.doc.tar.xz -Source7963: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/testidx.tar.xz -Source7964: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/testidx.doc.tar.xz -Source7967: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texproposal.doc.tar.xz -Source7968: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thaienum.tar.xz -Source7969: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thaienum.doc.tar.xz -Source7970: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-kalender.tar.xz -Source7971: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-kalender.doc.tar.xz -Source7972: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-optics.tar.xz -Source7973: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-optics.doc.tar.xz -Source7974: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzcodeblocks.tar.xz -Source7975: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzcodeblocks.doc.tar.xz -Source7976: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzducks.tar.xz -Source7977: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzducks.doc.tar.xz -Source7978: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzpeople.tar.xz -Source7979: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzpeople.doc.tar.xz -Source7984: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tocdata.tar.xz -Source7985: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tocdata.doc.tar.xz -Source7986: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/txuprcal.tar.xz -Source7987: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/txuprcal.doc.tar.xz -Source7988: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typoaid.tar.xz -Source7989: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typoaid.doc.tar.xz -Source7990: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uhhassignment.tar.xz -Source7991: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uhhassignment.doc.tar.xz -Source7993: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/undergradmath.doc.tar.xz -Source7994: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unfonts-core.tar.xz -Source7995: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unfonts-core.doc.tar.xz -Source7996: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unfonts-extra.tar.xz -Source7997: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unfonts-extra.doc.tar.xz -Source7998: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unicode-bidi.tar.xz -Source7999: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unicode-bidi.doc.tar.xz -Source8000: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unitn-bimrep.tar.xz -Source8001: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unitn-bimrep.doc.tar.xz -Source8002: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/upzhkinsoku.tar.xz -Source8003: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/upzhkinsoku.doc.tar.xz -Source8004: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uspace.tar.xz -Source8005: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uspace.doc.tar.xz -Source8008: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/variablelm.tar.xz -Source8009: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/variablelm.doc.tar.xz -Source8012: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wallcalendar.tar.xz -Source8013: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wallcalendar.doc.tar.xz -Source8014: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wtref.tar.xz -Source8015: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/wtref.doc.tar.xz -Source8016: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcolor-material.tar.xz -Source8017: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcolor-material.doc.tar.xz -Source8018: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xechangebar.tar.xz -Source8019: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xechangebar.doc.tar.xz -Source8020: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xltabular.tar.xz -Source8021: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xltabular.doc.tar.xz -Source8022: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xsim.tar.xz -Source8023: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xsim.doc.tar.xz -Source8024: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yaletter.tar.xz -Source8025: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/yaletter.doc.tar.xz -Source8026: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zebra-goodies.tar.xz -Source8027: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zebra-goodies.doc.tar.xz -Source8028: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhlipsum.tar.xz -Source8029: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zhlipsum.doc.tar.xz -Source8030: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fvextra.tar.xz -Source8031: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fvextra.doc.tar.xz -Source8032: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translator.tar.xz -Source8033: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/translator.doc.tar.xz +Source7598: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bestpapers.tar.xz +Source7599: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bestpapers.doc.tar.xz +Source7600: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-claves.tar.xz +Source7601: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-claves.doc.tar.xz +Source7602: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-ijsra.tar.xz +Source7603: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-ijsra.doc.tar.xz +Source7604: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-lni.tar.xz +Source7605: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-lni.doc.tar.xz +Source7606: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-nottsclassic.tar.xz +Source7607: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-nottsclassic.doc.tar.xz +Source7608: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/graphics-def.tar.xz +# 2017 +Source7609: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-indonesian.tar.xz +Source7610: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-indonesian.doc.tar.xz +Source7611: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-malay.tar.xz +Source7612: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-malay.doc.tar.xz +Source7613: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-plaingeneric.tar.xz +Source7614: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-mathscience.tar.xz +Source7615: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listofitems.tar.xz +Source7616: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/listofitems.doc.tar.xz +Source7617: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abnt.tar.xz +Source7618: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/abnt.doc.tar.xz +Source7619: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/actuarialsymbol.tar.xz +Source7620: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/actuarialsymbol.doc.tar.xz +Source7621: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/addfont.tar.xz +Source7622: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/addfont.doc.tar.xz +Source7623: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/algolrevived.tar.xz +Source7624: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/algolrevived.doc.tar.xz +Source7625: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alkalami.tar.xz +Source7626: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/alkalami.doc.tar.xz +Source7627: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apalike-german.tar.xz +Source7628: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/apalike-german.doc.tar.xz +Source7629: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arimo.tar.xz +Source7630: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arimo.doc.tar.xz +Source7631: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arphic-ttf.tar.xz +Source7632: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/arphic-ttf.doc.tar.xz +Source7633: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asymptote-by-example-zh-cn.doc.tar.xz +Source7634: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asymptote-faq-zh-cn.doc.tar.xz +Source7635: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/asymptote-manual-zh-cn.doc.tar.xz +Source7636: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aucklandthesis.tar.xz +Source7637: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aucklandthesis.doc.tar.xz +Source7638: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aurl.tar.xz +Source7639: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/aurl.doc.tar.xz +Source7640: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/awesomebox.tar.xz +Source7641: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/awesomebox.doc.tar.xz +Source7642: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-azerbaijani.tar.xz +Source7643: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/babel-azerbaijani.doc.tar.xz +Source7644: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/baekmuk.tar.xz +Source7645: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/baekmuk.doc.tar.xz +Source7646: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bangorexam.tar.xz +Source7647: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bangorexam.doc.tar.xz +Source7648: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/baskervillef.tar.xz +Source7649: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/baskervillef.doc.tar.xz +Source7650: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerswitch.tar.xz +Source7651: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beamerswitch.doc.tar.xz +Source7652: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beilstein.tar.xz +Source7653: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beilstein.doc.tar.xz +Source7654: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beuron.tar.xz +Source7655: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/beuron.doc.tar.xz +Source7658: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-cheatsheet.doc.tar.xz +Source7659: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-enc.tar.xz +Source7660: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-enc.doc.tar.xz +Source7661: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-gb7714-2015.tar.xz +Source7662: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-gb7714-2015.doc.tar.xz +Source7663: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-oxref.tar.xz +Source7664: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-oxref.doc.tar.xz +Source7665: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-sbl.tar.xz +Source7666: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-sbl.doc.tar.xz +Source7667: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-shortfields.tar.xz +Source7668: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biblatex-shortfields.doc.tar.xz +Source7669: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/binarytree.tar.xz +Source7670: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/binarytree.doc.tar.xz +Source7671: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biochemistry-colors.tar.xz +Source7672: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biochemistry-colors.doc.tar.xz +Source7673: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biolett-bst.tar.xz +Source7674: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/biolett-bst.doc.tar.xz +Source7675: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bredzenie.tar.xz +Source7676: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bredzenie.doc.tar.xz +Source7677: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxcalc.tar.xz +Source7678: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxcalc.doc.tar.xz +Source7679: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxjalipsum.tar.xz +Source7680: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxjalipsum.doc.tar.xz +Source7681: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxjaprnind.tar.xz +Source7682: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxjaprnind.doc.tar.xz +Source7683: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxorigcapt.tar.xz +Source7684: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/bxorigcapt.doc.tar.xz +Source7685: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/callouts.tar.xz +Source7686: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/callouts.doc.tar.xz +Source7687: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cesenaexam.tar.xz +Source7688: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cesenaexam.doc.tar.xz +Source7689: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cheatsheet.tar.xz +Source7690: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cheatsheet.doc.tar.xz +Source7691: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/childdoc.tar.xz +Source7692: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/childdoc.doc.tar.xz +Source7693: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cje.tar.xz +Source7694: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cje.doc.tar.xz +Source7695: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/collection-texworks.tar.xz +Source7696: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/combofont.tar.xz +Source7697: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/combofont.doc.tar.xz +Source7698: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-cmscbf.tar.xz +Source7699: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-cmscbf.doc.tar.xz +Source7700: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-cmttbf.tar.xz +Source7701: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-cmttbf.doc.tar.xz +Source7702: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-inifile.tar.xz +Source7703: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-inifile.doc.tar.xz +Source7704: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-layout.tar.xz +Source7705: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/context-layout.doc.tar.xz +Source7706: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/conv-xkv.tar.xz +Source7707: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/conv-xkv.doc.tar.xz +Source7708: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cooking-units.tar.xz +Source7709: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cooking-units.doc.tar.xz +Source7710: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cormorantgaramond.tar.xz +Source7711: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cormorantgaramond.doc.tar.xz +Source7712: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crossreftools.tar.xz +Source7713: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/crossreftools.doc.tar.xz +Source7714: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/css-colors.tar.xz +Source7715: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/css-colors.doc.tar.xz +Source7716: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cstypo.tar.xz +Source7717: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/cstypo.doc.tar.xz +Source7718: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/currency.tar.xz +Source7719: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/currency.doc.tar.xz +Source7720: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/docsurvey.doc.tar.xz +Source7721: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/draftfigure.tar.xz +Source7722: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/draftfigure.doc.tar.xz +Source7723: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dtxdescribe.tar.xz +Source7724: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dtxdescribe.doc.tar.xz +Source7725: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ducksay.tar.xz +Source7726: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ducksay.doc.tar.xz +Source7729: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dynkin-diagrams.tar.xz +Source7730: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/dynkin-diagrams.doc.tar.xz +Source7731: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easyformat.tar.xz +Source7732: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/easyformat.doc.tar.xz +Source7735: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecgdraw.tar.xz +Source7736: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ecgdraw.doc.tar.xz +Source7737: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endofproofwd.tar.xz +Source7738: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/endofproofwd.doc.tar.xz +Source7739: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqnalign.tar.xz +Source7740: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eqnalign.doc.tar.xz +Source7741: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eulerpx.tar.xz +Source7742: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/eulerpx.doc.tar.xz +Source7743: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fetchcls.tar.xz +Source7744: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fetchcls.doc.tar.xz +Source7745: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fgruler.tar.xz +Source7746: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fgruler.doc.tar.xz +Source7747: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filecontentsdef.tar.xz +Source7748: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/filecontentsdef.doc.tar.xz +Source7749: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixjfm.tar.xz +Source7750: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fixjfm.doc.tar.xz +Source7751: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontloader-luaotfload.tar.xz +Source7752: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fontloader-luaotfload.doc.tar.xz +Source7753: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footmisx.tar.xz +Source7754: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/footmisx.doc.tar.xz +Source7756: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forest-quickstart.doc.tar.xz +Source7757: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forms16be.tar.xz +Source7758: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/forms16be.doc.tar.xz +Source7759: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frederika2016.tar.xz +Source7760: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/frederika2016.doc.tar.xz +Source7761: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gitfile-info.tar.xz +Source7762: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gitfile-info.doc.tar.xz +Source7763: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gofonts.tar.xz +Source7764: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gofonts.doc.tar.xz +Source7765: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grant.tar.xz +Source7766: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grant.doc.tar.xz +Source7767: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grayhints.tar.xz +Source7768: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/grayhints.doc.tar.xz +Source7769: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gtrlib-largetrees.tar.xz +Source7770: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/gtrlib-largetrees.doc.tar.xz +Source7771: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/halloweenmath.tar.xz +Source7772: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/halloweenmath.doc.tar.xz +Source7773: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hackthefootline.tar.xz +Source7774: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hackthefootline.doc.tar.xz +Source7775: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hecthese.tar.xz +Source7776: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hecthese.doc.tar.xz +Source7777: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hithesis.tar.xz +Source7778: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hithesis.doc.tar.xz +Source7779: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hustthesis.tar.xz +Source7780: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hustthesis.doc.tar.xz +Source7781: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/hyphen-belarusian.tar.xz +Source7782: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifptex.tar.xz +Source7783: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifptex.doc.tar.xz +Source7784: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifxptex.tar.xz +Source7785: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ifxptex.doc.tar.xz +Source7786: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ijsra.tar.xz +Source7787: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ijsra.doc.tar.xz +Source7788: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/invoice2.tar.xz +Source7789: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/invoice2.doc.tar.xz +Source7790: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iscram.tar.xz +Source7791: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/iscram.doc.tar.xz +Source7792: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isopt.tar.xz +Source7793: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/isopt.doc.tar.xz +Source7794: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/istgame.tar.xz +Source7795: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/istgame.doc.tar.xz +Source7798: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jlreq.tar.xz +Source7799: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/jlreq.doc.tar.xz +Source7800: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keyfloat.tar.xz +Source7801: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/keyfloat.doc.tar.xz +Source7802: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knowledge.tar.xz +Source7803: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/knowledge.doc.tar.xz +Source7804: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/komacv-rg.tar.xz +Source7805: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/komacv-rg.doc.tar.xz +Source7806: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ku-template.tar.xz +Source7807: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ku-template.doc.tar.xz +Source7808: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ladder.tar.xz +Source7809: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ladder.doc.tar.xz +Source7810: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-mr.doc.tar.xz +Source7813: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latex-refsheet.doc.tar.xz +Source7816: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexbangla.tar.xz +Source7817: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexbangla.doc.tar.xz +Source7818: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexbug.tar.xz +Source7819: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexbug.doc.tar.xz +Source7820: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexgit.tar.xz +Source7821: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexgit.doc.tar.xz +# Provided by latexmk package +# Source7822: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexmk.tar.xz +# Source7823: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/latexmk.doc.tar.xz +Source7824: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/limecv.tar.xz +Source7825: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/limecv.doc.tar.xz +Source7826: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ling-macros.tar.xz +Source7827: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ling-macros.doc.tar.xz +Source7828: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lion-msc.tar.xz +Source7829: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lion-msc.doc.tar.xz +Source7830: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lni.tar.xz +Source7831: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/lni.doc.tar.xz +Source7832: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltb2bib.tar.xz +Source7833: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/ltb2bib.doc.tar.xz +Source7834: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luahyphenrules.tar.xz +Source7835: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luahyphenrules.doc.tar.xz +Source7836: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luamesh.tar.xz +Source7837: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luamesh.doc.tar.xz +Source7838: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luapackageloader.tar.xz +Source7839: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/luapackageloader.doc.tar.xz +Source7842: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/maker.tar.xz +Source7843: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/maker.doc.tar.xz +Source7844: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/marginfit.tar.xz +Source7845: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/marginfit.doc.tar.xz +Source7846: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/math-into-latex-4.doc.tar.xz +Source7847: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcexam.tar.xz +Source7848: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mcexam.doc.tar.xz +Source7849: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mendex-doc.doc.tar.xz +Source7850: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/milog.tar.xz +Source7851: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/milog.doc.tar.xz +Source7852: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/missaali.tar.xz +Source7853: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/missaali.doc.tar.xz +Source7854: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/modular.tar.xz +Source7855: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/modular.doc.tar.xz +Source7856: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/montserrat.tar.xz +Source7857: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/montserrat.doc.tar.xz +Source7858: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpostinl.tar.xz +Source7859: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mpostinl.doc.tar.xz +Source7860: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mucproc.tar.xz +Source7861: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/mucproc.doc.tar.xz +Source7862: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multilang.tar.xz +Source7863: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/multilang.doc.tar.xz +Source7864: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/musicography.tar.xz +Source7865: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/musicography.doc.tar.xz +Source7866: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/na-box.tar.xz +Source7867: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/na-box.doc.tar.xz +Source7868: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/na-position.tar.xz +Source7869: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/na-position.doc.tar.xz +Source7870: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/navydocs.tar.xz +Source7871: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/navydocs.doc.tar.xz +Source7872: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/niceframe-type1.tar.xz +Source7873: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/niceframe-type1.doc.tar.xz +Source7874: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nodetree.tar.xz +Source7875: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/nodetree.doc.tar.xz +Source7876: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notespages.tar.xz +Source7877: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notespages.doc.tar.xz +Source7878: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notestex.tar.xz +Source7879: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/notestex.doc.tar.xz +Source7880: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/novel.tar.xz +Source7881: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/novel.doc.tar.xz +Source7882: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numnameru.tar.xz +Source7883: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numnameru.doc.tar.xz +Source7884: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numspell.tar.xz +Source7885: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/numspell.doc.tar.xz +Source7886: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/octave.tar.xz +Source7887: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/octave.doc.tar.xz +Source7888: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/padauk.tar.xz +Source7889: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/padauk.doc.tar.xz +Source7892: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfreview.tar.xz +Source7893: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pdfreview.doc.tar.xz +Source7894: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phffullpagefigure.tar.xz +Source7895: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phffullpagefigure.doc.tar.xz +Source7896: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfnote.tar.xz +Source7897: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfnote.doc.tar.xz +Source7898: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfparen.tar.xz +Source7899: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfparen.doc.tar.xz +Source7900: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfqit.tar.xz +Source7901: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfqit.doc.tar.xz +Source7902: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfquotetext.tar.xz +Source7903: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfquotetext.doc.tar.xz +Source7904: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfsvnwatermark.tar.xz +Source7905: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfsvnwatermark.doc.tar.xz +Source7906: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfthm.tar.xz +Source7907: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phfthm.doc.tar.xz +Source7908: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phonenumbers.tar.xz +Source7909: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/phonenumbers.doc.tar.xz +Source7910: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/platex-tools.tar.xz +Source7911: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/platex-tools.doc.tar.xz +Source7912: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/platexcheat.doc.tar.xz +Source7913: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poetry.tar.xz +Source7914: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/poetry.doc.tar.xz +Source7915: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-arrow.tar.xz +Source7916: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-arrow.doc.tar.xz +Source7917: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-geometrictools.tar.xz +Source7918: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-geometrictools.doc.tar.xz +Source7919: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-poker.tar.xz +Source7920: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-poker.doc.tar.xz +Source7921: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-rputover.tar.xz +Source7922: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-rputover.doc.tar.xz +Source7923: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-shell.tar.xz +Source7924: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-shell.doc.tar.xz +Source7925: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-vehicle.tar.xz +Source7926: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pst-vehicle.doc.tar.xz +Source7927: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstring.tar.xz +Source7928: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pstring.doc.tar.xz +Source7931: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxtatescale.tar.xz +Source7932: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxtatescale.doc.tar.xz +Source7933: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxufont.tar.xz +Source7934: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/pxufont.doc.tar.xz +Source7935: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quicktype.tar.xz +Source7936: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/quicktype.doc.tar.xz +Source7937: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rutitlepage.tar.xz +Source7938: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/rutitlepage.doc.tar.xz +Source7939: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scsnowman.tar.xz +Source7940: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scsnowman.doc.tar.xz +Source7941: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scratch.tar.xz +Source7942: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/scratch.doc.tar.xz +Source7943: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sesstime.tar.xz +Source7944: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/sesstime.doc.tar.xz +Source7945: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shobhika.tar.xz +Source7946: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/shobhika.doc.tar.xz +Source7947: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simple-resume-cv.tar.xz +Source7948: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simple-resume-cv.doc.tar.xz +Source7949: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simple-thesis-dissertation.tar.xz +Source7950: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/simple-thesis-dissertation.doc.tar.xz +Source7951: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/soup.tar.xz +Source7952: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/soup.doc.tar.xz +Source7953: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spark-otf.tar.xz +Source7954: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spark-otf.doc.tar.xz +Source7955: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spectralsequences.tar.xz +Source7956: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/spectralsequences.doc.tar.xz +Source7957: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/studenthandouts.tar.xz +Source7958: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/studenthandouts.doc.tar.xz +Source7959: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/table-fct.tar.xz +Source7960: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/table-fct.doc.tar.xz +Source7961: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/termcal-de.tar.xz +Source7962: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/termcal-de.doc.tar.xz +Source7963: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/testidx.tar.xz +Source7964: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/testidx.doc.tar.xz +Source7967: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/texproposal.doc.tar.xz +Source7968: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thaienum.tar.xz +Source7969: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/thaienum.doc.tar.xz +Source7970: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-kalender.tar.xz +Source7971: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-kalender.doc.tar.xz +Source7972: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-optics.tar.xz +Source7973: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikz-optics.doc.tar.xz +Source7974: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzcodeblocks.tar.xz +Source7975: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzcodeblocks.doc.tar.xz +Source7976: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzducks.tar.xz +Source7977: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzducks.doc.tar.xz +Source7978: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzpeople.tar.xz +Source7979: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tikzpeople.doc.tar.xz +# Need TL2018? They will go in texlive-base then. +# Source7980: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tlcockpit.tar.xz +# Source7981: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tlcockpit.doc.tar.xz +# Source7982: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tlshell.tar.xz +# Source7983: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tlshell.doc.tar.xz +Source7984: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tocdata.tar.xz +Source7985: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/tocdata.doc.tar.xz +Source7986: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/txuprcal.tar.xz +Source7987: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/txuprcal.doc.tar.xz +Source7988: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typoaid.tar.xz +Source7989: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/typoaid.doc.tar.xz +Source7990: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uhhassignment.tar.xz +Source7991: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uhhassignment.doc.tar.xz +# Source7992: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/undergradmath.tar.xz +Source7993: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/undergradmath.doc.tar.xz +Source7994: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unfonts-core.tar.xz +Source7995: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unfonts-core.doc.tar.xz +Source7996: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unfonts-extra.tar.xz +Source7997: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unfonts-extra.doc.tar.xz +Source7998: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unicode-bidi.tar.xz +Source7999: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unicode-bidi.doc.tar.xz +Source8000: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unitn-bimrep.tar.xz +Source8001: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/unitn-bimrep.doc.tar.xz +Source8002: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/upzhkinsoku.tar.xz +Source8003: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/upzhkinsoku.doc.tar.xz +Source8004: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uspace.tar.xz +Source8005: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/uspace.doc.tar.xz +Source8008: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/variablelm.tar.xz +Source8009: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/variablelm.doc.tar.xz +Source8012: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wallcalendar.tar.xz +Source8013: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wallcalendar.doc.tar.xz +Source8014: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wtref.tar.xz +Source8015: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/wtref.doc.tar.xz +Source8016: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcolor-material.tar.xz +Source8017: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xcolor-material.doc.tar.xz +Source8018: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xechangebar.tar.xz +Source8019: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xechangebar.doc.tar.xz +Source8020: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xltabular.tar.xz +Source8021: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xltabular.doc.tar.xz +Source8022: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xsim.tar.xz +Source8023: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/xsim.doc.tar.xz +Source8024: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yaletter.tar.xz +Source8025: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/yaletter.doc.tar.xz +Source8026: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zebra-goodies.tar.xz +Source8027: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zebra-goodies.doc.tar.xz +Source8028: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhlipsum.tar.xz +Source8029: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/zhlipsum.doc.tar.xz +Source8030: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fvextra.tar.xz +Source8031: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/fvextra.doc.tar.xz +Source8032: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translator.tar.xz +Source8033: http://ctan.sharelatex.com/tex-archive/systems/texlive/tlnet/archive/translator.doc.tar.xz Source8034: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-page.tar.xz Source8035: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-page.doc.tar.xz Source8036: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autoaligne.doc.tar.xz @@ -5871,661 +5921,6 @@ Source8052: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mensa-te Source8053: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mensa-tex.doc.tar.xz Source8054: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algobox.tar.xz Source8055: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/algobox.doc.tar.xz -# new in 2018 -Source8056: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adigraph.tar.xz -Source8057: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/adigraph.doc.tar.xz -Source8058: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aligned-overset.tar.xz -Source8059: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/aligned-overset.doc.tar.xz -Source8060: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amscls-doc.tar.xz -Source8061: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amscls-doc.doc.tar.xz -Source8062: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apxproof.tar.xz -Source8063: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apxproof.doc.tar.xz -Source8064: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ascmac.tar.xz -Source8065: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ascmac.doc.tar.xz -Source8066: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/authorarchive.tar.xz -Source8067: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/authorarchive.doc.tar.xz -Source8068: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autobreak.tar.xz -Source8069: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/autobreak.doc.tar.xz -Source8070: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/auto-pst-pdf-lua.tar.xz -Source8071: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/auto-pst-pdf-lua.doc.tar.xz -# NON-FREE, CC-BY-NC -# Source8072: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/axessibility.tar.xz -# Source8073: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/axessibility.doc.tar.xz -Source8074: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-japanese.tar.xz -Source8075: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/babel-japanese.doc.tar.xz -Source8076: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bath-bst.tar.xz -Source8077: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bath-bst.doc.tar.xz -Source8078: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-cuerna.tar.xz -Source8079: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-cuerna.doc.tar.xz -Source8080: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-focus.tar.xz -Source8081: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-focus.doc.tar.xz -Source8082: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-saintpetersburg.tar.xz -Source8083: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-saintpetersburg.doc.tar.xz -Source8084: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bezierplot.tar.xz -Source8085: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bezierplot.doc.tar.xz -Source8086: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-archaeology.tar.xz -Source8087: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-archaeology.doc.tar.xz -Source8088: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-arthistory-bonn.tar.xz -Source8089: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-arthistory-bonn.doc.tar.xz -Source8090: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-socialscienceshuberlin.tar.xz -Source8091: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-socialscienceshuberlin.doc.tar.xz -Source8092: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cascade.tar.xz -Source8093: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cascade.doc.tar.xz -Source8094: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cellprops.tar.xz -Source8095: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cellprops.doc.tar.xz -Source8096: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemsec.tar.xz -Source8097: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chemsec.doc.tar.xz -Source8098: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/citeref.tar.xz -Source8099: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/citeref.doc.tar.xz -Source8100: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clrdblpg.tar.xz -Source8101: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clrdblpg.doc.tar.xz -Source8102: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clrstrip.tar.xz -Source8103: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/clrstrip.doc.tar.xz -Source8104: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cm-mf-extra-bold.tar.xz -Source8106: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmsrb.tar.xz -Source8107: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cmsrb.doc.tar.xz -Source8108: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/competences.tar.xz -Source8109: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/competences.doc.tar.xz -Source8110: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-handlecsv.tar.xz -Source8111: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/context-handlecsv.doc.tar.xz -Source8112: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/correctmathalign.tar.xz -Source8113: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/correctmathalign.doc.tar.xz -Source8114: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cqubeamer.tar.xz -Source8115: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cqubeamer.doc.tar.xz -Source8118: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dejavu-otf.tar.xz -Source8119: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dejavu-otf.doc.tar.xz -Source8120: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/delimset.tar.xz -Source8121: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/delimset.doc.tar.xz -Source8122: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diffcoeff.tar.xz -Source8123: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/diffcoeff.doc.tar.xz -Source8124: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dijkstra.tar.xz -Source8125: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dijkstra.doc.tar.xz -Source8126: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dsserif.tar.xz -Source8127: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dsserif.doc.tar.xz -Source8130: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emf.tar.xz -Source8131: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/emf.doc.tar.xz -Source8132: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endnotesj.tar.xz -Source8133: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/endnotesj.doc.tar.xz -Source8134: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqnnumwarn.tar.xz -Source8135: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqnnumwarn.doc.tar.xz -Source8136: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/erw-l3.tar.xz -Source8137: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/erw-l3.doc.tar.xz -Source8138: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etsvthor.tar.xz -Source8139: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/etsvthor.doc.tar.xz -Source8140: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euro-ce.tar.xz -Source8141: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euro-ce.doc.tar.xz -Source8142: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exercisebank.tar.xz -Source8143: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exercisebank.doc.tar.xz -Source8144: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fduthesis.tar.xz -Source8145: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fduthesis.doc.tar.xz -Source8146: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnspe.tar.xz -Source8147: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fnspe.doc.tar.xz -Source8148: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontawesome5.tar.xz -Source8149: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fontawesome5.doc.tar.xz -Source8150: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/formation-latex-ul.tar.xz -Source8151: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/formation-latex-ul.doc.tar.xz -Source8152: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gatherenum.tar.xz -Source8153: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gatherenum.doc.tar.xz -Source8154: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gbt7714.tar.xz -Source8155: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gbt7714.doc.tar.xz -Source8156: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gentombow.tar.xz -Source8157: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gentombow.doc.tar.xz -Source8158: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsneohellenicmath.tar.xz -Source8159: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gfsneohellenicmath.doc.tar.xz -Source8160: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-finnish.tar.xz -Source8161: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-finnish.doc.tar.xz -Source8162: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gotoh.tar.xz -Source8163: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gotoh.doc.tar.xz -Source8164: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graph35.tar.xz -Source8165: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graph35.doc.tar.xz -Source8166: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphicxpsd.tar.xz -Source8167: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/graphicxpsd.doc.tar.xz -Source8168: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hagenberg-thesis.tar.xz -Source8169: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hagenberg-thesis.doc.tar.xz -Source8170: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/handin.tar.xz -Source8171: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/handin.doc.tar.xz -Source8172: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hulipsum.tar.xz -Source8173: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hulipsum.doc.tar.xz -Source8174: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyperbar.tar.xz -Source8175: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hyperbar.doc.tar.xz -Source8176: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/includernw.tar.xz -Source8177: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/includernw.doc.tar.xz -Source8178: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/intopdf.tar.xz -Source8179: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/intopdf.doc.tar.xz -Source8180: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jnuexam.tar.xz -Source8181: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jnuexam.doc.tar.xz -Source8182: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kanaparser.tar.xz -Source8183: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kanaparser.doc.tar.xz -Source8184: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/karnaugh-map.tar.xz -Source8185: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/karnaugh-map.doc.tar.xz -Source8186: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kurdishlipsum.tar.xz -Source8187: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kurdishlipsum.doc.tar.xz -Source8188: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labelschanged.tar.xz -Source8189: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labelschanged.doc.tar.xz -Source8190: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-via-exemplos.tar.xz -Source8191: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-via-exemplos.doc.tar.xz -Source8192: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lccaps.tar.xz -Source8193: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lccaps.doc.tar.xz -Source8194: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinus-otf.tar.xz -Source8195: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinus-otf.doc.tar.xz -Source8196: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/llncsconf.tar.xz -Source8197: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/llncsconf.doc.tar.xz -Source8198: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/longdivision.tar.xz -Source8199: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/longdivision.doc.tar.xz -Source8202: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lualatex-truncate.tar.xz -Source8203: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lualatex-truncate.doc.tar.xz -Source8206: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luavlna.tar.xz -Source8207: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luavlna.doc.tar.xz -Source8210: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/manyind.tar.xz -Source8211: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/manyind.doc.tar.xz -Source8212: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathfam256.tar.xz -Source8213: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathfam256.doc.tar.xz -Source8214: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathfixs.tar.xz -Source8215: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathfixs.doc.tar.xz -Source8216: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathfont.tar.xz -Source8217: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathfont.doc.tar.xz -Source8218: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathpunctspace.tar.xz -Source8219: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathpunctspace.doc.tar.xz -# empty? -# Source8220: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metatype1.tar.xz -Source8222: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mgltex.tar.xz -Source8223: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mgltex.doc.tar.xz -Source8224: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/milsymb.tar.xz -Source8225: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/milsymb.doc.tar.xz -Source8226: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minidocument.tar.xz -Source8227: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/minidocument.doc.tar.xz -Source8228: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modernposter.tar.xz -Source8229: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/modernposter.doc.tar.xz -Source8232: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/morisawa.tar.xz -Source8233: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/morisawa.doc.tar.xz -Source8234: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mptrees.tar.xz -Source8235: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mptrees.doc.tar.xz -Source8236: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musikui.tar.xz -Source8237: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/musikui.doc.tar.xz -Source8238: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nicematrix.tar.xz -Source8239: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nicematrix.doc.tar.xz -Source8240: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nidanfloat.tar.xz -Source8241: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nidanfloat.doc.tar.xz -Source8242: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/notex-bst.tar.xz -# Windows only -# Source8244: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/npp-for-context.tar.xz -# Source8245: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/npp-for-context.doc.tar.xz -Source8246: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/onedown.tar.xz -Source8247: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/onedown.doc.tar.xz -Source8248: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oplotsymbl.tar.xz -Source8249: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/oplotsymbl.doc.tar.xz -Source8250: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/outlining.tar.xz -Source8251: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/outlining.doc.tar.xz -Source8252: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/overlays.tar.xz -Source8253: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/overlays.doc.tar.xz -Source8254: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/padcount.tar.xz -Source8255: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/padcount.doc.tar.xz -Source8256: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfoverlay.tar.xz -Source8257: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfoverlay.doc.tar.xz -Source8258: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfpc-movie.tar.xz -Source8259: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfpc-movie.doc.tar.xz -Source8260: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfprivacy.tar.xz -Source8261: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pdfprivacy.doc.tar.xz -Source8262: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/penrose.tar.xz -Source8263: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/penrose.doc.tar.xz -Source8264: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfornament-han.tar.xz -Source8265: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfornament-han.doc.tar.xz -Source8266: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pixelart.tar.xz -Source8267: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pixelart.doc.tar.xz -Source8268: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plantuml.tar.xz -Source8269: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plantuml.doc.tar.xz -Source8270: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plex.tar.xz -Source8271: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plex.doc.tar.xz -Source8272: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plex-otf.tar.xz -Source8273: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plex-otf.doc.tar.xz -Source8274: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pm-isomath.tar.xz -Source8275: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pm-isomath.doc.tar.xz -Source8276: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polexpr.tar.xz -Source8277: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/polexpr.doc.tar.xz -Source8278: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/postage.tar.xz -Source8279: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/postage.doc.tar.xz -Source8280: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/powerdot-tuliplab.tar.xz -Source8281: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/powerdot-tuliplab.doc.tar.xz -Source8282: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-antiprism.tar.xz -Source8283: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-antiprism.doc.tar.xz -Source8284: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-calculate.tar.xz -Source8285: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-calculate.doc.tar.xz -Source8286: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-contourplot.tar.xz -Source8287: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-contourplot.doc.tar.xz -Source8288: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-dart.tar.xz -Source8289: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-dart.doc.tar.xz -Source8292: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-spinner.tar.xz -Source8293: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-spinner.doc.tar.xz -Source8296: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pythonhighlight.tar.xz -Source8297: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pythonhighlight.doc.tar.xz -Source8298: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/revquantum.tar.xz -Source8299: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/revquantum.doc.tar.xz -Source8300: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scientific-thesis-cover.tar.xz -Source8301: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scientific-thesis-cover.doc.tar.xz -Source8302: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scratchx.tar.xz -Source8303: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scratchx.doc.tar.xz -Source8304: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sectionbreak.tar.xz -Source8305: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sectionbreak.doc.tar.xz -Source8306: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semantic-markup.tar.xz -Source8307: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/semantic-markup.doc.tar.xz -Source8308: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sexam.tar.xz -Source8309: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/sexam.doc.tar.xz -Source8310: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/short-math-guide.tar.xz -Source8311: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/short-math-guide.doc.tar.xz -Source8312: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simpleinvoice.tar.xz -Source8313: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/simpleinvoice.doc.tar.xz -Source8314: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spalign.tar.xz -Source8315: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spalign.doc.tar.xz -Source8316: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stanli.tar.xz -Source8317: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stanli.doc.tar.xz -Source8318: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statistics.tar.xz -Source8319: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statistics.doc.tar.xz -Source8322: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statmath.tar.xz -Source8323: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/statmath.doc.tar.xz -Source8324: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stealcaps.tar.xz -Source8325: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stealcaps.doc.tar.xz -Source8326: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stickstoo.tar.xz -Source8327: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stickstoo.doc.tar.xz -Source8328: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stix2-otf.tar.xz -Source8329: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stix2-otf.doc.tar.xz -Source8330: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stix2-type1.tar.xz -Source8331: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/stix2-type1.doc.tar.xz -Source8332: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/structmech.tar.xz -Source8333: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/structmech.doc.tar.xz -Source8334: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tagpdf.tar.xz -Source8335: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tagpdf.doc.tar.xz -Source8336: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdate.tar.xz -Source8337: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texdate.doc.tar.xz -Source8340: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textualicomma.tar.xz -Source8341: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/textualicomma.doc.tar.xz -Source8342: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thaispec.tar.xz -Source8343: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thaispec.doc.tar.xz -Source8344: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thesis-gwu.tar.xz -Source8345: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thesis-gwu.doc.tar.xz -Source8346: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thucoursework.tar.xz -Source8347: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thucoursework.doc.tar.xz -Source8348: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-karnaugh.tar.xz -Source8349: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-karnaugh.doc.tar.xz -Source8350: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-ladder.tar.xz -Source8351: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-ladder.doc.tar.xz -Source8352: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-layers.tar.xz -Source8353: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-layers.doc.tar.xz -Source8354: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzmarmots.tar.xz -Source8355: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzmarmots.doc.tar.xz -Source8356: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-nef.tar.xz -Source8357: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-nef.doc.tar.xz -Source8358: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-network.tar.xz -Source8359: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-network.doc.tar.xz -Source8360: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-relay.tar.xz -Source8361: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-relay.doc.tar.xz -Source8362: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-sfc.tar.xz -Source8363: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-sfc.doc.tar.xz -Source8364: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/timbreicmc.tar.xz -Source8365: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/timbreicmc.doc.tar.xz -Source8366: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tinos.tar.xz -Source8367: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tinos.doc.tar.xz -Source8368: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tlc-article.tar.xz -Source8369: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tlc-article.doc.tar.xz -Source8370: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/topletter.tar.xz -Source8371: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/topletter.doc.tar.xz -Source8374: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typewriter.tar.xz -Source8375: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/typewriter.doc.tar.xz -Source8376: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucsmonograph.tar.xz -Source8377: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucsmonograph.doc.tar.xz -Source8378: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/univie-ling.tar.xz -Source8379: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/univie-ling.doc.tar.xz -Source8380: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uppunctlm.tar.xz -Source8381: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/uppunctlm.doc.tar.xz -Source8382: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/witharrows.tar.xz -Source8383: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/witharrows.doc.tar.xz -Source8384: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xfakebold.tar.xz -Source8385: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xfakebold.doc.tar.xz -Source8388: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xtuthesis.tar.xz -Source8389: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xtuthesis.doc.tar.xz -Source8390: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xurl.tar.xz -Source8391: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xurl.doc.tar.xz -#tl2019 -Source8392: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/accents.doc.tar.xz -Source8393: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/accents.tar.xz -Source8394: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/addliga.doc.tar.xz -Source8395: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/addliga.tar.xz -Source8396: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/almendra.doc.tar.xz -Source8397: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/almendra.tar.xz -Source8398: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alpha-persian.doc.tar.xz -Source8399: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/alpha-persian.tar.xz -Source8400: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amscdx.doc.tar.xz -Source8401: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/amscdx.tar.xz -Source8402: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/apprendre-a-programmer-en-tex.doc.tar.xz -Source8403: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabicfront.doc.tar.xz -Source8404: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arabicfront.tar.xz -Source8405: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arraycols.doc.tar.xz -Source8406: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/arraycols.tar.xz -Source8407: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asmeconf.doc.tar.xz -Source8408: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asmeconf.tar.xz -Source8409: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asmejour.doc.tar.xz -Source8410: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/asmejour.tar.xz -Source8411: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerauxtheme.doc.tar.xz -Source8412: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamerauxtheme.tar.xz -Source8413: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer-rl.doc.tar.xz -Source8414: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamer-rl.tar.xz -Source8415: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-light.doc.tar.xz -Source8416: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-light.tar.xz -Source8417: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-npbt.doc.tar.xz -Source8418: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/beamertheme-npbt.tar.xz -Source8419: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-bath.doc.tar.xz -Source8420: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-bath.tar.xz -Source8421: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-ext.doc.tar.xz -Source8422: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/biblatex-ext.tar.xz -Source8423: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bitter.doc.tar.xz -Source8424: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bitter.tar.xz -Source8425: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/brandeis-problemset.doc.tar.xz -Source8426: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/brandeis-problemset.tar.xz -Source8427: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/businesscard-qrcode.doc.tar.xz -Source8428: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/businesscard-qrcode.tar.xz -Source8429: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bussproofs-extra.doc.tar.xz -Source8430: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bussproofs-extra.tar.xz -Source8431: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxjaholiday.doc.tar.xz -Source8432: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxjaholiday.tar.xz -Source8433: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxtexlogo.doc.tar.xz -Source8434: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxtexlogo.tar.xz -Source8435: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxwareki.doc.tar.xz -Source8436: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/bxwareki.tar.xz -Source8437: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/centeredline.doc.tar.xz -Source8438: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/centeredline.tar.xz -Source8439: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changelog.doc.tar.xz -Source8440: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/changelog.tar.xz -Source8441: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checkend.doc.tar.xz -Source8442: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/checkend.tar.xz -Source8443: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chordbars.doc.tar.xz -Source8444: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chordbars.tar.xz -Source8445: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chordbox.doc.tar.xz -Source8446: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chordbox.tar.xz -Source8447: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chs-physics-report.doc.tar.xz -Source8448: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/chs-physics-report.tar.xz -Source8449: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codeanatomy.doc.tar.xz -Source8450: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/codeanatomy.tar.xz -Source8451: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coelacanth.doc.tar.xz -Source8452: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/coelacanth.tar.xz -Source8453: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colophon.doc.tar.xz -Source8454: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colophon.tar.xz -Source8455: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorprofiles.doc.tar.xz -Source8456: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/colorprofiles.tar.xz -Source8457: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/commedit.doc.tar.xz -Source8458: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/commedit.tar.xz -Source8459: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crimsonpro.doc.tar.xz -Source8460: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/crimsonpro.tar.xz -Source8461: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cuprum.doc.tar.xz -Source8462: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cuprum.tar.xz -Source8463: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/cweb-old.tar.xz -Source8464: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/derivative.doc.tar.xz -Source8465: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/derivative.tar.xz -Source8466: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dotlessi.doc.tar.xz -Source8467: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dotlessi.tar.xz -Source8468: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/duckuments.doc.tar.xz -Source8469: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/duckuments.tar.xz -Source8470: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ecothesis.doc.tar.xz -Source8471: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ehhline.doc.tar.xz -Source8472: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ehhline.tar.xz -Source8473: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elegantbook.doc.tar.xz -Source8474: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elegantbook.tar.xz -Source8475: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elegantnote.doc.tar.xz -Source8476: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elegantnote.tar.xz -Source8477: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elegantpaper.doc.tar.xz -Source8478: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/elegantpaper.tar.xz -Source8479: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/els-cas-templates.doc.tar.xz -Source8480: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/els-cas-templates.tar.xz -Source8481: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqexpl.doc.tar.xz -Source8482: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/eqexpl.tar.xz -Source8483: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euflag.doc.tar.xz -Source8484: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/euflag.tar.xz -Source8485: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exam-randomizechoices.doc.tar.xz -Source8486: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exam-randomizechoices.tar.xz -Source8487: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exercisepoints.doc.tar.xz -Source8488: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exercisepoints.tar.xz -Source8489: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exframe.doc.tar.xz -Source8490: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/exframe.tar.xz -Source8491: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/facture-belge-simple-sans-tva.doc.tar.xz -Source8492: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/facture-belge-simple-sans-tva.tar.xz -Source8493: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyhandout.doc.tar.xz -Source8494: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fancyhandout.tar.xz -Source8495: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fascicules.doc.tar.xz -Source8496: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fascicules.tar.xz -Source8497: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fbox.doc.tar.xz -Source8498: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fbox.tar.xz -Source8499: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/firamath.doc.tar.xz -Source8500: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/firamath-otf.doc.tar.xz -Source8501: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/firamath-otf.tar.xz -Source8502: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/firamath.tar.xz -Source8503: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fiziko.doc.tar.xz -Source8504: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/fiziko.tar.xz -Source8505: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forum.doc.tar.xz -Source8506: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/forum.tar.xz -Source8507: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ftc-notebook.doc.tar.xz -Source8508: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ftc-notebook.tar.xz -Source8509: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gammas.doc.tar.xz -Source8510: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gammas.tar.xz -Source8511: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/garamond-libre.doc.tar.xz -Source8512: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/garamond-libre.tar.xz -Source8513: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/garamond-math.doc.tar.xz -Source8514: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/garamond-math.tar.xz -Source8515: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitver.doc.tar.xz -Source8516: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gitver.tar.xz -Source8517: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/globalvals.doc.tar.xz -Source8518: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/globalvals.tar.xz -Source8519: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glosmathtools.doc.tar.xz -Source8520: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glosmathtools.tar.xz -Source8521: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-estonian.doc.tar.xz -Source8522: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-estonian.tar.xz -Source8523: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-slovene.doc.tar.xz -Source8524: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/glossaries-slovene.tar.xz -Source8525: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grabbox.doc.tar.xz -Source8526: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/grabbox.tar.xz -Source8527: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gridslides.doc.tar.xz -Source8528: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/gridslides.tar.xz -Source8529: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guitartabs.doc.tar.xz -Source8530: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/guitartabs.tar.xz -Source8531: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hu-berlin-bundle.doc.tar.xz -Source8532: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/hu-berlin-bundle.tar.xz -Source8534: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/icite.doc.tar.xz -Source8535: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/icite.tar.xz -Source8536: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/identkey.doc.tar.xz -Source8537: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/identkey.tar.xz -Source8538: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inkpaper.doc.tar.xz -Source8539: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inkpaper.tar.xz -Source8540: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inline-images.doc.tar.xz -Source8541: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inline-images.tar.xz -Source8542: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inriafonts.doc.tar.xz -Source8543: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/inriafonts.tar.xz -Source8544: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/invoice-class.doc.tar.xz -Source8545: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/invoice-class.tar.xz -Source8546: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iodhbwm.doc.tar.xz -Source8547: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/iodhbwm.tar.xz -Source8548: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jigsaw.doc.tar.xz -Source8549: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jigsaw.tar.xz -Source8550: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jkmath.doc.tar.xz -Source8551: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/jkmath.tar.xz -Source8552: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kalendarium.doc.tar.xz -Source8553: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kalendarium.tar.xz -Source8554: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ketcindy.doc.tar.xz -Source8555: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ketcindy.tar.xz -Source8556: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kvmap.doc.tar.xz -Source8557: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/kvmap.tar.xz -Source8558: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labels4easylist.doc.tar.xz -Source8559: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/labels4easylist.tar.xz -Source8560: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex4musicians.doc.tar.xz -Source8561: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-base-dev.doc.tar.xz -Source8562: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-base-dev.tar.xz -Source8563: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-bin-dev.doc.tar.xz -Source8564: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-bin-dev.tar.xz -Source8565: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexcolors.doc.tar.xz -Source8566: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latexcolors.tar.xz -Source8567: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-graphics-dev.doc.tar.xz -Source8568: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-graphics-dev.tar.xz -Source8569: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-uni8.doc.tar.xz -Source8570: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/latex-uni8.tar.xz -Source8571: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lectures.doc.tar.xz -Source8572: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lectures.tar.xz -Source8573: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinus-fonts.doc.tar.xz -Source8574: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinus-fonts.tar.xz -Source8575: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinus-type1.doc.tar.xz -Source8576: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/libertinus-type1.tar.xz -Source8577: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librefranklin.doc.tar.xz -Source8578: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/librefranklin.tar.xz -Source8579: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linguisticspro.doc.tar.xz -Source8580: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/linguisticspro.tar.xz -Source8581: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lstfiracode.doc.tar.xz -Source8582: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/lstfiracode.tar.xz -Source8583: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxguidex.doc.tar.xz -Source8584: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ltxguidex.tar.xz -Source8585: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaimageembed.doc.tar.xz -Source8586: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luaimageembed.tar.xz -Source8587: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luarandom.doc.tar.xz -Source8588: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/luarandom.tar.xz -Source8589: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/makecookbook.doc.tar.xz -Source8590: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathcommand.doc.tar.xz -Source8591: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mathcommand.tar.xz -Source8592: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memorygraphs.doc.tar.xz -Source8593: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/memorygraphs.tar.xz -Source8594: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metalogox.doc.tar.xz -Source8595: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metalogox.tar.xz -Source8596: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metapost-colorbrewer.doc.tar.xz -Source8597: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/metapost-colorbrewer.tar.xz -Source8598: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mismath.doc.tar.xz -Source8599: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mismath.tar.xz -Source8600: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mi-solns.doc.tar.xz -Source8601: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mi-solns.tar.xz -Source8602: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mlacls.doc.tar.xz -Source8603: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/mlacls.tar.xz -Source8604: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multicolrule.doc.tar.xz -Source8605: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/multicolrule.tar.xz -Source8606: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nanicolle.doc.tar.xz -Source8607: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/nanicolle.tar.xz -Source8608: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/njurepo.doc.tar.xz -Source8609: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/njurepo.tar.xz -Source8610: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numberpt.doc.tar.xz -Source8611: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/numberpt.tar.xz -Source8612: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-cmykshadings.doc.tar.xz -Source8613: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgf-cmykshadings.tar.xz -Source8614: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfmorepages.doc.tar.xz -Source8615: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pgfmorepages.tar.xz -Source8616: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plautopatch.doc.tar.xz -Source8617: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/plautopatch.tar.xz -Source8618: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poiretone.doc.tar.xz -Source8619: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poiretone.tar.xz -Source8620: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poormanlog.doc.tar.xz -Source8621: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/poormanlog.tar.xz -Source8622: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/proof-at-the-end.doc.tar.xz -Source8623: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/proof-at-the-end.tar.xz -Source8624: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prtec.doc.tar.xz -Source8625: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/prtec.tar.xz -Source8626: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pseudo.doc.tar.xz -Source8627: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pseudo.tar.xz -Source8628: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-feyn.doc.tar.xz -Source8629: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-feyn.tar.xz -Source8630: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-lsystem.doc.tar.xz -Source8631: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-lsystem.tar.xz -Source8632: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-marble.doc.tar.xz -Source8633: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-marble.tar.xz -Source8634: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-moire.doc.tar.xz -Source8635: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-moire.tar.xz -Source8636: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-venn.doc.tar.xz -Source8637: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pst-venn.tar.xz -Source8638: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-manual.doc.tar.xz -Source8639: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptex-manual.tar.xz -Source8640: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptolemaicastronomy.doc.tar.xz -Source8641: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ptolemaicastronomy.tar.xz -Source8642: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxjodel.doc.tar.xz -Source8643: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/pxjodel.tar.xz -Source8644: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qsharp.doc.tar.xz -Source8645: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/qsharp.tar.xz -Source8646: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quantikz.doc.tar.xz -Source8647: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quantikz.tar.xz -Source8648: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quran-de.doc.tar.xz -Source8649: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quran-de.tar.xz -Source8650: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/quran-ur.doc.tar.xz -Source8651: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ragged2e.doc.tar.xz -Source8652: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ragged2e.tar.xz -Source8653: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rank-2-roots.doc.tar.xz -Source8654: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rank-2-roots.tar.xz -Source8655: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/realhats.doc.tar.xz -Source8656: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/realhats.tar.xz -Source8657: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rulerbox.doc.tar.xz -Source8658: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/rulerbox.tar.xz -Source8659: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ryersonsgsthesis.doc.tar.xz -Source8660: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ryersonsgsthesis.tar.xz -Source8661: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schedule.doc.tar.xz -Source8662: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/schedule.tar.xz -Source8663: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scontents.doc.tar.xz -Source8664: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scontents.tar.xz -Source8665: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scratch3.doc.tar.xz -Source8666: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/scratch3.tar.xz -Source8667: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/soulpos.doc.tar.xz -Source8668: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/soulpos.tar.xz -Source8669: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spacingtricks.doc.tar.xz -Source8670: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/spacingtricks.tar.xz -Source8671: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srdp-mathematik.doc.tar.xz -Source8672: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/srdp-mathematik.tar.xz -Source8673: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subdocs.doc.tar.xz -Source8674: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subdocs.tar.xz -Source8675: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subtext.doc.tar.xz -Source8676: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/subtext.tar.xz -Source8677: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/technion-thesis-template.doc.tar.xz -Source8678: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/technion-thesis-template.tar.xz -Source8679: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tensind.doc.tar.xz -Source8680: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tensind.tar.xz -Source8681: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-locale.doc.tar.xz -Source8682: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tex-locale.tar.xz -Source8683: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/texonly.doc.tar.xz -Source8684: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/theanodidot.doc.tar.xz -Source8685: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/theanodidot.tar.xz -Source8686: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/theanomodern.doc.tar.xz -Source8687: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/theanomodern.tar.xz -Source8688: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/theanooldstyle.doc.tar.xz -Source8689: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/theanooldstyle.tar.xz -Source8690: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thesis-qom.doc.tar.xz -Source8691: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thesis-qom.tar.xz -Source8692: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thuaslogos.doc.tar.xz -Source8693: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/thuaslogos.tar.xz -Source8694: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-feynhand.doc.tar.xz -Source8695: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-feynhand.tar.xz -Source8696: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-imagelabels.doc.tar.xz -Source8697: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-imagelabels.tar.xz -Source8698: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzlings.doc.tar.xz -Source8699: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikzlings.tar.xz -Source8700: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-truchet.doc.tar.xz -Source8701: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tikz-truchet.tar.xz -Source8702: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/topiclongtable.doc.tar.xz -Source8703: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/topiclongtable.tar.xz -Source8704: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tuda-ci.doc.tar.xz -Source8705: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/tuda-ci.tar.xz -Source8706: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucalgmthesis.doc.tar.xz -Source8707: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/ucalgmthesis.tar.xz -Source8708: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unam-thesis.doc.tar.xz -Source8709: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unam-thesis.tar.xz -Source8710: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unicode-alphabets.doc.tar.xz -Source8711: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/unicode-alphabets.tar.xz -Source8712: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vtable.doc.tar.xz -Source8713: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/vtable.tar.xz -Source8714: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/widows-and-orphans.doc.tar.xz -Source8715: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/widows-and-orphans.tar.xz -Source8716: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/windycity.doc.tar.xz -Source8717: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/windycity.tar.xz -Source8718: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/worksheet.doc.tar.xz -Source8719: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/worksheet.tar.xz -Source8720: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xbmks.doc.tar.xz -Source8721: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xbmks.tar.xz -Source8722: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcpdftips.doc.tar.xz -Source8723: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/xcpdftips.tar.xz -Source8724: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zootaxa-bst.doc.tar.xz -Source8725: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/zootaxa-bst.tar.xz -Source8726: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/dehyph.tar.xz -Source8727: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3backend.tar.xz -Source8728: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/l3backend.doc.tar.xz -Source8729: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blowup.tar.xz -Source8730: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/blowup.doc.tar.xz -Source8731: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marcellus.tar.xz -Source8732: http://ctan.math.illinois.edu/systems/texlive/tlnet/archive/marcellus.doc.tar.xz - %description The TeX Live software distribution offers a complete TeX system for a @@ -6665,7 +6060,7 @@ Documentation for a5comb Provides: tex-aastex = %{tl_version} License: LPPL Summary: Macros for Manuscript Preparation for AAS Journals -Version: svn47692 +Version: svn39929 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(latexsym.sty) @@ -6683,7 +6078,7 @@ class in preference to any of the alternatives available. %package aastex-doc Summary: Documentation for aastex -Version: svn47692 +Version: svn39929 Provides: tex-aastex-doc AutoReqProv: No @@ -6748,7 +6143,7 @@ Documentation for abc Provides: tex-abntex2 = %{tl_version} License: LPPL 1.3 Summary: Typeset technical and scientific Brazilian documents based on ABNT rules -Version: svn49248 +Version: svn39913 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -6777,7 +6172,7 @@ abntex. %package abntex2-doc Summary: Documentation for abntex2 -Version: svn49248 +Version: svn39913 Provides: tex-abntex2-doc AutoReqProv: No @@ -6858,7 +6253,7 @@ Documentation for abstyles Provides: tex-academicons = %{tl_version} License: LPPL 1.3 Summary: Font containing icons of online academic profiles -Version: svn48100 +Version: svn44380 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(academicons.ttf) = %{tl_version} @@ -6882,7 +6277,7 @@ can be found in the manual. %package academicons-doc Summary: Documentation for academicons -Version: svn48100 +Version: svn44380 Provides: tex-academicons-doc AutoReqProv: No @@ -7006,7 +6401,7 @@ Documentation for accanthis Provides: tex-achemso = %{tl_version} License: LPPL 1.3 Summary: Support for American Chemical Society journal submissions -Version: svn50025 +Version: svn46282 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) @@ -7080,7 +6475,7 @@ distributed as part of the bundle. %package achemso-doc Summary: Documentation for achemso -Version: svn50025 +Version: svn46282 Provides: tex-achemso-doc AutoReqProv: No @@ -7169,7 +6564,7 @@ Documentation for acroterm Provides: tex-acro = %{tl_version} License: LPPL 1.3 Summary: Typeset acronyms -Version: svn52662 +Version: svn46492 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -7196,7 +6591,7 @@ which automatically sorts the list created by \printacronyms. %package acro-doc Summary: Documentation for acro -Version: svn52662 +Version: svn46492 Provides: tex-acro-doc AutoReqProv: No @@ -7246,7 +6641,7 @@ Documentation for active-conf Provides: tex-actuarialangle = %{tl_version} License: Public Domain Summary: Symbol for use in "present value" statements of an annuity -Version: svn51376 +Version: svn43751 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(actuarialangle.sty) = %{tl_version} @@ -7258,7 +6653,7 @@ actuarial and financial notation. %package actuarialangle-doc Summary: Documentation for actuarialangle -Version: svn51376 +Version: svn43751 Provides: tex-actuarialangle-doc AutoReqProv: No @@ -7269,7 +6664,7 @@ Documentation for actuarialangle Provides: tex-addlines = %{tl_version} License: LPPL Summary: A user-friendly wrapper around \enlargethispage -Version: svn49326 +Version: svn37805.0.2a Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(afterpage.sty) @@ -7285,7 +6680,7 @@ page in a two-sided document. %package addlines-doc Summary: Documentation for addlines -Version: svn49326 +Version: svn37805.0.2a Provides: tex-addlines-doc AutoReqProv: No @@ -7414,7 +6809,7 @@ Documentation for adjmulticol Provides: tex-adjustbox = %{tl_version} License: LPPL 1.3 Summary: Graphics package-alike macros for "general" boxes -Version: svn49596 +Version: svn26555.1.0 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) @@ -7449,7 +6844,7 @@ matching environments with the identical names as the macros. %package adjustbox-doc Summary: Documentation for adjustbox -Version: svn49596 +Version: svn26555.1.0 Provides: tex-adjustbox-doc AutoReqProv: No @@ -7460,7 +6855,7 @@ Documentation for adjustbox Provides: tex-adobemapping = %{tl_version} License: BSD Summary: Adobe cmap and pdfmapping files -Version: svn51787 +Version: svn45645 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -7473,7 +6868,7 @@ incorporated. Provides: tex-adrconv = %{tl_version} License: LPPL Summary: BibTeX styles to implement an address database -Version: svn46817 +Version: svn17683.1.3 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(adrdir.cfg) = %{tl_version} @@ -7490,7 +6885,7 @@ formats for address books or time planners. %package adrconv-doc Summary: Documentation for adrconv -Version: svn46817 +Version: svn17683.1.3 Provides: tex-adrconv-doc AutoReqProv: No @@ -8001,7 +7396,7 @@ Documentation for akletter Provides: tex-alegreya = %{tl_version} License: OFL Summary: Alegreya fonts with LaTeX support -Version: svn50277 +Version: svn42077 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -10350,7 +9745,8 @@ Bold, black, small caps and five number styles are available. %package alegreya-doc Summary: Documentation for alegreya -Version: svn50277 +Version: svn38689 + Provides: tex-alegreya-doc AutoReqProv: No @@ -10361,9 +9757,11 @@ Documentation for alegreya Provides: tex-latexconfig = %{tl_version} License: LPPL Summary: latexconfig package -Version: svn45777 +Version: svn40274 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(epstopdf-sys.cfg) = %{tl_version} Provides: tex(graphics.cfg) = %{tl_version} Provides: tex(hyperref.cfg) = %{tl_version} @@ -10458,9 +9856,11 @@ also discussed in the book). Provides: tex-lambda = %{tl_version} License: LPPL Summary: lambda package -Version: svn45756 +Version: svn28669.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(grlccode.tex) Provides: tex(UT1cmr.fd) = %{tl_version} Provides: tex(UT1omlgc.fd) = %{tl_version} @@ -10974,9 +10374,11 @@ Documentation for alnumsec Provides: tex-alterqcm = %{tl_version} License: LPPL Summary: Multiple choice questionnaires in two column tables -Version: svn51446 +Version: svn23385.3.7c + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(calc.sty) Requires: tex(ifthen.sty) @@ -10991,7 +10393,8 @@ questionnaires in two-column tables. %package alterqcm-doc Summary: Documentation for alterqcm -Version: svn51446 +Version: svn23385.3.7c + Provides: tex-alterqcm-doc AutoReqProv: No @@ -11149,6 +10552,15 @@ proceedings), together with some supporting material. The material is made available as part of the AMS-LaTeX distribution. +%package amscls-doc +Summary: Documentation for amscls +Version: svn46099 +Provides: tex-amscls-doc +AutoReqProv: No + +%description amscls-doc +Documentation for amscls + %package amsfonts Provides: tex-amsfonts = %{tl_version} License: OFL @@ -11482,7 +10894,7 @@ Documentation for amsmath-it Provides: tex-amsmath = %{tl_version} License: LPPL Summary: AMS mathematical facilities for LaTeX -Version: svn49390 +Version: svn45246 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(amstext.sty) @@ -11511,7 +10923,7 @@ highlighting mathematics, and ntheorem, for specifying theorem %package amsmath-doc Summary: Documentation for amsmath -Version: svn49390 +Version: svn45246 Provides: tex-amsmath-doc AutoReqProv: No @@ -11570,7 +10982,7 @@ Documentation for amsthdoc-it Provides: tex-animate = %{tl_version} License: LPPL Summary: Create PDF animations from graphics files and inline graphics -Version: svn51704 +Version: svn46266 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(keyval.sty) @@ -11595,7 +11007,7 @@ text. %package animate-doc Summary: Documentation for animate -Version: svn51704 +Version: svn46266 Provides: tex-animate-doc AutoReqProv: No @@ -11634,10 +11046,13 @@ Documentation for anonchap Provides: tex-anonymouspro = %{tl_version} License: LPPL 1.3 Summary: Use AnonymousPro fonts with LaTeX -Version: svn51631 +Version: svn33441.2.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(kvoptions.sty) Provides: tex(AnonymousPro-01.enc) = %{tl_version} Provides: tex(AnonymousPro-02.enc) = %{tl_version} @@ -11716,7 +11131,8 @@ and LaTeX support is also provided. %package anonymouspro-doc Summary: Documentation for anonymouspro -Version: svn51631 +Version: svn33441.2.1 + Provides: tex-anonymouspro-doc AutoReqProv: No @@ -12753,9 +12169,11 @@ Documentation for apa Provides: tex-apnum = %{tl_version} License: Public Domain Summary: Arbitrary precision numbers implemented by TeX macros -Version: svn47510 +Version: svn39710 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(apnum.tex) = %{tl_version} %description apnum @@ -12770,7 +12188,7 @@ and \newcount macro. %package apnum-doc Summary: Documentation for apnum -Version: svn47510 +Version: svn39710 Provides: tex-apnum-doc AutoReqProv: No @@ -14988,7 +14406,7 @@ Documentation for articleingud Provides: tex-arydshln = %{tl_version} License: LPPL Summary: Horizontal and vertical dashed lines in arrays and tabulars -Version: svn50084 +Version: svn40847 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(arydshln.sty) = %{tl_version} @@ -15003,7 +14421,7 @@ The package is compatible with array and colortab. %package arydshln-doc Summary: Documentation for arydshln -Version: svn50084 +Version: svn40847 Provides: tex-arydshln-doc AutoReqProv: No @@ -15043,12 +14461,14 @@ Documentation for asaetr Provides: tex-asana-math = %{tl_version} License: OFL Summary: A font to typeset maths in Xe(La)TeX and Lua(La)TeX -Version: svn50999 +Version: svn37556.000.955 + Requires: texlive-base Provides: texlive-Asana-Math = %{tl_version} Obsoletes: texlive-Asana-Math < %{tl_version} Obsoletes: texlive-Asana-Math-fedora-fonts < %{tl_version} Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(Asana-Math.otf) = %{tl_version} %description asana-math @@ -15062,7 +14482,8 @@ packages. %package asana-math-doc Summary: Documentation for asana-math -Version: svn50999 +Version: svn37556.000.955 + Provides: tex-asana-math-doc AutoReqProv: No @@ -16135,9 +15556,11 @@ Documentation for babel-basque Provides: tex-babelbib = %{tl_version} License: LPPL Summary: Multilingual bibliographies -Version: svn50354 +Version: svn25245.1.31 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(babel.sty) Provides: tex(babelbib.sty) = %{tl_version} @@ -16151,7 +15574,8 @@ typography of the bibliographies. %package babelbib-doc Summary: Documentation for babelbib -Version: svn50354 +Version: svn25245.1.31 + Provides: tex-babelbib-doc AutoReqProv: No @@ -16472,7 +15896,7 @@ Documentation for babel-finnish Provides: tex-babel-french = %{tl_version} License: LPPL 1.3 Summary: Babel contributed support for French -Version: svn50711 +Version: svn46493 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(luatexbase.sty) @@ -16487,7 +15911,7 @@ of the document). %package babel-french-doc Summary: Documentation for babel-french -Version: svn50711 +Version: svn46493 Provides: tex-babel-french-doc AutoReqProv: No @@ -16572,7 +15996,7 @@ Documentation for babel-georgian Provides: tex-babel-german = %{tl_version} License: LPPL 1.3 Summary: Babel support for documents written in German -Version: svn49391 +Version: svn42424 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(austrian.ldf) = %{tl_version} @@ -16591,7 +16015,7 @@ German (including its Austrian dialect), in both 'old' and %package babel-german-doc Summary: Documentation for babel-german -Version: svn49391 +Version: svn42424 Provides: tex-babel-german-doc AutoReqProv: No @@ -16602,7 +16026,7 @@ Documentation for babel-german Provides: tex-babel-greek = %{tl_version} License: LPPL 1.3 Summary: Babel support for documents written in Greek -Version: svn51628 +Version: svn42010 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(athnum.sty) = %{tl_version} @@ -16617,7 +16041,7 @@ era symbols. %package babel-greek-doc Summary: Documentation for babel-greek -Version: svn51628 +Version: svn42010 Provides: tex-babel-greek-doc AutoReqProv: No @@ -16691,7 +16115,7 @@ Documentation for babel-hebrew Provides: tex-babel-hungarian = %{tl_version} License: LPPL Summary: Babel support for Hungarian (Magyar) -Version: svn49701 +Version: svn45186 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(textcase.sty) @@ -16703,7 +16127,7 @@ support of Magyar (Hungarian) with babel. %package babel-hungarian-doc Summary: Documentation for babel-hungarian -Version: svn49701 +Version: svn45186 Provides: tex-babel-hungarian-doc AutoReqProv: No @@ -16714,9 +16138,11 @@ Documentation for babel-hungarian Provides: tex-babel-icelandic = %{tl_version} License: LPPL 1.3 Summary: Babel support for Icelandic -Version: svn51551 +Version: svn39387 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(icelandic.ldf) = %{tl_version} %description babel-icelandic @@ -16726,7 +16152,8 @@ translations to Icelandic of standard "LaTeX names". %package babel-icelandic-doc Summary: Documentation for babel-icelandic -Version: svn51551 +Version: svn39387 + Provides: tex-babel-icelandic-doc AutoReqProv: No @@ -16792,9 +16219,11 @@ Documentation for babel-irish Provides: tex-babel-italian = %{tl_version} License: LPPL 1.3 Summary: Babel support for Italian text -Version: svn49606 +Version: svn36645.1.3n + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(etoolbox.sty) Provides: tex(italian.ldf) = %{tl_version} @@ -16803,7 +16232,8 @@ The package provides language definitions for use in babel. %package babel-italian-doc Summary: Documentation for babel-italian -Version: svn49606 +Version: svn36645.1.3n + Provides: tex-babel-italian-doc AutoReqProv: No @@ -16873,9 +16303,11 @@ Documentation for babel-latin Provides: tex-babel-latvian = %{tl_version} License: LPPL 1.3 Summary: Babel support for Latvian -Version: svn46681 +Version: svn34377.2.0a + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(latvian.ldf) = %{tl_version} %description babel-latvian @@ -16884,7 +16316,8 @@ of Latvian in babel. %package babel-latvian-doc Summary: Documentation for babel-latvian -Version: svn46681 +Version: svn34377.2.0a + Provides: tex-babel-latvian-doc AutoReqProv: No @@ -17131,9 +16564,11 @@ Documentation for babel-scottish Provides: tex-babel-serbianc = %{tl_version} License: LPPL 1.3 Summary: Babel module to support Serbian Cyrillic -Version: svn49693 +Version: svn30348.2.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ucs.sty) Requires: tex(inputenc.sty) Requires: tex(fontenc.sty) @@ -17146,7 +16581,8 @@ Cyrillic, in babel. %package babel-serbianc-doc Summary: Documentation for babel-serbianc -Version: svn49693 +Version: svn30348.2.2 + Provides: tex-babel-serbianc-doc AutoReqProv: No @@ -17157,9 +16593,11 @@ Documentation for babel-serbianc Provides: tex-babel-serbian = %{tl_version} License: LPPL Summary: babel-serbian package -Version: svn51651 +Version: svn30290.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(serbian.ldf) = %{tl_version} %description babel-serbian @@ -17167,7 +16605,8 @@ babel-serbian package %package babel-serbian-doc Summary: Documentation for babel-serbian -Version: svn51651 +Version: svn30290.0 + Provides: tex-babel-serbian-doc AutoReqProv: No @@ -17370,7 +16809,7 @@ Documentation for babel-thai Provides: tex-babel = %{tl_version} License: LPPL 1.3 Summary: Multilingual support for Plain TeX or LaTeX -Version: svn51681 +Version: svn46442 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(UKenglish.sty) = %{tl_version} @@ -17447,7 +16886,7 @@ are advised to use polyglossia rather than Babel. %package babel-doc Summary: Documentation for babel -Version: svn51681 +Version: svn46442 Provides: tex-babel-doc AutoReqProv: No @@ -17458,9 +16897,11 @@ Documentation for babel Provides: tex-babel-turkish = %{tl_version} License: LPPL 1.3 Summary: Babel support for Turkish documents -Version: svn51560 +Version: svn33284.1.3b + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(turkish.ldf) = %{tl_version} %description babel-turkish @@ -17469,7 +16910,8 @@ language. %package babel-turkish-doc Summary: Documentation for babel-turkish -Version: svn51560 +Version: svn33284.1.3b + Provides: tex-babel-turkish-doc AutoReqProv: No @@ -17483,7 +16925,7 @@ Provides: tex-babel-ukrainian = %{tl_version} Provides: tex-babel-ukraineb = %{tl_version} License: LPPL Summary: babel-ukrainian package -Version: svn47585 +Version: svn45036 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(ukraineb.ldf) = %{tl_version} @@ -17493,7 +16935,7 @@ babel-ukrainian package %package babel-ukrainian-doc Summary: Documentation for babel-ukrainian -Version: svn47585 +Version: svn45036 Provides: tex-babel-ukrainian-doc = %{tl_version} Obsoletes: babel-ukraineb-doc < 2016 Provides: tex-babel-ukraineb-doc @@ -17580,9 +17022,11 @@ Documentation for background Provides: tex-backnaur = %{tl_version} License: LPPL 1.3 Summary: Typeset Backus Naur Form definitions -Version: svn51505 +Version: svn28513.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(backnaur.sty) = %{tl_version} %description backnaur @@ -17592,7 +17036,8 @@ It can also print in-line BNF expressions using math mode. %package backnaur-doc Summary: Documentation for backnaur -Version: svn51505 +Version: svn28513.1.1 + Provides: tex-backnaur-doc AutoReqProv: No @@ -19018,9 +18463,11 @@ Documentation for beamer-FUBerlin Provides: tex-beamerposter = %{tl_version} License: LPPL Summary: Extend beamer and a0poster for custom sized posters -Version: svn47508 +Version: svn37009.1.12 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(type1cm.sty) Requires: tex(fp.sty) @@ -19042,7 +18489,8 @@ landscape; a 'debug mode' is provided. %package beamerposter-doc Summary: Documentation for beamerposter -Version: svn47508 +Version: svn37009.1.12 + Provides: tex-beamerposter-doc AutoReqProv: No @@ -19185,7 +18633,7 @@ Documentation for beamertheme-upenn-bc Provides: tex-beamer = %{tl_version} License: LPPL 1.3 Summary: A LaTeX class for producing presentations and slides -Version: svn51711 +Version: svn46481 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex-pgf @@ -19357,7 +18805,7 @@ other language environments. %package beamer-doc Summary: Documentation for beamer -Version: svn51711 +Version: svn46481 Provides: tex-beamer-doc AutoReqProv: No Requires: tex-pgf-doc @@ -19370,7 +18818,7 @@ Documentation for beamer Provides: tex-pgf = %{tl_version} License: LPPL 1.3 Summary: Create PostScript and PDF graphics in TeX -Version: svn51817 +Version: svn44231 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex-xkeyval @@ -19657,7 +19105,7 @@ output. %package pgf-doc Summary: Documentation for pgf -Version: svn51817 +Version: svn44231 Provides: tex-pgf-doc AutoReqProv: No Requires: tex-xkeyval-doc @@ -20450,6 +19898,46 @@ AutoReqProv: No %description bez123-doc Documentation for bez123 +%package bezos +Provides: tex-bezos = %{tl_version} +License: LPPL +Summary: Packages by Javier Bezos +Version: svn25507.0 + +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea + +Requires: tex(soulutf8.sty) +Requires: tex(keyval.sty) +Provides: tex(accents.sty) = %{tl_version} +Provides: tex(arabicfront.sty) = %{tl_version} +Provides: tex(babeltools.sty) = %{tl_version} +Provides: tex(checkend.sty) = %{tl_version} +Provides: tex(dotlessi.sty) = %{tl_version} +Provides: tex(esindex.sty) = %{tl_version} +Provides: tex(soulpos.sty) = %{tl_version} +Provides: tex(subdocs.sty) = %{tl_version} +Provides: tex(tensind.sty) = %{tl_version} + +%description bezos +A set of packages that provide: tools for maths accents; a tool +that changes page-numbering in frontmatter to arabic; tools for +dealing with some annoyances in babel; a tool for making end- +environment checking more meaningful; tensorial indexes; +support for multi-file documents; tools for easy entry of +Spanish index entries; dotless i's and j's for maths fonts; and +fancy underlining. + +%package bezos-doc +Summary: Documentation for bezos +Version: svn25507.0 + +Provides: tex-bezos-doc +AutoReqProv: No + +%description bezos-doc +Documentation for bezos + %package bgreek Provides: tex-bgreek = %{tl_version} License: LPPL @@ -20963,9 +20451,11 @@ Documentation for bhcexam Provides: tex-bibarts = %{tl_version} License: GPL+ Summary: "Arts"-style bibliographical information -Version: svn50226 +Version: svn40096 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(bibarts.sty) = %{tl_version} %description bibarts @@ -20977,7 +20467,8 @@ brief introduction in English, as a comment.) %package bibarts-doc Summary: Documentation for bibarts -Version: svn50226 +Version: svn40096 + Provides: tex-bibarts-doc AutoReqProv: No @@ -21068,7 +20559,7 @@ Documentation for biblatex-anonymous Provides: tex-biblatex-apa = %{tl_version} License: LPPL Summary: Biblatex citation and reference style for APA -Version: svn47268 +Version: svn45766 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: biber @@ -21090,7 +20581,7 @@ of biblatex v2.0 and biber v1.0 (at least). %package biblatex-apa-doc Summary: Documentation for biblatex-apa -Version: svn47268 +Version: svn45766 Provides: tex-biblatex-apa-doc AutoReqProv: No @@ -21157,7 +20648,7 @@ Documentation for biblatex-bwl Provides: tex-biblatex-caspervector = %{tl_version} License: LPPL 1.3 Summary: A simple citation style for Chinese users -Version: svn48122 +Version: svn43371 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(numeric.bbx) @@ -21174,7 +20665,7 @@ biblatex. %package biblatex-caspervector-doc Summary: Documentation for biblatex-caspervector -Version: svn48122 +Version: svn43371 Provides: tex-biblatex-caspervector-doc AutoReqProv: No @@ -21219,7 +20710,7 @@ Documentation for biblatex-chem Provides: tex-biblatex-chicago = %{tl_version} License: LPPL 1.3 Summary: Chicago style files for biblatex -Version: svn46331 +Version: svn44156 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(etoolbox.sty) @@ -21246,7 +20737,7 @@ package was previously known as biblatex-chicago-notes-df. %package biblatex-chicago-doc Summary: Documentation for biblatex-chicago -Version: svn46331 +Version: svn44156 Provides: tex-biblatex-chicago-doc AutoReqProv: No @@ -21295,7 +20786,7 @@ Documentation for biblatex-dw Provides: tex-biblatex-fiwi = %{tl_version} License: LPPL 1.3 Summary: Biblatex styles for use in German humanities -Version: svn45876 +Version: svn43082 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(standard.bbx) @@ -21317,7 +20808,7 @@ in German. %package biblatex-fiwi-doc Summary: Documentation for biblatex-fiwi -Version: svn45876 +Version: svn43082 Provides: tex-biblatex-fiwi-doc AutoReqProv: No @@ -21328,7 +20819,7 @@ Documentation for biblatex-fiwi Provides: tex-biblatex-gost = %{tl_version} License: LPPL 1.3 Summary: Biblatex support for GOST standard bibliographies -Version: svn46709 +Version: svn45119 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(gost-alphabetic.cbx) @@ -21367,7 +20858,7 @@ style GOST 7.0.5-2008 %package biblatex-gost-doc Summary: Documentation for biblatex-gost -Version: svn46709 +Version: svn45119 Provides: tex-biblatex-gost-doc AutoReqProv: No @@ -21405,7 +20896,7 @@ Documentation for biblatex-historian Provides: tex-biblatex-ieee = %{tl_version} License: LPPL 1.3 Summary: Ieee style files for biblatex -Version: svn51402 +Version: svn43620 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(alphabetic.cbx) @@ -21426,7 +20917,7 @@ provided to show how to format input for the style. %package biblatex-ieee-doc Summary: Documentation for biblatex-ieee -Version: svn51402 +Version: svn43620 Provides: tex-biblatex-ieee-doc AutoReqProv: No @@ -21504,7 +20995,7 @@ Documentation for biblatex-luh-ipw Provides: tex-biblatex-manuscripts-philology = %{tl_version} License: LPPL 1.3 Summary: Manage classical manuscripts with biblatex -Version: svn45912 +Version: svn43108 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(verbose.bbx) @@ -21519,7 +21010,7 @@ critical edition. %package biblatex-manuscripts-philology-doc Summary: Documentation for biblatex-manuscripts-philology -Version: svn45912 +Version: svn43108 Provides: tex-biblatex-manuscripts-philology-doc AutoReqProv: No @@ -21635,9 +21126,11 @@ Documentation for biblatex-nature Provides: tex-biblatex-nejm = %{tl_version} License: LPPL 1.3 Summary: Biblatex style for the New England Journal of Medicine (NEJM) -Version: svn49839 +Version: svn24011.0.4 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(standard.bbx) Requires: tex(numeric-comp.cbx) Provides: tex(nejm.bbx) = %{tl_version} @@ -21649,7 +21142,8 @@ England Journal of Medicine (NEJM). %package biblatex-nejm-doc Summary: Documentation for biblatex-nejm -Version: svn49839 +Version: svn24011.0.4 + Provides: tex-biblatex-nejm-doc AutoReqProv: No @@ -21689,7 +21183,7 @@ Documentation for biblatex-opcit-booktitle Provides: tex-biblatex-philosophy = %{tl_version} License: LPPL 1.3 Summary: Styles for using biblatex for work in philosophy -Version: svn47283 +Version: svn45486 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(authoryear.bbx) @@ -21719,7 +21213,7 @@ redefinitions. %package biblatex-philosophy-doc Summary: Documentation for biblatex-philosophy -Version: svn47283 +Version: svn45486 Provides: tex-biblatex-philosophy-doc AutoReqProv: No @@ -21761,7 +21255,7 @@ Documentation for biblatex-phys Provides: tex-biblatex-publist = %{tl_version} License: LPPL 1.3 Summary: BibLaTeX bibliography support for publication lists -Version: svn50989 +Version: svn43765 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(authoryear.bbx) @@ -21778,7 +21272,7 @@ author's own name from author or editor data. %package biblatex-publist-doc Summary: Documentation for biblatex-publist -Version: svn50989 +Version: svn43765 Provides: tex-biblatex-publist-doc AutoReqProv: No @@ -21789,7 +21283,7 @@ Documentation for biblatex-publist Provides: tex-biblatex-realauthor = %{tl_version} License: LPPL 1.3 Summary: Indicate the real author of a work -Version: svn45865 +Version: svn42390 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(verbose.bbx) @@ -21802,7 +21296,7 @@ pseudepigraphic name. %package biblatex-realauthor-doc Summary: Documentation for biblatex-realauthor -Version: svn45865 +Version: svn42390 Provides: tex-biblatex-realauthor-doc AutoReqProv: No @@ -21931,10 +21425,9 @@ Documentation for biblatex-swiss-legal Provides: tex-biblatex = %{tl_version} License: LPPL Summary: Bibliographies in LaTeX using BibTeX for sorting only -Version: svn49069 +Version: svn42680 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea -Requires: biber >= 2.12 Requires: tex(standard.bbx) Requires: tex(authoryear.bbx) Requires: tex(biblatex.sty) @@ -22044,7 +21537,7 @@ can interface with the babel. %package biblatex-doc Summary: Documentation for biblatex -Version: svn49069 +Version: svn42680 Provides: tex-biblatex-doc AutoReqProv: No @@ -22055,7 +21548,7 @@ Documentation for biblatex Provides: tex-biblatex-trad = %{tl_version} License: LPPL Summary: "Traditional" BibTeX styles with BibLaTeX -Version: svn46668 +Version: svn41656 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(standard.bbx) @@ -22078,7 +21571,7 @@ styles (plain, abbrev, unsrt and alpha) with BibLaTeX. %package biblatex-trad-doc Summary: Documentation for biblatex-trad -Version: svn46668 +Version: svn41656 Provides: tex-biblatex-trad-doc AutoReqProv: No @@ -22114,9 +21607,11 @@ Documentation for biblatex-true-citepages-omit Provides: tex-bibleref-french = %{tl_version} License: LPPL 1.3 Summary: French translations for bibleref -Version: svn50075 +Version: svn35497.2.3.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(bibleref.sty) Requires: tex(etoolbox.sty) Provides: tex(bibleref-french.sty) = %{tl_version} @@ -22127,7 +21622,8 @@ conventions for use of bibleref in French. %package bibleref-french-doc Summary: Documentation for bibleref-french -Version: svn50075 +Version: svn35497.2.3.1 + Provides: tex-bibleref-french-doc AutoReqProv: No @@ -22260,7 +21756,7 @@ Documentation for bibleref-parse Provides: tex-bibleref = %{tl_version} License: LPPL 1.3 Summary: Format bible citations -Version: svn49699 +Version: svn44737 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -22275,7 +21771,7 @@ formats. %package bibleref-doc Summary: Documentation for bibleref -Version: svn49699 +Version: svn44737 Provides: tex-bibleref-doc AutoReqProv: No @@ -22579,7 +22075,7 @@ Documentation for bidishadowtext Provides: tex-bidi = %{tl_version} License: LPPL 1.3 Summary: Bidirectional typesetting in plain TeX and LaTeX, using XeTeX engine -Version: svn51377 +Version: svn45523 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(iftex.sty) @@ -22740,7 +22236,7 @@ with many other commonly-used packages. %package bidi-doc Summary: Documentation for bidi -Version: svn51377 +Version: svn45523 Provides: tex-bidi-doc AutoReqProv: No @@ -23143,13 +22639,17 @@ AutoReqProv: No %description bloques-doc Documentation for bloques +%if 0 + %package blowup Provides: tex-blowup = %{tl_version} License: LPPL Summary: Upscale or downscale all pages of a document -Version: svn46213 +Version: svn15878.0.1j + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(everyshi.sty) Requires: tex(graphics.sty) Requires: tex(keyval.sty) @@ -23164,13 +22664,16 @@ more accurate and user-friendly. %package blowup-doc Summary: Documentation for blowup -Version: svn46213 +Version: svn15878.0.1j + Provides: tex-blowup-doc AutoReqProv: No %description blowup-doc Documentation for blowup +%endif + %package blox Provides: tex-blox = %{tl_version} License: LPPL @@ -23204,7 +22707,7 @@ Documentation for blox Provides: tex-bnumexpr = %{tl_version} License: LPPL 1.3 Summary: Extends eTeX's \numexpr...\relax construct to big integers -Version: svn49643 +Version: svn44901 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xintcore.sty) @@ -23220,7 +22723,7 @@ macros. %package bnumexpr-doc Summary: Documentation for bnumexpr -Version: svn49643 +Version: svn44901 Provides: tex-bnumexpr-doc AutoReqProv: No @@ -23507,7 +23010,7 @@ Documentation for bondgraph Provides: tex-bookcover = %{tl_version} License: LPPL 1.2 Summary: A class for book covers and dust jackets -Version: svn46410 +Version: svn43861 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(kvoptions.sty) @@ -23526,7 +23029,7 @@ This class helps typesetting book covers and dust jackets. %package bookcover-doc Summary: Documentation for bookcover -Version: svn46410 +Version: svn43861 Provides: tex-bookcover-doc AutoReqProv: No @@ -23596,10 +23099,13 @@ Documentation for bookest Provides: tex-bookhands = %{tl_version} License: LPPL Summary: A collection of book-hand fonts -Version: svn46480 +Version: svn23609.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(egothic.sty) Requires: tex(huncial.sty) Requires: tex(inslrmin.sty) @@ -23736,7 +23242,8 @@ Artificial Uncial (6th-10th centuries); and Insular Majuscule %package bookhands-doc Summary: Documentation for bookhands -Version: svn46480 +Version: svn23609.0 + Provides: tex-bookhands-doc AutoReqProv: No @@ -24334,6 +23841,7 @@ reference to labelled compounds. %package bpchem-doc Summary: Documentation for bpchem Version: svn45120 + Provides: tex-bpchem-doc AutoReqProv: No @@ -24397,9 +23905,11 @@ Documentation for bracketkey Provides: tex-braids = %{tl_version} License: LPPL 1.3 Summary: Draw braid diagrams with PGF/TikZ -Version: svn51048 +Version: svn23790.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(braids.sty) = %{tl_version} %description braids @@ -24410,7 +23920,8 @@ styling the strands and for drawing "floors". %package braids-doc Summary: Documentation for braids -Version: svn51048 +Version: svn23790.1.0 + Provides: tex-braids-doc AutoReqProv: No @@ -24880,7 +24391,7 @@ Documentation for bxeepic Provides: tex-bxjscls = %{tl_version} License: BSD Summary: Japanese document class collection for all major engines -Version: svn51758 +Version: svn45566 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(calc.sty) @@ -24904,7 +24415,7 @@ typesetting. %package bxjscls-doc Summary: Documentation for bxjscls -Version: svn51758 +Version: svn45566 Provides: tex-bxjscls-doc AutoReqProv: No @@ -24971,7 +24482,7 @@ Documentation for bytefield Provides: tex-c90 = %{tl_version} License: LPPL Summary: c90 package -Version: svn45666 +Version: svn42428 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(c90.enc) = %{tl_version} @@ -24981,7 +24492,7 @@ c90 package %package c90-doc Summary: Documentation for c90 -Version: svn45666 +Version: svn42428 Provides: tex-c90-doc AutoReqProv: No @@ -24992,7 +24503,7 @@ Documentation for c90 Provides: tex-cabin = %{tl_version} License: OFL Summary: A humanist Sans Serif font, with LaTeX support -Version: svn50936 +Version: svn43687 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -25381,7 +24892,7 @@ fontaxes package is required for use with [pdf]LaTeX. %package cabin-doc Summary: Documentation for cabin -Version: svn50936 +Version: svn43687 Provides: tex-cabin-doc AutoReqProv: No @@ -25728,7 +25239,7 @@ Documentation for cals Provides: tex-calxxxx-yyyy = %{tl_version} License: LPPL 1.3 Summary: Print a calendar for a group of years -Version: svn49554 +Version: svn44131 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(calxxxx-yyyy.tex) = %{tl_version} @@ -25742,7 +25253,7 @@ speaking world. %package calxxxx-yyyy-doc Summary: Documentation for calxxxx-yyyy -Version: svn49554 +Version: svn44131 Provides: tex-calxxxx-yyyy-doc AutoReqProv: No @@ -25754,8 +25265,10 @@ Provides: tex-cancel = %{tl_version} License: Public Domain Summary: Place lines through maths formulae Version: svn32508.2.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(cancel.sty) = %{tl_version} %description cancel @@ -25766,6 +25279,7 @@ parts of maths formulae. %package cancel-doc Summary: Documentation for cancel Version: svn32508.2.2 + Provides: tex-cancel-doc AutoReqProv: No @@ -25802,10 +25316,13 @@ Documentation for canoniclayout Provides: tex-cantarell = %{tl_version} License: LPPL 1.3 Summary: LaTeX support for the Cantarell font family -Version: svn51459 +Version: svn27066.2.4 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(keyval.sty) Requires: tex(slantsc.sty) Provides: tex(cantarell-01.enc) = %{tl_version} @@ -25950,7 +25467,8 @@ Dvips. %package cantarell-doc Summary: Documentation for cantarell -Version: svn51459 +Version: svn27066.2.4 + Provides: tex-cantarell-doc AutoReqProv: No @@ -26022,7 +25540,7 @@ Documentation for captdef Provides: tex-caption = %{tl_version} License: LPPL 1.3 Summary: Customising captions in floating environments -Version: svn47968 +Version: svn41409 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(caption3.sty) @@ -26050,7 +25568,7 @@ capt-of do. The package supersedes caption2. %package caption-doc Summary: Documentation for caption -Version: svn47968 +Version: svn41409 Provides: tex-caption-doc AutoReqProv: No @@ -26088,9 +25606,11 @@ Documentation for capt-of Provides: tex-carlisle = %{tl_version} License: LPPL Summary: David Carlisle's small packages -Version: svn47876 +Version: svn18258.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(color.sty) Requires: tex(tabularx.sty) Requires: tex(longtable.sty) @@ -26116,7 +25636,8 @@ environment for including HTML in LaTeX documents. %package carlisle-doc Summary: Documentation for carlisle -Version: svn47876 +Version: svn18258.0 + Provides: tex-carlisle-doc AutoReqProv: No @@ -26573,9 +26094,11 @@ Documentation for catcodes Provides: tex-catechis = %{tl_version} License: LPPL Summary: Macros for typesetting catechisms -Version: svn49061 +Version: svn15878.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(calc.sty) Requires: tex(ifthen.sty) Requires: tex(varioref.sty) @@ -26589,7 +26112,8 @@ customisable. %package catechis-doc Summary: Documentation for catechis -Version: svn49061 +Version: svn15878.1.1 + Provides: tex-catechis-doc AutoReqProv: No @@ -28685,10 +28209,13 @@ Documentation for ccfonts Provides: tex-ccicons = %{tl_version} License: LPPL 1.3 Summary: LaTeX support for Creative Commons icons -Version: svn45646 +Version: svn30020.1.5 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(xkeyval.sty) Provides: tex(ccicons-u.enc) = %{tl_version} Provides: tex(ccicons.map) = %{tl_version} @@ -28704,7 +28231,8 @@ Adobe Type 1 format) and LaTeX support macros are provided. %package ccicons-doc Summary: Documentation for ccicons -Version: svn45646 +Version: svn30020.1.5 + Provides: tex-ccicons-doc AutoReqProv: No @@ -28820,9 +28348,11 @@ Documentation for cd-cover Provides: tex-cdpbundl = %{tl_version} License: LPPL Summary: Business letters in the Italian style -Version: svn46613 +Version: svn36697.0.36 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(color.sty) Requires: tex(hyperref.sty) Requires: tex(babel.sty) @@ -28852,7 +28382,8 @@ etc., independant from the other ones. %package cdpbundl-doc Summary: Documentation for cdpbundl -Version: svn46613 +Version: svn36697.0.36 + Provides: tex-cdpbundl-doc AutoReqProv: No @@ -28890,7 +28421,7 @@ Documentation for cd Provides: tex-cellspace = %{tl_version} License: LPPL Summary: Ensure minimal spacing of table cells -Version: svn50374 +Version: svn45034 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -28912,7 +28443,7 @@ columns. %package cellspace-doc Summary: Documentation for cellspace -Version: svn50374 +Version: svn45034 Provides: tex-cellspace-doc AutoReqProv: No @@ -28971,9 +28502,11 @@ Documentation for celtic Provides: tex-censor = %{tl_version} License: LPPL 1.3 Summary: Facilities for controlling restricted text in a document -Version: svn49168 +Version: svn31332.3.21 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(censor.sty) = %{tl_version} %description censor @@ -28984,7 +28517,8 @@ enclosed by a LaTeX box. %package censor-doc Summary: Documentation for censor -Version: svn49168 +Version: svn31332.3.21 + Provides: tex-censor-doc AutoReqProv: No @@ -30004,9 +29538,11 @@ Documentation for cfr-lm Provides: tex-changebar = %{tl_version} License: LPPL Summary: Generate changebars in LaTeX documents -Version: svn46919 +Version: svn29349.3.5c + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(changebar.sty) = %{tl_version} %description changebar @@ -30018,7 +29554,8 @@ DVI drivers, and VTeX and PDFTeX. %package changebar-doc Summary: Documentation for changebar -Version: svn46919 +Version: svn29349.3.5c + Provides: tex-changebar-doc AutoReqProv: No @@ -30090,7 +29627,7 @@ Documentation for changepage Provides: tex-changes = %{tl_version} License: LPPL 1.3 Summary: Manual change markup -Version: svn51705 +Version: svn41737 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) @@ -30112,7 +29649,7 @@ the changes. %package changes-doc Summary: Documentation for changes -Version: svn51705 +Version: svn41737 Provides: tex-changes-doc AutoReqProv: No @@ -30442,7 +29979,7 @@ Documentation for chemexec Provides: tex-chemfig = %{tl_version} License: LPPL 1.3 Summary: Draw molecules with easy syntax -Version: svn51176 +Version: svn44513 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(tikz.sty) @@ -30461,7 +29998,7 @@ actual drawing operations. %package chemfig-doc Summary: Documentation for chemfig -Version: svn51176 +Version: svn44513 Provides: tex-chemfig-doc AutoReqProv: No @@ -30652,7 +30189,7 @@ Documentation for chemnum Provides: tex-chemschemex = %{tl_version} License: LPPL 1.2 Summary: Typeset and cross-reference chemical schemes based on TikZ code -Version: svn46723 +Version: svn43747 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) @@ -30672,7 +30209,7 @@ referencing. %package chemschemex-doc Summary: Documentation for chemschemex -Version: svn46723 +Version: svn43747 Provides: tex-chemschemex-doc AutoReqProv: No @@ -30771,9 +30308,11 @@ Documentation for cherokee Provides: tex-chessboard = %{tl_version} License: LPPL Summary: Print chess boards -Version: svn51469 +Version: svn33801.1.7 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(chessfss.sty) Requires: tex(xkeyval.sty) Requires: tex(xifthen.sty) @@ -30796,7 +30335,8 @@ animations. %package chessboard-doc Summary: Documentation for chessboard -Version: svn51469 +Version: svn33801.1.7 + Provides: tex-chessboard-doc AutoReqProv: No @@ -31126,9 +30666,11 @@ Documentation for chletter Provides: tex-chngcntr = %{tl_version} License: LPPL Summary: Change the resetting of counters -Version: svn47577 +Version: svn17157.1.0a + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(chngcntr.sty) = %{tl_version} %description chngcntr @@ -31138,7 +30680,8 @@ unsets such a relationship). %package chngcntr-doc Summary: Documentation for chngcntr -Version: svn47577 +Version: svn17157.1.0a + Provides: tex-chngcntr-doc AutoReqProv: No @@ -31237,10 +30780,13 @@ Documentation for chscite Provides: tex-cinzel = %{tl_version} License: OFL Summary: LaTeX support for Cinzel and Cinzel Decorative fonts -Version: svn51101 +Version: svn34408.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Requires: tex(xkeyval.sty) @@ -31348,7 +30894,8 @@ support. %package cinzel-doc Summary: Documentation for cinzel -Version: svn51101 +Version: svn34408.0 + Provides: tex-cinzel-doc AutoReqProv: No @@ -31398,7 +30945,7 @@ Documentation for circ Provides: tex-circuitikz = %{tl_version} License: LPPL Summary: Draw electrical networks with TikZ -Version: svn51634 +Version: svn44488 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(tikz.sty) @@ -31431,7 +30978,7 @@ package. %package circuitikz-doc Summary: Documentation for circuitikz -Version: svn51634 +Version: svn44488 Provides: tex-circuitikz-doc AutoReqProv: No @@ -31442,9 +30989,11 @@ Documentation for circuitikz Provides: tex-citeall = %{tl_version} License: LPPL 1.3 Summary: Cite all entries of a bbl created with biblatex -Version: svn45975 +Version: svn37103.1.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Requires: tex(xparse.sty) Provides: tex(citeall.sty) = %{tl_version} @@ -31455,7 +31004,8 @@ created with biblatex (v1.9). %package citeall-doc Summary: Documentation for citeall -Version: svn45975 +Version: svn37103.1.2 + Provides: tex-citeall-doc AutoReqProv: No @@ -31803,9 +31353,11 @@ Documentation for cjk Provides: tex-cns = %{tl_version} License: LPPL Summary: cns package -Version: svn45677 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(c0so1201.tfm) = %{tl_version} Provides: tex(c0so1202.tfm) = %{tl_version} Provides: tex(c0so1203.tfm) = %{tl_version} @@ -32070,7 +31622,8 @@ cns package %package cns-doc Summary: Documentation for cns -Version: svn45677 +Version: svn15878.0 + Provides: tex-cns-doc AutoReqProv: No @@ -32102,7 +31655,7 @@ garuda-c90 package Provides: tex-fonts-tlwg = %{tl_version} License: GPL+ Summary: Thai fonts for LaTeX from TLWG -Version: svn49085 +Version: svn45469 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -32333,7 +31886,7 @@ package. %package fonts-tlwg-doc Summary: Documentation for fonts-tlwg -Version: svn49085 +Version: svn45469 Provides: tex-fonts-tlwg-doc AutoReqProv: No @@ -36723,7 +36276,7 @@ Documentation for classics Provides: tex-classicthesis = %{tl_version} License: GPLv2+ Summary: A "classically styled" thesis package -Version: svn48041 +Version: svn45578 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -36758,7 +36311,7 @@ make thesis writing easier. %package classicthesis-doc Summary: Documentation for classicthesis -Version: svn48041 +Version: svn45578 Provides: tex-classicthesis-doc AutoReqProv: No @@ -36796,9 +36349,11 @@ Documentation for classpack Provides: tex-cleanthesis = %{tl_version} License: LPPL 1.3 Summary: A clean LaTeX style for thesis documents -Version: svn51472 +Version: svn38221.0.3.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(xcolor.sty) Requires: tex(fontenc.sty) @@ -36828,7 +36383,8 @@ thesis documents. %package cleanthesis-doc Summary: Documentation for cleanthesis -Version: svn51472 +Version: svn38221.0.3.1 + Provides: tex-cleanthesis-doc AutoReqProv: No @@ -37046,7 +36602,8 @@ range. %package cleveref-doc Summary: Documentation for cleveref -Version: svn47525 +Version: svn32513.0.19 + Provides: tex-cleveref-doc AutoReqProv: No @@ -37057,9 +36614,11 @@ Documentation for cleveref Provides: tex-clipboard = %{tl_version} License: LPPL 1.3 Summary: Copy and paste into and across documents -Version: svn47747 +Version: svn28876.0.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(clipboard.sty) = %{tl_version} %description clipboard @@ -37069,7 +36628,8 @@ documents. It replaces the copypaste package. %package clipboard-doc Summary: Documentation for clipboard -Version: svn47747 +Version: svn28876.0.2 + Provides: tex-clipboard-doc AutoReqProv: No @@ -37139,9 +36699,11 @@ Documentation for cloze Provides: tex-clrscode3e = %{tl_version} License: LPPL Summary: Typesets pseudocode as in Introduction to Algorithms -Version: svn51137 +Version: svn34887.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(graphics.sty) Provides: tex(clrscode3e.sty) = %{tl_version} @@ -37155,7 +36717,8 @@ pseudocode in the text. %package clrscode3e-doc Summary: Documentation for clrscode3e -Version: svn51137 +Version: svn34887.0 + Provides: tex-clrscode3e-doc AutoReqProv: No @@ -37166,7 +36729,8 @@ Documentation for clrscode3e Provides: tex-clrscode = %{tl_version} License: LPPL Summary: Typesets pseudocode as in Introduction to Algorithms -Version: svn51136 +Version: svn15878.1.7 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -37182,7 +36746,8 @@ the pseudocode in the text. %package clrscode-doc Summary: Documentation for clrscode -Version: svn51136 +Version: svn15878.1.7 + Provides: tex-clrscode-doc AutoReqProv: No @@ -38643,7 +38208,7 @@ Documentation for cmpica Provides: tex-cmpj = %{tl_version} License: LPPL Summary: Style for the journal Condensed Matter Physics -Version: svn51661 +Version: svn44283 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(fancyhdr.sty) @@ -38669,7 +38234,7 @@ Physics of the National Academy of Sciences of Ukraine. %package cmpj-doc Summary: Documentation for cmpj -Version: svn51661 +Version: svn44283 Provides: tex-cmpj-doc AutoReqProv: No @@ -39207,7 +38772,7 @@ Documentation for cmtiup Provides: tex-cm = %{tl_version} License: Knuth Summary: Computer Modern fonts -Version: svn49028 +Version: svn42428 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -39303,7 +38868,7 @@ European Computer Modern and the Latin Modern families. %package cm-doc Summary: Documentation for cm -Version: svn49028 +Version: svn42428 Provides: tex-cm-doc AutoReqProv: No @@ -39651,9 +39216,11 @@ Documentation for codedoc Provides: tex-codepage = %{tl_version} License: BSD Summary: Support for variant code pages -Version: svn51502 +Version: svn21126.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(code437.tex) = %{tl_version} Provides: tex(code850.tex) = %{tl_version} Provides: tex(codeiso1.tex) = %{tl_version} @@ -39670,7 +39237,8 @@ LaTeX distribution. %package codepage-doc Summary: Documentation for codepage -Version: svn51502 +Version: svn21126.0 + Provides: tex-codepage-doc AutoReqProv: No @@ -39802,13 +39370,12 @@ Documentation for collectbox %package collection-basic Summary: Essential programs and files -Version: svn51558 +Version: svn41616 Requires: texlive-base Requires: texlive-texlive.infra Requires: texlive-amsfonts Requires: texlive-bibtex Requires: texlive-cm -Requires: texlive-colorprofiles Requires: texlive-dvipdfmx Requires: texlive-dvips Requires: texlive-enctex @@ -39819,9 +39386,7 @@ Requires: texlive-graphics-def Requires: texlive-gsftopk Requires: texlive-hyph-utf8 Requires: texlive-hyphen-base -Requires: texlive-hyphenex Requires: texlive-ifluatex -Requires: texlive-ifplatform Requires: texlive-ifxetex Requires: texlive-knuth-lib Requires: texlive-knuth-local @@ -39837,6 +39402,7 @@ Requires: texlive-plain Requires: texlive-tetex Requires: texlive-tex Requires: texlive-tex-ini-files +Requires: texlive-texconfig Requires: texlive-texlive-common-doc Requires: texlive-texlive-docindex Requires: texlive-texlive-en @@ -39975,7 +39541,7 @@ Documentation for etex-pkg Provides: tex-hyph-utf8 = %{tl_version} License: Copyright only Summary: Hyphenation patterns expressed in UTF-8 -Version: svn51186 +Version: svn44401 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(conv-utf8-ec.tex) = %{tl_version} @@ -40003,7 +39569,7 @@ the older patterns. %package hyph-utf8-doc Summary: Documentation for hyph-utf8 -Version: svn51186 +Version: svn44401 Provides: tex-hyph-utf8-doc AutoReqProv: No @@ -40014,7 +39580,7 @@ Documentation for hyph-utf8 Provides: tex-hyphen-base = %{tl_version} License: LPPL Summary: hyphen-base package -Version: svn51200 +Version: svn44419 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(language.dat) = %{tl_version} @@ -40032,9 +39598,10 @@ hyphen-base package Provides: tex-ifluatex = %{tl_version} License: LPPL 1.3 Summary: Provides the \ifluatex switch -Version: svn51770 +Version: svn43610 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(ifluatex.sty) = %{tl_version} %description ifluatex @@ -40044,7 +39611,7 @@ LaTeX. The package is part of the oberdiek bundle. %package ifluatex-doc Summary: Documentation for ifluatex -Version: svn51770 +Version: svn43610 Provides: tex-ifluatex-doc AutoReqProv: No @@ -40176,7 +39743,7 @@ Documentation for mflogo %package texlive-common-doc Summary: Documentation for texlive-common -Version: svn50466 +Version: svn44191 Provides: tex-texlive-common-doc AutoReqProv: No @@ -40187,7 +39754,7 @@ Documentation for texlive-common Provides: tex-texlive-msg-translations = %{tl_version} License: LPPL Summary: translations of the TeX Live installer and TeX Live Manager -Version: svn51750 +Version: svn45376 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -40199,7 +39766,7 @@ http://tug.org/texlive/doc.html#install-tl-xlate. %package collection-bibtexextra Summary: BibTeX additional styles -Version: svn50619 +Version: svn45569 Requires: texlive-base Requires: texlive-collection-latex Requires: texlive-aichej @@ -40221,9 +39788,6 @@ Requires: texlive-biblatex Requires: texlive-biblatex-abnt Requires: texlive-biblatex-anonymous Requires: texlive-biblatex-apa -Requires: texlive-biblatex-archaeology -Requires: texlive-biblatex-arthistory-bonn -Requires: texlive-biblatex-bath Requires: texlive-biblatex-bookinarticle Requires: texlive-biblatex-bookinother Requires: texlive-biblatex-bwl @@ -40233,7 +39797,6 @@ Requires: texlive-biblatex-chicago Requires: texlive-biblatex-claves Requires: texlive-biblatex-dw Requires: texlive-biblatex-enc -Requires: texlive-biblatex-ext Requires: texlive-biblatex-fiwi Requires: texlive-biblatex-gb7714-2015 Requires: texlive-biblatex-gost @@ -40261,7 +39824,6 @@ Requires: texlive-biblatex-realauthor Requires: texlive-biblatex-sbl Requires: texlive-biblatex-science Requires: texlive-biblatex-shortfields -Requires: texlive-biblatex-socialscienceshuberlin Requires: texlive-biblatex-source-division Requires: texlive-biblatex-subseries Requires: texlive-biblatex-swiss-legal @@ -40282,7 +39844,6 @@ Requires: texlive-chicago-annote Requires: texlive-chembst Requires: texlive-chscite Requires: texlive-citeall -Requires: texlive-citeref Requires: texlive-collref Requires: texlive-compactbib Requires: texlive-crossrefware @@ -40290,18 +39851,15 @@ Requires: texlive-custom-bib Requires: texlive-din1505 Requires: texlive-dk-bib Requires: texlive-doipubmed -Requires: texlive-ecobiblatex Requires: texlive-economic Requires: texlive-fbs Requires: texlive-figbib Requires: texlive-footbib Requires: texlive-francais-bst -Requires: texlive-gbt7714 Requires: texlive-geschichtsfrkl Requires: texlive-harvard Requires: texlive-harvmac Requires: texlive-historische-zeitschrift -Requires: texlive-icite Requires: texlive-ietfbibs-doc Requires: texlive-ijqc Requires: texlive-inlinebib @@ -40320,7 +39878,6 @@ Requires: texlive-munich Requires: texlive-nar Requires: texlive-nmbib Requires: texlive-notes2bib -Requires: texlive-notex-bst Requires: texlive-oscola Requires: texlive-perception Requires: texlive-pnas2009 @@ -40334,9 +39891,7 @@ Requires: texlive-uni-wtal-lin Requires: texlive-urlbst Requires: texlive-usebib Requires: texlive-vak -Requires: texlive-windycity Requires: texlive-xcite -Requires: texlive-zootaxa-bst %description collection-bibtexextra Additional BibTeX styles and bibliography data(bases), notably @@ -40360,6 +39915,7 @@ Requires: texlive-fix2col Requires: texlive-geometry Requires: texlive-graphics Requires: texlive-graphics-cfg +Requires: texlive-graphics-def Requires: texlive-hyperref Requires: texlive-latex Requires: texlive-latex-bin @@ -40385,9 +39941,11 @@ very widely used and strongly recommended in practice. Provides: tex-colortbl = %{tl_version} License: LPPL Summary: Add colour to LaTeX tables -Version: svn49404 +Version: svn29803.v1.0a + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(array.sty) Requires: tex(color.sty) Provides: tex(colortbl.sty) = %{tl_version} @@ -40398,7 +39956,8 @@ individual cells. %package colortbl-doc Summary: Documentation for colortbl -Version: svn49404 +Version: svn29803.v1.0a + Provides: tex-colortbl-doc AutoReqProv: No @@ -40409,7 +39968,7 @@ Documentation for colortbl Provides: tex-fancyhdr = %{tl_version} License: LPPL Summary: Extensive control of page headers and footers in LaTeX2e -Version: svn49886 +Version: svn44730 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(extramarks.sty) = %{tl_version} @@ -40424,7 +39983,7 @@ the heading style in use). %package fancyhdr-doc Summary: Documentation for fancyhdr -Version: svn49886 +Version: svn44730 Provides: tex-fancyhdr-doc AutoReqProv: No @@ -40462,9 +40021,11 @@ Documentation for fix2col Provides: tex-geometry = %{tl_version} License: LPPL Summary: Flexible and complete interface to document dimensions -Version: svn47638 +Version: svn19716.5.6 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(keyval.sty) Requires: tex(ifpdf.sty) Requires: tex(ifvtex.sty) @@ -40488,7 +40049,8 @@ direct interaction with PDF(La)TeX). %package geometry-doc Summary: Documentation for geometry -Version: svn47638 +Version: svn19716.5.6 + Provides: tex-geometry-doc AutoReqProv: No @@ -40499,7 +40061,7 @@ Documentation for geometry Provides: tex-graphics = %{tl_version} License: LPPL 1.3 Summary: Standard LaTeX graphics -Version: svn51733 +Version: svn44703 Provides: texlive-rotating = %{epoch}:svn16832.2.16b.obsolete Obsoletes: texlive-rotating <= 6:svn16832.2.16b Requires: texlive-base @@ -40543,7 +40105,7 @@ set of packages. %package graphics-doc Summary: Documentation for graphics -Version: svn51733 +Version: svn44703 Provides: texlive-rotating-doc = svn16832.2.16b.obsolete Obsoletes: texlive-rotating-doc <= svn16832.2.16b Provides: tex-graphics-doc @@ -40556,7 +40118,7 @@ Documentation for graphics Provides: tex-hyperref = %{tl_version} License: LPPL Summary: Extensive support for hypertext in LaTeX -Version: svn51742 +Version: svn43547 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(kvoptions.sty) @@ -40628,7 +40190,7 @@ author's kvoptions, ltxcmdsand refcount packages. %package hyperref-doc Summary: Documentation for hyperref -Version: svn51742 +Version: svn43547 Provides: tex-hyperref-doc AutoReqProv: No @@ -40672,9 +40234,11 @@ ltxmisc package Provides: tex-mfnfss = %{tl_version} License: LPPL Summary: Packages to typeset oldgerman and pandora fonts in LaTeX -Version: svn46036 +Version: svn19410.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(oldgerm.sty) = %{tl_version} Provides: tex(ot1panr.fd) = %{tl_version} Provides: tex(ot1pss.fd) = %{tl_version} @@ -40693,7 +40257,8 @@ also available via the pandora-latex package. %package mfnfss-doc Summary: Documentation for mfnfss -Version: svn46036 +Version: svn19410.0 + Provides: tex-mfnfss-doc AutoReqProv: No @@ -40956,7 +40521,7 @@ Documentation for pspicture Provides: tex-tools = %{tl_version} License: LPPL 1.3 Summary: The LaTeX standard tools bundle -Version: svn49619 +Version: svn43813 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(color.sty) @@ -41010,7 +40575,7 @@ theorem, trace, varioref, verbatim, xr, and xspace. %package tools-doc Summary: Documentation for tools -Version: svn49619 +Version: svn43813 Provides: tex-tools-doc AutoReqProv: No @@ -41055,9 +40620,11 @@ Documentation for url Provides: tex-collref = %{tl_version} License: LPPL 1.3 Summary: Collect blocks of references into a single reference -Version: svn46358 +Version: svn35084.2.0b + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(collref.sty) = %{tl_version} %description collref @@ -41067,7 +40634,8 @@ into a single \bibitem block. %package collref-doc Summary: Documentation for collref -Version: svn46358 +Version: svn35084.2.0b + Provides: tex-collref-doc AutoReqProv: No @@ -41867,7 +41435,7 @@ Documentation for notes2bib Provides: tex-oscola = %{tl_version} License: LPPL 1.3 Summary: BibLaTeX style for the Oxford Standard for the Citation of Legal Authorities -Version: svn49772 +Version: svn43599 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(authortitle.bbx) @@ -41885,7 +41453,7 @@ conjunction with appropriate indexing packages). %package oscola-doc Summary: Documentation for oscola -Version: svn49772 +Version: svn43599 Provides: tex-oscola-doc AutoReqProv: No @@ -42038,7 +41606,7 @@ Documentation for splitbib Provides: tex-turabian-formatting = %{tl_version} License: LPPL 1.3 Summary: Formatting based on Turabian's Manual -Version: svn48330 +Version: svn43537 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(setspace.sty) @@ -42066,7 +41634,7 @@ Students and Researchers" (8th edition). %package turabian-formatting-doc Summary: Documentation for turabian-formatting -Version: svn48330 +Version: svn43537 Provides: tex-turabian-formatting-doc AutoReqProv: No @@ -42221,7 +41789,7 @@ Documentation for xcite %package collection-binextra Summary: TeX auxiliary programs -Version: svn51464 +Version: svn45125 Requires: texlive-base Requires: texlive-collection-basic Requires: texlive-a2ping @@ -42233,10 +41801,7 @@ Requires: texlive-bibtexu Requires: texlive-bundledoc Requires: texlive-checklistings Requires: texlive-chktex -Requires: texlive-cluttex -Requires: texlive-ctan-o-mat Requires: texlive-ctan_chk-doc -Requires: texlive-ctanbib Requires: texlive-ctanify Requires: texlive-ctanupload Requires: texlive-ctie @@ -42251,15 +41816,14 @@ Requires: texlive-dvicopy Requires: texlive-dvidvi Requires: texlive-dviinfox Requires: texlive-dviljk -Requires: texlive-dviout-util Requires: texlive-dvipng Requires: texlive-dvipos Requires: texlive-dvisvgm Requires: texlive-findhyph Requires: texlive-fragmaster Requires: texlive-hook-pre-commit-pkg-doc +Requires: texlive-hyphenex Requires: texlive-installfont -Requires: texlive-ketcindy Requires: texlive-lacheck Requires: texlive-latex-git-log Requires: texlive-latex-papersize @@ -42282,7 +41846,6 @@ Requires: texlive-pdfbook2 Requires: texlive-pdfcrop Requires: texlive-pdfjam Requires: texlive-pdflatexpicscale -Requires: texlive-pdftex-quiet Requires: texlive-pdftools Requires: texlive-pdfxup Requires: texlive-pfarrei @@ -42300,7 +41863,6 @@ Requires: texlive-texdef Requires: texlive-texdiff Requires: texlive-texdirflatten Requires: texlive-texdoc -Requires: texlive-texdoctk Requires: texlive-texfot Requires: texlive-texliveonfly Requires: texlive-texloganalyser @@ -42312,10 +41874,7 @@ Requires: texlive-tie Requires: texlive-tpic2pdftex Requires: texlive-typeoutfileinfo Requires: texlive-web -Requires: texlive-xindex -%ifarch %{xindy_arches} Requires: texlive-xindy -%endif Obsoletes: texlive-utils < %{tl_version} Requires: dvipng @@ -42365,7 +41924,7 @@ readable files. %package collection-context Summary: ConTeXt and packages -Version: svn47139 +Version: svn42330 Requires: texlive-base Requires: texlive-collection-basic Requires: texlive-context @@ -42387,7 +41946,6 @@ Requires: texlive-context-french Requires: texlive-context-fullpage Requires: texlive-context-gantt Requires: texlive-context-gnuplot -Requires: texlive-context-handlecsv Requires: texlive-context-inifile Requires: texlive-context-layout Requires: texlive-context-letter @@ -42413,9 +41971,11 @@ Also includes third-party ConTeXt packages. Provides: tex-xetexconfig = %{tl_version} License: LPPL Summary: Configuration files for XeTeX -Version: svn45845 +Version: svn41133 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(crop.cfg) = %{tl_version} %description xetexconfig @@ -42425,10 +41985,13 @@ special crop.cfg for XeTeX Provides: tex-lm = %{tl_version} License: GFSL Summary: Latin modern fonts in outline formats -Version: svn48145 +Version: svn28119.2.004 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Provides: tex(lm-cs.enc) = %{tl_version} Provides: tex(lm-cssc.enc) = %{tl_version} Provides: tex(lm-cstt.enc) = %{tl_version} @@ -43319,7 +42882,8 @@ fonts aka TS1 (ts1-*.tfm). %package lm-doc Summary: Documentation for lm -Version: svn48145 +Version: svn28119.2.004 + Provides: tex-lm-doc AutoReqProv: No @@ -43356,10 +42920,13 @@ Documentation for lm-math Provides: tex-manfnt-font = %{tl_version} License: LPPL Summary: manfnt-font package -Version: svn45777 +Version: svn35799.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Provides: tex(manfnt.map) = %{tl_version} Provides: tex(manfnt.pfb) = %{tl_version} @@ -43453,9 +43020,11 @@ Documentation for stmaryrd Provides: tex-jmn = %{tl_version} License: LPPL Summary: jmn package -Version: svn45751 +Version: svn22719.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(hans.enc) = %{tl_version} Provides: tex(hans.map) = %{tl_version} Provides: tex(hans-sh.tfm) = %{tl_version} @@ -43470,9 +43039,11 @@ jmn package Provides: tex-context-account = %{tl_version} License: Public Domain Summary: A simple accounting package -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-account.tex) = %{tl_version} Provides: tex(t-floatnumber.tex) = %{tl_version} @@ -43482,7 +43053,8 @@ The package deals with "accounts" of its own specification. %package context-account-doc Summary: Documentation for context-account -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-account-doc AutoReqProv: No Requires: tex-context-doc @@ -43494,9 +43066,11 @@ Documentation for context-account Provides: tex-context-algorithmic = %{tl_version} License: GPL+ Summary: Algorithm handling in ConTeXt -Version: svn47085 +Version: svn31026.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-algorithmic @@ -43507,9 +43081,11 @@ algorithmic, which was a predecessor of algorithmicx). Provides: tex-context-animation = %{tl_version} License: GPLv3+ Summary: Generate fieldstack based animation with ConTeXt -Version: svn47085 +Version: svn36188.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-animation @@ -43518,7 +43094,8 @@ LaTeX package. %package context-animation-doc Summary: Documentation for context-animation -Version: svn47085 +Version: svn36188.0 + Provides: tex-context-animation-doc AutoReqProv: No Requires: tex-context-doc @@ -43530,9 +43107,11 @@ Documentation for context-animation Provides: tex-context-annotation = %{tl_version} License: LPPL Summary: context-annotation package -Version: svn47085 +Version: svn36188.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-annotation @@ -43540,7 +43119,8 @@ context-annotation package %package context-annotation-doc Summary: Documentation for context-annotation -Version: svn47085 +Version: svn36188.0 + Provides: tex-context-annotation-doc AutoReqProv: No Requires: tex-context-doc @@ -43552,9 +43132,11 @@ Documentation for context-annotation Provides: tex-context-bnf = %{tl_version} License: GPL+ Summary: A BNF module for Context -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-bnf.tex) = %{tl_version} @@ -43569,7 +43151,8 @@ looking at the source ConTeXt document. %package context-bnf-doc Summary: Documentation for context-bnf -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-bnf-doc AutoReqProv: No Requires: tex-context-doc @@ -43581,9 +43164,11 @@ Documentation for context-bnf Provides: tex-context-chromato = %{tl_version} License: GPL+ Summary: ConTeXt macros for chromatograms -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-chromato.tex) = %{tl_version} @@ -43592,7 +43177,8 @@ The module provides macros for drawing chromatograms. %package context-chromato-doc Summary: Documentation for context-chromato -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-chromato-doc AutoReqProv: No Requires: tex-context-doc @@ -43604,9 +43190,11 @@ Documentation for context-chromato Provides: tex-context-construction-plan = %{tl_version} License: GPL+ Summary: Construction plans in ConTeXt -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-construction-plan.tex) = %{tl_version} @@ -43615,7 +43203,8 @@ Generate a page with a figure at a well-defined scale. %package context-construction-plan-doc Summary: Documentation for context-construction-plan -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-construction-plan-doc AutoReqProv: No Requires: tex-context-doc @@ -43627,9 +43216,11 @@ Documentation for context-construction-plan Provides: tex-context-cyrillicnumbers = %{tl_version} License: BSD Summary: Write numbers as cyrillic glyphs -Version: svn47085 +Version: svn29905.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-cyrillicnumbers @@ -43638,7 +43229,8 @@ adding numeration using cyrillic letters. %package context-cyrillicnumbers-doc Summary: Documentation for context-cyrillicnumbers -Version: svn47085 +Version: svn29905.0 + Provides: tex-context-cyrillicnumbers-doc AutoReqProv: No Requires: tex-context-doc @@ -43650,9 +43242,11 @@ Documentation for context-cyrillicnumbers Provides: tex-context-degrade = %{tl_version} License: GPL+ Summary: Degrading JPEG images in ConTeXt -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-degrade.tex) = %{tl_version} @@ -43661,7 +43255,8 @@ context-degrade package %package context-degrade-doc Summary: Documentation for context-degrade -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-degrade-doc AutoReqProv: No Requires: tex-context-doc @@ -43673,9 +43268,11 @@ Documentation for context-degrade Provides: tex-context-fancybreak = %{tl_version} License: GPL+ Summary: Overfull pages with ConTeXt -Version: svn47085 +Version: svn36948.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-fancybreak @@ -43685,7 +43282,8 @@ content and set a default symbol. %package context-fancybreak-doc Summary: Documentation for context-fancybreak -Version: svn47085 +Version: svn36948.0 + Provides: tex-context-fancybreak-doc AutoReqProv: No Requires: tex-context-doc @@ -43697,7 +43295,7 @@ Documentation for context-fancybreak Provides: tex-context-filter = %{tl_version} License: BSD Summary: Run external programs on the contents of a start-stop environment -Version: svn48390 +Version: svn42326 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex-context @@ -43714,7 +43312,7 @@ both MkII and MkIV. %package context-filter-doc Summary: Documentation for context-filter -Version: svn48390 +Version: svn42326 Provides: tex-context-filter-doc AutoReqProv: No Requires: tex-context-doc @@ -43726,9 +43324,11 @@ Documentation for context-filter Provides: tex-context-french = %{tl_version} License: GPL+ Summary: Support for writing French in ConTeXt -Version: svn47085 +Version: svn24582.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-french @@ -43737,7 +43337,8 @@ distributed for ConTeXt Mark iv only. %package context-french-doc Summary: Documentation for context-french -Version: svn47085 +Version: svn24582.0 + Provides: tex-context-french-doc AutoReqProv: No Requires: tex-context-doc @@ -43749,9 +43350,11 @@ Documentation for context-french Provides: tex-context-fullpage = %{tl_version} License: GPL+ Summary: Overfull pages with ConTeXt -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-fullpage @@ -43760,7 +43363,8 @@ and adds a styling parameter, given in the \usemodule command %package context-fullpage-doc Summary: Documentation for context-fullpage -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-fullpage-doc AutoReqProv: No Requires: tex-context-doc @@ -43814,9 +43418,11 @@ Documentation for skaknew Provides: tex-context-gantt = %{tl_version} License: Public Domain Summary: GANTT module for ConTeXt -Version: svn47085 +Version: svn27472.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Requires: tex-hatching Provides: tex(gantt-s-mp.tex) = %{tl_version} @@ -43829,7 +43435,8 @@ pgf/tikz. %package context-gantt-doc Summary: Documentation for context-gantt -Version: svn47085 +Version: svn27472.0 + Provides: tex-context-gantt-doc AutoReqProv: No Requires: tex-context-doc @@ -43867,9 +43474,11 @@ Documentation for hatching Provides: tex-context-gnuplot = %{tl_version} License: GPL+ Summary: Inclusion of Gnuplot graphs in ConTeXt -Version: svn47085 +Version: svn30380.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-gnuplot @@ -43880,7 +43489,8 @@ See the ConTeXt Garden package page for further details. %package context-gnuplot-doc Summary: Documentation for context-gnuplot -Version: svn47085 +Version: svn30380.0 + Provides: tex-context-gnuplot-doc AutoReqProv: No Requires: tex-context-doc @@ -43892,9 +43502,11 @@ Documentation for context-gnuplot Provides: tex-context-letter = %{tl_version} License: GPL+ Summary: ConTeXt package for writing letters -Version: svn47085 +Version: svn38202.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-letter @@ -43904,7 +43516,8 @@ letters may be amended by a wide range of style specifications. %package context-letter-doc Summary: Documentation for context-letter -Version: svn47085 +Version: svn38202.0 + Provides: tex-context-letter-doc AutoReqProv: No Requires: tex-context-doc @@ -43916,9 +43529,11 @@ Documentation for context-letter Provides: tex-context-lettrine = %{tl_version} License: Public Domain Summary: A ConTeXt implementation of lettrines -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-lettrine.tex) = %{tl_version} @@ -43927,7 +43542,8 @@ This is a re-implementation of the LaTeX package lettrine. %package context-lettrine-doc Summary: Documentation for context-lettrine -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-lettrine-doc AutoReqProv: No Requires: tex-context-doc @@ -43939,9 +43555,11 @@ Documentation for context-lettrine Provides: tex-context-mathsets = %{tl_version} License: BSD Summary: Set notation in ConTeXt -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-mathsets.tex) = %{tl_version} @@ -43952,7 +43570,8 @@ probabilities, etc. The package is at least inspired by braket. %package context-mathsets-doc Summary: Documentation for context-mathsets -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-mathsets-doc AutoReqProv: No Requires: tex-context-doc @@ -43990,9 +43609,11 @@ Documentation for context-notes-zh-cn Provides: tex-context-rst = %{tl_version} License: BSD Summary: Process reStructuredText with ConTeXt -Version: svn47085 +Version: svn33092.0.6c + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-rst @@ -44003,7 +43624,8 @@ which seems to be readable as text, but... %package context-rst-doc Summary: Documentation for context-rst -Version: svn47085 +Version: svn33092.0.6c + Provides: tex-context-rst-doc AutoReqProv: No Requires: tex-context-doc @@ -44015,9 +43637,11 @@ Documentation for context-rst Provides: tex-context-ruby = %{tl_version} License: Public Domain Summary: Ruby annotations in ConTeXt -Version: svn47085 +Version: svn28434.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-ruby @@ -44029,7 +43653,8 @@ text and the ruby text can becontrolled by parameters. %package context-ruby-doc Summary: Documentation for context-ruby -Version: svn47085 +Version: svn28434.0 + Provides: tex-context-ruby-doc AutoReqProv: No Requires: tex-context-doc @@ -44041,9 +43666,11 @@ Documentation for context-ruby Provides: tex-context-simplefonts = %{tl_version} License: GPL+ Summary: Simplified font usage for ConTeXt -Version: svn47085 +Version: svn29229.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-simplefonts @@ -44052,7 +43679,8 @@ fonts in ConTeXt. %package context-simplefonts-doc Summary: Documentation for context-simplefonts -Version: svn47085 +Version: svn29229.0 + Provides: tex-context-simplefonts-doc AutoReqProv: No Requires: tex-context-doc @@ -44064,9 +43692,11 @@ Documentation for context-simplefonts Provides: tex-context-simpleslides = %{tl_version} License: LPPL Summary: context-simpleslides package -Version: svn47085 +Version: svn34438.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(s-simpleslides-BigNumber.tex) = %{tl_version} Provides: tex(s-simpleslides-BlackBoard.tex) = %{tl_version} @@ -44098,7 +43728,8 @@ context-simpleslides package %package context-simpleslides-doc Summary: Documentation for context-simpleslides -Version: svn47085 +Version: svn34438.0 + Provides: tex-context-simpleslides-doc AutoReqProv: No Requires: tex-context-doc @@ -44110,9 +43741,11 @@ Documentation for context-simpleslides Provides: tex-context-title = %{tl_version} License: LPPL Summary: context-title package -Version: svn47085 +Version: svn36189.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-title @@ -44120,7 +43753,8 @@ context-title package %package context-title-doc Summary: Documentation for context-title -Version: svn47085 +Version: svn36189.0 + Provides: tex-context-title-doc AutoReqProv: No Requires: tex-context-doc @@ -44132,9 +43766,11 @@ Documentation for context-title Provides: tex-context-transliterator = %{tl_version} License: BSD Summary: Transliterate text from 'other' alphabets -Version: svn47085 +Version: svn29801.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-transliterator.tex) = %{tl_version} @@ -44146,7 +43782,8 @@ allowance for hyphenation. %package context-transliterator-doc Summary: Documentation for context-transliterator -Version: svn47085 +Version: svn29801.0 + Provides: tex-context-transliterator-doc AutoReqProv: No Requires: tex-context-doc @@ -44158,9 +43795,11 @@ Documentation for context-transliterator Provides: tex-context-typearea = %{tl_version} License: GPL+ Summary: Something like Koma-Script typearea -Version: svn47085 +Version: svn23167.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context Provides: tex(t-typearea.tex) = %{tl_version} @@ -44170,7 +43809,8 @@ as the LaTeX package typearea does. %package context-typearea-doc Summary: Documentation for context-typearea -Version: svn47085 +Version: svn23167.0 + Provides: tex-context-typearea-doc AutoReqProv: No Requires: tex-context-doc @@ -44182,9 +43822,11 @@ Documentation for context-typearea Provides: tex-context-typescripts = %{tl_version} License: GPLv2+ Summary: Small modules to load various fonts for use in ConTeXt -Version: svn47085 +Version: svn25411.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-typescripts @@ -44194,7 +43836,8 @@ foundry); each is available in a .mkii and a .mkiv version. %package context-typescripts-doc Summary: Documentation for context-typescripts -Version: svn47085 +Version: svn25411.0 + Provides: tex-context-typescripts-doc AutoReqProv: No Requires: tex-context-doc @@ -44206,9 +43849,11 @@ Documentation for context-typescripts Provides: tex-context-vim = %{tl_version} License: BSD Summary: Generate Context syntax highlighting code from vim -Version: svn48391 +Version: svn37413.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context-filter Requires: tex-context Provides: tex(t-syntax-groups.tex) = %{tl_version} @@ -44227,7 +43872,8 @@ generate the syntax highlighting. There is a helper %package context-vim-doc Summary: Documentation for context-vim -Version: svn48391 +Version: svn37413.0 + Provides: tex-context-vim-doc AutoReqProv: No Requires: tex-context-filter-doc @@ -44240,9 +43886,11 @@ Documentation for context-vim Provides: tex-context-visualcounter = %{tl_version} License: LPPL Summary: context-visualcounter package -Version: svn47085 +Version: svn36190.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-context %description context-visualcounter @@ -44250,7 +43898,8 @@ context-visualcounter package %package context-visualcounter-doc Summary: Documentation for context-visualcounter -Version: svn47085 +Version: svn36190.0 + Provides: tex-context-visualcounter-doc AutoReqProv: No Requires: tex-context-doc @@ -44260,7 +43909,7 @@ Documentation for context-visualcounter %package collection-fontsextra Summary: Additional fonts -Version: svn51763 +Version: svn45445 Requires: texlive-base Requires: texlive-collection-basic Requires: texlive-asana-math @@ -44272,7 +43921,6 @@ Requires: texlive-aecc Requires: texlive-alegreya Requires: texlive-algolrevived Requires: texlive-allrunes -Requires: texlive-almendra Requires: texlive-almfixed Requires: texlive-anonymouspro Requires: texlive-antiqua @@ -44302,7 +43950,6 @@ Requires: texlive-bera Requires: texlive-berenisadf Requires: texlive-beuron Requires: texlive-bguq -Requires: texlive-bitter Requires: texlive-blacklettert1 Requires: texlive-boisik Requires: texlive-bookhands @@ -44324,16 +43971,13 @@ Requires: texlive-chivo Requires: texlive-cinzel Requires: texlive-clearsans Requires: texlive-cm-lgc -Requires: texlive-cm-mf-extra-bold Requires: texlive-cm-unicode Requires: texlive-cmbright Requires: texlive-cmexb Requires: texlive-cmll Requires: texlive-cmpica -Requires: texlive-cmsrb Requires: texlive-cmtiup Requires: texlive-cochineal -Requires: texlive-coelacanth Requires: texlive-comfortaa Requires: texlive-comicneue Requires: texlive-concmath-fonts @@ -44342,14 +43986,11 @@ Requires: texlive-cormorantgaramond Requires: texlive-countriesofeurope Requires: texlive-courier-scaled Requires: texlive-crimson -Requires: texlive-crimsonpro Requires: texlive-cryst -Requires: texlive-cuprum Requires: texlive-cyklop Requires: texlive-dancers Requires: texlive-dantelogo Requires: texlive-dejavu -Requires: texlive-dejavu-otf Requires: texlive-dice Requires: texlive-dictsym Requires: texlive-dingbat @@ -44357,7 +43998,6 @@ Requires: texlive-doublestroke Requires: texlive-dozenal Requires: texlive-drm Requires: texlive-droid -Requires: texlive-dsserif Requires: texlive-duerer Requires: texlive-duerer-latex Requires: texlive-dutchcal @@ -44384,21 +44024,15 @@ Requires: texlive-fetamont Requires: texlive-feyn Requires: texlive-fge Requires: texlive-fira -Requires: texlive-firamath -Requires: texlive-firamath-otf Requires: texlive-foekfont Requires: texlive-fonetika Requires: texlive-fontawesome -Requires: texlive-fontawesome5 Requires: texlive-fontmfizz Requires: texlive-fonts-churchslavonic -Requires: texlive-forum Requires: texlive-fourier Requires: texlive-fouriernc Requires: texlive-frcursive Requires: texlive-frederika2016 -Requires: texlive-garamond-libre -Requires: texlive-garamond-math Requires: texlive-genealogy Requires: texlive-gentium-tug Requires: texlive-gfsartemisia @@ -44406,7 +44040,6 @@ Requires: texlive-gfsbodoni Requires: texlive-gfscomplutum Requires: texlive-gfsdidot Requires: texlive-gfsneohellenic -Requires: texlive-gfsneohellenicmath Requires: texlive-gfssolomos Requires: texlive-gillcm Requires: texlive-gillius @@ -44424,13 +44057,13 @@ Requires: texlive-ifsym Requires: texlive-imfellenglish Requires: texlive-inconsolata Requires: texlive-initials -Requires: texlive-inriafonts Requires: texlive-ipaex-type1 Requires: texlive-iwona Requires: texlive-jablantile Requires: texlive-jamtimes Requires: texlive-junicode Requires: texlive-kixfont +# Requires: tex-knuthotherfonts Requires: texlive-kpfonts Requires: texlive-kurier Requires: texlive-lato @@ -44438,21 +44071,15 @@ Requires: texlive-lfb Requires: texlive-libertine Requires: texlive-libertinegc Requires: texlive-libertinus -Requires: texlive-libertinus-fonts -Requires: texlive-libertinus-otf -Requires: texlive-libertinus-type1 Requires: texlive-libertinust1math Requires: texlive-librebaskerville Requires: texlive-librebodoni Requires: texlive-librecaslon -Requires: texlive-librefranklin Requires: texlive-libris Requires: texlive-lineara -Requires: texlive-linguisticspro Requires: texlive-lobster2 Requires: texlive-lxfonts Requires: texlive-ly1 -Requires: texlive-marcellus Requires: texlive-mathabx Requires: texlive-mathabx-type1 Requires: texlive-mathdesign @@ -44491,9 +44118,6 @@ Requires: texlive-phaistos Requires: texlive-phonetic Requires: texlive-pigpen Requires: texlive-playfair -Requires: texlive-plex -Requires: texlive-plex-otf -Requires: texlive-poiretone Requires: texlive-poltawski Requires: texlive-prodint Requires: texlive-punk @@ -44520,17 +44144,13 @@ Requires: texlive-sourcesanspro Requires: texlive-sourceserifpro Requires: texlive-starfont Requires: texlive-staves -Requires: texlive-stickstoo Requires: texlive-stix -Requires: texlive-stix2-otf -Requires: texlive-stix2-type1 Requires: texlive-superiors Requires: texlive-svrsymbols Requires: texlive-tapir Requires: texlive-tempora Requires: texlive-tengwarscript Requires: texlive-tfrupee -Requires: texlive-tinos Requires: texlive-tpslifonts Requires: texlive-trajan Requires: texlive-txfontsb @@ -44539,7 +44159,6 @@ Requires: texlive-typicons Requires: texlive-umtypewriter Requires: texlive-universa Requires: texlive-universalis -Requires: texlive-uppunctlm Requires: texlive-urwchancal Requires: texlive-venturisadf Requires: texlive-wsuipa @@ -44557,10 +44176,13 @@ collection-fontsextra package Provides: tex-comfortaa = %{tl_version} License: LPPL 1.3 Summary: Sans serif font, with LaTeX support -Version: svn51461 +Version: svn27536.2.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(keyval.sty) Requires: tex(slantsc.sty) Provides: tex(comfortaa-01.enc) = %{tl_version} @@ -44802,7 +44424,8 @@ conversions to Adobe Type 1 format. %package comfortaa-doc Summary: Documentation for comfortaa -Version: svn51461 +Version: svn27536.2.3 + Provides: tex-comfortaa-doc AutoReqProv: No @@ -45155,10 +44778,13 @@ Documentation for cookingsymbols Provides: tex-countriesofeurope = %{tl_version} License: LPPL Summary: A font with the images of the countries of Europe -Version: svn49525 +Version: svn26042.0.21 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(keyval.sty) Provides: tex(CountriesOfEurope.enc) = %{tl_version} Provides: tex(CountriesOfEurope.map) = %{tl_version} @@ -45175,7 +44801,8 @@ cartographic scale. %package countriesofeurope-doc Summary: Documentation for countriesofeurope -Version: svn49525 +Version: svn26042.0.21 + Provides: tex-countriesofeurope-doc AutoReqProv: No @@ -46136,7 +45763,7 @@ Documentation for doublestroke Provides: tex-dozenal = %{tl_version} License: LPPL 1.3 Summary: Typeset documents using base twelve numbering (also called "dozenal") -Version: svn47680 +Version: svn44740 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(fixltx2e.sty) @@ -46213,7 +45840,7 @@ source and in Adobe Type 1 format. %package dozenal-doc Summary: Documentation for dozenal -Version: svn47680 +Version: svn44740 Provides: tex-dozenal-doc AutoReqProv: No @@ -47264,10 +46891,13 @@ Documentation for drm Provides: tex-droid = %{tl_version} License: LPPL 1.3 Summary: LaTeX support for the Droid font families -Version: svn51468 +Version: svn23912.2.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(droidsans.sty) Requires: tex(keyval.sty) Requires: tex(slantsc.sty) @@ -47809,7 +47439,8 @@ fonts, available for purchase from the Ascender foundry. %package droid-doc Summary: Documentation for droid -Version: svn51468 +Version: svn23912.2.1 + Provides: tex-droid-doc AutoReqProv: No @@ -47906,7 +47537,7 @@ Provides: tex(udutchcal.fd) = %{tl_version} This package reworks the mathematical calligraphic font ESSTIX13, adding a bold version. LaTeX support files are included. The new fonts may also be accessed from the most -recent version of mathalpha. The fonts themselves are subject to +recent version of mathalfa. The fonts themselves are subject to the SIL OPEN FONT LICENSE, version 1.1. %package dutchcal-doc @@ -47950,10 +47581,13 @@ Documentation for ean Provides: tex-ebgaramond = %{tl_version} License: OFL Summary: LaTeX support for EBGaramond fonts -Version: svn51134 +Version: svn35662.0.16 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Requires: tex(xkeyval.sty) @@ -48311,7 +47945,8 @@ files for use with microtype are provided. %package ebgaramond-doc Summary: Documentation for ebgaramond -Version: svn51134 +Version: svn35662.0.16 + Provides: tex-ebgaramond-doc AutoReqProv: No @@ -49468,7 +49103,7 @@ Documentation for epsdice Provides: tex-erewhon = %{tl_version} License: OFL Summary: Font package derived from Heuristica and Utopia -Version: svn51361 +Version: svn43506 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -50194,7 +49829,7 @@ matching that of UtopiaStd. %package erewhon-doc Summary: Documentation for erewhon -Version: svn51361 +Version: svn43506 Provides: tex-erewhon-doc AutoReqProv: No @@ -50423,9 +50058,11 @@ Documentation for eulervm Provides: tex-euxm = %{tl_version} License: LPPL Summary: euxm package -Version: svn45696 +Version: svn20202.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(euxm10.tfm) = %{tl_version} Provides: tex(euxm5.tfm) = %{tl_version} Provides: tex(euxm7.tfm) = %{tl_version} @@ -51121,9 +50758,11 @@ Documentation for fetamont Provides: tex-feyn = %{tl_version} License: GPL+ Summary: A font for in-text Feynman diagrams -Version: svn45679 +Version: svn15878.0.3.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(feyn10.tfm) = %{tl_version} Provides: tex(feyn11.tfm) = %{tl_version} Provides: tex(feyn12.tfm) = %{tl_version} @@ -51146,7 +50785,8 @@ source, and macros for their use are also provided. %package feyn-doc Summary: Documentation for feyn -Version: svn45679 +Version: svn15878.0.3.3 + Provides: tex-feyn-doc AutoReqProv: No @@ -51192,7 +50832,7 @@ Documentation for fge Provides: tex-fira = %{tl_version} License: OFL Summary: Fira fonts with LaTeX support -Version: svn51328 +Version: svn42501 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -53021,7 +52661,7 @@ light, regular, medium, bold, ... %package fira-doc Summary: Documentation for fira -Version: svn51328 +Version: svn42501 Provides: tex-fira-doc AutoReqProv: No @@ -53110,13 +52750,16 @@ Documentation for fonetika Provides: tex-fontawesome = %{tl_version} License: LPPL 1.3 Summary: Font containing web-related icons -Version: svn48145 +Version: svn41412 + # This is a bit of a lie, but I don't want someone who installs texlive-fontawesome to wonder where their # system fonts are. Requires: fontawesome-fonts Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(fontawesomeone.enc) = %{tl_version} @@ -53143,7 +52786,8 @@ package, fontspec, if run with XeTeX or LuaTeX. %package fontawesome-doc Summary: Documentation for fontawesome -Version: svn48145 +Version: svn41412 + Provides: tex-fontawesome-doc AutoReqProv: No @@ -53609,10 +53253,13 @@ Documentation for genealogy Provides: tex-gentium-tug = %{tl_version} License: MIT and OFL Summary: Gentium fonts (in two formats) and support files -Version: svn51613 +Version: svn37378.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(xkeyval.sty) Provides: tex(gentium-agr.enc) = %{tl_version} Provides: tex(gentium-ec-sc.enc) = %{tl_version} @@ -53765,7 +53412,8 @@ documentation, and the SIL documentation and other files. %package gentium-tug-doc Summary: Documentation for gentium-tug -Version: svn51613 +Version: svn37378.1.1 + Provides: tex-gentium-tug-doc AutoReqProv: No @@ -54099,10 +53747,13 @@ Documentation for gfscomplutum Provides: tex-gfsdidot = %{tl_version} License: LPPL Summary: A Greek font based on Didot's work -Version: svn46310 +Version: svn31978.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(pxfonts.sty) Provides: tex(didot.enc) = %{tl_version} Provides: tex(didotdenomnums.enc) = %{tl_version} @@ -54236,7 +53887,8 @@ T1 and LGR encodings. %package gfsdidot-doc Summary: Documentation for gfsdidot -Version: svn46310 +Version: svn31978.0 + Provides: tex-gfsdidot-doc AutoReqProv: No @@ -54884,9 +54536,11 @@ Documentation for gnu-freefont Provides: tex-gothic = %{tl_version} License: Public Domain Summary: A collection of old German-style fonts -Version: svn49869 +Version: svn38263.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(cmfrak.tfm) = %{tl_version} Provides: tex(schwell.tfm) = %{tl_version} Provides: tex(suet14.tfm) = %{tl_version} @@ -54907,7 +54561,8 @@ Metafont. %package gothic-doc Summary: Documentation for gothic -Version: svn49869 +Version: svn38263.0 + Provides: tex-gothic-doc AutoReqProv: No @@ -55080,7 +54735,7 @@ Metafont source. Provides: tex-heuristica = %{tl_version} License: OFL Summary: Fonts extending Utopia, with LaTeX support files -Version: svn51362 +Version: svn43507 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -55327,7 +54982,7 @@ font packages. %package heuristica-doc Summary: Documentation for heuristica -Version: svn51362 +Version: svn43507 Provides: tex-heuristica-doc AutoReqProv: No @@ -56118,7 +55773,7 @@ Documentation for ifsym Provides: tex-inconsolata = %{tl_version} License: OFL Summary: A monospaced font, with support files for use with TeX -Version: svn51433 +Version: svn45505 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -56246,7 +55901,7 @@ LaTeX font definition and other relevant files. %package inconsolata-doc Summary: Documentation for inconsolata -Version: svn51433 +Version: svn45505 Provides: tex-inconsolata-doc AutoReqProv: No @@ -56375,7 +56030,7 @@ Documentation for initials Provides: tex-ipaex-type1 = %{tl_version} License: IPA Summary: IPAex fonts converted to Type-1 format Unicode subfonts -Version: svn47700 +Version: svn42403 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -57230,7 +56885,7 @@ the CJK package. Font conversion was done with ttf2pt1. %package ipaex-type1-doc Summary: Documentation for ipaex-type1 -Version: svn47700 +Version: svn42403 Provides: tex-ipaex-type1-doc AutoReqProv: No @@ -60594,7 +60249,7 @@ Documentation for kurier Provides: tex-lato = %{tl_version} License: LPPL 1.3 Summary: Lato font family and LaTeX support -Version: svn51462 +Version: svn45576 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -60782,7 +60437,7 @@ support with Dvips. %package lato-doc Summary: Documentation for lato -Version: svn51462 +Version: svn45576 Provides: tex-lato-doc AutoReqProv: No @@ -60840,7 +60495,7 @@ Documentation for lfb Provides: tex-libertine = %{tl_version} License: LPPL Summary: Use of Linux Libertine and Biolinum fonts with LaTeX -Version: svn51174 +Version: svn43603 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -62275,7 +61930,7 @@ both the libertineotf and the libertine-legacy packages. %package libertine-doc Summary: Documentation for libertine -Version: svn51174 +Version: svn43603 Provides: tex-libertine-doc AutoReqProv: No @@ -62416,10 +62071,13 @@ Documentation for librebaskerville Provides: tex-librecaslon = %{tl_version} License: OFL Summary: Libre Caslon fonts, with LaTeX support -Version: svn51456 +Version: svn31929.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Requires: tex(textcomp.sty) @@ -62676,12 +62334,15 @@ Provides: tex-lineara = %{tl_version} License: LPPL Summary: Linear A script fonts Version: svn15878.0 + Requires: texlive-base Provides: texlive-linearA = %{tl_version}.1 Obsoletes: texlive-linearA < %{tl_version}.1 Obsoletes: texlive-linearA-fedora-fonts < %{tl_version}.1 Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(xspace.sty) Provides: tex(linearA.map) = %{tl_version} Provides: tex(LinearA.tfm) = %{tl_version} @@ -62701,6 +62362,7 @@ will be deciphered. %package lineara-doc Summary: Documentation for linearA Version: svn15878.0 + Provides: tex-lineara-doc AutoReqProv: No @@ -62919,9 +62581,11 @@ Documentation for lxfonts Provides: tex-ly1 = %{tl_version} License: LPPL Summary: Support for LY1 LaTeX encoding -Version: svn47848 +Version: svn21086.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(fontenc.sty) Provides: tex(texnansi.enc) = %{tl_version} Provides: tex(pag8y.map) = %{tl_version} @@ -63005,7 +62669,8 @@ fonts in LaTeX using LY1 encoding. %package ly1-doc Summary: Documentation for ly1 -Version: svn47848 +Version: svn21086.0 + Provides: tex-ly1-doc AutoReqProv: No @@ -64522,10 +64187,13 @@ Documentation for mdsymbol Provides: tex-merriweather = %{tl_version} License: OFL Summary: Merriweather and MerriweatherSans fonts, with LaTeX support -Version: svn51304 +Version: svn34315.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Requires: tex(textcomp.sty) @@ -64724,7 +64392,8 @@ for each. %package merriweather-doc Summary: Documentation for merriweather -Version: svn51304 +Version: svn34315.0 + Provides: tex-merriweather-doc AutoReqProv: No @@ -65495,7 +65164,7 @@ Documentation for mnsymbol Provides: tex-newpx = %{tl_version} License: LPPL Summary: Alternative uses of the PX fonts, with improved metrics -Version: svn49438 +Version: svn45075 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -65810,7 +65479,7 @@ and their map files enabled. %package newpx-doc Summary: Documentation for newpx -Version: svn49438 +Version: svn45075 Provides: tex-newpx-doc AutoReqProv: No @@ -65821,12 +65490,11 @@ Documentation for newpx Provides: tex-newtx = %{tl_version} License: LPPL 1.3 Summary: Alternative uses of the TX fonts, with improved metrics -Version: svn53549 +Version: svn45279 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires: texlive-boondox -Requires: texlive-kastrup Requires: tex(amsmath.sty) Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) @@ -65836,752 +65504,573 @@ Requires: tex(fontaxes.sty) Requires: tex(fontenc.sty) Requires: tex(textcomp.sty) Provides: tex(alt-mn-greek.enc) = %{tl_version} -Provides: tex(ebgbmia.tfm) = %{tl_version} -Provides: tex(ebgbmia.vf) = %{tl_version} -Provides: tex(ebgBMI.pfb) = %{tl_version} -Provides: tex(ebgBMI.tfm) = %{tl_version} -Provides: tex(ebgBRM.pfb) = %{tl_version} -Provides: tex(ebgBRM.tfm) = %{tl_version} -Provides: tex(ebgmi0.vf) = %{tl_version} -Provides: tex(ebgmia.tfm) = %{tl_version} -Provides: tex(ebgmia.vf) = %{tl_version} -Provides: tex(ebgMI.pfb) = %{tl_version} -Provides: tex(ebgMI.tfm) = %{tl_version} -Provides: tex(ebgMRM.pfb) = %{tl_version} -Provides: tex(ebgMRM.tfm) = %{tl_version} -Provides: tex(fxlri-5alt.tfm) = %{tl_version} -Provides: tex(fxlri-5letters.pfb) = %{tl_version} -Provides: tex(fxlri-5letters.tfm) = %{tl_version} -Provides: tex(fxlri-7alt.tfm) = %{tl_version} -Provides: tex(fxlri-7letters.pfb) = %{tl_version} -Provides: tex(fxlri-7letters.tfm) = %{tl_version} -Provides: tex(fxlri-vw5.pfb) = %{tl_version} -Provides: tex(fxlri-vw7.pfb) = %{tl_version} -Provides: tex(fxlri-vw.pfb) = %{tl_version} -Provides: tex(fxlzi-5alt.tfm) = %{tl_version} -Provides: tex(fxlzi-5letters.pfb) = %{tl_version} -Provides: tex(fxlzi-5letters.tfm) = %{tl_version} -Provides: tex(fxlzi-7alt.tfm) = %{tl_version} -Provides: tex(fxlzi-7letters.pfb) = %{tl_version} -Provides: tex(fxlzi-7letters.tfm) = %{tl_version} -Provides: tex(fxlzi-jv5.pfb) = %{tl_version} -Provides: tex(fxlzi-jv5.tfm) = %{tl_version} -Provides: tex(fxlzi-jv7.pfb) = %{tl_version} -Provides: tex(fxlzi-jv7.tfm) = %{tl_version} -Provides: tex(fxlzi-jv.pfb) = %{tl_version} -Provides: tex(fxlzi-jv.tfm) = %{tl_version} -Provides: tex(fxlzi-vw5.pfb) = %{tl_version} -Provides: tex(fxlzi-vw7.pfb) = %{tl_version} -Provides: tex(fxlzi-vw.pfb) = %{tl_version} Provides: tex(libcaps.enc) = %{tl_version} Provides: tex(libertinealt.enc) = %{tl_version} -Provides: tex(LibertineI-5nu.afm) = %{tl_version} -Provides: tex(LibertineI-5nu.pfb) = %{tl_version} +Provides: tex(ntx-ec-lf-sc.enc) = %{tl_version} +Provides: tex(ntx-ec-lf.enc) = %{tl_version} +Provides: tex(ntx-ec-osf-sc.enc) = %{tl_version} +Provides: tex(ntx-ec-osf.enc) = %{tl_version} +Provides: tex(ntx-ec-tlf-sc.enc) = %{tl_version} +Provides: tex(ntx-ec-tlf.enc) = %{tl_version} +Provides: tex(ntx-ec-tosf-sc.enc) = %{tl_version} +Provides: tex(ntx-ec-tosf.enc) = %{tl_version} +Provides: tex(ntx-ecth-lf.enc) = %{tl_version} +Provides: tex(ntx-ecth-osf.enc) = %{tl_version} +Provides: tex(ntx-ecth-tlf.enc) = %{tl_version} +Provides: tex(ntx-ecth-tosf.enc) = %{tl_version} +Provides: tex(ntx-ly1-sc.enc) = %{tl_version} +Provides: tex(ntx-ot1-lf-sc.enc) = %{tl_version} +Provides: tex(ntx-ot1-lf.enc) = %{tl_version} +Provides: tex(ntx-ot1-osf-sc.enc) = %{tl_version} +Provides: tex(ntx-ot1-osf.enc) = %{tl_version} +Provides: tex(ntx-ot1-sc.enc) = %{tl_version} +Provides: tex(ntx-ot1-th-osf.enc) = %{tl_version} +Provides: tex(ntx-ot1-th-tlf.enc) = %{tl_version} +Provides: tex(ntx-ot1-tlf-sc.enc) = %{tl_version} +Provides: tex(ntx-ot1-tlf.enc) = %{tl_version} +Provides: tex(ntx-ot1-tosf-sc.enc) = %{tl_version} +Provides: tex(ntx-ot1-tosf.enc) = %{tl_version} +Provides: tex(ntx-t1-sc.enc) = %{tl_version} +Provides: tex(ntx-texnansi-lf-sc.enc) = %{tl_version} +Provides: tex(ntx-texnansi-lf.enc) = %{tl_version} +Provides: tex(ntx-texnansi-osf-sc.enc) = %{tl_version} +Provides: tex(ntx-texnansi-osf.enc) = %{tl_version} +Provides: tex(ntx-texnansi-th-osf.enc) = %{tl_version} +Provides: tex(ntx-texnansi-th-tlf.enc) = %{tl_version} +Provides: tex(ntx-texnansi-tlf-sc.enc) = %{tl_version} +Provides: tex(ntx-texnansi-tlf.enc) = %{tl_version} +Provides: tex(ntx-texnansi-tosf-sc.enc) = %{tl_version} +Provides: tex(ntx-texnansi-tosf.enc) = %{tl_version} +Provides: tex(ntxmiaalt.enc) = %{tl_version} +Provides: tex(newtx.map) = %{tl_version} +Provides: tex(zmn.map) = %{tl_version} +Provides: tex(Libertine-nu.tfm) = %{tl_version} Provides: tex(LibertineI-5nu.tfm) = %{tl_version} -Provides: tex(LibertineI-7nu.pfb) = %{tl_version} Provides: tex(LibertineI-7nu.tfm) = %{tl_version} -Provides: tex(LibertineI-nu.pfb) = %{tl_version} Provides: tex(LibertineI-nu.tfm) = %{tl_version} -Provides: tex(LibertineMathBMI5.afm) = %{tl_version} -Provides: tex(LibertineMathBMI5.pfb) = %{tl_version} -Provides: tex(LibertineMathBMI5.tfm) = %{tl_version} -Provides: tex(LibertineMathBMI7.afm) = %{tl_version} -Provides: tex(LibertineMathBMI7.pfb) = %{tl_version} -Provides: tex(LibertineMathBMI7.tfm) = %{tl_version} -Provides: tex(LibertineMathBMI.afm) = %{tl_version} -Provides: tex(LibertineMathBMI.pfb) = %{tl_version} -Provides: tex(LibertineMathBMI.tfm) = %{tl_version} -Provides: tex(LibertineMathBRM.afm) = %{tl_version} -Provides: tex(LibertineMathBRM.pfb) = %{tl_version} -Provides: tex(LibertineMathBRM.tfm) = %{tl_version} -Provides: tex(LibertineMathMI5.afm) = %{tl_version} -Provides: tex(LibertineMathMI5.pfb) = %{tl_version} -Provides: tex(LibertineMathMI5.tfm) = %{tl_version} -Provides: tex(LibertineMathMI7.afm) = %{tl_version} -Provides: tex(LibertineMathMI7.pfb) = %{tl_version} -Provides: tex(LibertineMathMI7.tfm) = %{tl_version} -Provides: tex(LibertineMathMI.afm) = %{tl_version} -Provides: tex(LibertineMathMI.pfb) = %{tl_version} -Provides: tex(LibertineMathMI.tfm) = %{tl_version} -Provides: tex(LibertineMathRM.afm) = %{tl_version} -Provides: tex(LibertineMathRM.pfb) = %{tl_version} -Provides: tex(LibertineMathRM.tfm) = %{tl_version} -Provides: tex(Libertine-nu.pfb) = %{tl_version} -Provides: tex(Libertine-nu.tfm) = %{tl_version} -Provides: tex(LibertineTheta-Regular.pfb) = %{tl_version} Provides: tex(LibertineTheta-Regular.tfm) = %{tl_version} -Provides: tex(LibertineZI-5nu.afm) = %{tl_version} -Provides: tex(LibertineZI-5nu.pfb) = %{tl_version} +Provides: tex(LibertineZ-nu.tfm) = %{tl_version} Provides: tex(LibertineZI-5nu.tfm) = %{tl_version} -Provides: tex(LibertineZI-7nu.pfb) = %{tl_version} Provides: tex(LibertineZI-7nu.tfm) = %{tl_version} -Provides: tex(LibertineZI-nu.pfb) = %{tl_version} Provides: tex(LibertineZI-nu.tfm) = %{tl_version} -Provides: tex(LibertineZ-nu.pfb) = %{tl_version} -Provides: tex(LibertineZ-nu.tfm) = %{tl_version} -Provides: tex(lmsntxsy.fd) = %{tl_version} -Provides: tex(lmxntxexx.fd) = %{tl_version} -Provides: tex(ly1minlibertine.fd) = %{tl_version} -Provides: tex(ly1ntxlf.fd) = %{tl_version} -Provides: tex(ly1ntxosf.fd) = %{tl_version} -Provides: tex(ly1ntxsups.fd) = %{tl_version} -Provides: tex(ly1ntxtlf.fd) = %{tl_version} -Provides: tex(ly1ntxtosf.fd) = %{tl_version} -Provides: tex(ly1ntxtt.fd) = %{tl_version} -Provides: tex(MinLibBolIta-ly1.tfm) = %{tl_version} -Provides: tex(MinLibBolIta-ot1.tfm) = %{tl_version} -Provides: tex(MinLibBolIta.pfb) = %{tl_version} -Provides: tex(MinLibBolIta-t1.tfm) = %{tl_version} Provides: tex(MinLibBol-ly1.tfm) = %{tl_version} Provides: tex(MinLibBol-ot1.tfm) = %{tl_version} -Provides: tex(MinLibBol.pfb) = %{tl_version} Provides: tex(MinLibBol-t1.tfm) = %{tl_version} +Provides: tex(MinLibBolIta-ly1.tfm) = %{tl_version} +Provides: tex(MinLibBolIta-ot1.tfm) = %{tl_version} +Provides: tex(MinLibBolIta-t1.tfm) = %{tl_version} Provides: tex(MinLibIta-ly1.tfm) = %{tl_version} Provides: tex(MinLibIta-ot1.tfm) = %{tl_version} -Provides: tex(MinLibIta.pfb) = %{tl_version} Provides: tex(MinLibIta-t1.tfm) = %{tl_version} Provides: tex(MinLibReg-ly1.tfm) = %{tl_version} Provides: tex(MinLibReg-ot1.tfm) = %{tl_version} -Provides: tex(MinLibReg.pfb) = %{tl_version} Provides: tex(MinLibReg-t1.tfm) = %{tl_version} -Provides: tex(NewTXBMI5.afm) = %{tl_version} -Provides: tex(NewTXBMI5.pfb) = %{tl_version} -Provides: tex(NewTXBMI5.tfm) = %{tl_version} -Provides: tex(NewTXBMI7.afm) = %{tl_version} -Provides: tex(NewTXBMI7.pfb) = %{tl_version} -Provides: tex(NewTXBMI7.tfm) = %{tl_version} -Provides: tex(NewTXBMI.afm) = %{tl_version} -Provides: tex(NewTXBMI.pfb) = %{tl_version} -Provides: tex(NewTXBMI.tfm) = %{tl_version} -Provides: tex(newtx-ebgaramond-subs.tex) = %{tl_version} -Provides: tex(newtx-libertine-subs.tex) = %{tl_version} -Provides: tex(newtx.map) = %{tl_version} -Provides: tex(newtxmath.sty) = %{tl_version} -Provides: tex(NewTXMI5.afm) = %{tl_version} -Provides: tex(NewTXMI5.pfb) = %{tl_version} -Provides: tex(NewTXMI5.tfm) = %{tl_version} -Provides: tex(NewTXMI7.afm) = %{tl_version} -Provides: tex(NewTXMI7.pfb) = %{tl_version} -Provides: tex(NewTXMI7.tfm) = %{tl_version} -Provides: tex(NewTXMI.afm) = %{tl_version} -Provides: tex(NewTXMI.pfb) = %{tl_version} -Provides: tex(NewTXMI.tfm) = %{tl_version} -Provides: tex(newtxtext.sty) = %{tl_version} -Provides: tex(ntxbexa.tfm) = %{tl_version} -Provides: tex(ntxbexa.vf) = %{tl_version} -Provides: tex(ntxbexb.pfb) = %{tl_version} -Provides: tex(ntxbexb.tfm) = %{tl_version} -Provides: tex(ntxbexmods.pfb) = %{tl_version} -Provides: tex(ntxbexmods.tfm) = %{tl_version} -Provides: tex(ntxbex.tfm) = %{tl_version} -Provides: tex(ntxbex.vf) = %{tl_version} -Provides: tex(ntxbexx.tfm) = %{tl_version} -Provides: tex(ntxbexx.vf) = %{tl_version} -Provides: tex(ntxbmi05.tfm) = %{tl_version} -Provides: tex(ntxbmi05.vf) = %{tl_version} -Provides: tex(ntxbmi07.tfm) = %{tl_version} -Provides: tex(ntxbmi07.vf) = %{tl_version} -Provides: tex(ntxbmi0.tfm) = %{tl_version} -Provides: tex(ntxbmi0.vf) = %{tl_version} -Provides: tex(ntxbmi15.tfm) = %{tl_version} -Provides: tex(ntxbmi15.vf) = %{tl_version} -Provides: tex(ntxbmi17.tfm) = %{tl_version} -Provides: tex(ntxbmi17.vf) = %{tl_version} -Provides: tex(ntxbmi1.tfm) = %{tl_version} -Provides: tex(ntxbmi1.vf) = %{tl_version} -Provides: tex(ntxbmi1x.tfm) = %{tl_version} -Provides: tex(ntxbmi1x.vf) = %{tl_version} -Provides: tex(ntxbmi5.tfm) = %{tl_version} -Provides: tex(ntxbmi5.vf) = %{tl_version} -Provides: tex(ntxbmi7.tfm) = %{tl_version} -Provides: tex(ntxbmi7.vf) = %{tl_version} -Provides: tex(ntxbmial1.tfm) = %{tl_version} -Provides: tex(ntxbmials.tfm) = %{tl_version} -Provides: tex(ntxbmia.tfm) = %{tl_version} -Provides: tex(ntxbmia.vf) = %{tl_version} -Provides: tex(ntxbmi.tfm) = %{tl_version} -Provides: tex(ntxbmi.vf) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-ot1r.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-ot1.vf) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-scl-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-ot1r.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-ot1.vf) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-scl-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-ot1r.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-ot1.vf) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-scl-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-ot1r.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-ot1.vf) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-scl-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(ntx-BoldItalic-tosf-t1.tfm) = %{tl_version} +Provides: tex(fxlri-5alt.tfm) = %{tl_version} +Provides: tex(fxlri-5letters.tfm) = %{tl_version} +Provides: tex(fxlri-7alt.tfm) = %{tl_version} +Provides: tex(fxlri-7letters.tfm) = %{tl_version} +Provides: tex(fxlzi-5alt.tfm) = %{tl_version} +Provides: tex(fxlzi-5letters.tfm) = %{tl_version} +Provides: tex(fxlzi-7alt.tfm) = %{tl_version} +Provides: tex(fxlzi-7letters.tfm) = %{tl_version} +Provides: tex(fxlzi-jv.tfm) = %{tl_version} +Provides: tex(fxlzi-jv5.tfm) = %{tl_version} +Provides: tex(fxlzi-jv7.tfm) = %{tl_version} Provides: tex(ntx-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-lf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-lf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Bold-lf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-lf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-lf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-lf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Bold-lf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Bold-lf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-lf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-lf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-lf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-lf-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-osf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-osf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Bold-osf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-osf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-osf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-osf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Bold-osf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Bold-osf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-osf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-osf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-osf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-osf-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-tlf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-tlf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Bold-tlf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-tlf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-tlf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tlf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tlf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tlf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-tlf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-tlf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-tlf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tlf-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-tosf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-tosf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Bold-tosf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-tosf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Bold-tosf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tosf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tosf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-tosf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-tosf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Bold-tosf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(ntxbsy5.tfm) = %{tl_version} -Provides: tex(ntxbsy5.vf) = %{tl_version} -Provides: tex(ntxbsy7.tfm) = %{tl_version} -Provides: tex(ntxbsy7.vf) = %{tl_version} -Provides: tex(ntxbsyc.tfm) = %{tl_version} -Provides: tex(ntxbsyc.vf) = %{tl_version} -Provides: tex(ntxbsym.tfm) = %{tl_version} -Provides: tex(ntxbsym.vf) = %{tl_version} -Provides: tex(ntxbsy.tfm) = %{tl_version} -Provides: tex(ntxbsy.vf) = %{tl_version} -Provides: tex(ntxebgbmia.tfm) = %{tl_version} -Provides: tex(ntxebgbmia.vf) = %{tl_version} -Provides: tex(ntxebgbmi.tfm) = %{tl_version} -Provides: tex(ntxebgbmi.vf) = %{tl_version} -Provides: tex(ntxebgmia.tfm) = %{tl_version} -Provides: tex(ntxebgmia.vf) = %{tl_version} -Provides: tex(ntxebgmi.tfm) = %{tl_version} -Provides: tex(ntxebgmi.vf) = %{tl_version} -Provides: tex(ntx-ec-lf.enc) = %{tl_version} -Provides: tex(ntx-ec-lf-sc.enc) = %{tl_version} -Provides: tex(ntx-ec-osf.enc) = %{tl_version} -Provides: tex(ntx-ec-osf-sc.enc) = %{tl_version} -Provides: tex(ntx-ecth-lf.enc) = %{tl_version} -Provides: tex(ntx-ecth-osf.enc) = %{tl_version} -Provides: tex(ntx-ecth-tlf.enc) = %{tl_version} -Provides: tex(ntx-ecth-tosf.enc) = %{tl_version} -Provides: tex(ntx-ec-tlf.enc) = %{tl_version} -Provides: tex(ntx-ec-tlf-sc.enc) = %{tl_version} -Provides: tex(ntx-ec-tosf.enc) = %{tl_version} -Provides: tex(ntx-ec-tosf-sc.enc) = %{tl_version} -Provides: tex(ntxexa.tfm) = %{tl_version} -Provides: tex(ntxexa.vf) = %{tl_version} -Provides: tex(ntxexb.pfb) = %{tl_version} -Provides: tex(ntxexb.tfm) = %{tl_version} -Provides: tex(ntxexmods.pfb) = %{tl_version} -Provides: tex(ntxexmods.tfm) = %{tl_version} -Provides: tex(ntxexx.tfm) = %{tl_version} -Provides: tex(ntxexx.vf) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-sc-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-sc-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-scl-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-lf-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-sc-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-sc-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-scl-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-osf-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-sc-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-sc-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-scl-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tlf-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-scl-t1.tfm) = %{tl_version} +Provides: tex(ntx-BoldItalic-tosf-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-lf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-lf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Italic-lf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-lf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-lf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-lf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Italic-lf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Italic-lf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-lf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-lf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-lf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-lf-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-osf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-osf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Italic-osf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-osf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-osf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-osf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-osf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-osf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-th-ly1.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-th-ot1.tfm) = %{tl_version} Provides: tex(ntx-Italic-osf-th-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-tlf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-tlf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Italic-tlf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-tlf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-tlf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-tlf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-tlf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-tlf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-th-ly1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-th-ot1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tlf-th-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-tosf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-tosf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Italic-tosf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-tosf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Italic-tosf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tosf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tosf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-tosf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-tosf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Italic-tosf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(ntx-ly1-sc.enc) = %{tl_version} -Provides: tex(ntxmi05.tfm) = %{tl_version} -Provides: tex(ntxmi05.vf) = %{tl_version} -Provides: tex(ntxmi07.tfm) = %{tl_version} -Provides: tex(ntxmi07.vf) = %{tl_version} -Provides: tex(ntxmi0.tfm) = %{tl_version} -Provides: tex(ntxmi0.vf) = %{tl_version} -Provides: tex(ntxmi15.tfm) = %{tl_version} -Provides: tex(ntxmi15.vf) = %{tl_version} -Provides: tex(ntxmi17.tfm) = %{tl_version} -Provides: tex(ntxmi17.vf) = %{tl_version} -Provides: tex(ntxmi1.tfm) = %{tl_version} -Provides: tex(ntxmi1.vf) = %{tl_version} -Provides: tex(ntxmi5.tfm) = %{tl_version} -Provides: tex(ntxmi5.vf) = %{tl_version} -Provides: tex(ntxmi7.tfm) = %{tl_version} -Provides: tex(ntxmi7.vf) = %{tl_version} -Provides: tex(ntxmiaalt.enc) = %{tl_version} -Provides: tex(ntxmia.tfm) = %{tl_version} -Provides: tex(ntxmia.vf) = %{tl_version} -Provides: tex(ntxmi.tfm) = %{tl_version} -Provides: tex(ntxmi.vf) = %{tl_version} -Provides: tex(ntx-ot1-lf.enc) = %{tl_version} -Provides: tex(ntx-ot1-lf-sc.enc) = %{tl_version} -Provides: tex(ntx-ot1-osf.enc) = %{tl_version} -Provides: tex(ntx-ot1-osf-sc.enc) = %{tl_version} -Provides: tex(ntx-ot1-sc.enc) = %{tl_version} -Provides: tex(ntx-ot1-th-osf.enc) = %{tl_version} -Provides: tex(ntx-ot1-th-tlf.enc) = %{tl_version} -Provides: tex(ntx-ot1-tlf.enc) = %{tl_version} -Provides: tex(ntx-ot1-tlf-sc.enc) = %{tl_version} -Provides: tex(ntx-ot1-tosf.enc) = %{tl_version} -Provides: tex(ntx-ot1-tosf-sc.enc) = %{tl_version} Provides: tex(ntx-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-lf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-lf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Regular-lf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-lf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-lf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-lf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Regular-lf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Regular-lf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-lf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-lf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-lf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-lf-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-osf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-osf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Regular-osf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-osf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-osf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-osf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Regular-osf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Regular-osf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-osf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-osf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-osf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-osf-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-tlf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-tlf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Regular-tlf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-tlf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-tlf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tlf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tlf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tlf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-tlf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-tlf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-tlf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tlf-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-tosf-ot1r.tfm) = %{tl_version} Provides: tex(ntx-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-tosf-ot1.vf) = %{tl_version} -Provides: tex(ntx-Regular-tosf-scl-ly1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-tosf-scl-ot1.tfm) = %{tl_version} -Provides: tex(ntx-Regular-tosf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tosf-sc-ly1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tosf-sc-ot1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-tosf-scl-ly1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-tosf-scl-ot1.tfm) = %{tl_version} +Provides: tex(ntx-Regular-tosf-scl-t1.tfm) = %{tl_version} Provides: tex(ntx-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(ntxsups-Bold.afm) = %{tl_version} -Provides: tex(ntxsups-BoldItalic.afm) = %{tl_version} -Provides: tex(ntxsups-BoldItalic-ly1.tfm) = %{tl_version} -Provides: tex(ntxsups-BoldItalic-ot1.tfm) = %{tl_version} -Provides: tex(ntxsups-BoldItalic.otf) = %{tl_version} -Provides: tex(ntxsups-BoldItalic.pfb) = %{tl_version} -Provides: tex(ntxsups-BoldItalic-t1.tfm) = %{tl_version} -Provides: tex(ntxsups-BoldItalic.tfm) = %{tl_version} +Provides: tex(ntxbexa.tfm) = %{tl_version} +Provides: tex(ntxbexb.tfm) = %{tl_version} +Provides: tex(ntxbexmods.tfm) = %{tl_version} +Provides: tex(ntxbexx.tfm) = %{tl_version} +Provides: tex(ntxbmi.tfm) = %{tl_version} +Provides: tex(ntxbmi1.tfm) = %{tl_version} +Provides: tex(ntxbmi15.tfm) = %{tl_version} +Provides: tex(ntxbmi17.tfm) = %{tl_version} +Provides: tex(ntxbmi1x.tfm) = %{tl_version} +Provides: tex(ntxbmi5.tfm) = %{tl_version} +Provides: tex(ntxbmi7.tfm) = %{tl_version} +Provides: tex(ntxbmia.tfm) = %{tl_version} +Provides: tex(ntxbmial1.tfm) = %{tl_version} +Provides: tex(ntxbmials.tfm) = %{tl_version} +Provides: tex(ntxbsy.tfm) = %{tl_version} +Provides: tex(ntxbsy5.tfm) = %{tl_version} +Provides: tex(ntxbsy7.tfm) = %{tl_version} +Provides: tex(ntxbsyc.tfm) = %{tl_version} +Provides: tex(ntxbsym.tfm) = %{tl_version} +Provides: tex(ntxexa.tfm) = %{tl_version} +Provides: tex(ntxexb.tfm) = %{tl_version} +Provides: tex(ntxexmods.tfm) = %{tl_version} +Provides: tex(ntxexx.tfm) = %{tl_version} +Provides: tex(ntxmi.tfm) = %{tl_version} +Provides: tex(ntxmi1.tfm) = %{tl_version} +Provides: tex(ntxmi15.tfm) = %{tl_version} +Provides: tex(ntxmi17.tfm) = %{tl_version} +Provides: tex(ntxmi5.tfm) = %{tl_version} +Provides: tex(ntxmi7.tfm) = %{tl_version} +Provides: tex(ntxmia.tfm) = %{tl_version} Provides: tex(ntxsups-Bold-ly1.tfm) = %{tl_version} Provides: tex(ntxsups-Bold-ot1.tfm) = %{tl_version} -Provides: tex(ntxsups-Bold.otf) = %{tl_version} -Provides: tex(ntxsups-Bold.pfb) = %{tl_version} Provides: tex(ntxsups-Bold-t1.tfm) = %{tl_version} Provides: tex(ntxsups-Bold.tfm) = %{tl_version} -Provides: tex(ntxsupsCopy.enc) = %{tl_version} -Provides: tex(ntxsups-Italic.afm) = %{tl_version} +Provides: tex(ntxsups-BoldItalic-ly1.tfm) = %{tl_version} +Provides: tex(ntxsups-BoldItalic-ot1.tfm) = %{tl_version} +Provides: tex(ntxsups-BoldItalic-t1.tfm) = %{tl_version} +Provides: tex(ntxsups-BoldItalic.tfm) = %{tl_version} Provides: tex(ntxsups-Italic-ly1.tfm) = %{tl_version} Provides: tex(ntxsups-Italic-ot1.tfm) = %{tl_version} -Provides: tex(ntxsups-Italic.otf) = %{tl_version} -Provides: tex(ntxsups-Italic.pfb) = %{tl_version} Provides: tex(ntxsups-Italic-t1.tfm) = %{tl_version} Provides: tex(ntxsups-Italic.tfm) = %{tl_version} -Provides: tex(ntxsups_ly1.enc) = %{tl_version} -Provides: tex(ntxsups_ot1.enc) = %{tl_version} -Provides: tex(ntxsups-Regular.afm) = %{tl_version} Provides: tex(ntxsups-Regular-ly1.tfm) = %{tl_version} Provides: tex(ntxsups-Regular-ot1.tfm) = %{tl_version} -Provides: tex(ntxsups-Regular.otf) = %{tl_version} -Provides: tex(ntxsups-Regular.pfb) = %{tl_version} Provides: tex(ntxsups-Regular-t1.tfm) = %{tl_version} Provides: tex(ntxsups-Regular.tfm) = %{tl_version} -Provides: tex(ntxsups_t1.enc) = %{tl_version} +Provides: tex(ntxsy.tfm) = %{tl_version} Provides: tex(ntxsy5.tfm) = %{tl_version} -Provides: tex(ntxsy5.vf) = %{tl_version} Provides: tex(ntxsy7.tfm) = %{tl_version} -Provides: tex(ntxsy7.vf) = %{tl_version} -Provides: tex(ntxsybalt.pfb) = %{tl_version} Provides: tex(ntxsybalt.tfm) = %{tl_version} Provides: tex(ntxsyc.tfm) = %{tl_version} -Provides: tex(ntxsyc.vf) = %{tl_version} Provides: tex(ntxsym.tfm) = %{tl_version} -Provides: tex(ntxsym.vf) = %{tl_version} -Provides: tex(ntxsyralt.pfb) = %{tl_version} Provides: tex(ntxsyralt.tfm) = %{tl_version} -Provides: tex(ntxsy.tfm) = %{tl_version} -Provides: tex(ntxsy.vf) = %{tl_version} -Provides: tex(ntx-t1-sc.enc) = %{tl_version} -Provides: tex(ntx-texnansi-lf.enc) = %{tl_version} -Provides: tex(ntx-texnansi-lf-sc.enc) = %{tl_version} -Provides: tex(ntx-texnansi-osf.enc) = %{tl_version} -Provides: tex(ntx-texnansi-osf-sc.enc) = %{tl_version} -Provides: tex(ntx-texnansi-th-osf.enc) = %{tl_version} -Provides: tex(ntx-texnansi-th-tlf.enc) = %{tl_version} -Provides: tex(ntx-texnansi-tlf.enc) = %{tl_version} -Provides: tex(ntx-texnansi-tlf-sc.enc) = %{tl_version} -Provides: tex(ntx-texnansi-tosf.enc) = %{tl_version} -Provides: tex(ntx-texnansi-tosf-sc.enc) = %{tl_version} -Provides: tex(ntxtmb.afm) = %{tl_version} -Provides: tex(ntxtmbi.afm) = %{tl_version} -Provides: tex(ntxtmbi.pfb) = %{tl_version} -Provides: tex(ntxtmb.pfb) = %{tl_version} -Provides: tex(ntxtmr.afm) = %{tl_version} -Provides: tex(ntxtmri.afm) = %{tl_version} -Provides: tex(ntxtmri.pfb) = %{tl_version} -Provides: tex(ntxtmr.pfb) = %{tl_version} +Provides: tex(nxlbmi.tfm) = %{tl_version} +Provides: tex(nxlbmi0.tfm) = %{tl_version} +Provides: tex(nxlbmi01.tfm) = %{tl_version} Provides: tex(nxlbmi015.tfm) = %{tl_version} -Provides: tex(nxlbmi015.vf) = %{tl_version} Provides: tex(nxlbmi017.tfm) = %{tl_version} -Provides: tex(nxlbmi017.vf) = %{tl_version} -Provides: tex(nxlbmi01.tfm) = %{tl_version} -Provides: tex(nxlbmi01.vf) = %{tl_version} +Provides: tex(nxlbmi02.tfm) = %{tl_version} Provides: tex(nxlbmi025.tfm) = %{tl_version} -Provides: tex(nxlbmi025.vf) = %{tl_version} Provides: tex(nxlbmi027.tfm) = %{tl_version} -Provides: tex(nxlbmi027.vf) = %{tl_version} -Provides: tex(nxlbmi02.tfm) = %{tl_version} -Provides: tex(nxlbmi02.vf) = %{tl_version} +Provides: tex(nxlbmi03.tfm) = %{tl_version} Provides: tex(nxlbmi035.tfm) = %{tl_version} -Provides: tex(nxlbmi035.vf) = %{tl_version} Provides: tex(nxlbmi037.tfm) = %{tl_version} -Provides: tex(nxlbmi037.vf) = %{tl_version} -Provides: tex(nxlbmi03.tfm) = %{tl_version} -Provides: tex(nxlbmi03.vf) = %{tl_version} Provides: tex(nxlbmi05.tfm) = %{tl_version} -Provides: tex(nxlbmi05.vf) = %{tl_version} Provides: tex(nxlbmi07.tfm) = %{tl_version} -Provides: tex(nxlbmi07.vf) = %{tl_version} -Provides: tex(nxlbmi0.tfm) = %{tl_version} -Provides: tex(nxlbmi0.vf) = %{tl_version} +Provides: tex(nxlbmi1.tfm) = %{tl_version} Provides: tex(nxlbmi15.tfm) = %{tl_version} -Provides: tex(nxlbmi15.vf) = %{tl_version} Provides: tex(nxlbmi17.tfm) = %{tl_version} -Provides: tex(nxlbmi17.vf) = %{tl_version} -Provides: tex(nxlbmi1.tfm) = %{tl_version} -Provides: tex(nxlbmi1.vf) = %{tl_version} +Provides: tex(nxlbmi2.tfm) = %{tl_version} Provides: tex(nxlbmi25.tfm) = %{tl_version} -Provides: tex(nxlbmi25.vf) = %{tl_version} Provides: tex(nxlbmi27.tfm) = %{tl_version} -Provides: tex(nxlbmi27.vf) = %{tl_version} -Provides: tex(nxlbmi2.tfm) = %{tl_version} -Provides: tex(nxlbmi2.vf) = %{tl_version} +Provides: tex(nxlbmi3.tfm) = %{tl_version} Provides: tex(nxlbmi35.tfm) = %{tl_version} -Provides: tex(nxlbmi35.vf) = %{tl_version} Provides: tex(nxlbmi37.tfm) = %{tl_version} -Provides: tex(nxlbmi37.vf) = %{tl_version} -Provides: tex(nxlbmi3.tfm) = %{tl_version} -Provides: tex(nxlbmi3.vf) = %{tl_version} Provides: tex(nxlbmi5.tfm) = %{tl_version} -Provides: tex(nxlbmi5.vf) = %{tl_version} Provides: tex(nxlbmi7.tfm) = %{tl_version} -Provides: tex(nxlbmi7.vf) = %{tl_version} Provides: tex(nxlbmia.tfm) = %{tl_version} -Provides: tex(nxlbmia.vf) = %{tl_version} -Provides: tex(nxlbmi.tfm) = %{tl_version} -Provides: tex(nxlbmi.vf) = %{tl_version} Provides: tex(nxlbsy5.tfm) = %{tl_version} -Provides: tex(nxlbsy5.vf) = %{tl_version} Provides: tex(nxlbsy7.tfm) = %{tl_version} -Provides: tex(nxlbsy7.vf) = %{tl_version} +Provides: tex(nxlmi.tfm) = %{tl_version} +Provides: tex(nxlmi0.tfm) = %{tl_version} +Provides: tex(nxlmi01.tfm) = %{tl_version} Provides: tex(nxlmi015.tfm) = %{tl_version} -Provides: tex(nxlmi015.vf) = %{tl_version} Provides: tex(nxlmi017.tfm) = %{tl_version} -Provides: tex(nxlmi017.vf) = %{tl_version} -Provides: tex(nxlmi01.tfm) = %{tl_version} -Provides: tex(nxlmi01.vf) = %{tl_version} +Provides: tex(nxlmi02.tfm) = %{tl_version} Provides: tex(nxlmi025.tfm) = %{tl_version} -Provides: tex(nxlmi025.vf) = %{tl_version} Provides: tex(nxlmi027.tfm) = %{tl_version} -Provides: tex(nxlmi027.vf) = %{tl_version} -Provides: tex(nxlmi02.tfm) = %{tl_version} -Provides: tex(nxlmi02.vf) = %{tl_version} +Provides: tex(nxlmi03.tfm) = %{tl_version} Provides: tex(nxlmi035.tfm) = %{tl_version} -Provides: tex(nxlmi035.vf) = %{tl_version} Provides: tex(nxlmi037.tfm) = %{tl_version} -Provides: tex(nxlmi037.vf) = %{tl_version} -Provides: tex(nxlmi03.tfm) = %{tl_version} -Provides: tex(nxlmi03.vf) = %{tl_version} Provides: tex(nxlmi05.tfm) = %{tl_version} -Provides: tex(nxlmi05.vf) = %{tl_version} Provides: tex(nxlmi07.tfm) = %{tl_version} -Provides: tex(nxlmi07.vf) = %{tl_version} -Provides: tex(nxlmi0.tfm) = %{tl_version} -Provides: tex(nxlmi0.vf) = %{tl_version} +Provides: tex(nxlmi1.tfm) = %{tl_version} Provides: tex(nxlmi15.tfm) = %{tl_version} -Provides: tex(nxlmi15.vf) = %{tl_version} Provides: tex(nxlmi17.tfm) = %{tl_version} -Provides: tex(nxlmi17.vf) = %{tl_version} -Provides: tex(nxlmi1.tfm) = %{tl_version} -Provides: tex(nxlmi1.vf) = %{tl_version} +Provides: tex(nxlmi2.tfm) = %{tl_version} Provides: tex(nxlmi25.tfm) = %{tl_version} -Provides: tex(nxlmi25.vf) = %{tl_version} Provides: tex(nxlmi27.tfm) = %{tl_version} -Provides: tex(nxlmi27.vf) = %{tl_version} -Provides: tex(nxlmi2.tfm) = %{tl_version} -Provides: tex(nxlmi2.vf) = %{tl_version} +Provides: tex(nxlmi3.tfm) = %{tl_version} Provides: tex(nxlmi35.tfm) = %{tl_version} -Provides: tex(nxlmi35.vf) = %{tl_version} Provides: tex(nxlmi37.tfm) = %{tl_version} -Provides: tex(nxlmi37.vf) = %{tl_version} -Provides: tex(nxlmi3.tfm) = %{tl_version} -Provides: tex(nxlmi3.vf) = %{tl_version} Provides: tex(nxlmi5.tfm) = %{tl_version} -Provides: tex(nxlmi5.vf) = %{tl_version} Provides: tex(nxlmi7.tfm) = %{tl_version} -Provides: tex(nxlmi7.vf) = %{tl_version} Provides: tex(nxlmia.tfm) = %{tl_version} -Provides: tex(nxlmia.vf) = %{tl_version} -Provides: tex(nxlmi.tfm) = %{tl_version} -Provides: tex(nxlmi.vf) = %{tl_version} Provides: tex(nxlsy5.tfm) = %{tl_version} -Provides: tex(nxlsy5.vf) = %{tl_version} Provides: tex(nxlsy7.tfm) = %{tl_version} -Provides: tex(nxlsy7.vf) = %{tl_version} -Provides: tex(omlntxebgmi.fd) = %{tl_version} -Provides: tex(omlntxmi.fd) = %{tl_version} -Provides: tex(omlntxstx2mi.fd) = %{tl_version} -Provides: tex(omlnxlmi.fd) = %{tl_version} -Provides: tex(omlzbvmi.fd) = %{tl_version} -Provides: tex(omlzmnmi.fd) = %{tl_version} -Provides: tex(omlzutmi.fd) = %{tl_version} -Provides: tex(ot1minlibertine.fd) = %{tl_version} -Provides: tex(ot1ntxlf.fd) = %{tl_version} -Provides: tex(ot1ntxosf.fd) = %{tl_version} -Provides: tex(ot1ntxsups.fd) = %{tl_version} -Provides: tex(ot1ntxtlf.fd) = %{tl_version} -Provides: tex(ot1ntxtosf.fd) = %{tl_version} -Provides: tex(ot1ntxtt.fd) = %{tl_version} +Provides: tex(qtmr.tfm) = %{tl_version} Provides: tex(rfxlr-alt.tfm) = %{tl_version} Provides: tex(rfxlri-alt.tfm) = %{tl_version} +Provides: tex(rfxlri-vw.tfm) = %{tl_version} Provides: tex(rfxlri-vw5.tfm) = %{tl_version} Provides: tex(rfxlri-vw7.tfm) = %{tl_version} -Provides: tex(rfxlri-vw.tfm) = %{tl_version} Provides: tex(rfxlz-alt.tfm) = %{tl_version} Provides: tex(rfxlzi-alt.tfm) = %{tl_version} +Provides: tex(rfxlzi-vw.tfm) = %{tl_version} Provides: tex(rfxlzi-vw5.tfm) = %{tl_version} Provides: tex(rfxlzi-vw7.tfm) = %{tl_version} -Provides: tex(rfxlzi-vw.tfm) = %{tl_version} -Provides: tex(rntxbmi5.pfb) = %{tl_version} +Provides: tex(rntxbmi.tfm) = %{tl_version} Provides: tex(rntxbmi5.tfm) = %{tl_version} -Provides: tex(rntxbmi7.pfb) = %{tl_version} Provides: tex(rntxbmi7.tfm) = %{tl_version} -Provides: tex(rntxbmi.pfb) = %{tl_version} -Provides: tex(rntxbmi.tfm) = %{tl_version} -Provides: tex(rntxmi5.pfb) = %{tl_version} +Provides: tex(rntxmi.tfm) = %{tl_version} Provides: tex(rntxmi5.tfm) = %{tl_version} -Provides: tex(rntxmi7.pfb) = %{tl_version} Provides: tex(rntxmi7.tfm) = %{tl_version} -Provides: tex(rntxmi.pfb) = %{tl_version} -Provides: tex(rntxmi.tfm) = %{tl_version} -Provides: tex(rtxbmi5.afm) = %{tl_version} -Provides: tex(rtxbmi5.pfb) = %{tl_version} -Provides: tex(rtxbmi5-rev.pfb) = %{tl_version} +Provides: tex(rtxbmi-rev.tfm) = %{tl_version} +Provides: tex(rtxbmi-ut.tfm) = %{tl_version} Provides: tex(rtxbmi5-rev.tfm) = %{tl_version} Provides: tex(rtxbmi5.tfm) = %{tl_version} -Provides: tex(rtxbmi7.afm) = %{tl_version} -Provides: tex(rtxbmi7.pfb) = %{tl_version} -Provides: tex(rtxbmi7-rev.pfb) = %{tl_version} Provides: tex(rtxbmi7-rev.tfm) = %{tl_version} Provides: tex(rtxbmi7.tfm) = %{tl_version} Provides: tex(rtxbmio.tfm) = %{tl_version} -Provides: tex(rtxbmi-rev.pfb) = %{tl_version} -Provides: tex(rtxbmi-rev.tfm) = %{tl_version} -Provides: tex(rtxbmi-ut.tfm) = %{tl_version} -Provides: tex(rtxmi5.pfb) = %{tl_version} +Provides: tex(rtxmi-ut.tfm) = %{tl_version} Provides: tex(rtxmi5.tfm) = %{tl_version} -Provides: tex(rtxmi7.pfb) = %{tl_version} Provides: tex(rtxmi7.tfm) = %{tl_version} Provides: tex(rtxmio.tfm) = %{tl_version} -Provides: tex(rtxmi-ut.tfm) = %{tl_version} -Provides: tex(stx2rm.tfm) = %{tl_version} -Provides: tex(stxscr.afm) = %{tl_version} -Provides: tex(stxscr.pfb) = %{tl_version} -Provides: tex(stxscr.tfm) = %{tl_version} -Provides: tex(t1fxl1.fd) = %{tl_version} -Provides: tex(t1minlibertine.fd) = %{tl_version} -Provides: tex(t1ntxlf.fd) = %{tl_version} -Provides: tex(t1ntxosf.fd) = %{tl_version} -Provides: tex(t1ntxsups.fd) = %{tl_version} -Provides: tex(t1ntxtlf.fd) = %{tl_version} -Provides: tex(t1ntxtosf.fd) = %{tl_version} -Provides: tex(t1ntxtt.fd) = %{tl_version} -Provides: tex(TeXGyreTermesX-BoldItalic.otf) = %{tl_version} -Provides: tex(TeXGyreTermesX-Bold.otf) = %{tl_version} -Provides: tex(TeXGyreTermesX.fontspec) = %{tl_version} -Provides: tex(TeXGyreTermesX-Italic.otf) = %{tl_version} -Provides: tex(TeXGyreTermesX-Regular.otf) = %{tl_version} -Provides: tex(ts1ntxlf.fd) = %{tl_version} -Provides: tex(ts1ntxosf.fd) = %{tl_version} -Provides: tex(ts1ntxtlf.fd) = %{tl_version} -Provides: tex(ts1ntxtosf.fd) = %{tl_version} -Provides: tex(ts1ntxtt.fd) = %{tl_version} -Provides: tex(txbexas.afm) = %{tl_version} -Provides: tex(txbexas.pfb) = %{tl_version} -Provides: tex(txbexas.tfm) = %{tl_version} -Provides: tex(txbex-bar.afm) = %{tl_version} -Provides: tex(txbex-bar.pfb) = %{tl_version} Provides: tex(txbex-bar.tfm) = %{tl_version} -Provides: tex(txbexs.pfb) = %{tl_version} -Provides: tex(txbexs.tfm) = %{tl_version} -Provides: tex(txbmiaSTbb.afm) = %{tl_version} -Provides: tex(txbmiaSTbb.pfb) = %{tl_version} -Provides: tex(txbmiaSTbb.tfm) = %{tl_version} -Provides: tex(txbmiaX.afm) = %{tl_version} -Provides: tex(txbmiaX.pfb) = %{tl_version} -Provides: tex(txbmiaX.tfm) = %{tl_version} -Provides: tex(txbsy5.pfb) = %{tl_version} Provides: tex(txbsy5.tfm) = %{tl_version} -Provides: tex(txbsy7.pfb) = %{tl_version} Provides: tex(txbsy7.tfm) = %{tl_version} -Provides: tex(txbsys.afm) = %{tl_version} -Provides: tex(txbsys.pfb) = %{tl_version} -Provides: tex(txbsys.tfm) = %{tl_version} -Provides: tex(txexas.afm) = %{tl_version} -Provides: tex(txexas.pfb) = %{tl_version} -Provides: tex(txexas.tfm) = %{tl_version} -Provides: tex(txex-bar.afm) = %{tl_version} -Provides: tex(txex-bar.pfb) = %{tl_version} Provides: tex(txex-bar.tfm) = %{tl_version} -Provides: tex(txexs.afm) = %{tl_version} -Provides: tex(txexs.pfb) = %{tl_version} -Provides: tex(txexs.tfm) = %{tl_version} -Provides: tex(txmiaSTbb.afm) = %{tl_version} -Provides: tex(txmiaSTbb.pfb) = %{tl_version} -Provides: tex(txmiaSTbb.tfm) = %{tl_version} -Provides: tex(txmiaX.afm) = %{tl_version} -Provides: tex(txmiaX.pfb) = %{tl_version} -Provides: tex(txmiaX.tfm) = %{tl_version} -Provides: tex(txsy5.pfb) = %{tl_version} Provides: tex(txsy5.tfm) = %{tl_version} -Provides: tex(txsy7.pfb) = %{tl_version} Provides: tex(txsy7.tfm) = %{tl_version} -Provides: tex(txsys.afm) = %{tl_version} -Provides: tex(txsys.pfb) = %{tl_version} -Provides: tex(txsys.tfm) = %{tl_version} -Provides: tex(untxebgmia.fd) = %{tl_version} -Provides: tex(untxexa.fd) = %{tl_version} -Provides: tex(untxmia.fd) = %{tl_version} -Provides: tex(untxsyc.fd) = %{tl_version} -Provides: tex(untxsym.fd) = %{tl_version} -Provides: tex(untxtt.fd) = %{tl_version} -Provides: tex(uzmnmia.fd) = %{tl_version} -Provides: tex(zmn.map) = %{tl_version} -Provides: tex(zmn-vw-b.pfb) = %{tl_version} Provides: tex(zmn-vw-b.tfm) = %{tl_version} -Provides: tex(zmn-vw-r.pfb) = %{tl_version} Provides: tex(zmn-vw-r.tfm) = %{tl_version} -Provides: tex(zutbmia.tfm) = %{tl_version} -Provides: tex(zutbmia.vf) = %{tl_version} Provides: tex(zutbmi.tfm) = %{tl_version} -Provides: tex(zutbmi.vf) = %{tl_version} -Provides: tex(zutmia.tfm) = %{tl_version} -Provides: tex(zutmia.vf) = %{tl_version} Provides: tex(zutmi.tfm) = %{tl_version} -Provides: tex(zutmi.vf) = %{tl_version} -Provides: tex(zxlr-5nums.pfb) = %{tl_version} Provides: tex(zxlr-5nums.tfm) = %{tl_version} -Provides: tex(zxlr-7nums.pfb) = %{tl_version} Provides: tex(zxlr-7nums.tfm) = %{tl_version} Provides: tex(zxlr-8r.tfm) = %{tl_version} Provides: tex(zxlr-caps.tfm) = %{tl_version} Provides: tex(zxlri-8r.tfm) = %{tl_version} -Provides: tex(zxlri.pfb) = %{tl_version} -Provides: tex(zxlr.pfb) = %{tl_version} Provides: tex(zxlz-8r.tfm) = %{tl_version} Provides: tex(zxlz-caps.tfm) = %{tl_version} Provides: tex(zxlzi-8r.tfm) = %{tl_version} -Provides: tex(zxlzi.pfb) = %{tl_version} +Provides: tex(Libertine-nu.pfb) = %{tl_version} +Provides: tex(LibertineI-5nu.pfb) = %{tl_version} +Provides: tex(LibertineI-7nu.pfb) = %{tl_version} +Provides: tex(LibertineI-nu.pfb) = %{tl_version} +Provides: tex(LibertineTheta-Regular.pfb) = %{tl_version} +Provides: tex(LibertineZ-nu.pfb) = %{tl_version} +Provides: tex(LibertineZI-5nu.pfb) = %{tl_version} +Provides: tex(LibertineZI-7nu.pfb) = %{tl_version} +Provides: tex(LibertineZI-nu.pfb) = %{tl_version} +Provides: tex(MinLibBol.pfb) = %{tl_version} +Provides: tex(MinLibBolIta.pfb) = %{tl_version} +Provides: tex(MinLibIta.pfb) = %{tl_version} +Provides: tex(MinLibReg.pfb) = %{tl_version} +Provides: tex(fxlri-5letters.pfb) = %{tl_version} +Provides: tex(fxlri-7letters.pfb) = %{tl_version} +Provides: tex(fxlri-vw.pfb) = %{tl_version} +Provides: tex(fxlri-vw5.pfb) = %{tl_version} +Provides: tex(fxlri-vw7.pfb) = %{tl_version} +Provides: tex(fxlzi-5letters.pfb) = %{tl_version} +Provides: tex(fxlzi-7letters.pfb) = %{tl_version} +Provides: tex(fxlzi-jv.pfb) = %{tl_version} +Provides: tex(fxlzi-jv5.pfb) = %{tl_version} +Provides: tex(fxlzi-jv7.pfb) = %{tl_version} +Provides: tex(fxlzi-vw.pfb) = %{tl_version} +Provides: tex(fxlzi-vw5.pfb) = %{tl_version} +Provides: tex(fxlzi-vw7.pfb) = %{tl_version} +Provides: tex(ntxbexb.pfb) = %{tl_version} +Provides: tex(ntxbexmods.pfb) = %{tl_version} +Provides: tex(ntxexb.pfb) = %{tl_version} +Provides: tex(ntxexmods.pfb) = %{tl_version} +Provides: tex(ntxsups-Bold.pfb) = %{tl_version} +Provides: tex(ntxsups-BoldItalic.pfb) = %{tl_version} +Provides: tex(ntxsups-Italic.pfb) = %{tl_version} +Provides: tex(ntxsups-Regular.pfb) = %{tl_version} +Provides: tex(ntxsybalt.pfb) = %{tl_version} +Provides: tex(ntxsyralt.pfb) = %{tl_version} +Provides: tex(ntxtmb.pfb) = %{tl_version} +Provides: tex(ntxtmbi.pfb) = %{tl_version} +Provides: tex(ntxtmr.pfb) = %{tl_version} +Provides: tex(ntxtmri.pfb) = %{tl_version} +Provides: tex(rntxbmi.pfb) = %{tl_version} +Provides: tex(rntxbmi5.pfb) = %{tl_version} +Provides: tex(rntxbmi7.pfb) = %{tl_version} +Provides: tex(rntxmi.pfb) = %{tl_version} +Provides: tex(rntxmi5.pfb) = %{tl_version} +Provides: tex(rntxmi7.pfb) = %{tl_version} +Provides: tex(rtxbmi-rev.pfb) = %{tl_version} +Provides: tex(rtxbmi5-rev.pfb) = %{tl_version} +Provides: tex(rtxbmi5.pfb) = %{tl_version} +Provides: tex(rtxbmi7-rev.pfb) = %{tl_version} +Provides: tex(rtxbmi7.pfb) = %{tl_version} +Provides: tex(rtxmi5.pfb) = %{tl_version} +Provides: tex(rtxmi7.pfb) = %{tl_version} +Provides: tex(txbex-bar.pfb) = %{tl_version} +Provides: tex(txbsy5.pfb) = %{tl_version} +Provides: tex(txbsy7.pfb) = %{tl_version} +Provides: tex(txex-bar.pfb) = %{tl_version} +Provides: tex(txsy5.pfb) = %{tl_version} +Provides: tex(txsy7.pfb) = %{tl_version} +Provides: tex(zmn-vw-b.pfb) = %{tl_version} +Provides: tex(zmn-vw-r.pfb) = %{tl_version} +Provides: tex(zxlr-5nums.pfb) = %{tl_version} +Provides: tex(zxlr-7nums.pfb) = %{tl_version} +Provides: tex(zxlr.pfb) = %{tl_version} +Provides: tex(zxlri.pfb) = %{tl_version} Provides: tex(zxlz.pfb) = %{tl_version} +Provides: tex(zxlzi.pfb) = %{tl_version} +Provides: tex(ntxbexa.vf) = %{tl_version} +Provides: tex(ntxbexx.vf) = %{tl_version} +Provides: tex(ntxbmi.vf) = %{tl_version} +Provides: tex(ntxbmi1.vf) = %{tl_version} +Provides: tex(ntxbmi15.vf) = %{tl_version} +Provides: tex(ntxbmi17.vf) = %{tl_version} +Provides: tex(ntxbmi1x.vf) = %{tl_version} +Provides: tex(ntxbmi5.vf) = %{tl_version} +Provides: tex(ntxbmi7.vf) = %{tl_version} +Provides: tex(ntxbmia.vf) = %{tl_version} +Provides: tex(ntxbsy.vf) = %{tl_version} +Provides: tex(ntxbsy5.vf) = %{tl_version} +Provides: tex(ntxbsy7.vf) = %{tl_version} +Provides: tex(ntxbsyc.vf) = %{tl_version} +Provides: tex(ntxbsym.vf) = %{tl_version} +Provides: tex(ntxexa.vf) = %{tl_version} +Provides: tex(ntxexx.vf) = %{tl_version} +Provides: tex(ntxmi.vf) = %{tl_version} +Provides: tex(ntxmi1.vf) = %{tl_version} +Provides: tex(ntxmi15.vf) = %{tl_version} +Provides: tex(ntxmi17.vf) = %{tl_version} +Provides: tex(ntxmi5.vf) = %{tl_version} +Provides: tex(ntxmi7.vf) = %{tl_version} +Provides: tex(ntxmia.vf) = %{tl_version} +Provides: tex(ntxsy.vf) = %{tl_version} +Provides: tex(ntxsy5.vf) = %{tl_version} +Provides: tex(ntxsy7.vf) = %{tl_version} +Provides: tex(ntxsyc.vf) = %{tl_version} +Provides: tex(ntxsym.vf) = %{tl_version} +Provides: tex(nxlbmi.vf) = %{tl_version} +Provides: tex(nxlbmi0.vf) = %{tl_version} +Provides: tex(nxlbmi01.vf) = %{tl_version} +Provides: tex(nxlbmi015.vf) = %{tl_version} +Provides: tex(nxlbmi017.vf) = %{tl_version} +Provides: tex(nxlbmi02.vf) = %{tl_version} +Provides: tex(nxlbmi025.vf) = %{tl_version} +Provides: tex(nxlbmi027.vf) = %{tl_version} +Provides: tex(nxlbmi03.vf) = %{tl_version} +Provides: tex(nxlbmi035.vf) = %{tl_version} +Provides: tex(nxlbmi037.vf) = %{tl_version} +Provides: tex(nxlbmi05.vf) = %{tl_version} +Provides: tex(nxlbmi07.vf) = %{tl_version} +Provides: tex(nxlbmi1.vf) = %{tl_version} +Provides: tex(nxlbmi15.vf) = %{tl_version} +Provides: tex(nxlbmi17.vf) = %{tl_version} +Provides: tex(nxlbmi2.vf) = %{tl_version} +Provides: tex(nxlbmi25.vf) = %{tl_version} +Provides: tex(nxlbmi27.vf) = %{tl_version} +Provides: tex(nxlbmi3.vf) = %{tl_version} +Provides: tex(nxlbmi35.vf) = %{tl_version} +Provides: tex(nxlbmi37.vf) = %{tl_version} +Provides: tex(nxlbmi5.vf) = %{tl_version} +Provides: tex(nxlbmi7.vf) = %{tl_version} +Provides: tex(nxlbmia.vf) = %{tl_version} +Provides: tex(nxlbsy5.vf) = %{tl_version} +Provides: tex(nxlbsy7.vf) = %{tl_version} +Provides: tex(nxlmi.vf) = %{tl_version} +Provides: tex(nxlmi0.vf) = %{tl_version} +Provides: tex(nxlmi01.vf) = %{tl_version} +Provides: tex(nxlmi015.vf) = %{tl_version} +Provides: tex(nxlmi017.vf) = %{tl_version} +Provides: tex(nxlmi02.vf) = %{tl_version} +Provides: tex(nxlmi025.vf) = %{tl_version} +Provides: tex(nxlmi027.vf) = %{tl_version} +Provides: tex(nxlmi03.vf) = %{tl_version} +Provides: tex(nxlmi035.vf) = %{tl_version} +Provides: tex(nxlmi037.vf) = %{tl_version} +Provides: tex(nxlmi05.vf) = %{tl_version} +Provides: tex(nxlmi07.vf) = %{tl_version} +Provides: tex(nxlmi1.vf) = %{tl_version} +Provides: tex(nxlmi15.vf) = %{tl_version} +Provides: tex(nxlmi17.vf) = %{tl_version} +Provides: tex(nxlmi2.vf) = %{tl_version} +Provides: tex(nxlmi25.vf) = %{tl_version} +Provides: tex(nxlmi27.vf) = %{tl_version} +Provides: tex(nxlmi3.vf) = %{tl_version} +Provides: tex(nxlmi35.vf) = %{tl_version} +Provides: tex(nxlmi37.vf) = %{tl_version} +Provides: tex(nxlmi5.vf) = %{tl_version} +Provides: tex(nxlmi7.vf) = %{tl_version} +Provides: tex(nxlmia.vf) = %{tl_version} +Provides: tex(nxlsy5.vf) = %{tl_version} +Provides: tex(nxlsy7.vf) = %{tl_version} +Provides: tex(zutbmi.vf) = %{tl_version} +Provides: tex(zutmi.vf) = %{tl_version} +Provides: tex(ly1minlibertine.fd) = %{tl_version} +Provides: tex(ly1ntxlf.fd) = %{tl_version} +Provides: tex(ly1ntxosf.fd) = %{tl_version} +Provides: tex(ly1ntxsups.fd) = %{tl_version} +Provides: tex(ly1ntxtlf.fd) = %{tl_version} +Provides: tex(ly1ntxtosf.fd) = %{tl_version} +Provides: tex(ly1ntxtt.fd) = %{tl_version} +Provides: tex(newtxmath.sty) = %{tl_version} +Provides: tex(newtxtext.sty) = %{tl_version} +Provides: tex(omlntxmi.fd) = %{tl_version} +Provides: tex(omlnxlmi.fd) = %{tl_version} +Provides: tex(omlzbvmi.fd) = %{tl_version} +Provides: tex(omlzmnmi.fd) = %{tl_version} +Provides: tex(omlzutmi.fd) = %{tl_version} +Provides: tex(ot1minlibertine.fd) = %{tl_version} +Provides: tex(ot1ntxlf.fd) = %{tl_version} +Provides: tex(ot1ntxosf.fd) = %{tl_version} +Provides: tex(ot1ntxsups.fd) = %{tl_version} +Provides: tex(ot1ntxtlf.fd) = %{tl_version} +Provides: tex(ot1ntxtosf.fd) = %{tl_version} +Provides: tex(ot1ntxtt.fd) = %{tl_version} +Provides: tex(t1fxl1.fd) = %{tl_version} +Provides: tex(t1minlibertine.fd) = %{tl_version} +Provides: tex(t1ntxlf.fd) = %{tl_version} +Provides: tex(t1ntxosf.fd) = %{tl_version} +Provides: tex(t1ntxsups.fd) = %{tl_version} +Provides: tex(t1ntxtlf.fd) = %{tl_version} +Provides: tex(t1ntxtosf.fd) = %{tl_version} +Provides: tex(t1ntxtt.fd) = %{tl_version} +Provides: tex(ts1ntxlf.fd) = %{tl_version} +Provides: tex(ts1ntxosf.fd) = %{tl_version} +Provides: tex(ts1ntxtlf.fd) = %{tl_version} +Provides: tex(ts1ntxtosf.fd) = %{tl_version} +Provides: tex(ts1ntxtt.fd) = %{tl_version} +Provides: tex(untxexa.fd) = %{tl_version} +Provides: tex(untxmia.fd) = %{tl_version} +Provides: tex(untxsyc.fd) = %{tl_version} +Provides: tex(untxsym.fd) = %{tl_version} +Provides: tex(untxtt.fd) = %{tl_version} +Provides: tex(uzmnmia.fd) = %{tl_version} %description newtx The bundle splits txfonts.sty (from the TX fonts distribution) @@ -66597,7 +66086,7 @@ maths combination. %package newtx-doc Summary: Documentation for newtx -Version: svn53549 +Version: svn45279 Provides: tex-newtx-doc AutoReqProv: No @@ -67147,7 +66636,7 @@ Documentation for oldlatin Provides: tex-oldstandard = %{tl_version} License: OFL Summary: Old Standard: A Unicode Font for Classical and Medieval Studies -Version: svn51741 +Version: svn41735 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea # A bit of a lie, but we want people who install texlive-oldstandard to end up with the system fonts. @@ -67171,7 +66660,7 @@ as XeTeX and LuaTeX. %package oldstandard-doc Summary: Documentation for oldstandard -Version: svn51741 +Version: svn41735 Provides: tex-oldstandard-doc AutoReqProv: No @@ -67182,10 +66671,13 @@ Documentation for oldstandard Provides: tex-opensans = %{tl_version} License: LPPL 1.3 Summary: The Open Sans font family, and LaTeX support -Version: svn51458 +Version: svn24706.1.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(keyval.sty) Requires: tex(slantsc.sty) Provides: tex(opensans-01.enc) = %{tl_version} @@ -67990,7 +67482,8 @@ support with dvips %package opensans-doc Summary: Documentation for opensans -Version: svn51458 +Version: svn24706.1.2 + Provides: tex-opensans-doc AutoReqProv: No @@ -68030,10 +67523,13 @@ Documentation for orkhun Provides: tex-overlock = %{tl_version} License: OFL Summary: Overlook sans fonts with LaTeX support -Version: svn51294 +Version: svn34409.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Requires: tex(xkeyval.sty) @@ -68155,7 +67651,8 @@ in the Regular weight. %package overlock-doc Summary: Documentation for overlock -Version: svn51294 +Version: svn34409.0 + Provides: tex-overlock-doc AutoReqProv: No @@ -70347,7 +69844,7 @@ Provides: tex(utx-of.fd) = %{tl_version} %description pxtxalfa The package provides virtual math alphabets based on pxfonts and txfonts, with LaTeX support files and adjusted metrics. The -mathalpha package offers support for this collection. +mathalfa package offers support for this collection. %package pxtxalfa-doc Summary: Documentation for pxtxalfa @@ -70363,10 +69860,13 @@ Documentation for pxtxalfa Provides: tex-quattrocento = %{tl_version} License: LPPL Summary: LaTeX support for Quattrocento and Quattrocento Sans fonts -Version: svn50729 +Version: svn31763.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Requires: tex(textcomp.sty) @@ -70620,7 +70120,8 @@ sans-serif companion for Quattrocento. %package quattrocento-doc Summary: Documentation for quattrocento -Version: svn50729 +Version: svn31763.0 + Provides: tex-quattrocento-doc AutoReqProv: No @@ -71439,10 +70940,13 @@ Documentation for recycle Provides: tex-roboto = %{tl_version} License: ASL 2.0 Summary: Support for the Roboto family of fonts -Version: svn51315 +Version: svn38386 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Requires: tex(xkeyval.sty) @@ -72982,7 +72486,8 @@ of fonts, designed by Christian Robertson for Google. %package roboto-doc Summary: Documentation for roboto -Version: svn51315 +Version: svn38386 + Provides: tex-roboto-doc AutoReqProv: No @@ -73199,7 +72704,7 @@ Documentation for sansmathaccent Provides: tex-sansmathfonts = %{tl_version} License: LPPL 1.3 Summary: Correct placement of accents in sans-serif maths -Version: svn51356 +Version: svn43252 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -73562,7 +73067,7 @@ Modern. %package sansmathfonts-doc Summary: Documentation for sansmathfonts -Version: svn51356 +Version: svn43252 Provides: tex-sansmathfonts-doc AutoReqProv: No @@ -73848,10 +73353,13 @@ available as a symbol in maths mode. Provides: tex-sourcecodepro = %{tl_version} License: OFL Summary: Use SourceCodePro with TeX(-alike) systems -Version: svn51163 +Version: svn40597 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(fontenc.sty) Requires: tex(textcomp.sty) Requires: tex(mweights.sty) @@ -74460,7 +73968,8 @@ XeLaTeX/LuaLaTeX (OTF). %package sourcecodepro-doc Summary: Documentation for sourcecodepro -Version: svn51163 +Version: svn40597 + Provides: tex-sourcecodepro-doc AutoReqProv: No @@ -75641,10 +75150,13 @@ Documentation for sourcesanspro Provides: tex-sourceserifpro = %{tl_version} License: OFL Summary: Use SourceSerifPro with TeX(-alike) systems -Version: svn49120 +Version: svn40598 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(fontenc.sty) Requires: tex(textcomp.sty) Requires: tex(mweights.sty) @@ -76386,7 +75898,8 @@ sourceserifpro/issues) or emailed to tex@slxh.nl. %package sourceserifpro-doc Summary: Documentation for sourceserifpro -Version: svn49120 +Version: svn40598 + Provides: tex-sourceserifpro-doc AutoReqProv: No @@ -76464,10 +75977,13 @@ Documentation for staves Provides: tex-stix = %{tl_version} License: OFL Summary: OpenType Unicode maths fonts -Version: svn47652 +Version: svn36914.1.1.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(textcomp.sty) # A bit of a lie, but we want people who install texlive-stix to get the system fonts too Requires: stix-fonts stix-math-fonts @@ -76594,7 +76110,8 @@ available in the esstix bundle. %package stix-doc Summary: Documentation for stix -Version: svn47652 +Version: svn36914.1.1.2 + Provides: tex-stix-doc AutoReqProv: No @@ -78046,7 +77563,7 @@ Documentation for wsuipa Provides: tex-xcharter = %{tl_version} License: MIT Summary: Extension of Bitstream Charter fonts -Version: svn51816 +Version: svn45369 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -78058,885 +77575,341 @@ Requires: tex(fontaxes.sty) Requires: tex(xkeyval.sty) Provides: tex(chalph.enc) = %{tl_version} Provides: tex(chtabosf.enc) = %{tl_version} -Provides: tex(LY1XCharter-Dnom.fd) = %{tl_version} -Provides: tex(LY1XCharter-Inf.fd) = %{tl_version} -Provides: tex(LY1XCharter-Numr.fd) = %{tl_version} -Provides: tex(LY1XCharter-Sup.fd) = %{tl_version} -Provides: tex(LY1XCharter-TLF.fd) = %{tl_version} -Provides: tex(LY1XCharter-TOsF.fd) = %{tl_version} -Provides: tex(omlzchmi.fd) = %{tl_version} -Provides: tex(OT1XCharter-Dnom.fd) = %{tl_version} -Provides: tex(OT1XCharter-Inf.fd) = %{tl_version} -Provides: tex(OT1XCharter-Numr.fd) = %{tl_version} -Provides: tex(OT1XCharter-Sup.fd) = %{tl_version} -Provides: tex(OT1XCharter-TLF.fd) = %{tl_version} -Provides: tex(OT1XCharter-TOsF.fd) = %{tl_version} -Provides: tex(OT2XCharter-TLF.fd) = %{tl_version} -Provides: tex(T1XCharter-Dnom.fd) = %{tl_version} -Provides: tex(T1XCharter-Inf.fd) = %{tl_version} -Provides: tex(T1XCharter-Numr.fd) = %{tl_version} -Provides: tex(T1XCharter-Sup.fd) = %{tl_version} -Provides: tex(T1XCharter-TLF.fd) = %{tl_version} -Provides: tex(T1XCharter-TOsF.fd) = %{tl_version} -Provides: tex(t2asrbenc.def) = %{tl_version} -Provides: tex(T2ASRBXCharter-Sup.fd) = %{tl_version} -Provides: tex(T2ASRBXCharter-TLF.fd) = %{tl_version} -Provides: tex(T2ASRBXCharter-TOsF.fd) = %{tl_version} -Provides: tex(T2AXCharter-Sup.fd) = %{tl_version} -Provides: tex(T2AXCharter-TLF.fd) = %{tl_version} -Provides: tex(T2AXCharter-TOsF.fd) = %{tl_version} -Provides: tex(TS1XCharter-TLF.fd) = %{tl_version} -Provides: tex(TS1XCharter-TOsF.fd) = %{tl_version} -Provides: tex(xch1_3v4tq3.enc) = %{tl_version} -Provides: tex(xch1_44t6zc.enc) = %{tl_version} -Provides: tex(xch1_4yv27g.enc) = %{tl_version} -Provides: tex(xch1_5xfeuz.enc) = %{tl_version} -Provides: tex(xch1_62ztbr.enc) = %{tl_version} -Provides: tex(xch1_7f2u2e.enc) = %{tl_version} -Provides: tex(xch1_7p4e2o.enc) = %{tl_version} -Provides: tex(xch1_a4gtyr.enc) = %{tl_version} -Provides: tex(xch1_b43rqs.enc) = %{tl_version} -Provides: tex(xch1_bcg6lk.enc) = %{tl_version} -Provides: tex(xch1_bpv7ty.enc) = %{tl_version} -Provides: tex(xch1_e3nxtd.enc) = %{tl_version} -Provides: tex(xch1_edxqyc.enc) = %{tl_version} -Provides: tex(xch1_erwtw3.enc) = %{tl_version} -Provides: tex(xch1_evj3rb.enc) = %{tl_version} -Provides: tex(xch1_h7bh7r.enc) = %{tl_version} -Provides: tex(xch1_i3mpjp.enc) = %{tl_version} -Provides: tex(xch1_j3hr3h.enc) = %{tl_version} -Provides: tex(xch1_q7u3cc.enc) = %{tl_version} -Provides: tex(xch1_qdfne6.enc) = %{tl_version} -Provides: tex(xch1_uh3kut.enc) = %{tl_version} -Provides: tex(xch1_wwsmtw.enc) = %{tl_version} -Provides: tex(xch1_xwsv67.enc) = %{tl_version} -Provides: tex(xch1_yz7cd7.enc) = %{tl_version} -Provides: tex(xch_3v4tq3.enc) = %{tl_version} -Provides: tex(xch_3xm3i2.enc) = %{tl_version} -Provides: tex(xch_44t6zc.enc) = %{tl_version} -Provides: tex(xch_4frzvl.enc) = %{tl_version} -Provides: tex(xch_4siibn.enc) = %{tl_version} -Provides: tex(xch_4yv27g.enc) = %{tl_version} -Provides: tex(xch_5xfeuz.enc) = %{tl_version} -Provides: tex(xch_62ztbr.enc) = %{tl_version} -Provides: tex(xch_67xua3.enc) = %{tl_version} -Provides: tex(xch_6e6bv3.enc) = %{tl_version} -Provides: tex(xch_7f2u2e.enc) = %{tl_version} -Provides: tex(xch_7hqniv.enc) = %{tl_version} -Provides: tex(xch_7moowb.enc) = %{tl_version} -Provides: tex(xch_7p4e2o.enc) = %{tl_version} -Provides: tex(xch_7vau5m.enc) = %{tl_version} -Provides: tex(xch_a4gtyr.enc) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-sc-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-sc-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter1-BoldSlanted-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-sc-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter1-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-sc-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter1-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-sc-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter1-Roman-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-sc-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-t2a.vf) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter1-Slanted-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter-Bold.afm) = %{tl_version} -Provides: tex(XCharter-Bold-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-dnom-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-dnom-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-dnom-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-dnom-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-dnom-t1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-inf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-inf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-inf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-inf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-inf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-inf-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic.afm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-dnom-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-dnom-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-dnom-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-dnom-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-dnom-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-inf-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-numr-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-numr-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-numr-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-numr-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-numr-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-numr-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic.otf) = %{tl_version} -Provides: tex(XCharter-BoldItalic.pfb) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ot1G.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ot1G.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ot2.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-numr-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-numr-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-numr-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-numr-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-numr-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-numr-t1.vf) = %{tl_version} +Provides: tex(xch1_bwwzc2.enc) = %{tl_version} +Provides: tex(xch1_ch2jyx.enc) = %{tl_version} +Provides: tex(xch1_d2abnl.enc) = %{tl_version} +Provides: tex(xch1_gq3a6i.enc) = %{tl_version} +Provides: tex(xch1_jfcsri.enc) = %{tl_version} +Provides: tex(xch1_jltj6c.enc) = %{tl_version} +Provides: tex(xch1_ks4pfu.enc) = %{tl_version} +Provides: tex(xch1_lq6vvn.enc) = %{tl_version} +Provides: tex(xch1_sq3mdu.enc) = %{tl_version} +Provides: tex(xch1_w7s2xk.enc) = %{tl_version} +Provides: tex(xch1_wy7dbt.enc) = %{tl_version} +Provides: tex(xch1_zcck2t.enc) = %{tl_version} +Provides: tex(xch_2663q7.enc) = %{tl_version} +Provides: tex(xch_2b3ply.enc) = %{tl_version} +Provides: tex(xch_aprite.enc) = %{tl_version} +Provides: tex(xch_atk3my.enc) = %{tl_version} +Provides: tex(xch_bwwzc2.enc) = %{tl_version} +Provides: tex(xch_ch2jyx.enc) = %{tl_version} +Provides: tex(xch_d2abnl.enc) = %{tl_version} +Provides: tex(xch_eofewb.enc) = %{tl_version} +Provides: tex(xch_ft2zfi.enc) = %{tl_version} +Provides: tex(xch_gq3a6i.enc) = %{tl_version} +Provides: tex(xch_h3miu6.enc) = %{tl_version} +Provides: tex(xch_hoftv6.enc) = %{tl_version} +Provides: tex(xch_jfcsri.enc) = %{tl_version} +Provides: tex(xch_jltj6c.enc) = %{tl_version} +Provides: tex(xch_kdlizx.enc) = %{tl_version} +Provides: tex(xch_ks4pfu.enc) = %{tl_version} +Provides: tex(xch_lq6vvn.enc) = %{tl_version} +Provides: tex(xch_sq3mdu.enc) = %{tl_version} +Provides: tex(xch_tdq2l3.enc) = %{tl_version} +Provides: tex(xch_tuu2ww.enc) = %{tl_version} +Provides: tex(xch_uoltgb.enc) = %{tl_version} +Provides: tex(xch_w7s2xk.enc) = %{tl_version} +Provides: tex(xch_wy7dbt.enc) = %{tl_version} +Provides: tex(xch_y6sx2d.enc) = %{tl_version} +Provides: tex(xch_zcck2t.enc) = %{tl_version} +Provides: tex(XCharter.map) = %{tl_version} Provides: tex(XCharter-Bold.otf) = %{tl_version} -Provides: tex(XCharter-Bold.pfb) = %{tl_version} -Provides: tex(XCharter-BoldSlanted.afm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-dnom-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-dnom-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-dnom-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-dnom-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-dnom-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-inf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-inf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-inf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-inf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-inf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-inf-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-numr-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-numr-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-numr-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-numr-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-numr-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-numr-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted.otf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted.pfb) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-sup-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-ot2.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tlf-ts1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-BoldSlanted-tosf-ts1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic.otf) = %{tl_version} +Provides: tex(XCharter-Italic.otf) = %{tl_version} +Provides: tex(XCharter-Roman.otf) = %{tl_version} +Provides: tex(XCharter-Bol-osf.tfm) = %{tl_version} +Provides: tex(XCharter-BolIta-alph.tfm) = %{tl_version} Provides: tex(XCharter-Bold-sup-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-sup-ly1.vf) = %{tl_version} Provides: tex(XCharter-Bold-sup-ot1.tfm) = %{tl_version} Provides: tex(XCharter-Bold-sup-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-sup-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-sup-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-sup-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Bold-sup-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-ot1G.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-ot1G.vf) = %{tl_version} Provides: tex(XCharter-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-ot2.tfm) = %{tl_version} +Provides: tex(XCharter-Bold-tlf-ot1G.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-sc-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-sc-ly1.vf) = %{tl_version} Provides: tex(XCharter-Bold-tlf-sc-ot1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-sc-ot1.vf) = %{tl_version} Provides: tex(XCharter-Bold-tlf-sc-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-sc-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-ts1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tlf-ts1.vf) = %{tl_version} Provides: tex(XCharter-Bold-tosf-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-ly1.vf) = %{tl_version} Provides: tex(XCharter-Bold-tosf-ot1.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-sc-ly1.vf) = %{tl_version} Provides: tex(XCharter-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-sc-ot1.vf) = %{tl_version} Provides: tex(XCharter-Bold-tosf-sc-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-sc-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-ts1--base.tfm) = %{tl_version} Provides: tex(XCharter-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter-BolIta-alph.tfm) = %{tl_version} -Provides: tex(XCharter-Bol-osf.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-sup-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-sup-ly1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-sup-ot1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-sup-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-sup-t1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ly1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ot1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ot1G.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-ly1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-ot1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-t1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-t1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ts1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-ly1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-ot1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-t1.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-ts1.tfm) = %{tl_version} Provides: tex(XCharter-Ita-alph.tfm) = %{tl_version} -Provides: tex(XCharter-Italic.afm) = %{tl_version} -Provides: tex(XCharter-Italic-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-dnom-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-dnom-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-dnom-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-dnom-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-dnom-t1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-inf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-inf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-inf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-inf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-inf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-numr-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-numr-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-numr-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-numr-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-numr-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-numr-t1.vf) = %{tl_version} -Provides: tex(XCharter-Italic.otf) = %{tl_version} -Provides: tex(XCharter-Italic.pfb) = %{tl_version} Provides: tex(XCharter-Italic-sup-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-sup-ly1.vf) = %{tl_version} Provides: tex(XCharter-Italic-sup-ot1.tfm) = %{tl_version} Provides: tex(XCharter-Italic-sup-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-sup-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-sup-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-sup-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Italic-sup-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-ot1G.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-ot1G.vf) = %{tl_version} Provides: tex(XCharter-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-ot2.tfm) = %{tl_version} +Provides: tex(XCharter-Italic-tlf-ot1G.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-sc-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-sc-ly1.vf) = %{tl_version} Provides: tex(XCharter-Italic-tlf-sc-ot1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-sc-ot1.vf) = %{tl_version} Provides: tex(XCharter-Italic-tlf-sc-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-sc-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-ts1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tlf-ts1.vf) = %{tl_version} Provides: tex(XCharter-Italic-tosf-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-ly1.vf) = %{tl_version} Provides: tex(XCharter-Italic-tosf-ot1.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-sc-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-sc-ly1.vf) = %{tl_version} Provides: tex(XCharter-Italic-tosf-sc-ot1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-sc-ot1.vf) = %{tl_version} Provides: tex(XCharter-Italic-tosf-sc-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-sc-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-ts1--base.tfm) = %{tl_version} Provides: tex(XCharter-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter.map) = %{tl_version} -Provides: tex(XCharterMathBMI.afm) = %{tl_version} -Provides: tex(XCharterMathBMI.pfb) = %{tl_version} -Provides: tex(XCharterMathBMI.tfm) = %{tl_version} -Provides: tex(XCharterMathBRM.afm) = %{tl_version} -Provides: tex(XCharterMathBRM.pfb) = %{tl_version} -Provides: tex(XCharterMathBRM.tfm) = %{tl_version} -Provides: tex(XCharterMathMI.afm) = %{tl_version} -Provides: tex(XCharterMathMI.pfb) = %{tl_version} -Provides: tex(XCharterMathMI.tfm) = %{tl_version} -Provides: tex(XCharterMathRM.afm) = %{tl_version} -Provides: tex(XCharterMathRM.pfb) = %{tl_version} -Provides: tex(XCharterMathRM.tfm) = %{tl_version} -Provides: tex(XCharter-osf.tfm) = %{tl_version} -Provides: tex(xcharter-ot2.enc) = %{tl_version} -Provides: tex(XCharter-Roman.afm) = %{tl_version} -Provides: tex(XCharter-Roman-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-dnom-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-dnom-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-dnom-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-dnom-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-dnom-t1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-inf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-inf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-inf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-inf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-inf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-inf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-numr-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-numr-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-numr-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-numr-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-numr-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-numr-t1.vf) = %{tl_version} -Provides: tex(XCharter-Roman.otf) = %{tl_version} -Provides: tex(XCharter-Roman.pfb) = %{tl_version} Provides: tex(XCharter-Roman-sup-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-sup-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-sup-ly1.vf) = %{tl_version} Provides: tex(XCharter-Roman-sup-ot1.tfm) = %{tl_version} Provides: tex(XCharter-Roman-sup-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-sup-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-sup-t1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-sup-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-sup-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-sup-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Roman-sup-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-ot1G.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-ot1G.vf) = %{tl_version} Provides: tex(XCharter-Roman-tlf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-ot2.tfm) = %{tl_version} +Provides: tex(XCharter-Roman-tlf-ot1G.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-sc-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-sc-ly1.vf) = %{tl_version} Provides: tex(XCharter-Roman-tlf-sc-ot1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-sc-ot1.vf) = %{tl_version} Provides: tex(XCharter-Roman-tlf-sc-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-sc-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-ts1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tlf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tlf-ts1.vf) = %{tl_version} Provides: tex(XCharter-Roman-tosf-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-ly1.vf) = %{tl_version} Provides: tex(XCharter-Roman-tosf-ot1.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-sc-ly1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-sc-ly1.vf) = %{tl_version} Provides: tex(XCharter-Roman-tosf-sc-ot1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-sc-ot1.vf) = %{tl_version} Provides: tex(XCharter-Roman-tosf-sc-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-sc-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-t1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-t2a.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-ts1--base.tfm) = %{tl_version} Provides: tex(XCharter-Roman-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-Roman-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted.afm) = %{tl_version} -Provides: tex(XCharter-Slanted-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-dnom-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-dnom-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-dnom-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-dnom-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-dnom-t1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-inf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-inf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-inf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-inf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-inf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-inf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-numr-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-numr-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-numr-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-numr-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-numr-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-numr-t1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted.otf) = %{tl_version} -Provides: tex(XCharter-Slanted.pfb) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-t1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-sup-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-ot2.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tlf-ts1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-t1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-t1.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-t2asrb--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-t2asrb.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-t2asrb.vf) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-t2a.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-ts1.tfm) = %{tl_version} -Provides: tex(XCharter-Slanted-tosf-ts1.vf) = %{tl_version} -Provides: tex(XCharter.sty) = %{tl_version} -Provides: tex(xcharter.tlpobj) = %{tl_version} -Provides: tex(xch_b43rqs.enc) = %{tl_version} -Provides: tex(xch_bcg6lk.enc) = %{tl_version} -Provides: tex(xch_bk4eiy.enc) = %{tl_version} -Provides: tex(xch_bpv7ty.enc) = %{tl_version} -Provides: tex(xch_ch4v2b.enc) = %{tl_version} -Provides: tex(xch_dcwqct.enc) = %{tl_version} -Provides: tex(xch_e3nxtd.enc) = %{tl_version} -Provides: tex(xch_edxqyc.enc) = %{tl_version} -Provides: tex(xch_erwtw3.enc) = %{tl_version} -Provides: tex(xch_evj3rb.enc) = %{tl_version} -Provides: tex(xch_fp7vyz.enc) = %{tl_version} -Provides: tex(xch_ghovd2.enc) = %{tl_version} -Provides: tex(xch_gqxjho.enc) = %{tl_version} -Provides: tex(xch_h2xo5a.enc) = %{tl_version} -Provides: tex(xch_h2zq5d.enc) = %{tl_version} -Provides: tex(xch_h7bh7r.enc) = %{tl_version} -Provides: tex(xch_hk5uz5.enc) = %{tl_version} -Provides: tex(xch_hnm3ex.enc) = %{tl_version} -Provides: tex(xch_i3mpjp.enc) = %{tl_version} -Provides: tex(xch_iivqwt.enc) = %{tl_version} -Provides: tex(xch_j3hr3h.enc) = %{tl_version} -Provides: tex(xch_j65gg5.enc) = %{tl_version} -Provides: tex(xch_jdrr2i.enc) = %{tl_version} -Provides: tex(xch_jss6t5.enc) = %{tl_version} -Provides: tex(xch_l3qg6a.enc) = %{tl_version} -Provides: tex(xch_lotb2t.enc) = %{tl_version} -Provides: tex(xch_nyk6di.enc) = %{tl_version} -Provides: tex(xch_opza6q.enc) = %{tl_version} -Provides: tex(xch_ouuvex.enc) = %{tl_version} -Provides: tex(xch_p5tyob.enc) = %{tl_version} -Provides: tex(xch_pcnxik.enc) = %{tl_version} -Provides: tex(xch_q7u3cc.enc) = %{tl_version} -Provides: tex(xch_qdfne6.enc) = %{tl_version} -Provides: tex(xch_qot36g.enc) = %{tl_version} -Provides: tex(xch_rwgtvm.enc) = %{tl_version} -Provides: tex(xch_se3wyw.enc) = %{tl_version} -Provides: tex(xch_ud56nl.enc) = %{tl_version} -Provides: tex(xch_uh3kut.enc) = %{tl_version} -Provides: tex(xch_unczov.enc) = %{tl_version} -Provides: tex(xch_uv5z4v.enc) = %{tl_version} -Provides: tex(xch_uy5hgr.enc) = %{tl_version} -Provides: tex(xch_vaa7pj.enc) = %{tl_version} -Provides: tex(xch_wwsmtw.enc) = %{tl_version} -Provides: tex(xch_xvwswz.enc) = %{tl_version} -Provides: tex(xch_xwsv67.enc) = %{tl_version} -Provides: tex(xch_yorls5.enc) = %{tl_version} -Provides: tex(xch_yrgi2d.enc) = %{tl_version} -Provides: tex(xch_yz7cd7.enc) = %{tl_version} -Provides: tex(xch_zwwfce.enc) = %{tl_version} -Provides: tex(zchbmi0.tfm) = %{tl_version} -Provides: tex(zchbmi0.vf) = %{tl_version} -Provides: tex(zchbmia.tfm) = %{tl_version} -Provides: tex(zchbmia.vf) = %{tl_version} +Provides: tex(XCharter-osf.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-to.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-ly1.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-ly1.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-ot1.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-t1.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-ts1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-ts1.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-to.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-ly1.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-t1.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-ts1.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-to.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-ly1.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-ly1.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-ot1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-ot1.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-t1.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-ts1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-ts1.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-to.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-ly1.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-ly1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-ly1.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-ot1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-ot1.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-t1.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-t1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-t1.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-ts1--base.tfm) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-ts1.tfm) = %{tl_version} Provides: tex(zchbmi.tfm) = %{tl_version} -Provides: tex(zchbmi.vf) = %{tl_version} -Provides: tex(zchmi0.tfm) = %{tl_version} -Provides: tex(zchmi0.vf) = %{tl_version} -Provides: tex(zchmia.tfm) = %{tl_version} -Provides: tex(zchmia.vf) = %{tl_version} Provides: tex(zchmi.tfm) = %{tl_version} +Provides: tex(XCharter-Bold.pfb) = %{tl_version} +Provides: tex(XCharter-BoldItalic.pfb) = %{tl_version} +Provides: tex(XCharter-Italic.pfb) = %{tl_version} +Provides: tex(XCharter-Roman.pfb) = %{tl_version} +Provides: tex(XCharter-Bold-sup-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-sup-t1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tlf-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tlf-ot1G.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tlf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tlf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tlf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tlf-t1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tlf-ts1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tosf-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tosf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tosf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tosf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tosf-t1.vf) = %{tl_version} +Provides: tex(XCharter-Bold-tosf-ts1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-sup-ly1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-sup-t1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ly1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ot1G.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-t1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tlf-ts1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-ly1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-t1.vf) = %{tl_version} +Provides: tex(XCharter-BoldItalic-tosf-ts1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-sup-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-sup-t1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tlf-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tlf-ot1G.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tlf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tlf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tlf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tlf-t1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tlf-ts1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tosf-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tosf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tosf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tosf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tosf-t1.vf) = %{tl_version} +Provides: tex(XCharter-Italic-tosf-ts1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-sup-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-sup-t1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tlf-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tlf-ot1G.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tlf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tlf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tlf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tlf-t1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tlf-ts1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tosf-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tosf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tosf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tosf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tosf-t1.vf) = %{tl_version} +Provides: tex(XCharter-Roman-tosf-ts1.vf) = %{tl_version} +Provides: tex(XCharter1-Bold-to.vf) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-ly1.vf) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-t1.vf) = %{tl_version} +Provides: tex(XCharter1-Bold-tosf-ts1.vf) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-to.vf) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-ly1.vf) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-t1.vf) = %{tl_version} +Provides: tex(XCharter1-BoldItalic-tosf-ts1.vf) = %{tl_version} +Provides: tex(XCharter1-Italic-to.vf) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-ly1.vf) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-t1.vf) = %{tl_version} +Provides: tex(XCharter1-Italic-tosf-ts1.vf) = %{tl_version} +Provides: tex(XCharter1-Roman-to.vf) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-ly1.vf) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-ly1.vf) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-ot1.vf) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-sc-t1.vf) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-t1.vf) = %{tl_version} +Provides: tex(XCharter1-Roman-tosf-ts1.vf) = %{tl_version} +Provides: tex(zchbmi.vf) = %{tl_version} Provides: tex(zchmi.vf) = %{tl_version} - +Provides: tex(LY1XCharter-Sup.fd) = %{tl_version} +Provides: tex(LY1XCharter-TLF.fd) = %{tl_version} +Provides: tex(LY1XCharter-TOsF.fd) = %{tl_version} +Provides: tex(OT1XCharter-Sup.fd) = %{tl_version} +Provides: tex(OT1XCharter-TLF.fd) = %{tl_version} +Provides: tex(OT1XCharter-TOsF.fd) = %{tl_version} +Provides: tex(T1XCharter-Sup.fd) = %{tl_version} +Provides: tex(T1XCharter-TLF.fd) = %{tl_version} +Provides: tex(T1XCharter-TOsF.fd) = %{tl_version} +Provides: tex(TS1XCharter-TLF.fd) = %{tl_version} +Provides: tex(TS1XCharter-TOsF.fd) = %{tl_version} +Provides: tex(XCharter.sty) = %{tl_version} +Provides: tex(omlzchmi.fd) = %{tl_version} %description xcharter The package presents an extension of Bitstream Charter, which @@ -78947,7 +77920,7 @@ formats, with supporting files as necessary. %package xcharter-doc Summary: Documentation for xcharter -Version: svn51816 +Version: svn45369 Provides: tex-xcharter-doc AutoReqProv: No @@ -78991,9 +77964,11 @@ Documentation for xits Provides: tex-yfonts = %{tl_version} License: LPPL Summary: Support for old German fonts -Version: svn50755 +Version: svn15878.1.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(yfonts.sty) = %{tl_version} %description yfonts @@ -79003,7 +77978,8 @@ initials. %package yfonts-doc Summary: Documentation for yfonts -Version: svn50755 +Version: svn15878.1.3 + Provides: tex-yfonts-doc AutoReqProv: No @@ -79047,9 +78023,11 @@ Documentation for yfonts-t1. Provides: tex-zlmtt = %{tl_version} License: LPPL 1.3 Summary: Use Latin Modern Typewriter fonts -Version: svn51368 +Version: svn34485.1.01 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(mweights.sty) Requires: tex(xkeyval.sty) Provides: tex(il2zlmtt.fd) = %{tl_version} @@ -79079,7 +78057,8 @@ requires the mweights package. %package zlmtt-doc Summary: Documentation for zlmtt -Version: svn51368 +Version: svn34485.1.01 + Provides: tex-zlmtt-doc AutoReqProv: No @@ -79099,7 +78078,6 @@ Requires: tex-cmextra Requires: tex-courier Requires: tex-ec Requires: tex-euro -Requires: texlive-euro-ce Requires: tex-eurosym Requires: tex-fpl Requires: tex-helvetic @@ -79947,9 +78925,11 @@ Documentation for eurosym Provides: tex-fpl = %{tl_version} License: GPL+ Summary: SC and OsF fonts for URW Palladio L -Version: svn49603 +Version: svn15878.1.002 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(fplbij8a.pfb) = %{tl_version} Provides: tex(fplbj8a.pfb) = %{tl_version} Provides: tex(fplrc8a.pfb) = %{tl_version} @@ -79972,7 +78952,8 @@ distribution. %package fpl-doc Summary: Documentation for fpl -Version: svn49603 +Version: svn15878.1.002 + Provides: tex-fpl-doc AutoReqProv: No @@ -80978,10 +79959,13 @@ Garde); and URW Palladio L (substituting for Adobe's Palatino). Provides: tex-tex-gyre = %{tl_version} License: GFSL Summary: TeX Fonts extending freely available URW fonts -Version: svn48058 +Version: svn18651.2.004 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(tgcursor.sty) Requires: tex(tgheros.sty) Requires: tex(tgchorus.sty) @@ -81764,7 +80748,8 @@ The Thanh. %package tex-gyre-doc Summary: Documentation for tex-gyre -Version: svn48058 +Version: svn18651.2.004 + Provides: tex-tex-gyre-doc AutoReqProv: No @@ -82746,7 +81731,7 @@ Requires: tex-fontinst Requires: tex-fontools Requires: tex-mf2pt1 Requires: tex-ttfutils -Requires: t1utils, psutils, texlive-psutils +Requires: t1utils, psutils %description collection-fontutils Programs for conversion between font formats, testing fonts, @@ -82894,7 +81879,7 @@ Documentation for startex %package collection-games Summary: Games typesetting -Version: svn51178 +Version: svn42992 Requires: texlive-base Requires: texlive-collection-latex Requires: texlive-bartel-chess-fonts @@ -82910,14 +81895,9 @@ Requires: texlive-go Requires: texlive-hanoi Requires: texlive-havannah Requires: texlive-hexgame -# non-free -# Requires: texlive-hmtrump Requires: texlive-horoscop -Requires: texlive-jigsaw Requires: texlive-labyrinth Requires: texlive-logicpuzzle -Requires: texlive-musikui -Requires: texlive-onedown Requires: texlive-othello Requires: texlive-othelloboard Requires: texlive-pas-crosswords @@ -83443,9 +82423,11 @@ Documentation for reverxii Provides: tex-schwalbe-chess = %{tl_version} License: LPPL 1.2 Summary: Typeset the German chess magazine "Die Schwalbe" -Version: svn49602 +Version: svn39318 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(fontenc.sty) Requires: tex(inputenc.sty) Requires: tex(babel.sty) @@ -83464,7 +82446,8 @@ turn has a dependency on the bartel-chess-fonts %package schwalbe-chess-doc Summary: Documentation for schwalbe-chess -Version: svn49602 +Version: svn39318 + Provides: tex-schwalbe-chess-doc AutoReqProv: No @@ -83506,9 +82489,11 @@ Documentation for sgame Provides: tex-skak = %{tl_version} License: LPPL Summary: Fonts and macros for typesetting chess games -Version: svn46259 +Version: svn32758.1.5.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(latexsym.sty) Requires: tex(chessfss.sty) Requires: tex(lambda.sty) @@ -83542,7 +82527,8 @@ provided in chessfss. %package skak-doc Summary: Documentation for skak -Version: svn46259 +Version: svn32758.1.5.2 + Provides: tex-skak-doc AutoReqProv: No @@ -83647,9 +82633,11 @@ Documentation for xq Provides: tex-xskak = %{tl_version} License: LPPL Summary: An extension to the skak package for chess typesetting -Version: svn51432 +Version: svn35945.1.4 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xifthen.sty) Requires: tex(etoolbox.sty) Requires: tex(chessboard.sty) @@ -83666,7 +82654,8 @@ and switch between indefinite levels of styles. %package xskak-doc Summary: Documentation for xskak -Version: svn51432 +Version: svn35945.1.4 + Provides: tex-xskak-doc AutoReqProv: No @@ -84024,9 +83013,11 @@ Documentation for gates Provides: tex-ifetex = %{tl_version} License: LPPL 1.3 Summary: Provides \ifetex switch -Version: svn47231 +Version: svn24853.1.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(ifetex.sty) = %{tl_version} Provides: tex(ifetex.tex) = %{tl_version} @@ -84041,7 +83032,8 @@ features are available. %package ifetex-doc Summary: Documentation for ifetex -Version: svn47231 +Version: svn24853.1.2 + Provides: tex-ifetex-doc AutoReqProv: No @@ -84557,9 +83549,11 @@ Documentation for shade Provides: tex-systeme = %{tl_version} License: LPPL 1.3 Summary: Format systems of equations -Version: svn49690 +Version: svn32473.0.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xstring.sty) Provides: tex(systeme.sty) = %{tl_version} Provides: tex(systeme.tex) = %{tl_version} @@ -84575,7 +83569,8 @@ termes et les signes sont alignes verticalement. %package systeme-doc Summary: Documentation for systeme -Version: svn49690 +Version: svn32473.0.3 + Provides: tex-systeme-doc AutoReqProv: No @@ -84631,7 +83626,7 @@ Documentation for termmenu Provides: tex-tracklang = %{tl_version} License: LPPL 1.3 Summary: Language and dialect tracker -Version: svn47704 +Version: svn43605 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(tracklang.tex) = %{tl_version} @@ -84647,7 +83642,7 @@ user. Generic TeX code is in tracklang.tex for non-LaTeX users. %package tracklang-doc Summary: Documentation for tracklang -Version: svn47704 +Version: svn43605 Provides: tex-tracklang-doc AutoReqProv: No @@ -84808,7 +83803,8 @@ Documentation for epsf Provides: tex-fontname = %{tl_version} License: GPL+ Summary: Scheme for naming fonts in TeX -Version: svn45930 +Version: svn38345.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(adobe.map) = %{tl_version} @@ -84842,7 +83838,8 @@ relation between foundry name and 'TeX-name' are also provided. %package fontname-doc Summary: Documentation for fontname -Version: svn45930 +Version: svn38345.0 + Provides: tex-fontname-doc AutoReqProv: No @@ -84853,9 +83850,11 @@ Documentation for fontname Provides: tex-genmisc = %{tl_version} License: LPPL Summary: genmisc package -Version: svn45851 +Version: svn27208.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(anti.tex) = %{tl_version} Provides: tex(apldef.tex) = %{tl_version} Provides: tex(arabic.tex) = %{tl_version} @@ -85088,7 +84087,8 @@ entities, and common formatting object definitions for jadetex. Provides: tex-xmltexconfig = %{tl_version} License: LPPL Summary: xmltexconfig package -Version: svn45845 +Version: svn35743.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -85159,7 +84159,7 @@ etc. Provides: tex-covington = %{tl_version} License: Public Domain Summary: Linguistic support -Version: svn51422 +Version: svn44501 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(covington.sty) = %{tl_version} @@ -85172,7 +84172,7 @@ example numbering. %package covington-doc Summary: Documentation for covington -Version: svn51422 +Version: svn44501 Provides: tex-covington-doc AutoReqProv: No @@ -85329,9 +84329,11 @@ Documentation for ednotes Provides: tex-ncctools = %{tl_version} License: LPPL Summary: A collection of general packages for LaTeX -Version: svn51810 +Version: svn15878.3.5 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(perpage.sty) Requires: tex(amsmath.sty) Requires: tex(graphicx.sty) @@ -85383,7 +84385,8 @@ layouts; and un-numbered top-level section. %package ncctools-doc Summary: Documentation for ncctools -Version: svn51810 +Version: svn15878.3.5 + Provides: tex-ncctools-doc AutoReqProv: No @@ -85702,7 +84705,7 @@ Documentation for ledmac Provides: tex-leipzig = %{tl_version} License: LPPL 1.3 Summary: Typeset and index linguistic gloss abbreviations -Version: svn51357 +Version: svn44625 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(leipzig.sty) = %{tl_version} @@ -85717,7 +84720,7 @@ package for easy indexing and glossary printing. %package leipzig-doc Summary: Documentation for leipzig -Version: svn51357 +Version: svn44625 Provides: tex-leipzig-doc AutoReqProv: No @@ -85856,9 +84859,11 @@ Documentation for liturg Provides: tex-metrix = %{tl_version} License: LPPL 1.3 Summary: Typeset metric marks for Latin text -Version: svn51125 +Version: svn40099 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Requires: tex(xparse.sty) Requires: tex(xpatch.sty) @@ -85875,7 +84880,8 @@ experimental LaTeX 3 environment). %package metrix-doc Summary: Documentation for metrix -Version: svn51125 +Version: svn40099 + Provides: tex-metrix-doc AutoReqProv: No @@ -86019,7 +85025,7 @@ Documentation for play Provides: tex-poemscol = %{tl_version} License: LPPL 1.3 Summary: Typesetting Critical Editions of Poetry -Version: svn51811 +Version: svn45197 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(poemscol.sty) = %{tl_version} @@ -86036,7 +85042,7 @@ automatic generation of a table of contents. %package poemscol-doc Summary: Documentation for poemscol -Version: svn51811 +Version: svn45197 Provides: tex-poemscol-doc AutoReqProv: No @@ -86132,7 +85138,7 @@ Documentation for qtree Provides: tex-reledmac = %{tl_version} License: LPPL 1.3 Summary: Typeset scholarly editions -Version: svn51698 +Version: svn45580 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) @@ -86158,7 +85164,7 @@ distributed with the related reledpar package. %package reledmac-doc Summary: Documentation for reledmac -Version: svn51698 +Version: svn45580 Provides: tex-reledmac-doc AutoReqProv: No @@ -86376,7 +85382,7 @@ Documentation for textglos Provides: tex-thalie = %{tl_version} License: LPPL 1.3 Summary: Typeset drama plays -Version: svn51789 +Version: svn44048 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -86395,7 +85401,7 @@ the dramatis personae automatically. %package thalie-doc Summary: Documentation for thalie -Version: svn51789 +Version: svn44048 Provides: tex-thalie-doc AutoReqProv: No @@ -86883,7 +85889,8 @@ Documentation for fc Provides: tex-hyphen-ethiopic = %{tl_version} License: LPPL Summary: Hyphenation patterns for Ethiopic scripts -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -86928,11 +85935,10 @@ fi %package collection-langarabic Summary: Arabic -Version: svn50080 +Version: svn45569 Requires: texlive-base Requires: texlive-collection-basic Requires: texlive-alkalami -Requires: texlive-alpha-persian Requires: texlive-amiri Requires: texlive-arabi Requires: texlive-arabi-add @@ -86945,12 +85951,10 @@ Requires: texlive-ghab Requires: texlive-hyphen-arabic Requires: texlive-hyphen-farsi Requires: texlive-imsproc -Requires: texlive-kurdishlipsum Requires: texlive-lshort-persian-doc Requires: texlive-luabidi Requires: texlive-na-box Requires: texlive-persian-bib -Requires: texlive-sexam Requires: texlive-simurgh Requires: texlive-tram Requires: texlive-xepersian @@ -86962,10 +85966,13 @@ Support for Arabic and Persian. Provides: tex-dad = %{tl_version} License: LPPL Summary: Simple typesetting system for mixed Arabic/Latin documents -Version: svn47027 +Version: svn35362.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Provides: tex(dad.map) = %{tl_version} Provides: tex(dadreal.tfm) = %{tl_version} Provides: tex(dadrealbold.tfm) = %{tl_version} @@ -86987,7 +85994,8 @@ situation. %package dad-doc Summary: Documentation for dad -Version: svn47027 +Version: svn35362.1.1 + Provides: tex-dad-doc AutoReqProv: No @@ -87025,7 +86033,8 @@ Documentation for ghab Provides: tex-hyphen-arabic = %{tl_version} License: LPPL Summary: (No) Arabic hyphenation patterns -Version: svn50805 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -87056,7 +86065,8 @@ fi Provides: tex-hyphen-farsi = %{tl_version} License: LPPL Summary: (No) Persian hyphenation patterns -Version: svn50805 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -87300,7 +86310,7 @@ Documentation for tram %package collection-langchinese Summary: Chinese -Version: svn50930 +Version: svn45193 Requires: texlive-base Requires: texlive-collection-langcjk Requires: texlive-arphic @@ -87312,19 +86322,14 @@ Requires: texlive-cns Requires: texlive-ctex Requires: texlive-ctex-faq-doc Requires: texlive-fandol -Requires: texlive-fduthesis Requires: texlive-hyphen-chinese Requires: texlive-impatient-cn-doc Requires: texlive-latex-notes-zh-cn-doc Requires: texlive-lshort-chinese-doc -Requires: texlive-nanicolle -Requires: texlive-njurepo -Requires: texlive-pgfornament-han Requires: texlive-texlive-zh-cn-doc Requires: texlive-texproposal-doc Requires: texlive-upzhkinsoku Requires: texlive-xpinyin -Requires: texlive-xtuthesis Requires: texlive-zhlipsum Requires: texlive-zhmetrics Requires: texlive-zhmetrics-uptex @@ -87368,21 +86373,25 @@ for CJK are in their individual language collections. %package dnp Provides: tex-dnp = %{tl_version} License: LPPL -Summary: subfont numbers for DNP font encoding -Version: svn45701 +Summary: dnp package +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + %description dnp -subfont numbers for DNP font encoding. +dnp package %package xcjk2uni Provides: tex-xcjk2uni = %{tl_version} License: LPPL 1.3 Summary: Convert CJK characters to Unicode, in pdfTeX -Version: svn50848 +Version: svn41121 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Provides: tex(xCJK2uni-UBg5plus.def) = %{tl_version} Provides: tex(xCJK2uni-UBig5.def) = %{tl_version} @@ -87404,7 +86413,8 @@ cut-and-paste operations on a PDF file generated by pdfTeX.. %package xcjk2uni-doc Summary: Documentation for xcjk2uni -Version: svn50848 +Version: svn41121 + Provides: tex-xcjk2uni-doc AutoReqProv: No @@ -87415,9 +86425,11 @@ Documentation for xcjk2uni Provides: tex-zxjafont = %{tl_version} License: MIT Summary: Set up Japanese font families for XeLaTeX -Version: svn51531 +Version: svn37281.0.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(fontspec.sty) Requires: tex(keyval.sty) @@ -87428,7 +86440,8 @@ zxjafont package %package zxjafont-doc Summary: Documentation for zxjafont -Version: svn51531 +Version: svn37281.0.3 + Provides: tex-zxjafont-doc AutoReqProv: No @@ -87439,7 +86452,7 @@ Documentation for zxjafont Provides: tex-ctex = %{tl_version} License: LPPL 1.3 Summary: LaTeX classes and packages for Chinese typesetting -Version: svn51262 +Version: svn44974 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex-ttfutils @@ -87509,7 +86522,7 @@ ctex package %package ctex-doc Summary: Documentation for ctex -Version: svn51262 +Version: svn44974 Provides: tex-ctex-doc AutoReqProv: No Requires: tex-ttfutils-doc @@ -87564,7 +86577,8 @@ Documentation for fandol Provides: tex-hyphen-chinese = %{tl_version} License: LPPL Summary: Chinese pinyin hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -87614,7 +86628,7 @@ Documentation for latex-notes-zh-cn %package lshort-chinese-doc Summary: Documentation for lshort-chinese -Version: svn50986 +Version: svn43606 Provides: tex-lshort-chinese-doc AutoReqProv: No @@ -87623,7 +86637,7 @@ Documentation for lshort-chinese %package texlive-zh-cn-doc Summary: Documentation for texlive-zh-cn -Version: svn50478 +Version: svn44333 Provides: tex-texlive-zh-cn-doc AutoReqProv: No @@ -87634,7 +86648,7 @@ Documentation for texlive-zh-cn Provides: tex-xpinyin = %{tl_version} License: LPPL 1.3 Summary: Automatically add pinyin to Chinese characters -Version: svn50849 +Version: svn44976 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -87653,7 +86667,7 @@ characters. %package xpinyin-doc Summary: Documentation for xpinyin -Version: svn50849 +Version: svn44976 Provides: tex-xpinyin-doc AutoReqProv: No @@ -92628,7 +91642,7 @@ Documentation for zhmetrics Provides: tex-zhnumber = %{tl_version} License: LPPL 1.3 Summary: Typeset Chinese representations of numbers -Version: svn50850 +Version: svn44977 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -92647,7 +91661,7 @@ expandable in the 'proper' way. %package zhnumber-doc Summary: Documentation for zhnumber -Version: svn50850 +Version: svn44977 Provides: tex-zhnumber-doc AutoReqProv: No @@ -92749,9 +91763,11 @@ Ukrainian), even if Latin alphabets may also be used. Provides: tex-cyrplain = %{tl_version} License: LPPL Summary: cyrplain package -Version: svn45692 +Version: svn29349.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(cyrcmfnt.tex) = %{tl_version} Provides: tex(cyrecfnt.tex) = %{tl_version} Provides: tex(cyrtex.cfg) = %{tl_version} @@ -92932,7 +91948,8 @@ Documentation for gost Provides: tex-hyphen-bulgarian = %{tl_version} License: LPPL Summary: Bulgarian hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -92963,7 +91980,8 @@ fi Provides: tex-hyphen-mongolian = %{tl_version} License: LPPL Summary: Mongolian hyphenation patterns in Cyrillic script -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -93002,7 +92020,8 @@ fi Provides: tex-hyphen-russian = %{tl_version} License: LPPL Summary: Russian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -93079,7 +92098,8 @@ Unicode Cyrillic), LCY, LWN (OT2), and koi8-r. Provides: tex-hyphen-serbian = %{tl_version} License: GPL+ Summary: Serbian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -93121,7 +92141,8 @@ fi Provides: tex-hyphen-ukrainian = %{tl_version} License: LPPL Summary: Ukrainian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -93739,9 +92760,11 @@ Documentation for serbian-def-cyr Provides: tex-serbian-lig = %{tl_version} License: LPPL 1.3 Summary: Control ligatures in Serbian -Version: svn48197 +Version: svn39096 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xspace.sty) Provides: tex(serbian-lig.sty) = %{tl_version} @@ -93751,7 +92774,8 @@ Serbian text written using Roman script. %package serbian-lig-doc Summary: Documentation for serbian-lig -Version: svn48197 +Version: svn39096 + Provides: tex-serbian-lig-doc AutoReqProv: No @@ -93762,7 +92786,8 @@ Documentation for serbian-lig Provides: tex-t2 = %{tl_version} License: LPPL Summary: Support for using T2 encoding -Version: svn47870 +Version: svn39024 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -93810,7 +92835,8 @@ fi %package t2-doc Summary: Documentation for t2 -Version: svn47870 +Version: svn39024 + Provides: tex-t2-doc AutoReqProv: No @@ -93819,7 +92845,7 @@ Documentation for t2 %package texlive-ru-doc Summary: Documentation for texlive-ru -Version: svn50683 +Version: svn44444 Provides: tex-texlive-ru-doc AutoReqProv: No @@ -94137,7 +93163,7 @@ versions (csfonts-t1) are also available. Provides: tex-csbulletin = %{tl_version} License: LPPL Summary: LaTeX class for articles submitted to the CSTUG Bulletin (Zpravodaj) -Version: svn49681 +Version: svn43277 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(babel.sty) @@ -94161,7 +93187,7 @@ source file of the manual. %package csbulletin-doc Summary: Documentation for csbulletin -Version: svn49681 +Version: svn43277 Provides: tex-csbulletin-doc AutoReqProv: No @@ -94170,7 +93196,8 @@ Documentation for csbulletin %package cstex-doc Summary: Documentation for cstex -Version: svn51318 +Version: svn41301 + Provides: tex-cstex-doc AutoReqProv: No @@ -94181,7 +93208,8 @@ Documentation for cstex Provides: tex-hyphen-czech = %{tl_version} License: LPPL Summary: Czech hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -94214,7 +93242,8 @@ fi Provides: tex-hyphen-slovak = %{tl_version} License: LPPL Summary: Slovak hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -94265,7 +93294,7 @@ Documentation for lshort-slovak %package texlive-cz-doc Summary: Documentation for texlive-cz -Version: svn50778 +Version: svn44347 Provides: tex-texlive-cz-doc AutoReqProv: No @@ -94274,14 +93303,13 @@ Documentation for texlive-cz %package collection-langenglish Summary: US and UK English -Version: svn50985 +Version: svn45436 Requires: texlive-base Requires: texlive-collection-basic Requires: texlive-hyphen-english Requires: texlive-FAQ-en-doc Requires: texlive-MemoirChapStyles-doc Requires: texlive-Type1fonts-doc -Requires: texlive-amscls-doc Requires: texlive-amslatex-primer-doc Requires: texlive-around-the-bend-doc Requires: texlive-ascii-chart-doc @@ -94324,7 +93352,6 @@ Requires: texlive-patgen2-tutorial-doc Requires: texlive-pictexsum-doc Requires: texlive-plain-doc-doc Requires: texlive-presentations-en-doc -Requires: texlive-short-math-guide Requires: texlive-simplified-latex-doc Requires: texlive-svg-inkscape-doc Requires: texlive-tabulars-e-doc @@ -94334,7 +93361,6 @@ Requires: texlive-tex-font-errors-cheatsheet-doc Requires: texlive-tex-overview-doc Requires: texlive-tex-refs-doc Requires: texlive-texbytopic-doc -Requires: texlive-texonly Requires: texlive-titlepages-doc Requires: texlive-tlc2-doc Requires: texlive-undergradmath-doc @@ -94349,7 +93375,8 @@ Support for (and documentation in) English. Provides: tex-hyphen-english = %{tl_version} License: LPPL Summary: English hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -94611,7 +93638,7 @@ Documentation for latex-web-companion Provides: tex-latex2e-help-texinfo = %{tl_version} License: Latex2e Summary: Unofficial reference manual covering LaTeX2e -Version: svn48135 +Version: svn44985 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -94625,7 +93652,7 @@ distribution are derived from the Texinfo source, as usual. %package latex2e-help-texinfo-doc Summary: Documentation for latex2e-help-texinfo -Version: svn48135 +Version: svn44985 Provides: tex-latex2e-help-texinfo-doc AutoReqProv: No @@ -94931,7 +93958,7 @@ Documentation for webguide %package xetexref-doc Summary: Documentation for xetexref -Version: svn50244 +Version: svn45230 Provides: tex-xetexref-doc AutoReqProv: No @@ -94940,7 +93967,7 @@ Documentation for xetexref %package collection-langeuropean Summary: Other European languages -Version: svn46803 +Version: svn44414 Requires: texlive-base Requires: texlive-collection-basic Requires: texlive-armtex @@ -94974,7 +94001,6 @@ Requires: texlive-babel-welsh Requires: texlive-finbib Requires: texlive-gloss-occitan Requires: texlive-hrlatex -Requires: texlive-hulipsum Requires: texlive-hyphen-croatian Requires: texlive-hyphen-danish Requires: texlive-hyphen-dutch @@ -95079,7 +94105,8 @@ Documentation for hrlatex Provides: tex-hyphen-armenian = %{tl_version} License: LPPL Summary: Armenian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -95110,11 +94137,13 @@ fi Provides: tex-hyphen-croatian = %{tl_version} License: LPPL 1.3 Summary: Croatian hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95141,11 +94170,13 @@ fi Provides: tex-hyphen-danish = %{tl_version} License: LPPL Summary: Danish hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95172,11 +94203,13 @@ fi Provides: tex-hyphen-dutch = %{tl_version} License: LPPL Summary: Dutch hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95206,11 +94239,13 @@ fi Provides: tex-hyphen-estonian = %{tl_version} License: LPPL Summary: Estonian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95237,11 +94272,13 @@ fi Provides: tex-hyphen-finnish = %{tl_version} License: Public Domain Summary: Finnish hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95268,11 +94305,13 @@ fi Provides: tex-hyphen-friulan = %{tl_version} License: LPPL Summary: Friulan hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95302,11 +94341,13 @@ fi Provides: tex-hyphen-hungarian = %{tl_version} License: GPL+ Summary: Hungarian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95332,7 +94373,8 @@ fi %package hyphen-hungarian-doc Summary: Documentation for hyphen-hungarian -Version: svn51186 +Version: svn40340 + Provides: tex-hyphen-hungarian-doc AutoReqProv: No Requires: tex-hyph-utf8-doc @@ -95344,11 +94386,13 @@ Documentation for hyphen-hungarian Provides: tex-hyphen-icelandic = %{tl_version} License: LPPL Summary: Icelandic hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95376,11 +94420,13 @@ fi Provides: tex-hyphen-irish = %{tl_version} License: LPPL Summary: Irish hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95409,11 +94455,13 @@ fi Provides: tex-hyphen-kurmanji = %{tl_version} License: LPPL Summary: Kurmanji hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95442,7 +94490,7 @@ fi Provides: tex-hyphen-latin = %{tl_version} License: LPPL Summary: Latin and classical Latin hyphenation patterns -Version: svn51186 +Version: svn44401 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -95487,11 +94535,13 @@ fi Provides: tex-hyphen-latvian = %{tl_version} License: LPPL Summary: Latvian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95518,11 +94568,13 @@ fi Provides: tex-hyphen-lithuanian = %{tl_version} License: LPPL Summary: Lithuanian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95550,11 +94602,13 @@ fi Provides: tex-hyphen-norwegian = %{tl_version} License: LPPL Summary: Norwegian Bokmal and Nynorsk hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95600,11 +94654,13 @@ fi Provides: tex-hyphen-piedmontese = %{tl_version} License: LPPL Summary: Piedmontese hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95633,11 +94689,13 @@ fi Provides: tex-hyphen-romanian = %{tl_version} License: LPPL Summary: Romanian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95667,11 +94725,13 @@ fi Provides: tex-hyphen-romansh = %{tl_version} License: LPPL Summary: Romansh hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95700,11 +94760,13 @@ fi Provides: tex-hyphen-slovenian = %{tl_version} License: LPPL Summary: Slovenian hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95738,11 +94800,13 @@ fi Provides: tex-hyphen-swedish = %{tl_version} License: LPPL Summary: Swedish hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95769,11 +94833,13 @@ fi Provides: tex-hyphen-turkish = %{tl_version} License: Copyright only Summary: Turkish hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95806,11 +94872,13 @@ fi Provides: tex-hyphen-uppersorbian = %{tl_version} License: LPPL Summary: Upper Sorbian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95838,11 +94906,13 @@ fi Provides: tex-hyphen-welsh = %{tl_version} License: LPPL Summary: Welsh hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -95869,10 +94939,13 @@ fi Provides: tex-lithuanian = %{tl_version} License: LPPL Summary: Lithuanian language support -Version: svn46039 +Version: svn22722.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Provides: tex(latin7x.enc) = %{tl_version} Provides: tex(l7x-urwvn.map) = %{tl_version} Provides: tex(l7x-uagd.tfm) = %{tl_version} @@ -95936,7 +95009,8 @@ tools for intputenc and fontinst. %package lithuanian-doc Summary: Documentation for lithuanian -Version: svn46039 +Version: svn22722.0 + Provides: tex-lithuanian-doc AutoReqProv: No @@ -96062,11 +95136,10 @@ Documentation for turkmen %package collection-langfrench Summary: French -Version: svn51322 +Version: svn40375 Requires: texlive-base Requires: texlive-collection-basic Requires: tex-aeguill -Requires: texlive-apprendre-a-programmer-en-tex Requires: texlive-apprends-latex-doc Requires: tex-babel-basque Requires: tex-babel-french @@ -96079,7 +95152,6 @@ Requires: tex-droit-fr Requires: tex-e-french Requires: texlive-epslatex-fr-doc Requires: tex-facture -Requires: texlive-formation-latex-ul Requires: tex-frletter Requires: tex-hyphen-basque Requires: tex-hyphen-french @@ -96146,7 +95218,7 @@ Documentation for droit-fr Provides: tex-e-french = %{tl_version} License: LPPL 1.3 Summary: Comprehensive LaTeX support for French-language typesetting -Version: svn51316 +Version: svn45091 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(msg.sty) @@ -96191,7 +95263,7 @@ the light-weight frenchle packages. %package e-french-doc Summary: Documentation for e-french -Version: svn51316 +Version: svn45091 Provides: tex-e-french-doc AutoReqProv: No @@ -96277,11 +95349,13 @@ Documentation for frletter Provides: tex-hyphen-basque = %{tl_version} License: Bahyph Summary: Basque hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -96308,11 +95382,13 @@ fi Provides: tex-hyphen-french = %{tl_version} License: LPPL Summary: French hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -96361,9 +95437,11 @@ Documentation for impatient-fr Provides: tex-impnattypo = %{tl_version} License: LPPL 1.3 Summary: Support typography of l'Imprimerie Nationale Francaise -Version: svn50227 +Version: svn36448.1.4 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifluatex.sty) Requires: tex(kvoptions.sty) Requires: tex(xcolor.sty) @@ -96377,7 +95455,8 @@ by the French Imprimerie Nationale. %package impnattypo-doc Summary: Documentation for impnattypo -Version: svn50227 +Version: svn36448.1.4 + Provides: tex-impnattypo-doc AutoReqProv: No @@ -96512,7 +95591,7 @@ Documentation for tdsfrmath %package texlive-fr-doc Summary: Documentation for texlive-fr -Version: svn50567 +Version: svn44342 Provides: tex-texlive-fr-doc AutoReqProv: No @@ -96658,16 +95737,16 @@ Documentation for csquotes-de Provides: tex-dehyph-exptl = %{tl_version} License: LPPL Summary: Experimental hyphenation patterns for the German language -Version: svn50772 +Version: svn43666 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils Requires: tex-hyphen-base Requires: tex-hyph-utf8 -Provides: tex(dehyphn-x-2019-04-04.tex) = %{tl_version} -Provides: tex(dehypht-x-2019-04-04.tex) = %{tl_version} -Provides: tex(dehyphts-x-2019-04-04.tex) = %{tl_version} +Provides: tex(dehyphn-x-2014-05-21.tex) = %{tl_version} +Provides: tex(dehypht-x-2014-05-21.tex) = %{tl_version} +Provides: tex(dehyphts-x-2014-05-21.tex) = %{tl_version} %description dehyph-exptl The package provides experimental hyphenation patterns for the @@ -96683,56 +95762,40 @@ Babel und hyphsubst aus dem Oberdiek-Bundel verwendet werden. %post dehyph-exptl if [ $1 -gt 0 ] ; then sed -i '/german-x-2014-05-21.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat -sed -i '/german-x-2018-03-31.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat -sed -i '/german-x-2019-04-04.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat -echo "german-x-2019-04-04 dehypht-x-2019-04-04.tex" >> %{_texdir}/texmf-dist/tex/generic/config/language.dat +echo "german-x-2014-05-21 dehypht-x-2014-05-21.tex" >> %{_texdir}/texmf-dist/tex/generic/config/language.dat sed -i '/=german-x-latest/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat echo "=german-x-latest" >> %{_texdir}/texmf-dist/tex/generic/config/language.dat sed -i '/\\addlanguage{german-x-2014-05-21}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def -sed -i '/\\addlanguage{german-x-2018-03-31}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def -sed -i '/\\addlanguage{german-x-2019-04-04}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def -echo "\addlanguage{german-x-2019-04-04}{dehypht-x-2019-04-04.tex}{}{2}{2}" >> %{_texdir}/texmf-dist/tex/generic/config/language.def +echo "\addlanguage{german-x-2014-05-21}{dehypht-x-2014-05-21.tex}{}{2}{2}" >> %{_texdir}/texmf-dist/tex/generic/config/language.def sed -i '/\\addlanguage{german-x-latest}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def -echo "\addlanguage{german-x-latest}{dehypht-x-2019-04-04.tex}{}{2}{2}" >> %{_texdir}/texmf-dist/tex/generic/config/language.def +echo "\addlanguage{german-x-latest}{dehypht-x-2014-05-21.tex}{}{2}{2}" >> %{_texdir}/texmf-dist/tex/generic/config/language.def sed -i '/ngerman-x-2014-05-21.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat -sed -i '/ngerman-x-2018-03-31.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat -sed -i '/ngerman-x-2019-04-04.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat -echo "ngerman-x-2019-04-04 dehyphn-x-2019-04-04.tex" >> %{_texdir}/texmf-dist/tex/generic/config/language.dat +echo "ngerman-x-2014-05-21 dehyphn-x-2014-05-21.tex" >> %{_texdir}/texmf-dist/tex/generic/config/language.dat sed -i '/=ngerman-x-latest/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat echo "=ngerman-x-latest" >> %{_texdir}/texmf-dist/tex/generic/config/language.dat sed -i '/\\addlanguage{ngerman-x-2014-05-21}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def -sed -i '/\\addlanguage{ngerman-x-2018-03-31}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def -sed -i '/\\addlanguage{ngerman-x-2019-04-04}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def -echo "\addlanguage{ngerman-x-2019-04-04}{dehyphn-x-2019-04-04.tex}{}{2}{2}" >> %{_texdir}/texmf-dist/tex/generic/config/language.def +echo "\addlanguage{ngerman-x-2014-05-21}{dehyphn-x-2014-05-21.tex}{}{2}{2}" >> %{_texdir}/texmf-dist/tex/generic/config/language.def sed -i '/\\addlanguage{ngerman-x-latest}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def -echo "\addlanguage{ngerman-x-latest}{dehyphn-x-2019-04-04.tex}{}{2}{2}" >> %{_texdir}/texmf-dist/tex/generic/config/language.def +echo "\addlanguage{ngerman-x-latest}{dehyphn-x-2014-05-21.tex}{}{2}{2}" >> %{_texdir}/texmf-dist/tex/generic/config/language.def fi : %postun dehyph-exptl if [ $1 == 0 ] ; then sed -i '/german-x-2014-05-21.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat > /dev/null 2>&1 -sed -i '/german-x-2018-03-31.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat > /dev/null 2>&1 -sed -i '/german-x-2019-04-04.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat > /dev/null 2>&1 sed -i '/=german-x-latest/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat > /dev/null 2>&1 sed -i '/\\addlanguage{german-x-2014-05-21}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def > /dev/null 2>&1 -sed -i '/\\addlanguage{german-x-2018-03-31}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def > /dev/null 2>&1 -sed -i '/\\addlanguage{german-x-2019-04-04}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def > /dev/null 2>&1 sed -i '/\\addlanguage{german-x-latest}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def > /dev/null 2>&1 sed -i '/ngerman-x-2014-05-21.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat > /dev/null 2>&1 -sed -i '/ngerman-x-2018-03-31.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat > /dev/null 2>&1 -sed -i '/ngerman-x-2019-04-04.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat > /dev/null 2>&1 sed -i '/=ngerman-x-latest/d' %{_texdir}/texmf-dist/tex/generic/config/language.dat > /dev/null 2>&1 sed -i '/\\addlanguage{ngerman-x-2014-05-21}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def > /dev/null 2>&1 -sed -i '/\\addlanguage{ngerman-x-2018-03-31}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def > /dev/null 2>&1 -sed -i '/\\addlanguage{ngerman-x-2019-04-04}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def > /dev/null 2>&1 sed -i '/\\addlanguage{ngerman-x-latest}.*/d' %{_texdir}/texmf-dist/tex/generic/config/language.def > /dev/null 2>&1 fi : %package dehyph-exptl-doc Summary: Documentation for dehyph-exptl -Version: svn50772 +Version: svn43666 Provides: tex-dehyph-exptl-doc AutoReqProv: No Requires: tex-hyph-utf8-doc @@ -96910,7 +95973,7 @@ Documentation for germkorr Provides: tex-hausarbeit-jura = %{tl_version} License: LPPL 1.3 Summary: Class for writing "juristiche Hausarbeiten" at German Universities -Version: svn50762 +Version: svn42054 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -96935,7 +95998,7 @@ beginners to get a correct and nicely formatted paper. %package hausarbeit-jura-doc Summary: Documentation for hausarbeit-jura -Version: svn50762 +Version: svn42054 Provides: tex-hausarbeit-jura-doc AutoReqProv: No @@ -96946,16 +96009,16 @@ Documentation for hausarbeit-jura Provides: tex-hyphen-german = %{tl_version} License: LPPL Summary: German hyphenation patterns -Version: svn51186 +Version: svn44401 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils Requires: tex-hyphen-base Requires: tex-hyph-utf8 -Provides: tex(loadhyph-de-1901.tex) = %{tl_version} -Provides: tex(loadhyph-de-1996.tex) = %{tl_version} -Provides: tex(loadhyph-de-ch-1901.tex) = %{tl_version} +Provides: tex(dehyphn.tex) = %{tl_version} +Provides: tex(dehypht.tex) = %{tl_version} +Provides: tex(dehyphtex.tex) = %{tl_version} %description hyphen-german Hyphenation patterns for German in T1/EC and UTF-8 encodings, @@ -97163,7 +96226,7 @@ Documentation for templates-sommer %package texlive-de-doc Summary: Documentation for texlive-de -Version: svn50617 +Version: svn44366 Provides: tex-texlive-de-doc AutoReqProv: No @@ -97263,7 +96326,7 @@ Documentation for translation-moreverb-de Provides: tex-udesoftec = %{tl_version} License: LPPL 1.3 Summary: Thesis class for the University of Duisburg-Essen -Version: svn47164 +Version: svn44308 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xstring.sty) @@ -97452,9 +96515,11 @@ Documentation for gfsporson Provides: tex-greek-fontenc = %{tl_version} License: LPPL 1.3 Summary: LICR macros and encoding definition files for Greek -Version: svn51616 +Version: svn39606 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(alphabeta-euenc.def) = %{tl_version} Provides: tex(alphabeta-lgr.def) = %{tl_version} Provides: tex(alphabeta.sty) = %{tl_version} @@ -97470,7 +96535,8 @@ fontenc. %package greek-fontenc-doc Summary: Documentation for greek-fontenc -Version: svn51616 +Version: svn39606 + Provides: tex-greek-fontenc-doc AutoReqProv: No @@ -97481,9 +96547,11 @@ Documentation for greek-fontenc Provides: tex-greek-inputenc = %{tl_version} License: LPPL 1.3 Summary: Greek encoding support for inputenc -Version: svn51612 +Version: svn40613 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(iso-8859-7.def) = %{tl_version} Provides: tex(macgreek.def) = %{tl_version} @@ -97493,7 +96561,8 @@ The bundle provides UTF-8, Macintosh Greek encoding and ISO %package greek-inputenc-doc Summary: Documentation for greek-inputenc -Version: svn51612 +Version: svn40613 + Provides: tex-greek-inputenc-doc AutoReqProv: No @@ -97560,11 +96629,13 @@ Documentation for greektex Provides: tex-hyphen-greek = %{tl_version} License: LPPL Summary: Modern Greek hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 Provides: tex(grmhyph5.tex) = %{tl_version} @@ -97606,7 +96677,8 @@ fi %package hyphen-greek-doc Summary: Documentation for hyphen-greek -Version: svn51186 +Version: svn40340 + Provides: tex-hyphen-greek-doc AutoReqProv: No Requires: tex-hyph-utf8-doc @@ -97618,11 +96690,13 @@ Documentation for hyphen-greek Provides: tex-hyphen-ancientgreek = %{tl_version} License: LPPL Summary: Ancient Greek hyphenation patterns -Version: svn51186 +Version: svn41189 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 Provides: tex(grahyph5.tex) = %{tl_version} @@ -98127,7 +97201,7 @@ Documentation for teubner Provides: tex-xgreek = %{tl_version} License: LPPL 1.3 Summary: XeLaTeX package for typesetting Greek language documents (beta release) -Version: svn46662 +Version: svn43222 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(xgreek.sty) = %{tl_version} @@ -98148,7 +97222,7 @@ if the format file has not been built with the babel mechanism. %package xgreek-doc Summary: Documentation for xgreek -Version: svn46662 +Version: svn43222 Provides: tex-xgreek-doc AutoReqProv: No @@ -98195,11 +97269,13 @@ Documentation for yannisgr Provides: tex-hyphen-indic = %{tl_version} License: LPPL Summary: Indic hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -98294,11 +97370,13 @@ fi Provides: tex-hyphen-sanskrit = %{tl_version} License: LPPL Summary: Sanskrit hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -98593,11 +97671,13 @@ Documentation for frontespizio Provides: tex-hyphen-italian = %{tl_version} License: LGPLv2+ Summary: Italian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -98724,7 +97804,7 @@ Documentation for psfrag-italian %package texlive-it-doc Summary: Documentation for texlive-it -Version: svn50750 +Version: svn44357 Provides: tex-texlive-it-doc AutoReqProv: No @@ -98733,22 +97813,16 @@ Documentation for texlive-it %package collection-langjapanese Summary: Japanese -Version: svn49995 +Version: svn45195 Requires: texlive-base Requires: texlive-collection-langcjk -Requires: texlive-ascmac -Requires: texlive-babel-japanese Requires: texlive-bxbase Requires: texlive-bxcjkjatype -Requires: texlive-bxjaholiday Requires: texlive-bxjalipsum Requires: texlive-bxjaprnind Requires: texlive-bxjscls Requires: texlive-bxorigcapt -Requires: texlive-bxwareki Requires: texlive-convbkmk -Requires: texlive-endnotesj -Requires: texlive-gentombow Requires: texlive-ifptex Requires: texlive-ifxptex Requires: texlive-ipaex @@ -98759,23 +97833,19 @@ Requires: texlive-jsclasses Requires: texlive-lshort-japanese-doc Requires: texlive-luatexja Requires: texlive-mendex-doc -Requires: texlive-morisawa Requires: texlive-pbibtex-base Requires: texlive-platex Requires: texlive-platex-tools Requires: texlive-platexcheat-doc -Requires: texlive-plautopatch Requires: texlive-ptex Requires: texlive-ptex-base -Requires: texlive-ptex-fontmaps Requires: texlive-ptex-fonts -Requires: texlive-ptex-manual +Requires: texlive-ptex-fontmaps Requires: texlive-ptex2pdf Requires: texlive-pxbase Requires: texlive-pxchfon Requires: texlive-pxcjkcat Requires: texlive-pxjahyper -Requires: texlive-pxjodel Requires: texlive-pxrubrica Requires: texlive-pxufont Requires: texlive-uplatex @@ -98794,7 +97864,7 @@ langcjk. Provides: tex-ipaex = %{tl_version} License: IPA Summary: IPA and IPAex fonts from Information-technology Promotion Agency, Japan -Version: svn45751 +Version: svn42428 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(ipaexg.ttf) = %{tl_version} @@ -98810,7 +97880,7 @@ characters, proportional width glyphs for Western characters. %package ipaex-doc Summary: Documentation for ipaex -Version: svn45751 +Version: svn42428 Provides: tex-ipaex-doc AutoReqProv: No @@ -98821,7 +97891,7 @@ Documentation for ipaex Provides: tex-japanese-otf = %{tl_version} License: BSD Summary: Advanced font selection for platex and its friends -Version: svn50769 +Version: svn42950 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -100934,7 +100004,7 @@ engine. %package japanese-otf-doc Summary: Documentation for japanese-otf -Version: svn50769 +Version: svn42950 Provides: tex-japanese-otf-doc AutoReqProv: No @@ -100945,7 +100015,7 @@ Documentation for japanese-otf Provides: tex-japanese-otf-uptex = %{tl_version} License: BSD Summary: Support for Japanese OTF files in upLaTeX -Version: svn50707 +Version: svn43395 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex @@ -101895,7 +100965,7 @@ later). %package japanese-otf-uptex-doc Summary: Documentation for japanese-otf-uptex -Version: svn50707 +Version: svn43395 Provides: tex-japanese-otf-uptex-doc AutoReqProv: No Requires: tex-japanese-otf-doc @@ -101907,7 +100977,7 @@ Documentation for japanese-otf-uptex Provides: tex-jsclasses = %{tl_version} License: BSD Summary: Classes tailored for use with Japanese -Version: svn51726 +Version: svn45473 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(jsarticle.cls) = %{tl_version} @@ -101916,18 +100986,19 @@ Provides: tex(jspf.cls) = %{tl_version} Provides: tex(jsverb.sty) = %{tl_version} Provides: tex(kiyou.cls) = %{tl_version} Provides: tex(minijs.sty) = %{tl_version} +Provides: tex(morisawa.sty) = %{tl_version} Provides: tex(okumacro.sty) = %{tl_version} Provides: tex(okuverb.sty) = %{tl_version} %description jsclasses Classes jsarticle and jsbook are provided, together with -packages okumacro and okuverb. These classes are +packages okumacro, okuverb and morisawa. These classes are designed to work under ASCII Corporation's Japanese TeX system ptex. %package jsclasses-doc Summary: Documentation for jsclasses -Version: svn51726 +Version: svn45473 Provides: tex-jsclasses-doc AutoReqProv: No @@ -101948,7 +101019,7 @@ Documentation for lshort-japanese Provides: tex-luatexja = %{tl_version} License: BSD Summary: Typeset Japanese with Lua(La)TeX -Version: svn51584 +Version: svn45216 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(l3keys2e.sty) @@ -102030,7 +101101,7 @@ used with the package. %package luatexja-doc Summary: Documentation for luatexja -Version: svn51584 +Version: svn45216 Provides: tex-luatexja-doc AutoReqProv: No @@ -102041,7 +101112,7 @@ Documentation for luatexja Provides: tex-ptex-base = %{tl_version} License: BSD Summary: Plain TeX format and documents for pTeX and e-pTeX -Version: svn50731 +Version: svn45140 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(ascii-jplain.tex) = %{tl_version} @@ -102056,7 +101127,7 @@ e-pTeX. %package ptex-base-doc Summary: Documentation for ptex-base -Version: svn50731 +Version: svn45140 Provides: tex-ptex-base-doc AutoReqProv: No @@ -102067,7 +101138,7 @@ Documentation for ptex-base Provides: tex-ptex-fonts = %{tl_version} License: BSD Summary: Fonts for use with pTeX -Version: svn46940 +Version: svn45138 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(ascgrp.mf) = %{tl_version} @@ -102117,10 +101188,20 @@ Provides: tex(tmin9.pl) = %{tl_version} Provides: tex(ascgrp.tfm) = %{tl_version} Provides: tex(ascii10.tfm) = %{tl_version} Provides: tex(ascii36.tfm) = %{tl_version} +Provides: tex(futogo-b-v.tfm) = %{tl_version} +Provides: tex(futogo-b.tfm) = %{tl_version} +Provides: tex(futomin-b-v.tfm) = %{tl_version} +Provides: tex(futomin-b.tfm) = %{tl_version} Provides: tex(gbm.tfm) = %{tl_version} Provides: tex(gbmv.tfm) = %{tl_version} +Provides: tex(gtbbb-m-v.tfm) = %{tl_version} +Provides: tex(gtbbb-m.tfm) = %{tl_version} +Provides: tex(jun101-l-v.tfm) = %{tl_version} +Provides: tex(jun101-l.tfm) = %{tl_version} Provides: tex(rml.tfm) = %{tl_version} Provides: tex(rmlv.tfm) = %{tl_version} +Provides: tex(ryumin-l-v.tfm) = %{tl_version} +Provides: tex(ryumin-l.tfm) = %{tl_version} Provides: tex(jis-v.tfm) = %{tl_version} Provides: tex(jis.tfm) = %{tl_version} Provides: tex(jisg-v.tfm) = %{tl_version} @@ -102129,6 +101210,21 @@ Provides: tex(jisgn-v.tfm) = %{tl_version} Provides: tex(jisgn.tfm) = %{tl_version} Provides: tex(jisn-v.tfm) = %{tl_version} Provides: tex(jisn.tfm) = %{tl_version} +Provides: tex(FutoGoB101-Bold-H.tfm) = %{tl_version} +Provides: tex(FutoGoB101-Bold-J.tfm) = %{tl_version} +Provides: tex(FutoGoB101-Bold-V.tfm) = %{tl_version} +Provides: tex(FutoMinA101-Bold-H.tfm) = %{tl_version} +Provides: tex(FutoMinA101-Bold-J.tfm) = %{tl_version} +Provides: tex(FutoMinA101-Bold-V.tfm) = %{tl_version} +Provides: tex(GothicBBB-Medium-H.tfm) = %{tl_version} +Provides: tex(GothicBBB-Medium-J.tfm) = %{tl_version} +Provides: tex(GothicBBB-Medium-V.tfm) = %{tl_version} +Provides: tex(Jun101-Light-H.tfm) = %{tl_version} +Provides: tex(Jun101-Light-J.tfm) = %{tl_version} +Provides: tex(Jun101-Light-V.tfm) = %{tl_version} +Provides: tex(Ryumin-Light-H.tfm) = %{tl_version} +Provides: tex(Ryumin-Light-J.tfm) = %{tl_version} +Provides: tex(Ryumin-Light-V.tfm) = %{tl_version} Provides: tex(ngoth10.tfm) = %{tl_version} Provides: tex(ngoth5.tfm) = %{tl_version} Provides: tex(ngoth6.tfm) = %{tl_version} @@ -102176,6 +101272,21 @@ Provides: tex(jisgn-v.vf) = %{tl_version} Provides: tex(jisgn.vf) = %{tl_version} Provides: tex(jisn-v.vf) = %{tl_version} Provides: tex(jisn.vf) = %{tl_version} +Provides: tex(FutoGoB101-Bold-H.vf) = %{tl_version} +Provides: tex(FutoGoB101-Bold-J.vf) = %{tl_version} +Provides: tex(FutoGoB101-Bold-V.vf) = %{tl_version} +Provides: tex(FutoMinA101-Bold-H.vf) = %{tl_version} +Provides: tex(FutoMinA101-Bold-J.vf) = %{tl_version} +Provides: tex(FutoMinA101-Bold-V.vf) = %{tl_version} +Provides: tex(GothicBBB-Medium-H.vf) = %{tl_version} +Provides: tex(GothicBBB-Medium-J.vf) = %{tl_version} +Provides: tex(GothicBBB-Medium-V.vf) = %{tl_version} +Provides: tex(Jun101-Light-H.vf) = %{tl_version} +Provides: tex(Jun101-Light-J.vf) = %{tl_version} +Provides: tex(Jun101-Light-V.vf) = %{tl_version} +Provides: tex(Ryumin-Light-H.vf) = %{tl_version} +Provides: tex(Ryumin-Light-J.vf) = %{tl_version} +Provides: tex(Ryumin-Light-V.vf) = %{tl_version} Provides: tex(ngoth10.vf) = %{tl_version} Provides: tex(ngoth5.vf) = %{tl_version} Provides: tex(ngoth6.vf) = %{tl_version} @@ -102220,7 +101331,7 @@ the ptex-texmf distribution by ASCII MEDIA WORKS. %package ptex-fonts-doc Summary: Documentation for ptex-fonts -Version: svn46940 +Version: svn45138 Provides: tex-ptex-fonts-doc AutoReqProv: No @@ -102263,7 +101374,7 @@ Documentation for pxbase Provides: tex-pxchfon = %{tl_version} License: MIT Summary: Japanese font setup for pLaTeX and upLaTeX -Version: svn46971 +Version: svn45471 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(atbegshi.sty) @@ -102301,7 +101412,7 @@ fonts used in the japanese-otf package. %package pxchfon-doc Summary: Documentation for pxchfon -Version: svn51617 +Version: svn45471 Provides: tex-pxchfon-doc AutoReqProv: No @@ -102312,9 +101423,11 @@ Documentation for pxchfon Provides: tex-pxcjkcat = %{tl_version} License: MIT Summary: LaTeX interface for the CJK category codes of upTeX -Version: svn47266 +Version: svn27780.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(pxcjkcat.sty) = %{tl_version} %description pxcjkcat @@ -102326,7 +101439,8 @@ principally written in English or other Western languages. %package pxcjkcat-doc Summary: Documentation for pxcjkcat -Version: svn47266 +Version: svn27780.1.0 + Provides: tex-pxcjkcat-doc AutoReqProv: No @@ -102337,7 +101451,7 @@ Documentation for pxcjkcat Provides: tex-pxjahyper = %{tl_version} License: MIT Summary: Hyperref support for pLaTeX -Version: svn51421 +Version: svn45554 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(atbegshi.sty) @@ -102348,7 +101462,7 @@ pxjahyper package %package pxjahyper-doc Summary: Documentation for pxjahyper -Version: svn51421 +Version: svn45554 Provides: tex-pxjahyper-doc AutoReqProv: No @@ -102359,7 +101473,7 @@ Documentation for pxjahyper Provides: tex-pxrubrica = %{tl_version} License: LPPL Summary: pxrubrica package -Version: svn45854 +Version: svn44225 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(keyval.sty) @@ -102370,7 +101484,7 @@ pxrubrica package %package pxrubrica-doc Summary: Documentation for pxrubrica -Version: svn45854 +Version: svn44225 Provides: tex-pxrubrica-doc AutoReqProv: No @@ -102381,7 +101495,7 @@ Documentation for pxrubrica Provides: tex-uptex-base = %{tl_version} License: BSD Summary: Plain TeX format and documents for upTeX -Version: svn51103 +Version: svn43900 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(euptex.ini) = %{tl_version} @@ -102394,7 +101508,7 @@ The bundle contains plain TeX format and documents for upTeX. %package uptex-base-doc Summary: Documentation for uptex-base -Version: svn51103 +Version: svn43900 Provides: tex-uptex-base-doc AutoReqProv: No @@ -102405,7 +101519,7 @@ Documentation for uptex-base Provides: tex-uptex-fonts = %{tl_version} License: BSD Summary: Fonts for use with upTeX -Version: svn49985 +Version: svn44874 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(upgbm-h.tfm) = %{tl_version} @@ -102494,7 +101608,7 @@ Takuji Tanaka. %package uptex-fonts-doc Summary: Documentation for uptex-fonts -Version: svn49985 +Version: svn44874 Provides: tex-uptex-fonts-doc AutoReqProv: No @@ -102530,7 +101644,7 @@ Documentation for zxjafbfont Provides: tex-zxjatype = %{tl_version} License: MIT Summary: Standard conforming typesetting of Japanese, for XeLaTeX -Version: svn47597 +Version: svn44949 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifxetex.sty) @@ -102544,7 +101658,7 @@ zxjatype package %package zxjatype-doc Summary: Documentation for zxjatype -Version: svn47597 +Version: svn44949 Provides: tex-zxjatype-doc AutoReqProv: No @@ -102660,9 +101774,11 @@ Documentation for kotex-oblivoir Provides: tex-memoir = %{tl_version} License: LPPL 1.3 Summary: Typeset fiction, non-fiction and mathematical books -Version: svn49394 +Version: svn41203 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifpdf.sty) Requires: tex(ifetex.sty) Requires: tex(ifxetex.sty) @@ -102704,7 +101820,8 @@ running under memoir. %package memoir-doc Summary: Documentation for memoir -Version: svn49394 +Version: svn41203 + Provides: tex-memoir-doc AutoReqProv: No @@ -102809,7 +101926,8 @@ Documentation for kotex-plain %package lshort-korean-doc Summary: Documentation for lshort-korean -Version: svn51035 +Version: svn15878.4.17 + Provides: tex-lshort-korean-doc AutoReqProv: No @@ -104152,7 +103270,7 @@ Documentation for nanumtype1 %package collection-langother Summary: Other languages -Version: svn51669 +Version: svn44601 Provides: texlive-collection-langafrica = svn30372.0.obsolete Obsoletes: texlive-collection-langafrica <= svn30372.0 Provides: texlive-collection-langindic = svn35737.0.obsolete @@ -104182,6 +103300,7 @@ Requires: texlive-ethiop-t1 Requires: texlive-fc Requires: texlive-fonts-tlwg Requires: texlive-hyphen-afrikaans +Requires: texlive-hyphen-armenian Requires: texlive-hyphen-coptic Requires: texlive-hyphen-esperanto Requires: texlive-hyphen-ethiopic @@ -104198,12 +103317,9 @@ Requires: texlive-lshort-thai-doc Requires: texlive-lshort-vietnamese-doc Requires: texlive-ntheorem-vn-doc Requires: texlive-padauk -Requires: texlive-quran-ur Requires: texlive-sanskrit Requires: texlive-sanskrit-t1 Requires: texlive-thaienum -Requires: texlive-thaispec -Requires: texlive-unicode-alphabets Requires: texlive-velthuis Requires: texlive-vntex Requires: texlive-wnri @@ -104252,11 +103368,13 @@ Documentation for ctib Provides: tex-hyphen-afrikaans = %{tl_version} License: LPPL Summary: Afrikaans hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -104286,11 +103404,13 @@ fi Provides: tex-hyphen-coptic = %{tl_version} License: LPPL Summary: Coptic hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -104320,11 +103440,13 @@ fi Provides: tex-hyphen-esperanto = %{tl_version} License: LPPL Summary: Esperanto hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -104355,11 +103477,13 @@ fi Provides: tex-hyphen-georgian = %{tl_version} License: LPPL Summary: Georgian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -104387,11 +103511,13 @@ fi Provides: tex-hyphen-indonesian = %{tl_version} License: LPPL Summary: Indonesian hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -104420,11 +103546,13 @@ fi Provides: tex-hyphen-interlingua = %{tl_version} License: LPPL Summary: Interlingua hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -104451,11 +103579,13 @@ fi Provides: tex-hyphen-thai = %{tl_version} License: LPPL Summary: Thai hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -104482,11 +103612,13 @@ fi Provides: tex-hyphen-turkmen = %{tl_version} License: LPPL Summary: Turkmen hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -104959,9 +104091,11 @@ Support for Polish. Provides: tex-gustlib = %{tl_version} License: LPPL Summary: gustlib package -Version: svn45712 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(biblotex.tex) = %{tl_version} Provides: tex(infr-ex.tex) = %{tl_version} Provides: tex(infram.tex) = %{tl_version} @@ -104984,7 +104118,8 @@ gustlib package %package gustlib-doc Summary: Documentation for gustlib -Version: svn45712 +Version: svn15878.0 + Provides: tex-gustlib-doc AutoReqProv: No @@ -104993,7 +104128,8 @@ Documentation for gustlib %package gustprog-doc Summary: Documentation for gustprog -Version: svn45712 +Version: svn15878.0 + Provides: tex-gustprog-doc AutoReqProv: No @@ -105004,11 +104140,13 @@ Documentation for gustprog Provides: tex-hyphen-polish = %{tl_version} License: Knuth Summary: Polish hyphenation patterns -Version: svn51186 +Version: svn41113 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -105357,9 +104495,11 @@ Documentation for przechlewski-book Provides: tex-qpxqtx = %{tl_version} License: LPPL Summary: qpxqtx package -Version: svn45797 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(qpxbmi.tfm) = %{tl_version} Provides: tex(qpxbmia.tfm) = %{tl_version} Provides: tex(qpxmi.tfm) = %{tl_version} @@ -105392,7 +104532,8 @@ qpxqtx package %package qpxqtx-doc Summary: Documentation for qpxqtx -Version: svn45797 +Version: svn15878.0 + Provides: tex-qpxqtx-doc AutoReqProv: No @@ -105439,7 +104580,7 @@ Documentation for tex-virtual-academy-pl %package texlive-pl-doc Summary: Documentation for texlive-pl -Version: svn50665 +Version: svn44343 Provides: tex-texlive-pl-doc AutoReqProv: No @@ -105474,7 +104615,7 @@ Documentation for utf8mex %package collection-langportuguese Summary: Portuguese -Version: svn51640 +Version: svn30962.0 Requires: texlive-base Requires: texlive-collection-basic Requires: tex-babel-portuges @@ -105482,10 +104623,8 @@ Requires: texlive-beamer-tut-pt-doc Requires: texlive-cursolatex-doc Requires: tex-feupphdteses Requires: tex-hyphen-portuguese -Requires: texlive-latex-via-exemplos Requires: texlive-latexcheat-ptbr-doc Requires: texlive-lshort-portuguese-doc -Requires: texlive-numberpt Requires: tex-ordinalpt Requires: texlive-xypic-tut-pt-doc @@ -105573,11 +104712,13 @@ Documentation for feupphdteses Provides: tex-hyphen-portuguese = %{tl_version} License: LPPL Summary: Portuguese hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -105715,11 +104856,13 @@ Documentation for es-tex-faq Provides: tex-hyphen-catalan = %{tl_version} License: LPPL Summary: Catalan hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -105746,11 +104889,13 @@ fi Provides: tex-hyphen-galician = %{tl_version} License: LPPL Summary: Galician hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -105777,11 +104922,13 @@ fi Provides: tex-hyphen-spanish = %{tl_version} License: LPPL Summary: Spanish hyphenation patterns -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex Requires(post,postun): coreutils + Requires: tex-hyphen-base Requires: tex-hyph-utf8 @@ -105824,7 +104971,7 @@ Documentation for l2tabu-spanish Provides: tex-latex2e-help-texinfo-spanish = %{tl_version} License: LPPL Summary: latex2e-help-texinfo-spanish package -Version: svn49023 +Version: svn45037 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -105833,7 +104980,7 @@ latex2e-help-texinfo-spanish package %package latex2e-help-texinfo-spanish-doc Summary: Documentation for latex2e-help-texinfo-spanish -Version: svn49023 +Version: svn45037 Provides: tex-latex2e-help-texinfo-spanish-doc AutoReqProv: No @@ -105894,7 +105041,7 @@ Documentation for spanish-mx %package collection-latexextra Summary: LaTeX additional packages -Version: svn51779 +Version: svn45569 Requires: texlive-base Requires: texlive-collection-latexrecommended Requires: texlive-collection-pictures @@ -105934,19 +105081,15 @@ Requires: texlive-anyfontsize Requires: texlive-appendix Requires: texlive-appendixnumberbeamer Requires: texlive-apptools -Requires: texlive-arabicfront Requires: texlive-arcs -Requires: texlive-arraycols Requires: texlive-arrayjobx Requires: texlive-arraysort Requires: texlive-arydshln -Requires: texlive-asciilist Requires: texlive-assignment Requires: texlive-assoccnt Requires: texlive-attachfile Requires: texlive-aurl Requires: texlive-authoraftertitle -Requires: texlive-authorarchive Requires: texlive-authorindex Requires: texlive-autonum Requires: texlive-autopdf @@ -105957,28 +105100,22 @@ Requires: texlive-bashful Requires: texlive-basicarith Requires: texlive-bchart Requires: texlive-beamer2thesis -Requires: texlive-beamer-rl Requires: texlive-beameraudience -Requires: texlive-beamerauxtheme Requires: texlive-beamercolorthemeowl Requires: texlive-beamerdarkthemes Requires: texlive-beamerposter Requires: texlive-beamersubframe -Requires: texlive-beamertheme-cuerna Requires: texlive-beamertheme-detlevcm Requires: texlive-beamertheme-epyt -Requires: texlive-beamertheme-focus -Requires: texlive-beamertheme-light Requires: texlive-beamertheme-metropolis -Requires: texlive-beamertheme-npbt Requires: texlive-beamertheme-phnompenh -Requires: texlive-beamertheme-saintpetersburg Requires: texlive-beamertheme-upenn-bc Requires: texlive-beamerthemejltree Requires: texlive-beamerthemenirma Requires: texlive-beton Requires: texlive-bewerbung Requires: texlive-bez123 +Requires: texlive-bezos Requires: texlive-bhcexam Requires: texlive-bibletext Requires: texlive-bigfoot @@ -105988,7 +105125,6 @@ Requires: texlive-bizcard Requires: texlive-blindtext Requires: texlive-blkarray Requires: texlive-block -Requires: texlive-blowup Requires: texlive-bnumexpr Requires: texlive-boites Requires: texlive-bold-extra @@ -106004,6 +105140,7 @@ Requires: texlive-bracketkey Requires: texlive-braket Requires: texlive-breakurl Requires: texlive-bullcntr +Requires: texlive-bussproofs Requires: texlive-bxcalc Requires: texlive-bxdpx-beamer Requires: texlive-bxdvidriver @@ -106011,7 +105148,6 @@ Requires: texlive-bxenclose Requires: texlive-bxnewfont Requires: texlive-bxpapersize Requires: texlive-bxpdfver -Requires: texlive-bxtexlogo Requires: texlive-calcage Requires: texlive-calctab Requires: texlive-calculator @@ -106035,19 +105171,15 @@ Requires: texlive-cclicenses Requires: texlive-cd Requires: texlive-cd-cover Requires: texlive-cdpbundl -Requires: texlive-cellprops Requires: texlive-cellspace Requires: texlive-censor -Requires: texlive-centeredline Requires: texlive-changebar Requires: texlive-changelayout -Requires: texlive-changelog Requires: texlive-changepage Requires: texlive-changes Requires: texlive-chappg Requires: texlive-chapterfolder Requires: texlive-cheatsheet -Requires: texlive-checkend Requires: texlive-chet Requires: texlive-chextras Requires: texlive-childdoc @@ -106063,8 +105195,6 @@ Requires: texlive-cleveref Requires: texlive-clipboard Requires: texlive-clock Requires: texlive-cloze -Requires: texlive-clrdblpg -Requires: texlive-clrstrip Requires: texlive-cmdstring Requires: texlive-cmdtrack Requires: texlive-cmsd @@ -106076,7 +105206,6 @@ Requires: texlive-codepage Requires: texlive-codesection Requires: texlive-collcell Requires: texlive-collectbox -Requires: texlive-colophon Requires: texlive-colordoc Requires: texlive-colorinfo Requires: texlive-coloring @@ -106089,9 +105218,7 @@ Requires: texlive-combelow Requires: texlive-combine Requires: texlive-comma Requires: texlive-commado -Requires: texlive-commedit Requires: texlive-comment -Requires: texlive-competences Requires: texlive-concepts Requires: texlive-concprog Requires: texlive-constants @@ -106203,7 +105330,6 @@ Requires: texlive-doctools Requires: texlive-documentation Requires: texlive-doi Requires: texlive-dotarrow -Requires: texlive-dotlessi Requires: texlive-dotseqn Requires: texlive-download Requires: texlive-dox @@ -106216,7 +105342,6 @@ Requires: texlive-draftwatermark Requires: texlive-dtk Requires: texlive-dtxdescribe Requires: texlive-dtxgallery-doc -Requires: texlive-duckuments Requires: texlive-ducksay Requires: texlive-dvdcoll Requires: texlive-dynamicnumber @@ -106236,10 +105361,6 @@ Requires: texlive-edmargin Requires: texlive-eemeir Requires: texlive-efbox Requires: texlive-egplot -Requires: texlive-ehhline -Requires: texlive-elegantbook -Requires: texlive-elegantnote -Requires: texlive-elegantpaper Requires: texlive-elements Requires: texlive-ellipsis Requires: texlive-elmath @@ -106270,7 +105391,6 @@ Requires: texlive-eqnalign Requires: texlive-eqname Requires: texlive-eqparbox Requires: texlive-errata -Requires: texlive-erw-l3 Requires: texlive-esami Requires: texlive-esdiff Requires: texlive-esint @@ -106286,16 +105406,12 @@ Requires: texlive-everyhook Requires: texlive-everypage Requires: texlive-exam Requires: texlive-exam-n -Requires: texlive-exam-randomizechoices Requires: texlive-examdesign -Requires: texlive-exframe Requires: texlive-example Requires: texlive-examplep Requires: texlive-exceltex Requires: texlive-excludeonly Requires: texlive-exercise -Requires: texlive-exercisebank -Requires: texlive-exercisepoints Requires: texlive-exercises Requires: texlive-exp-testopt Requires: texlive-expdlist @@ -106305,14 +105421,12 @@ Requires: texlive-exsol Requires: texlive-extract Requires: texlive-facsimile Requires: texlive-factura -Requires: texlive-fancyhandout Requires: texlive-fancylabel Requires: texlive-fancynum Requires: texlive-fancypar Requires: texlive-fancyslides Requires: texlive-fancytabs Requires: texlive-fancytooltips -Requires: texlive-fbox Requires: texlive-fcolumn Requires: texlive-fetchcls Requires: texlive-ffslides @@ -106358,6 +105472,7 @@ Requires: texlive-fonttable Requires: texlive-footmisc Requires: texlive-footmisx Requires: texlive-footnotebackref +Requires: texlive-footnotehyper Requires: texlive-footnoterange Requires: texlive-footnpag Requires: texlive-forarray @@ -106382,7 +105497,6 @@ Requires: texlive-fundus-sueterlin Requires: texlive-fvextra Requires: texlive-fwlw Requires: texlive-g-brief -Requires: texlive-gatherenum Requires: texlive-gauss Requires: texlive-gcard Requires: texlive-gcite @@ -106395,16 +105509,12 @@ Requires: texlive-gitfile-info Requires: texlive-gitinfo Requires: texlive-gitinfo2 Requires: texlive-gitlog -Requires: texlive-gitver -Requires: texlive-globalvals Requires: texlive-gloss Requires: texlive-glossaries Requires: texlive-glossaries-danish Requires: texlive-glossaries-dutch Requires: texlive-glossaries-english -Requires: texlive-glossaries-estonian Requires: texlive-glossaries-extra -Requires: texlive-glossaries-finnish Requires: texlive-glossaries-french Requires: texlive-glossaries-german Requires: texlive-glossaries-irish @@ -106413,14 +105523,12 @@ Requires: texlive-glossaries-magyar Requires: texlive-glossaries-polish Requires: texlive-glossaries-portuges Requires: texlive-glossaries-serbian -Requires: texlive-glossaries-slovene Requires: texlive-glossaries-spanish Requires: texlive-gmdoc Requires: texlive-gmdoc-enhance Requires: texlive-gmiflink Requires: texlive-gmutils Requires: texlive-gmverb -Requires: texlive-grabbox Requires: texlive-graphbox Requires: texlive-graphicx-psmin Requires: texlive-graphicxbox @@ -106429,11 +105537,9 @@ Requires: texlive-grfpaste Requires: texlive-grid Requires: texlive-grid-system Requires: texlive-gridset -Requires: texlive-gridslides Requires: texlive-guitlogo Requires: texlive-halloweenmath Requires: texlive-hackthefootline -Requires: texlive-handin Requires: texlive-handout Requires: texlive-hang Requires: texlive-hanging @@ -106451,11 +105557,10 @@ Requires: texlive-hrefhide Requires: texlive-hvindex Requires: texlive-hypdvips Requires: texlive-hyper -Requires: texlive-hyperbar Requires: texlive-hypernat +Requires: texlive-hyperref-docsrc-doc Requires: texlive-hyperxmp Requires: texlive-hyphenat -Requires: texlive-identkey Requires: texlive-idxcmds Requires: texlive-idxlayout Requires: texlive-iffont @@ -106463,6 +105568,7 @@ Requires: texlive-ifmslide Requires: texlive-ifmtarg Requires: texlive-ifnextok Requires: texlive-ifoddpage +Requires: texlive-ifplatform Requires: texlive-ifthenx Requires: texlive-iitem Requires: texlive-image-gallery @@ -106470,15 +105576,12 @@ Requires: texlive-imakeidx Requires: texlive-import Requires: texlive-incgraph Requires: texlive-indextools -Requires: texlive-inline-images Requires: texlive-inlinedef Requires: texlive-inputtrc Requires: texlive-interactiveworkbook Requires: texlive-interfaces -Requires: texlive-intopdf Requires: texlive-inversepath Requires: texlive-invoice -Requires: texlive-invoice-class Requires: texlive-invoice2 Requires: texlive-iso Requires: texlive-iso10303 @@ -106494,7 +105597,6 @@ Requires: texlive-jlabels Requires: texlive-jslectureplanner Requires: texlive-jumplines Requires: texlive-jvlisting -Requires: texlive-kalendarium Requires: texlive-kantlipsum Requires: texlive-kerntest Requires: texlive-keycommand @@ -106513,23 +105615,17 @@ Requires: texlive-ktv-texdata Requires: texlive-l3build Requires: texlive-labbook Requires: texlive-labels -Requires: texlive-labels4easylist -Requires: texlive-labelschanged Requires: texlive-lastpackage Requires: texlive-lastpage Requires: texlive-latex-tds-doc -Requires: texlive-latex-uni8 -Requires: texlive-latexcolors Requires: texlive-latexdemo Requires: texlive-latexgit Requires: texlive-layouts Requires: texlive-lazylist -Requires: texlive-lccaps Requires: texlive-lcd Requires: texlive-lcg Requires: texlive-leading Requires: texlive-leaflet -Requires: texlive-lectures Requires: texlive-leftidx Requires: texlive-leipzig Requires: texlive-lengthconvert @@ -106560,21 +105656,16 @@ Requires: texlive-longnamefilelist Requires: texlive-loops Requires: texlive-lsc Requires: texlive-lstaddons -Requires: texlive-lstfiracode Requires: texlive-lt3graph Requires: texlive-ltablex Requires: texlive-ltabptch Requires: texlive-ltxdockit -Requires: texlive-ltxguidex Requires: texlive-ltxindex Requires: texlive-ltxkeys Requires: texlive-ltxnew Requires: texlive-ltxtools -Requires: texlive-lua-check-hyphen -Requires: texlive-luatodonotes Requires: texlive-macroswap Requires: texlive-magaz -Requires: texlive-makecookbook Requires: texlive-mailing Requires: texlive-mailmerge Requires: texlive-makebarcode @@ -106588,17 +105679,15 @@ Requires: texlive-makeglos Requires: texlive-mandi Requires: texlive-manfnt Requires: texlive-manuscript -Requires: texlive-manyind Requires: texlive-marginfit Requires: texlive-marginfix Requires: texlive-marginnote Requires: texlive-markdown -Requires: texlive-mathalpha +Requires: texlive-mathalfa Requires: texlive-mathastext Requires: texlive-mathexam -Requires: texlive-mathfam256 -Requires: texlive-mathfont Requires: texlive-maybemath +Requires: texlive-mbenotes Requires: texlive-mcaption Requires: texlive-mceinleger Requires: texlive-mcexam @@ -106613,15 +105702,12 @@ Requires: texlive-memory Requires: texlive-mensa-tex Requires: texlive-menu Requires: texlive-menukeys -Requires: texlive-metalogox Requires: texlive-method Requires: texlive-metre Requires: texlive-mfirstuc Requires: texlive-mftinc -Requires: texlive-mi-solns Requires: texlive-midpage Requires: texlive-minibox -Requires: texlive-minidocument Requires: texlive-minifp Requires: texlive-minipage-marginpar Requires: texlive-minitoc @@ -106633,7 +105719,6 @@ Requires: texlive-mlist Requires: texlive-mmap Requires: texlive-mnotes Requires: texlive-moderncv -Requires: texlive-modernposter Requires: texlive-moderntimeline Requires: texlive-modref Requires: texlive-modroman @@ -106657,7 +105742,6 @@ Requires: texlive-multenum Requires: texlive-multiaudience Requires: texlive-multibbl Requires: texlive-multicap -Requires: texlive-multicolrule Requires: texlive-multidef Requires: texlive-multienv Requires: texlive-multiexpand @@ -106687,7 +105771,6 @@ Requires: texlive-nfssext-cfr Requires: texlive-nicefilelist Requires: texlive-niceframe Requires: texlive-nicetext -Requires: texlive-nidanfloat Requires: texlive-nlctdoc Requires: texlive-noconflict Requires: texlive-noindentafter @@ -106724,10 +105807,7 @@ Requires: texlive-options Requires: texlive-outline Requires: texlive-outliner Requires: texlive-outlines -Requires: texlive-outlining -Requires: texlive-overlays Requires: texlive-overpic -Requires: texlive-padcount Requires: texlive-pagecolor Requires: texlive-pagecont Requires: texlive-pagenote @@ -106757,10 +105837,7 @@ Requires: texlive-pdf14 Requires: texlive-pdfcomment Requires: texlive-pdfcprot Requires: texlive-pdfmarginpar -Requires: texlive-pdfoverlay Requires: texlive-pdfpagediff -Requires: texlive-pdfpc-movie -Requires: texlive-pdfprivacy Requires: texlive-pdfreview Requires: texlive-pdfscreen Requires: texlive-pdfslide @@ -106792,7 +105869,6 @@ Requires: texlive-polynomial Requires: texlive-polytable Requires: texlive-postcards Requires: texlive-poster-mac -Requires: texlive-powerdot Requires: texlive-ppr-prv Requires: texlive-preprint Requires: texlive-pressrelease @@ -106809,10 +105885,10 @@ Requires: texlive-prosper Requires: texlive-protex Requires: texlive-protocol Requires: texlive-psfragx +Requires: texlive-pst-pdf Requires: texlive-pstool Requires: texlive-pstring Requires: texlive-pxgreeks -Requires: texlive-pygmentex Requires: texlive-python Requires: texlive-qcm Requires: texlive-qstest @@ -106859,7 +105935,6 @@ Requires: texlive-rotpages Requires: texlive-roundbox Requires: texlive-rterface Requires: texlive-rtkinenc -Requires: texlive-rulerbox Requires: texlive-rulercompass Requires: texlive-rvwrite Requires: texlive-sanitize-umlaut @@ -106871,18 +105946,14 @@ Requires: texlive-scale Requires: texlive-scalebar Requires: texlive-scalerel Requires: texlive-scanpages -Requires: texlive-schedule -Requires: texlive-scontents Requires: texlive-scrlttr2copy Requires: texlive-sdrt Requires: texlive-secdot Requires: texlive-sectionbox -Requires: texlive-sectionbreak Requires: texlive-sectsty Requires: texlive-seealso Requires: texlive-selectp Requires: texlive-semantic -Requires: texlive-semantic-markup Requires: texlive-semioneside Requires: texlive-semproc Requires: texlive-sepfootnotes @@ -106909,7 +105980,6 @@ Requires: texlive-sidenotes Requires: texlive-silence Requires: texlive-simplecd Requires: texlive-simplecv -Requires: texlive-simpleinvoice Requires: texlive-sitem Requires: texlive-skb Requires: texlive-skdoc @@ -106923,8 +105993,6 @@ Requires: texlive-smartref Requires: texlive-snapshot Requires: texlive-snotez Requires: texlive-soul -Requires: texlive-soulpos -Requires: texlive-spacingtricks Requires: texlive-spark-otf Requires: texlive-sparklines Requires: texlive-sphack @@ -106940,9 +106008,9 @@ Requires: texlive-sslides Requires: texlive-stack Requires: texlive-stackengine Requires: texlive-standalone +Requires: texlive-statistik Requires: texlive-stdclsdv Requires: texlive-stdpage -Requires: texlive-stealcaps Requires: texlive-stex Requires: texlive-storebox Requires: texlive-storecmd @@ -106951,7 +106019,6 @@ Requires: texlive-sttools Requires: texlive-stubs Requires: texlive-studenthandouts Requires: texlive-subdepth -Requires: texlive-subdocs Requires: texlive-subeqn Requires: texlive-subeqnarray Requires: texlive-subfigmat @@ -106986,7 +106053,6 @@ Requires: texlive-tabularew Requires: texlive-tabulary Requires: texlive-tagging Requires: texlive-tagpair -Requires: texlive-tagpdf Requires: texlive-talk Requires: texlive-tamefloats Requires: texlive-tasks @@ -107001,13 +106067,11 @@ Requires: texlive-termlist Requires: texlive-testhyphens Requires: texlive-testidx Requires: texlive-tex-label -Requires: texlive-tex-locale Requires: texlive-texlogos Requires: texlive-texmate Requires: texlive-texments Requires: texlive-texpower Requires: texlive-texshade -Requires: texlive-textualicomma Requires: texlive-texvc Requires: texlive-textfit Requires: texlive-textmerg @@ -107037,7 +106101,6 @@ Requires: texlive-todonotes Requires: texlive-tokenizer Requires: texlive-toolbox Requires: texlive-topfloat -Requires: texlive-topiclongtable Requires: texlive-totcount Requires: texlive-totpages Requires: texlive-translations @@ -107092,35 +106155,27 @@ Requires: texlive-vmargin Requires: texlive-volumes Requires: texlive-vpe Requires: texlive-vruler -Requires: texlive-vtable Requires: texlive-vwcol Requires: texlive-wallcalendar Requires: texlive-wallpaper Requires: texlive-warning Requires: texlive-warpcol Requires: texlive-was -Requires: texlive-webquiz Requires: texlive-widetable -Requires: texlive-widows-and-orphans Requires: texlive-williams Requires: texlive-withargs Requires: texlive-wordcount Requires: texlive-wordlike -Requires: texlive-worksheet Requires: texlive-wrapfig Requires: texlive-wtref Requires: texlive-xargs Requires: texlive-xassoccnt -Requires: texlive-xbmks Requires: texlive-xcntperchap Requires: texlive-xcolor-material Requires: texlive-xcolor-solarized Requires: texlive-xcomment -Requires: texlive-xcookybooky -Requires: texlive-xcpdftips Requires: texlive-xdoc Requires: texlive-xellipsis -Requires: texlive-xfakebold Requires: texlive-xfor Requires: texlive-xhfill Requires: texlive-xifthen @@ -107137,7 +106192,6 @@ Requires: texlive-xsavebox Requires: texlive-xsim Requires: texlive-xstring Requires: texlive-xtab -Requires: texlive-xurl Requires: texlive-xwatermark Requires: texlive-xytree Requires: texlive-yafoot @@ -107157,7 +106211,7 @@ A very large collection of add-on packages for LaTeX. %package collection-latexrecommended Summary: LaTeX recommended packages -Version: svn51780 +Version: svn45456 Requires: texlive-base Requires: texlive-collection-latex Requires: texlive-anysize @@ -107184,9 +106238,6 @@ Requires: texlive-fp Requires: texlive-index Requires: texlive-jknapltx Requires: texlive-koma-script -Requires: texlive-latex-base-dev -Requires: texlive-latex-bin-dev -Requires: texlive-latex-graphics-dev Requires: texlive-latexbug Requires: texlive-l3experimental Requires: texlive-l3kernel @@ -107205,8 +106256,8 @@ Requires: texlive-ntgclass Requires: texlive-parskip Requires: texlive-pdfpages Requires: texlive-polyglossia +Requires: texlive-powerdot Requires: texlive-psfrag -Requires: texlive-ragged2e Requires: texlive-rcs Requires: texlive-sansmath Requires: texlive-section @@ -107216,7 +106267,6 @@ Requires: texlive-setspace Requires: texlive-subfig Requires: texlive-textcase Requires: texlive-thumbpdf -Requires: texlive-translator Requires: texlive-typehtml Requires: texlive-ucharcat Requires: texlive-underscore @@ -107310,9 +106360,11 @@ Documentation for ctable Provides: tex-eso-pic = %{tl_version} License: LPPL 1.2 Summary: Add picture commands (or backgrounds) to every page -Version: svn47694 +Version: svn37925.2.0g + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(atbegshi.sty) Requires: tex(keyval.sty) Requires: tex(xcolor.sty) @@ -107328,7 +106380,8 @@ places. %package eso-pic-doc Summary: Documentation for eso-pic -Version: svn47694 +Version: svn37925.2.0g + Provides: tex-eso-pic-doc AutoReqProv: No @@ -107506,9 +106559,11 @@ Documentation for fancyref Provides: tex-fancyvrb = %{tl_version} License: LPPL Summary: Sophisticated verbatim text -Version: svn49717 +Version: svn18492.2.8 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(keyval.sty) Requires: tex(pstricks.sty) Requires: tex(color.sty) @@ -107528,7 +106583,8 @@ environments (showing both result and verbatim source). %package fancyvrb-doc Summary: Documentation for fancyvrb -Version: svn49717 +Version: svn18492.2.8 + Provides: tex-fancyvrb-doc AutoReqProv: No @@ -107569,7 +106625,7 @@ Documentation for float Provides: tex-fontspec = %{tl_version} License: LPPL 1.3 Summary: Advanced font selection in XeLaTeX and LuaLaTeX -Version: svn50387 +Version: svn45381 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex-iftex @@ -107597,7 +106653,7 @@ bundles from the LaTeX 3 development team. %package fontspec-doc Summary: Documentation for fontspec -Version: svn50387 +Version: svn45381 Provides: tex-fontspec-doc AutoReqProv: No Requires: tex-iftex-doc @@ -107613,10 +106669,9 @@ Documentation for fontspec Provides: tex-l3kernel = %{tl_version} License: LPPL 1.3 Summary: LaTeX3 programming conventions -Version: svn51745 +Version: svn45340 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea -Requires: texlive-l3backend Requires: tex(graphics.sty) Requires: tex(doc.sty) Requires: tex(array.sty) @@ -107682,7 +106737,7 @@ Subversion (SVN) repository %package l3kernel-doc Summary: Documentation for l3kernel -Version: svn51745 +Version: svn45340 Provides: tex-l3kernel-doc AutoReqProv: No @@ -107693,7 +106748,7 @@ Documentation for l3kernel Provides: tex-l3packages = %{tl_version} License: LPPL 1.3 Summary: High-level LaTeX3 concepts -Version: svn51546 +Version: svn45340 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -107722,7 +106777,7 @@ later. %package l3packages-doc Summary: Documentation for l3packages -Version: svn51546 +Version: svn45340 Provides: tex-l3packages-doc AutoReqProv: No @@ -107733,9 +106788,11 @@ Documentation for l3packages Provides: tex-fp = %{tl_version} License: LPPL Summary: Fixed point arithmetic -Version: svn49719 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(fp-upn.sty) Provides: tex(defpattern.sty) = %{tl_version} Provides: tex(fp-addons.sty) = %{tl_version} @@ -107758,7 +106815,8 @@ point real numbers of high precision. %package fp-doc Summary: Documentation for fp -Version: svn49719 +Version: svn15878.0 + Provides: tex-fp-doc AutoReqProv: No @@ -107850,7 +106908,7 @@ Documentation for jknapltx Provides: tex-koma-script = %{tl_version} License: LPPL 1.3 Summary: A bundle of versatile classes and packages -Version: svn49929 +Version: svn45292 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(inputenc.sty) @@ -108021,7 +107079,7 @@ version of scrbook, scrreprt, scrartcl, scrlttr2 and typearea Provides: tex-l3experimental = %{tl_version} License: LPPL 1.3 Summary: Experimental LaTeX3 concepts -Version: svn51546 +Version: svn45340 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -108084,7 +107142,7 @@ on a snapshot of the SVN repository. %package l3experimental-doc Summary: Documentation for l3experimental -Version: svn51546 +Version: svn45340 Provides: tex-l3experimental-doc AutoReqProv: No @@ -108129,9 +107187,11 @@ Documentation for lineno Provides: tex-listings = %{tl_version} License: LPPL 1.3 Summary: Typeset source code listings using LaTeX -Version: svn50175 +Version: svn37534.1.6 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(keyval.sty) Requires: tex(textcomp.sty) Requires: tex(fancyvrb.sty) @@ -108166,7 +107226,8 @@ command). %package listings-doc Summary: Documentation for listings -Version: svn50175 +Version: svn37534.1.6 + Provides: tex-listings-doc AutoReqProv: No @@ -108177,7 +107238,7 @@ Documentation for listings Provides: tex-mathtools = %{tl_version} License: LPPL 1.3 Summary: Mathematical tools to use with amsmath -Version: svn51788 +Version: svn44504 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(mathtools.sty) @@ -108209,7 +107270,7 @@ styles; and more... Mathtools requires mhsetup. %package mathtools-doc Summary: Documentation for mathtools -Version: svn51788 +Version: svn44504 Provides: tex-mathtools-doc AutoReqProv: No @@ -108290,7 +107351,7 @@ Documentation for metalogo Provides: tex-microtype = %{tl_version} License: LPPL Summary: Subliminal refinements towards typographical perfection -Version: svn50187 +Version: svn44791 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(keyval.sty) @@ -108344,7 +107405,7 @@ other extensions. %package microtype-doc Summary: Documentation for microtype -Version: svn50187 +Version: svn44791 Provides: tex-microtype-doc AutoReqProv: No @@ -108355,7 +107416,7 @@ Documentation for microtype Provides: tex-ms = %{tl_version} License: LPPL Summary: Various LaTeX packages by Martin Schroder -Version: svn51784 +Version: svn42428 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(multicol.sty) @@ -108380,7 +107441,7 @@ ragged2e, typeset ragged text and allow hyphenation. %package ms-doc Summary: Documentation for ms -Version: svn51784 +Version: svn42428 Provides: tex-ms-doc AutoReqProv: No @@ -108432,9 +107493,11 @@ Documentation for ntgclass Provides: tex-parskip = %{tl_version} License: LPPL Summary: Layout with zero \parindent, non-zero \parskip -Version: svn49730 +Version: svn19963.2.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(parskip.sty) = %{tl_version} %description parskip @@ -108444,7 +107507,8 @@ designed class) helps alleviate this untidiness %package parskip-doc Summary: Documentation for parskip -Version: svn49730 +Version: svn19963.2.0 + Provides: tex-parskip-doc AutoReqProv: No @@ -108455,7 +107519,7 @@ Documentation for parskip Provides: tex-pdfpages = %{tl_version} License: LPPL 1.3 Summary: Include PDF documents in LaTeX -Version: svn45659 +Version: svn45043 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex-eso-pic @@ -108486,7 +107550,7 @@ in addition to PDF files. %package pdfpages-doc Summary: Documentation for pdfpages -Version: svn45659 +Version: svn45043 Provides: tex-pdfpages-doc AutoReqProv: No Requires: tex-eso-pic-doc @@ -108917,10 +107981,9 @@ Documentation for underscore %package collection-pictures Summary: Graphics, pictures, diagrams -Version: svn51051 +Version: svn45569 Requires: texlive-base Requires: texlive-collection-basic -Requires: texlive-adigraph Requires: texlive-aobs-tikz Requires: texlive-askmaps Requires: texlive-asyfig @@ -108962,7 +108025,6 @@ Requires: texlive-endofproofwd Requires: texlive-epspdf Requires: texlive-epspdfconversion Requires: texlive-esk -Requires: texlive-euflag Requires: texlive-fast-diagram Requires: texlive-fig4latex Requires: texlive-fitbox @@ -108974,8 +108036,6 @@ Requires: texlive-gincltex Requires: texlive-gnuplottex Requires: texlive-gradientframe Requires: texlive-grafcet -Requires: texlive-graph35 -Requires: texlive-graphicxpsd Requires: texlive-graphviz Requires: texlive-gtrlib-largetrees Requires: texlive-harveyballs @@ -108996,18 +108056,15 @@ Requires: texlive-luasseq Requires: texlive-maker Requires: texlive-makeshape Requires: texlive-mathspic -Requires: texlive-milsymb Requires: texlive-miniplot Requires: texlive-mkpic Requires: texlive-modiagram Requires: texlive-neuralnetwork Requires: texlive-numericplots Requires: texlive-pb-diagram -Requires: texlive-penrose Requires: texlive-petri-nets Requires: texlive-pgf Requires: texlive-pgf-blur -Requires: texlive-pgf-cmykshadings Requires: texlive-pgf-soroban Requires: texlive-pgf-spectra Requires: texlive-pgf-umlcd @@ -109015,7 +108072,6 @@ Requires: texlive-pgf-umlsd Requires: texlive-pgfgantt Requires: texlive-pgfkeyx Requires: texlive-pgfmolbio -Requires: texlive-pgfmorepages Requires: texlive-pgfopts Requires: texlive-pgfornament Requires: texlive-pgfplots @@ -109024,26 +108080,20 @@ Requires: texlive-pict2e Requires: texlive-pictex Requires: texlive-pictex2 Requires: texlive-pinlabel -Requires: texlive-pixelart Requires: texlive-pmgraph -Requires: texlive-postage Requires: texlive-prerex Requires: texlive-productbox -Requires: texlive-ptolemaicastronomy Requires: texlive-pxpgfmark Requires: texlive-qcircuit Requires: texlive-qrcode -Requires: texlive-quantikz Requires: texlive-randbild Requires: texlive-randomwalk -Requires: texlive-realhats Requires: texlive-reotex Requires: texlive-rviewport Requires: texlive-sa-tikz Requires: texlive-schemabloc Requires: texlive-scsnowman Requires: texlive-scratch -Requires: texlive-scratch3 Requires: texlive-setdeck Requires: texlive-signchart Requires: texlive-smartdiagram @@ -109059,31 +108109,19 @@ Requires: texlive-tikz-bayesnet Requires: texlive-tikz-cd Requires: texlive-tikz-dependency Requires: texlive-tikz-dimline -Requires: texlive-tikz-feynhand Requires: texlive-tikz-feynman -Requires: texlive-tikz-imagelabels Requires: texlive-tikz-inet Requires: texlive-tikz-kalender -Requires: texlive-tikz-karnaugh -Requires: texlive-tikz-ladder -Requires: texlive-tikz-layers -Requires: texlive-tikz-nef -Requires: texlive-tikz-network Requires: texlive-tikz-opm Requires: texlive-tikz-optics Requires: texlive-tikz-page Requires: texlive-tikz-palattice Requires: texlive-tikz-qtree -Requires: texlive-tikz-relay -Requires: texlive-tikz-sfc Requires: texlive-tikz-timing -Requires: texlive-tikz-truchet Requires: texlive-tikzcodeblocks Requires: texlive-tikzducks Requires: texlive-tikzinclude -Requires: texlive-tikzlings Requires: texlive-tikzmark -Requires: texlive-tikzmarmots Requires: texlive-tikzorbital Requires: texlive-tikzpagenodes Requires: texlive-tikzpfeile @@ -109195,9 +108233,11 @@ Documentation for curve Provides: tex-curve2e = %{tl_version} License: LPPL 1.3 Summary: Extensions for package pict2e -Version: svn50663 +Version: svn37839.1.60 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(color.sty) Requires: tex(pict2e.sty) Provides: tex(curve2e.sty) = %{tl_version} @@ -109213,7 +108253,8 @@ direction at these nodes. %package curve2e-doc Summary: Documentation for curve2e -Version: svn50663 +Version: svn37839.1.60 + Provides: tex-curve2e-doc AutoReqProv: No @@ -109594,9 +108635,11 @@ Documentation for fast-diagram Provides: tex-fitbox = %{tl_version} License: LPPL 1.3 Summary: Fit graphics on a page -Version: svn50088 +Version: svn38139.1.00 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Provides: tex(fitbox.sty) = %{tl_version} @@ -109608,7 +108651,8 @@ page, the box is moved to the next one. %package fitbox-doc Summary: Documentation for fitbox -Version: svn50088 +Version: svn38139.1.00 + Provides: tex-fitbox-doc AutoReqProv: No @@ -109683,7 +108727,7 @@ Documentation for forest Provides: tex-genealogytree = %{tl_version} License: LPPL 1.3 Summary: Pedigree and genealogical tree diagrams -Version: svn50872 +Version: svn45311 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(tcolorbox.sty) @@ -109714,7 +108758,7 @@ be customized, e.g., to prioritize certain paths. %package genealogytree-doc Summary: Documentation for genealogytree -Version: svn50872 +Version: svn45311 Provides: tex-genealogytree-doc AutoReqProv: No @@ -109989,7 +109033,7 @@ Documentation for hobby Provides: tex-hvfloat = %{tl_version} License: LPPL Summary: Rotating caption and object of floats independently -Version: svn51123 +Version: svn45347 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(graphicx.sty) @@ -110010,7 +109054,7 @@ here. %package hvfloat-doc Summary: Documentation for hvfloat -Version: svn51123 +Version: svn45347 Provides: tex-hvfloat-doc AutoReqProv: No @@ -110021,10 +109065,13 @@ Documentation for hvfloat Provides: tex-knitting = %{tl_version} License: LPPL 1.3 Summary: Produce knitting charts, in Plain TeX or LaTeX -Version: svn50782 +Version: svn19595.2.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(color.sty) Provides: tex(knitfont.map) = %{tl_version} Provides: tex(knitg_sc_in.tfm) = %{tl_version} @@ -110071,7 +109118,8 @@ source and in Adobe Type 1 format. %package knitting-doc Summary: Documentation for knitting -Version: svn50782 +Version: svn19595.2.0 + Provides: tex-knitting-doc AutoReqProv: No @@ -110150,7 +109198,7 @@ Documentation for lapdf Provides: tex-latex-make = %{tl_version} License: GPL+ Summary: Easy compiling of complex (and simple) LaTeX documents -Version: svn47869 +Version: svn42914 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifpdf.sty) @@ -110183,7 +109231,7 @@ requires GNUmake (>= 3.81). %package latex-make-doc Summary: Documentation for latex-make -Version: svn47869 +Version: svn42914 Provides: tex-latex-make-doc AutoReqProv: No @@ -110539,9 +109587,11 @@ Documentation for pgf-umlsd Provides: tex-pgfgantt = %{tl_version} License: LPPL 1.3 Summary: Draw Gantt charts with TikZ -Version: svn46280 +Version: svn31037.4.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(tikz.sty) Requires: tex(pgfcalendar.sty) Provides: tex(pgfgantt.sty) = %{tl_version} @@ -110554,7 +109604,8 @@ elements. %package pgfgantt-doc Summary: Documentation for pgfgantt -Version: svn46280 +Version: svn31037.4.0 + Provides: tex-pgfgantt-doc AutoReqProv: No @@ -110659,7 +109710,7 @@ Documentation for pgfopts Provides: tex-pgfplots = %{tl_version} License: GPLv3+ Summary: Create normal/logarithmic plots in two and three dimensions -Version: svn47373 +Version: svn44469 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(graphicx.sty) @@ -110764,7 +109815,7 @@ LaTeX/TeX/ConTeXt. %package pgfplots-doc Summary: Documentation for pgfplots -Version: svn47373 +Version: svn44469 Provides: tex-pgfplots-doc AutoReqProv: No @@ -110968,9 +110019,11 @@ Documentation for pmgraph Provides: tex-prerex = %{tl_version} License: GPL+ Summary: Interactive editor and macro support for prerequisite charts -Version: svn45940 +Version: svn40613 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(relsize.sty) Requires: tex(calc.sty) Requires: tex(pgf.sty) @@ -110992,7 +110045,8 @@ lightweight Qt-4 and poppler-based prerex-enabled PDF viewer. %package prerex-doc Summary: Documentation for prerex -Version: svn45940 +Version: svn40613 + Provides: tex-prerex-doc AutoReqProv: No @@ -111060,7 +110114,7 @@ Documentation for pxpgfmark Provides: tex-qcircuit = %{tl_version} License: GPLv2+ Summary: Macros to generate quantum ciruits -Version: svn48400 +Version: svn42816 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xy.sty) @@ -111073,7 +110127,7 @@ offering macros designed to help users generate circuits. %package qcircuit-doc Summary: Documentation for qcircuit -Version: svn48400 +Version: svn42816 Provides: tex-qcircuit-doc AutoReqProv: No @@ -111139,9 +110193,11 @@ Documentation for randbild Provides: tex-randomwalk = %{tl_version} License: LPPL Summary: Random walks using TikZ -Version: svn49513 +Version: svn38418 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Requires: tex(xparse.sty) Requires: tex(tikz.sty) @@ -111157,7 +110213,8 @@ graphical output. %package randomwalk-doc Summary: Documentation for randomwalk -Version: svn49513 +Version: svn38418 + Provides: tex-randomwalk-doc AutoReqProv: No @@ -111344,9 +110401,11 @@ Documentation for smartdiagram Provides: tex-spath3 = %{tl_version} License: LPPL 1.3 Summary: Manipulate "soft paths" in PGF -Version: svn50018 +Version: svn39794 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Requires: tex(pgf.sty) Requires: tex(xparse.sty) @@ -111362,7 +110421,8 @@ drawing calligraphic paths and for drawing knot diagrams. %package spath3-doc Summary: Documentation for spath3 -Version: svn50018 +Version: svn39794 + Provides: tex-spath3-doc AutoReqProv: No @@ -111415,9 +110475,11 @@ Documentation for swimgraf Provides: tex-texdraw = %{tl_version} License: CC-BY Summary: Graphical macros, using embedded PostScript -Version: svn51030 +Version: svn31894.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(graphics.sty) Provides: tex(blockdiagram.tex) = %{tl_version} Provides: tex(texdraw.sty) = %{tl_version} @@ -111439,7 +110501,8 @@ drawing segments. %package texdraw-doc Summary: Documentation for texdraw -Version: svn51030 +Version: svn31894.0 + Provides: tex-texdraw-doc AutoReqProv: No @@ -111556,9 +110619,11 @@ Documentation for tikz-bayesnet Provides: tex-tikz-cd = %{tl_version} License: GPLv3+ Summary: Create commutative diagrams with TikZ -Version: svn49201 +Version: svn35485.0.9e + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(tikz.sty) Provides: tex(tikzlibrarycd.code.tex) = %{tl_version} Provides: tex(tikz-cd.sty) = %{tl_version} @@ -111575,7 +110640,8 @@ typeface. %package tikz-cd-doc Summary: Documentation for tikz-cd -Version: svn49201 +Version: svn35485.0.9e + Provides: tex-tikz-cd-doc AutoReqProv: No @@ -111770,9 +110836,11 @@ Documentation for tikz-qtree Provides: tex-tikz-timing = %{tl_version} License: LPPL Summary: Easy generation of timing diagrams as tikz pictures -Version: svn46111 +Version: svn21013.0.7d + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-svn-prov Requires: tex(svn-prov.sty) Requires: tex(pgfopts.sty) @@ -111804,7 +110872,8 @@ larger timing diagrams. %package tikz-timing-doc Summary: Documentation for tikz-timing -Version: svn46111 +Version: svn21013.0.7d + Provides: tex-tikz-timing-doc AutoReqProv: No Requires: tex-svn-prov-doc @@ -111872,7 +110941,7 @@ Documentation for tikzinclude Provides: tex-tikzmark = %{tl_version} License: LPPL 1.3 Summary: Use TikZ's method of remembering a position on a page -Version: svn51050 +Version: svn44475 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(tikzlibrarytikzmark.code.tex) = %{tl_version} @@ -111885,7 +110954,7 @@ exclusively) with TikZ. %package tikzmark-doc Summary: Documentation for tikzmark -Version: svn51050 +Version: svn44475 Provides: tex-tikzmark-doc AutoReqProv: No @@ -112049,7 +111118,7 @@ Documentation for tikzscale Provides: tex-tikzsymbols = %{tl_version} License: LPPL 1.3 Summary: Some symbols created using TikZ -Version: svn49975 +Version: svn45222 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(tikz.sty) @@ -112066,7 +111135,7 @@ trees. %package tikzsymbols-doc Summary: Documentation for tikzsymbols -Version: svn49975 +Version: svn45222 Provides: tex-tikzsymbols-doc AutoReqProv: No @@ -112434,9 +111503,11 @@ Documentation for tkz-orm Provides: tex-tkz-tab = %{tl_version} License: LPPL Summary: Tables of signs and variations using PGF/TikZ -Version: svn49775 +Version: svn22834.1.3c + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(etex.sty) Requires: tex(ifthen.sty) Requires: tex(xkeyval.sty) @@ -112450,7 +111521,8 @@ documentation requires the tkz-doc bundle. %package tkz-tab-doc Summary: Documentation for tkz-tab -Version: svn49775 +Version: svn22834.1.3c + Provides: tex-tkz-tab-doc AutoReqProv: No @@ -112552,9 +111624,11 @@ Documentation for xifthen Provides: tex-ifmtarg = %{tl_version} License: LPPL Summary: If-then-else command for processing potentially empty arguments -Version: svn47544 +Version: svn19363.1.2a + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(ifmtarg.sty) = %{tl_version} %description ifmtarg @@ -112562,7 +111636,8 @@ ifmtarg package %package ifmtarg-doc Summary: Documentation for ifmtarg -Version: svn47544 +Version: svn19363.1.2a + Provides: tex-ifmtarg-doc AutoReqProv: No @@ -112658,9 +111733,11 @@ Documentation for placeins Provides: tex-venndiagram = %{tl_version} License: LPPL Summary: Creating Venn diagrams with TikZ -Version: svn47952 +Version: svn40058 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(tikz.sty) Requires: tex(etoolbox.sty) @@ -112673,7 +111750,8 @@ requires the TikZ package. %package venndiagram-doc Summary: Documentation for venndiagram -Version: svn47952 +Version: svn40058 + Provides: tex-venndiagram-doc AutoReqProv: No @@ -113050,7 +112128,7 @@ Documentation for colorinfo Provides: tex-colorspace = %{tl_version} License: LPPL 1.3 Summary: Provides PDF color spaces -Version: svn50585 +Version: svn42228 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xcolor.sty) @@ -113063,7 +112141,7 @@ supports pdfTeX and luaTeX. %package colorspace-doc Summary: Documentation for colorspace -Version: svn50585 +Version: svn42228 Provides: tex-colorspace-doc AutoReqProv: No @@ -113468,9 +112546,11 @@ Documentation for contour Provides: tex-contracard = %{tl_version} License: LPPL 1.3 Summary: Generate calling cards for dances -Version: svn50217 +Version: svn31745.1.0.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(geometry.sty) Requires: tex(titlesec.sty) Provides: tex(contracard.cls) = %{tl_version} @@ -113482,7 +112562,8 @@ cards for the same. %package contracard-doc Summary: Documentation for contracard -Version: svn50217 +Version: svn31745.1.0.1 + Provides: tex-contracard-doc AutoReqProv: No @@ -114018,7 +113099,7 @@ Documentation for crossreference Provides: tex-csquotes = %{tl_version} License: LPPL 1.3 Summary: Context sensitive quotation facilities -Version: svn51091 +Version: svn43469 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(etoolbox.sty) @@ -114046,7 +113127,7 @@ etoolbox package. %package csquotes-doc Summary: Documentation for csquotes -Version: svn51091 +Version: svn43469 Provides: tex-csquotes-doc AutoReqProv: No @@ -114057,7 +113138,7 @@ Documentation for csquotes Provides: tex-csvsimple = %{tl_version} License: LPPL 1.3 Summary: Simple CSV file processing -Version: svn51010 +Version: svn41597 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pgfkeys.sty) @@ -114074,7 +113155,7 @@ sorting or data base storage. %package csvsimple-doc Summary: Documentation for csvsimple -Version: svn51010 +Version: svn41597 Provides: tex-csvsimple-doc AutoReqProv: No @@ -114314,9 +113395,11 @@ Documentation for cweb-latex Provides: tex-cyber = %{tl_version} License: MIT Summary: Annotate compliance with cybersecurity requirements -Version: svn46776 +Version: svn37658.2.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(longtable.sty) Requires: tex(color.sty) Requires: tex(index.sty) @@ -114334,7 +113417,8 @@ it. %package cyber-doc Summary: Documentation for cyber -Version: svn46776 +Version: svn37658.2.1 + Provides: tex-cyber-doc AutoReqProv: No @@ -114439,9 +113523,11 @@ Documentation for dashrule Provides: tex-dashundergaps = %{tl_version} License: LPPL Summary: Underline with dotted or dashed lines -Version: svn49198 +Version: svn23373.1.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifthen.sty) Requires: tex(ulem.sty) Provides: tex(dashundergaps.sty) = %{tl_version} @@ -114455,7 +113541,8 @@ a 'fill-in block' for student evaluation sheets. %package dashundergaps-doc Summary: Documentation for dashundergaps -Version: svn49198 +Version: svn23373.1.2 + Provides: tex-dashundergaps-doc AutoReqProv: No @@ -114496,7 +113583,7 @@ Documentation for dataref Provides: tex-datatool = %{tl_version} License: LPPL 1.3 Summary: Tools to load and manipulate data -Version: svn49344 +Version: svn41772 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) @@ -114557,7 +113644,7 @@ and replaces the author's csvtools bundle. %package datatool-doc Summary: Documentation for datatool -Version: svn49344 +Version: svn41772 Provides: tex-datatool-doc AutoReqProv: No @@ -114714,7 +113801,7 @@ Documentation for datetime Provides: tex-datetime2 = %{tl_version} License: LPPL 1.3 Summary: Formats for dates, times and time zones -Version: svn48236 +Version: svn41686 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pgfkeys.sty) @@ -114739,7 +113826,7 @@ This package replaces datetime.sty which is now obsolete. %package datetime2-doc Summary: Documentation for datetime2 -Version: svn48236 +Version: svn41686 Provides: tex-datetime2-doc AutoReqProv: No @@ -114750,9 +113837,11 @@ Documentation for datetime2 Provides: tex-datetime2-bahasai = %{tl_version} License: LPPL 1.3 Summary: Bahasai language module for the datetime2 package -Version: svn46287 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(datetime2-bahasai.ldf) = %{tl_version} %description datetime2-bahasai @@ -114763,7 +113852,8 @@ to follow if you want to take over the maintenance. %package datetime2-bahasai-doc Summary: Documentation for datetime2-bahasai -Version: svn46287 +Version: svn36682.1.0 + Provides: tex-datetime2-bahasai-doc AutoReqProv: No @@ -114774,9 +113864,11 @@ Documentation for datetime2-bahasai Provides: tex-datetime2-basque = %{tl_version} License: LPPL 1.3 Summary: Basque language module for the datetime2 package -Version: svn47064 +Version: svn38287.1.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(datetime2-basque.ldf) = %{tl_version} %description datetime2-basque @@ -114785,7 +113877,8 @@ This module provides the "basque" style that can be set using %package datetime2-basque-doc Summary: Documentation for datetime2-basque -Version: svn47064 +Version: svn38287.1.2 + Provides: tex-datetime2-basque-doc AutoReqProv: No @@ -114796,9 +113889,11 @@ Documentation for datetime2-basque Provides: tex-datetime2-breton = %{tl_version} License: LPPL 1.3 Summary: breton language module for the datetime2 package -Version: svn47030 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-breton-ascii.ldf) = %{tl_version} @@ -114813,7 +113908,8 @@ to follow if you want to take over the maintenance. %package datetime2-breton-doc Summary: Documentation for datetime2-breton -Version: svn47030 +Version: svn36682.1.0 + Provides: tex-datetime2-breton-doc AutoReqProv: No @@ -114824,9 +113920,11 @@ Documentation for datetime2-breton Provides: tex-datetime2-bulgarian = %{tl_version} License: LPPL 1.3 Summary: Bulgarian language module for the datetime2 package -Version: svn47031 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-bulgarian-ascii.ldf) = %{tl_version} @@ -114841,7 +113939,8 @@ to follow if you want to take over the maintenance. %package datetime2-bulgarian-doc Summary: Documentation for datetime2-bulgarian -Version: svn47031 +Version: svn36682.1.0 + Provides: tex-datetime2-bulgarian-doc AutoReqProv: No @@ -114852,9 +113951,11 @@ Documentation for datetime2-bulgarian Provides: tex-datetime2-catalan = %{tl_version} License: LPPL 1.3 Summary: catalan language module for the datetime2 package -Version: svn47032 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-catalan-ascii.ldf) = %{tl_version} @@ -114869,7 +113970,8 @@ to follow if you want to take over the maintenance. %package datetime2-catalan-doc Summary: Documentation for datetime2-catalan -Version: svn47032 +Version: svn36682.1.0 + Provides: tex-datetime2-catalan-doc AutoReqProv: No @@ -114911,9 +114013,11 @@ Documentation for datetime2-croatian Provides: tex-datetime2-czech = %{tl_version} License: LPPL 1.3 Summary: czech language module for the datetime2 package -Version: svn47033 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-czech-ascii.ldf) = %{tl_version} @@ -114928,7 +114032,8 @@ to follow if you want to take over the maintenance. %package datetime2-czech-doc Summary: Documentation for datetime2-czech -Version: svn47033 +Version: svn36682.1.0 + Provides: tex-datetime2-czech-doc AutoReqProv: No @@ -114939,9 +114044,11 @@ Documentation for datetime2-czech Provides: tex-datetime2-danish = %{tl_version} License: LPPL 1.3 Summary: danish language module for the datetime2 package -Version: svn47034 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-danish-ascii.ldf) = %{tl_version} @@ -114956,7 +114063,8 @@ to follow if you want to take over the maintenance. %package datetime2-danish-doc Summary: Documentation for datetime2-danish -Version: svn47034 +Version: svn36682.1.0 + Provides: tex-datetime2-danish-doc AutoReqProv: No @@ -114967,9 +114075,11 @@ Documentation for datetime2-danish Provides: tex-datetime2-dutch = %{tl_version} License: LPPL 1.3 Summary: dutch language module for the datetime2 package -Version: svn47355 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(datetime2-dutch.ldf) = %{tl_version} %description datetime2-dutch @@ -114980,7 +114090,8 @@ to follow if you want to take over the maintenance. %package datetime2-dutch-doc Summary: Documentation for datetime2-dutch -Version: svn47355 +Version: svn36682.1.0 + Provides: tex-datetime2-dutch-doc AutoReqProv: No @@ -115070,9 +114181,11 @@ Documentation for datetime2-english Provides: tex-datetime2-esperanto = %{tl_version} License: LPPL 1.3 Summary: Esperanto language module for the datetime2 package -Version: svn47356 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-esperanto-ascii.ldf) = %{tl_version} @@ -115087,7 +114200,8 @@ to follow if you want to take over the maintenance. %package datetime2-esperanto-doc Summary: Documentation for datetime2-esperanto -Version: svn47356 +Version: svn36682.1.0 + Provides: tex-datetime2-esperanto-doc AutoReqProv: No @@ -115098,9 +114212,11 @@ Documentation for datetime2-esperanto Provides: tex-datetime2-estonian = %{tl_version} License: LPPL 1.3 Summary: Estonian language module for the datetime2 package -Version: svn47565 +Version: svn36682.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-estonian-ascii.ldf) = %{tl_version} @@ -115115,7 +114231,8 @@ to follow if you want to take over the maintenance. %package datetime2-estonian-doc Summary: Documentation for datetime2-estonian -Version: svn47565 +Version: svn36682.1.0 + Provides: tex-datetime2-estonian-doc AutoReqProv: No @@ -115126,9 +114243,11 @@ Documentation for datetime2-estonian Provides: tex-datetime2-finnish = %{tl_version} License: LPPL 1.3 Summary: Finnish language module for the datetime2 package -Version: svn47047 +Version: svn40237 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-finnish-ascii.ldf) = %{tl_version} @@ -115143,7 +114262,8 @@ to follow if you want to take over the maintenance. %package datetime2-finnish-doc Summary: Documentation for datetime2-finnish -Version: svn47047 +Version: svn40237 + Provides: tex-datetime2-finnish-doc AutoReqProv: No @@ -115182,9 +114302,11 @@ Documentation for datetime2-french Provides: tex-datetime2-galician = %{tl_version} License: LPPL 1.3 Summary: galician language module for the datetime2 package -Version: svn47631 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-galician-ascii.ldf) = %{tl_version} @@ -115199,7 +114321,8 @@ to follow if you want to take over the maintenance. %package datetime2-galician-doc Summary: Documentation for datetime2-galician -Version: svn47631 +Version: svn36692.1.0 + Provides: tex-datetime2-galician-doc AutoReqProv: No @@ -115210,7 +114333,7 @@ Documentation for datetime2-galician Provides: tex-datetime2-german = %{tl_version} License: LPPL 1.3 Summary: German language module for the datetime2 package -Version: svn45800 +Version: svn45472 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifxetex.sty) @@ -115227,7 +114350,7 @@ to follow if you want to take over the maintenance. %package datetime2-german-doc Summary: Documentation for datetime2-german -Version: svn45800 +Version: svn45472 Provides: tex-datetime2-german-doc AutoReqProv: No @@ -115238,9 +114361,11 @@ Documentation for datetime2-german Provides: tex-datetime2-greek = %{tl_version} License: LPPL 1.3 Summary: Greek language module for the datetime2 package -Version: svn47533 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-greek-ascii.ldf) = %{tl_version} @@ -115255,7 +114380,8 @@ to follow if you want to take over the maintenance. %package datetime2-greek-doc Summary: Documentation for datetime2-greek -Version: svn47533 +Version: svn36692.1.0 + Provides: tex-datetime2-greek-doc AutoReqProv: No @@ -115266,9 +114392,11 @@ Documentation for datetime2-greek Provides: tex-datetime2-hebrew = %{tl_version} License: LPPL 1.3 Summary: Hebrew language module for the datetime2 package -Version: svn47534 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(datetime2-hebrew.ldf) = %{tl_version} %description datetime2-hebrew @@ -115279,7 +114407,8 @@ to follow if you want to take over the maintenance. %package datetime2-hebrew-doc Summary: Documentation for datetime2-hebrew -Version: svn47534 +Version: svn36692.1.0 + Provides: tex-datetime2-hebrew-doc AutoReqProv: No @@ -115290,9 +114419,11 @@ Documentation for datetime2-hebrew Provides: tex-datetime2-icelandic = %{tl_version} License: LPPL 1.3 Summary: Icelandic language module for the datetime2 package -Version: svn47501 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-icelandic-ascii.ldf) = %{tl_version} @@ -115307,7 +114438,8 @@ to follow if you want to take over the maintenance. %package datetime2-icelandic-doc Summary: Documentation for datetime2-icelandic -Version: svn47501 +Version: svn36692.1.0 + Provides: tex-datetime2-icelandic-doc AutoReqProv: No @@ -115318,9 +114450,11 @@ Documentation for datetime2-icelandic Provides: tex-datetime2-irish = %{tl_version} License: LPPL 1.3 Summary: Irish Gaelic Language Module for the datetime2 Package -Version: svn47632 +Version: svn36635.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-ga-GB.ldf) = %{tl_version} @@ -115337,7 +114471,8 @@ to follow if you want to take over the maintenance. %package datetime2-irish-doc Summary: Documentation for datetime2-irish -Version: svn47632 +Version: svn36635.1.0 + Provides: tex-datetime2-irish-doc AutoReqProv: No @@ -115413,9 +114548,11 @@ Documentation for datetime2-it-fulltext Provides: tex-datetime2-latin = %{tl_version} License: LPPL 1.3 Summary: Latin language module for the datetime2 package -Version: svn47748 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(datetime2-latin.ldf) = %{tl_version} %description datetime2-latin @@ -115426,7 +114563,8 @@ to follow if you want to take over the maintenance. %package datetime2-latin-doc Summary: Documentation for datetime2-latin -Version: svn47748 +Version: svn36692.1.0 + Provides: tex-datetime2-latin-doc AutoReqProv: No @@ -115437,9 +114575,11 @@ Documentation for datetime2-latin Provides: tex-datetime2-lsorbian = %{tl_version} License: LPPL 1.3 Summary: Lower Sorbian language module for the datetime2 package -Version: svn47749 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-lsorbian-ascii.ldf) = %{tl_version} @@ -115454,7 +114594,8 @@ to follow if you want to take over the maintenance. %package datetime2-lsorbian-doc Summary: Documentation for datetime2-lsorbian -Version: svn47749 +Version: svn36692.1.0 + Provides: tex-datetime2-lsorbian-doc AutoReqProv: No @@ -115465,9 +114606,11 @@ Documentation for datetime2-lsorbian Provides: tex-datetime2-magyar = %{tl_version} License: LPPL 1.3 Summary: magyar language module for the datetime2 package -Version: svn48266 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-magyar-ascii.ldf) = %{tl_version} @@ -115482,7 +114625,8 @@ to follow if you want to take over the maintenance. %package datetime2-magyar-doc Summary: Documentation for datetime2-magyar -Version: svn48266 +Version: svn36692.1.0 + Provides: tex-datetime2-magyar-doc AutoReqProv: No @@ -115493,9 +114637,11 @@ Documentation for datetime2-magyar Provides: tex-datetime2-norsk = %{tl_version} License: LPPL 1.3 Summary: Norsk language module for the datetime2 package -Version: svn48267 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-norsk-ascii.ldf) = %{tl_version} @@ -115510,7 +114656,8 @@ to follow if you want to take over the maintenance. %package datetime2-norsk-doc Summary: Documentation for datetime2-norsk -Version: svn48267 +Version: svn36692.1.0 + Provides: tex-datetime2-norsk-doc AutoReqProv: No @@ -115611,9 +114758,11 @@ Documentation for datetime2-romanian Provides: tex-datetime2-russian = %{tl_version} License: LPPL 1.3 Summary: russian language module for the datetime2 package -Version: svn49345 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-russian-ascii.ldf) = %{tl_version} @@ -115628,7 +114777,8 @@ to follow if you want to take over the maintenance. %package datetime2-russian-doc Summary: Documentation for datetime2-russian -Version: svn49345 +Version: svn36692.1.0 + Provides: tex-datetime2-russian-doc AutoReqProv: No @@ -115639,9 +114789,11 @@ Documentation for datetime2-russian Provides: tex-datetime2-samin = %{tl_version} License: LPPL 1.3 Summary: Northern Sami language module for the datetime2 package -Version: svn49346 +Version: svn36692.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-samin-ascii.ldf) = %{tl_version} @@ -115656,7 +114808,8 @@ to follow if you want to take over the maintenance. %package datetime2-samin-doc Summary: Documentation for datetime2-samin -Version: svn49346 +Version: svn36692.1.0 + Provides: tex-datetime2-samin-doc AutoReqProv: No @@ -115791,9 +114944,11 @@ Documentation for datetime2-slovene Provides: tex-datetime2-spanish = %{tl_version} License: LPPL 1.3 Summary: Spanish language module for the datetime2 package -Version: svn45785 +Version: svn36661.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifxetex.sty) Requires: tex(ifluatex.sty) Provides: tex(datetime2-spanish-ascii.ldf) = %{tl_version} @@ -115808,7 +114963,8 @@ to follow if you want to take over the maintenance. %package datetime2-spanish-doc Summary: Documentation for datetime2-spanish -Version: svn45785 +Version: svn36661.1.0 + Provides: tex-datetime2-spanish-doc AutoReqProv: No @@ -115881,7 +115037,7 @@ Documentation for datetime2-turkish Provides: tex-datetime2-ukrainian = %{tl_version} License: LPPL 1.3 Summary: Ukrainian language module for the datetime2 package -Version: svn47552 +Version: svn44588 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifxetex.sty) @@ -115898,7 +115054,7 @@ to follow if you want to take over the maintenance. %package datetime2-ukrainian-doc Summary: Documentation for datetime2-ukrainian -Version: svn47552 +Version: svn44588 Provides: tex-datetime2-ukrainian-doc AutoReqProv: No @@ -116454,7 +115610,7 @@ Documentation for dnaseq Provides: tex-doclicense = %{tl_version} License: LPPL 1.3 Summary: Support for putting documents under a license -Version: svn51332 +Version: svn45495 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(kvoptions.sty) @@ -116490,7 +115646,7 @@ licenses. %package doclicense-doc Summary: Documentation for doclicense -Version: svn51332 +Version: svn45495 Provides: tex-doclicense-doc AutoReqProv: No @@ -116726,7 +115882,7 @@ Documentation for download Provides: tex-dox = %{tl_version} License: LPPL Summary: Extend the doc package -Version: svn46011 +Version: svn43060 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(kvoptions.sty) @@ -116742,7 +115898,7 @@ limitation. %package dox-doc Summary: Documentation for dox -Version: svn46011 +Version: svn43060 Provides: tex-dox-doc AutoReqProv: No @@ -116902,7 +116058,7 @@ Documentation for draftwatermark Provides: tex-dtk = %{tl_version} License: LPPL 1.3 Summary: Document class for the journal of DANTE -Version: svn50789 +Version: svn44524 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(multicol.sty) @@ -116972,7 +116128,7 @@ as to produce the complete journal. %package dtk-doc Summary: Documentation for dtk -Version: svn50789 +Version: svn44524 Provides: tex-dtk-doc AutoReqProv: No @@ -116981,7 +116137,8 @@ Documentation for dtk %package dtxgallery-doc Summary: Documentation for dtxgallery -Version: svn49504 +Version: svn15878.1 + Provides: tex-dtxgallery-doc AutoReqProv: No @@ -117160,9 +116317,11 @@ Documentation for easy-todo Provides: tex-easyfig = %{tl_version} License: LPPL 1.3 Summary: Simplifying the use of common figures -Version: svn47193 +Version: svn26424.1.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(adjustbox.sty) Requires: tex(xkeyval.sty) Requires: tex(ifetex.sty) @@ -117181,7 +116340,8 @@ further modifications. %package easyfig-doc Summary: Documentation for easyfig -Version: svn47193 +Version: svn26424.1.2 + Provides: tex-easyfig-doc AutoReqProv: No @@ -117508,7 +116668,7 @@ Documentation for egplot Provides: tex-elements = %{tl_version} License: LPPL 1.3 Summary: Provides properties of chemical elements -Version: svn46505 +Version: svn44628 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(translations.sty) @@ -117526,7 +116686,7 @@ package is a spin-off of the package bohr by the same author. %package elements-doc Summary: Documentation for elements -Version: svn46505 +Version: svn44628 Provides: tex-elements-doc AutoReqProv: No @@ -117615,9 +116775,11 @@ Documentation for elocalloc Provides: tex-elpres = %{tl_version} License: LPPL Summary: A simple class for electronic presentations -Version: svn46429 +Version: svn15878.v0.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(geometry.sty) Requires: tex(ifthen.sty) Requires: tex(fancyhdr.sty) @@ -117633,7 +116795,8 @@ and may be used with LaTeX or pdfLaTeX. %package elpres-doc Summary: Documentation for elpres -Version: svn46429 +Version: svn15878.v0.3 + Provides: tex-elpres-doc AutoReqProv: No @@ -117708,9 +116871,11 @@ Documentation for emarks Provides: tex-embedall = %{tl_version} License: LPPL 1.2 Summary: Embed source files into the generated PDF -Version: svn51177 +Version: svn31903.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(embedfile.sty) Requires: tex(graphicx.sty) Requires: tex(listings.sty) @@ -117726,7 +116891,8 @@ codes and %package embedall-doc Summary: Documentation for embedall -Version: svn51177 +Version: svn31903.1.0 + Provides: tex-embedall-doc AutoReqProv: No @@ -117821,9 +116987,11 @@ Documentation for emulateapj Provides: tex-endfloat = %{tl_version} License: GPL+ Summary: Move floats to the end, leaving markers where they belong -Version: svn51003 +Version: svn24962.2.5d + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(keyval.sty) Provides: tex(efxmpl.cfg) = %{tl_version} Provides: tex(endfloat.sty) = %{tl_version} @@ -117839,7 +117007,8 @@ float types with endfloat. %package endfloat-doc Summary: Documentation for endfloat -Version: svn51003 +Version: svn24962.2.5d + Provides: tex-endfloat-doc AutoReqProv: No @@ -117998,9 +117167,11 @@ Documentation for enotez Provides: tex-enumitem = %{tl_version} License: LPPL Summary: Control layout of itemize, enumerate, description -Version: svn51423 +Version: svn24146.3.5.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(enumitem.sty) = %{tl_version} %description enumitem @@ -118014,7 +117185,8 @@ environments with counters of their own. %package enumitem-doc Summary: Documentation for enumitem -Version: svn51423 +Version: svn24146.3.5.2 + Provides: tex-enumitem-doc AutoReqProv: No @@ -118338,7 +117510,7 @@ Documentation for errata Provides: tex-esami = %{tl_version} License: LPPL Summary: Typeset exams with scrambled questions and answers -Version: svn47639 +Version: svn45359 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(random.tex) @@ -118356,7 +117528,7 @@ Spanish. %package esami-doc Summary: Documentation for esami -Version: svn47639 +Version: svn45359 Provides: tex-esami-doc AutoReqProv: No @@ -118395,9 +117567,11 @@ Documentation for esdiff Provides: tex-esint = %{tl_version} License: Public Domain Summary: Extended set of integrals for Computer Modern -Version: svn51679 +Version: svn15878.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(esint10.tfm) = %{tl_version} Provides: tex(esint.sty) = %{tl_version} Provides: tex(uesint.fd) = %{tl_version} @@ -118413,7 +117587,8 @@ LaTeX macro support. %package esint-doc Summary: Documentation for esint -Version: svn51679 +Version: svn15878.1.1 + Provides: tex-esint-doc AutoReqProv: No @@ -118526,7 +117701,7 @@ Documentation for etextools Provides: tex-etoc = %{tl_version} License: LPPL 1.3 Summary: Completely customisable TOCs -Version: svn50317 +Version: svn45429 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(multicol.sty) @@ -118551,7 +117726,7 @@ may be used arbitrarily many times in the same document, while %package etoc-doc Summary: Documentation for etoc -Version: svn50317 +Version: svn45429 Provides: tex-etoc-doc AutoReqProv: No @@ -118562,7 +117737,7 @@ Documentation for etoc Provides: tex-etoolbox = %{tl_version} License: LPPL 1.3 Summary: e-TeX tools for LaTeX -Version: svn46602 +Version: svn42855 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(etex.sty) @@ -118583,7 +117758,7 @@ kernel. %package etoolbox-doc Summary: Documentation for etoolbox -Version: svn46602 +Version: svn42855 Provides: tex-etoolbox-doc AutoReqProv: No @@ -118622,7 +117797,7 @@ Documentation for eukdate Provides: tex-europasscv = %{tl_version} License: LPPL 1.3 Summary: Unofficial class for the new version of the Europass curriculum vitae -Version: svn49703 +Version: svn43033 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(totpages.sty) @@ -118656,7 +117831,7 @@ compact and somewhat fancier layout. %package europasscv-doc Summary: Documentation for europasscv -Version: svn49703 +Version: svn43033 Provides: tex-europasscv-doc AutoReqProv: No @@ -118667,9 +117842,11 @@ Documentation for europasscv Provides: tex-europecv = %{tl_version} License: LPPL Summary: Unofficial class for European curricula vitae -Version: svn50470 +Version: svn34454.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(totpages.sty) Requires: tex(booktabs.sty) Requires: tex(ucs.sty) @@ -118718,7 +117895,8 @@ and koi8-r. %package europecv-doc Summary: Documentation for europecv -Version: svn50470 +Version: svn34454.0 + Provides: tex-europecv-doc AutoReqProv: No @@ -118789,9 +117967,11 @@ Documentation for everypage Provides: tex-exam = %{tl_version} License: LPPL 1.3 Summary: Package for typesetting exam scripts -Version: svn46084 +Version: svn37279.2.5 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifthen.sty) Provides: tex(exam.cls) = %{tl_version} @@ -118820,7 +118000,8 @@ and should not be installed on the same system. %package exam-doc Summary: Documentation for exam -Version: svn46084 +Version: svn37279.2.5 + Provides: tex-exam-doc AutoReqProv: No @@ -119275,7 +118456,7 @@ Documentation for facsimile Provides: tex-factura = %{tl_version} License: LPPL 1.3 Summary: Typeset and calculate invoices according to Venezuelan law -Version: svn48333 +Version: svn44831 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xifthen.sty) @@ -119310,7 +118491,7 @@ re-usable for other jurisdictions, by rather simple editing. %package factura-doc Summary: Documentation for factura -Version: svn48333 +Version: svn44831 Provides: tex-factura-doc AutoReqProv: No @@ -119321,9 +118502,11 @@ Documentation for factura Provides: tex-fancylabel = %{tl_version} License: LPPL 1.2 Summary: Complex labelling with LaTeX -Version: svn46736 +Version: svn34684.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(ifthen.sty) Requires: tex(suffix.sty) @@ -119335,7 +118518,8 @@ to support the needs of the author's chemschemex package %package fancylabel-doc Summary: Documentation for fancylabel -Version: svn46736 +Version: svn34684.1.0 + Provides: tex-fancylabel-doc AutoReqProv: No @@ -119371,9 +118555,11 @@ Documentation for fancynum Provides: tex-fancypar = %{tl_version} License: LPPL 1.3 Summary: Decoration of individual paragraphs -Version: svn49801 +Version: svn18018.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(tikz.sty) Requires: tex(xcolor.sty) @@ -119390,7 +118576,8 @@ include displayed mathematics. %package fancypar-doc Summary: Documentation for fancypar -Version: svn49801 +Version: svn18018.1.1 + Provides: tex-fancypar-doc AutoReqProv: No @@ -119493,9 +118680,11 @@ Documentation for fancytooltips Provides: tex-fcolumn = %{tl_version} License: LPPL 1.2 Summary: Typesetting financial tables -Version: svn50937 +Version: svn38489 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(array.sty) Provides: tex(fcolumn.sty) = %{tl_version} @@ -119508,7 +118697,8 @@ rule of the correct width) using the specifier "f". %package fcolumn-doc Summary: Documentation for fcolumn -Version: svn50937 +Version: svn38489 + Provides: tex-fcolumn-doc AutoReqProv: No @@ -119586,9 +118776,11 @@ Documentation for figsize Provides: tex-filecontents = %{tl_version} License: LPPL Summary: Extended filecontents and filecontents* environments -Version: svn47890 +Version: svn24250.1.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(filecontents.sty) = %{tl_version} %description filecontents @@ -119603,7 +118795,8 @@ filecontents/filecontents* anywhere. %package filecontents-doc Summary: Documentation for filecontents -Version: svn47890 +Version: svn24250.1.3 + Provides: tex-filecontents-doc AutoReqProv: No @@ -119802,7 +118995,7 @@ Documentation for finstrut Provides: tex-fithesis = %{tl_version} License: LPPL 1.3 Summary: Thesis class and template for Masaryk University (Brno, Czech Republic) -Version: svn47409 +Version: svn45257 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(keyval.sty) @@ -119871,7 +119064,7 @@ academic institutions. %package fithesis-doc Summary: Documentation for fithesis -Version: svn47409 +Version: svn45257 Provides: tex-fithesis-doc AutoReqProv: No @@ -119909,7 +119102,7 @@ Documentation for fixfoot Provides: tex-fixme = %{tl_version} License: LPPL Summary: Insert "fixme" notes into draft documents -Version: svn49591 +Version: svn43413 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -119950,7 +119143,7 @@ support for AUC-TeX. %package fixme-doc Summary: Documentation for fixme -Version: svn49591 +Version: svn43413 Provides: tex-fixme-doc AutoReqProv: No @@ -120363,7 +119556,7 @@ Documentation for fmp Provides: tex-fmtcount = %{tl_version} License: LPPL 1.3 Summary: Display the value of a LaTeX counter in a variety of formats -Version: svn46159 +Version: svn45344 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -120405,7 +119598,7 @@ separately. %package fmtcount-doc Summary: Documentation for fmtcount -Version: svn46159 +Version: svn45344 Provides: tex-fmtcount-doc AutoReqProv: No @@ -120554,9 +119747,11 @@ Documentation for fnpara Provides: tex-fnpct = %{tl_version} License: LPPL 1.3 Summary: Manage footnote marks' interaction with punctuation -Version: svn50046 +Version: svn40535 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xparse.sty) Requires: tex(l3keys2e.sty) Requires: tex(scrlfile.sty) @@ -120572,7 +119767,8 @@ provided. %package fnpct-doc Summary: Documentation for fnpct -Version: svn50046 +Version: svn40535 + Provides: tex-fnpct-doc AutoReqProv: No @@ -121367,9 +120563,11 @@ Documentation for fwlw Provides: tex-g-brief = %{tl_version} License: LPPL Summary: Letter document class -Version: svn50415 +Version: svn21140.4.0.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(babel.sty) Requires: tex(inputenc.sty) Requires: tex(marvosym.sty) @@ -121388,7 +120586,8 @@ both an 'old' and a 'new' version of g-brief. %package g-brief-doc Summary: Documentation for g-brief -Version: svn50415 +Version: svn21140.4.0.2 + Provides: tex-g-brief-doc AutoReqProv: No @@ -122189,9 +121388,11 @@ Documentation for gmverb Provides: tex-graphbox = %{tl_version} License: LPPL 1.3 Summary: Extend graphicx to improve placement of graphics -Version: svn46360 +Version: svn35075.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(graphicx.sty) Provides: tex(graphbox.sty) = %{tl_version} @@ -122207,7 +121408,8 @@ framework. %package graphbox-doc Summary: Documentation for graphbox -Version: svn46360 +Version: svn35075.1.0 + Provides: tex-graphbox-doc AutoReqProv: No @@ -122402,9 +121604,11 @@ Documentation for gridset Provides: tex-gtl = %{tl_version} License: LPPL Summary: Manipulating generalized token lists -Version: svn49527 +Version: svn38503 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Provides: tex(gtl.sty) = %{tl_version} @@ -122417,7 +121621,8 @@ a time. The package requires an up-to-date l3kernel bundle. %package gtl-doc Summary: Documentation for gtl -Version: svn49527 +Version: svn38503 + Provides: tex-gtl-doc AutoReqProv: No @@ -122428,9 +121633,11 @@ Documentation for gtl Provides: tex-guitlogo = %{tl_version} License: LPPL Summary: Macros for typesetting the GuIT logo -Version: svn51582 +Version: svn27458.0.9.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(graphics.sty) Requires: tex(url.sty) Requires: tex(xcolor.sty) @@ -122453,7 +121660,8 @@ Documentation is available in Italian, only. %package guitlogo-doc Summary: Documentation for guitlogo -Version: svn51582 +Version: svn27458.0.9.2 + Provides: tex-guitlogo-doc AutoReqProv: No @@ -122887,9 +122095,11 @@ Documentation for hrefhide Provides: tex-hvindex = %{tl_version} License: LPPL Summary: Support for indexing -Version: svn46051 +Version: svn16136.0.02 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(makeidx.sty) Provides: tex(hvindex.sty) = %{tl_version} @@ -122901,7 +122111,8 @@ is both typeset and indexed. %package hvindex-doc Summary: Documentation for hvindex -Version: svn46051 +Version: svn16136.0.02 + Provides: tex-hvindex-doc AutoReqProv: No @@ -122912,9 +122123,11 @@ Documentation for hvindex Provides: tex-hypdvips = %{tl_version} License: LPPL 1.3 Summary: Hyperref extensions for use with dvips -Version: svn51798 +Version: svn34364.3.02 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(atveryend.sty) Requires: tex(xcolor.sty) Requires: tex(xkeyval.sty) @@ -122931,7 +122144,8 @@ which in addition allows an enhanced back-referencing system. %package hypdvips-doc Summary: Documentation for hypdvips -Version: svn51798 +Version: svn34364.3.02 + Provides: tex-hypdvips-doc AutoReqProv: No @@ -122995,11 +122209,21 @@ AutoReqProv: No %description hypernat-doc Documentation for hypernat +%package hyperref-docsrc-doc +Summary: Documentation for hyperref-docsrc +Version: svn15878.0 + +Provides: tex-hyperref-docsrc-doc +AutoReqProv: No + +%description hyperref-docsrc-doc +Documentation for hyperref-docsrc + %package hyperxmp Provides: tex-hyperxmp = %{tl_version} License: LPPL 1.3 Summary: Embed XMP metadata within a LaTeX document -Version: svn50812 +Version: svn44902 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(atenddvi.sty) @@ -123038,7 +122262,7 @@ latex+dvipdfm, and latex+dvips+ps2pdf. %package hyperxmp-doc Summary: Documentation for hyperxmp -Version: svn50812 +Version: svn44902 Provides: tex-hyperxmp-doc AutoReqProv: No @@ -123686,9 +122910,11 @@ Documentation for inversepath Provides: tex-invoice = %{tl_version} License: GPL+ Summary: Generate invoices -Version: svn48359 +Version: svn39397 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifthen.sty) Requires: tex(longtable.sty) Requires: tex(calc.sty) @@ -123704,7 +122930,8 @@ depends on the fp and calc packages for its calculations. %package invoice-doc Summary: Documentation for invoice -Version: svn48359 +Version: svn39397 + Provides: tex-invoice-doc AutoReqProv: No @@ -123859,9 +123086,11 @@ Documentation for isodate Provides: tex-isodoc = %{tl_version} License: LPPL 1.3 Summary: A LaTeX class for typesetting letters and invoices -Version: svn47868 +Version: svn39520 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ctable.sty) Requires: tex(xcolor.sty) Requires: tex(tabularx.sty) @@ -123885,7 +123114,8 @@ implements the NEN1026 standard. %package isodoc-doc Summary: Documentation for isodoc -Version: svn47868 +Version: svn39520 + Provides: tex-isodoc-doc AutoReqProv: No @@ -124069,7 +123299,7 @@ Documentation for jlabels Provides: tex-jslectureplanner = %{tl_version} License: LPPL 1.3 Summary: Creation and management of university course material -Version: svn49963 +Version: svn43476 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(etoolbox.sty) @@ -124098,7 +123328,7 @@ biblatex. %package jslectureplanner-doc Summary: Documentation for jslectureplanner -Version: svn49963 +Version: svn43476 Provides: tex-jslectureplanner-doc AutoReqProv: No @@ -124180,9 +123410,11 @@ Documentation for jvlisting Provides: tex-kantlipsum = %{tl_version} License: LPPL 1.3 Summary: Generate sentences in Kant's style -Version: svn51727 +Version: svn27994.0.6 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Requires: tex(xparse.sty) Provides: tex(kantlipsum.sty) = %{tl_version} @@ -124195,7 +123427,8 @@ modelled on lipsum, and may be used for similar purposes. %package kantlipsum-doc Summary: Documentation for kantlipsum -Version: svn51727 +Version: svn27994.0.6 + Provides: tex-kantlipsum-doc AutoReqProv: No @@ -124436,9 +123669,11 @@ Provides: tex-koma-script-sfs = %{tl_version} License: LPPL Summary: Koma-script letter class option for Finnish Version: svn26137.1.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + %description koma-script-sfs A koma-script parameter set for letters on A4 paper, complying with Finnish standards SFS 2486, 2487 and 2488; suitable for @@ -124938,9 +124173,11 @@ Documentation for lettre Provides: tex-lettrine = %{tl_version} License: LPPL 1.3 Summary: Typeset dropped capitals -Version: svn50847 +Version: svn38268.1.9 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(keyval.sty) Provides: tex(lettrine.cfg) = %{tl_version} Provides: tex(lettrine.sty) = %{tl_version} @@ -124954,7 +124191,8 @@ shape (such as "A" and "V"). %package lettrine-doc Summary: Documentation for lettrine -Version: svn50847 +Version: svn38268.1.9 + Provides: tex-lettrine-doc AutoReqProv: No @@ -125112,9 +124350,11 @@ Documentation for linegoal Provides: tex-lipsum = %{tl_version} License: LPPL Summary: Easy access to the Lorem Ipsum dummy text -Version: svn49610 +Version: svn34800.v1.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(lipsum.sty) = %{tl_version} %description lipsum @@ -125125,7 +124365,8 @@ with permission from http://lipsum.com/. %package lipsum-doc Summary: Documentation for lipsum -Version: svn49610 +Version: svn34800.v1.3 + Provides: tex-lipsum-doc AutoReqProv: No @@ -125638,7 +124879,7 @@ Documentation for lstaddons Provides: tex-lt3graph = %{tl_version} License: LPPL 1.3 Summary: Provide a graph datastructure for experimental LaTeX3 -Version: svn45913 +Version: svn42874 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(filecontents.sty) @@ -125666,7 +124907,7 @@ documents that are using the experimental LaTeX 3 syntax. %package lt3graph-doc Summary: Documentation for lt3graph -Version: svn45913 +Version: svn42874 Provides: tex-lt3graph-doc AutoReqProv: No @@ -126190,7 +125431,7 @@ Documentation for makeglos Provides: tex-mandi = %{tl_version} License: LPPL 1.3 Summary: Macros for introductory physics and astronomy -Version: svn49720 +Version: svn41598 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(amsmath.sty) @@ -126229,7 +125470,7 @@ physics students. %package mandi-doc Summary: Documentation for mandi -Version: svn49720 +Version: svn41598 Provides: tex-mandi-doc AutoReqProv: No @@ -126318,7 +125559,7 @@ Documentation for marginfix Provides: tex-marginnote = %{tl_version} License: LPPL Summary: Notes in the margin, even where \marginpar fails -Version: svn48383 +Version: svn43979 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(marginnote.sty) = %{tl_version} @@ -126331,44 +125572,37 @@ made with the framed package. %package marginnote-doc Summary: Documentation for marginnote -Version: svn48383 +Version: svn43979 Provides: tex-marginnote-doc AutoReqProv: No %description marginnote-doc Documentation for marginnote -%package mathalpha +%package mathalfa Provides: tex-mathalfa = %{tl_version} -Provides: texlive-mathalfa = 8:svn51179 -Obsoletes: texlive-mathalfa <= 8:svn47575 -Provides: tex-mathalpha = %{tl_version} License: LPPL 1.3 Summary: General package for loading maths alphabets in LaTeX -Version: svn51179 +Version: svn43332 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) Provides: tex(mathalfa.sty) = %{tl_version} -Provides: tex(mathalpha.sty) = %{tl_version} -%description mathalpha +%description mathalfa The package provides means of loading maths alphabets (such as are normally addressed via macros \mathcal, \mathbb, \mathfrak and \mathscr), offering various features normally missing in -existing packages for this job. Formerly known as "mathalfa". +existing packages for this job. -%package mathalpha-doc -Summary: Documentation for mathalpha -Version: svn51179 -Provides: texlive-mathalfa-doc = 8:svn51179 -Obsoletes: texlive-mathalfa-doc <= 8:svn47575 +%package mathalfa-doc +Summary: Documentation for mathalfa +Version: svn43332 Provides: tex-mathalfa-doc -Provides: tex-mathalpha-doc AutoReqProv: No -%description mathalpha-doc -Documentation for mathalpha +%description mathalfa-doc +Documentation for mathalfa %package mathastext Provides: tex-mathastext = %{tl_version} @@ -126473,6 +125707,35 @@ AutoReqProv: No %description maybemath-doc Documentation for maybemath +%package mbenotes +Provides: tex-mbenotes = %{tl_version} +License: LPPL 1.2 +Summary: Notes in tables or images +Version: svn31813.2 + +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea + +Requires: tex(graphicx.sty) +Requires: tex(xcolor.sty) +Provides: tex(mbenotes.sty) = %{tl_version} + +%description mbenotes +The package defines a command \tabnote, which stores notes for +later processing by the command \thetabnotes, and a +corresponding \imgnote for images. The package is derived from +mechanisms in the package endnotes. + +%package mbenotes-doc +Summary: Documentation for mbenotes +Version: svn31813.2 + +Provides: tex-mbenotes-doc +AutoReqProv: No + +%description mbenotes-doc +Documentation for mbenotes + %package mcaption Provides: tex-mcaption = %{tl_version} License: LPPL @@ -126649,7 +125912,7 @@ Documentation for mdframed Provides: tex-media9 = %{tl_version} License: LPPL 1.3 Summary: Multimedia inclusion package with Adobe Reader-9/X compatibility -Version: svn51619 +Version: svn45432 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -126661,7 +125924,6 @@ Requires: tex(atbegshi.sty) Requires: tex(atenddvi.sty) Requires: tex(tikz.sty) Requires: tex(pdftexcmds.sty) -Requires: tex(ocgbase.sty) Provides: tex(media9.sty) = %{tl_version} Provides: texlive-movie15 = svn26473.0.obsolete Obsoletes: texlive-movie15 <= svn26473.0 @@ -126680,7 +125942,7 @@ obsolete movie15 package. %package media9-doc Summary: Documentation for media9 -Version: svn51619 +Version: svn45432 Provides: tex-media9-doc AutoReqProv: No Provides: texlive-movie15-doc = svn26473.0.obsolete @@ -126947,7 +126209,7 @@ Documentation for metre Provides: tex-mfirstuc = %{tl_version} License: LPPL 1.3 Summary: Uppercase the first letter of a word -Version: svn45803 +Version: svn41785 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(etoolbox.sty) @@ -126961,7 +126223,7 @@ the argument before uppercasing. %package mfirstuc-doc Summary: Documentation for mfirstuc -Version: svn45803 +Version: svn41785 Provides: tex-mfirstuc-doc AutoReqProv: No @@ -127120,9 +126382,11 @@ Documentation for minipage-marginpar Provides: tex-minitoc = %{tl_version} License: LPPL 1.3 Summary: Produce a table of contents for each chapter, part or section -Version: svn48196 +Version: svn37852.61 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(mtcpatchmem.sty) Requires: tex(flafter.sty) Requires: tex(placeins.sty) @@ -127146,7 +126410,8 @@ fixed names). %package minitoc-doc Summary: Documentation for minitoc -Version: svn48196 +Version: svn37852.61 + Provides: tex-minitoc-doc AutoReqProv: No @@ -127462,9 +126727,11 @@ Documentation for moderncv Provides: tex-moderntimeline = %{tl_version} License: LPPL 1.3 Summary: Timelines for use with moderncv -Version: svn50228 +Version: svn38254.0.9 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(tikz.sty) Requires: tex(kvoptions.sty) Provides: tex(moderntimeline.sty) = %{tl_version} @@ -127476,7 +126743,8 @@ Curriculum Vitae documents written using the moderncv class. %package moderntimeline-doc Summary: Documentation for moderntimeline -Version: svn50228 +Version: svn38254.0.9 + Provides: tex-moderntimeline-doc AutoReqProv: No @@ -127755,7 +127023,7 @@ Documentation for moreverb Provides: tex-morewrites = %{tl_version} License: LPPL 1.3 Summary: Always room for a new write stream -Version: svn49531 +Version: svn43945 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -127775,7 +127043,7 @@ the l3kernel bundle. %package morewrites-doc Summary: Documentation for morewrites -Version: svn49531 +Version: svn43945 Provides: tex-morewrites-doc AutoReqProv: No @@ -127845,9 +127113,11 @@ Documentation for msc Provides: tex-msg = %{tl_version} License: LPPL Summary: A package for LaTeX localisation -Version: svn49578 +Version: svn15878.0.40 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(inputenc.sty) Provides: tex(french_msg-msg.tex) = %{tl_version} Provides: tex(german_msg-msg.tex) = %{tl_version} @@ -127866,7 +127136,8 @@ is provided in English. %package msg-doc Summary: Documentation for msg -Version: svn49578 +Version: svn15878.0.40 + Provides: tex-msg-doc AutoReqProv: No @@ -128070,9 +127341,11 @@ Documentation for multienv Provides: tex-multiexpand = %{tl_version} License: LPPL 1.3 Summary: Variations on the primitive command \expandafter -Version: svn45943 +Version: svn38416 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(multiexpand.sty) = %{tl_version} %description multiexpand @@ -128086,7 +127359,8 @@ experimental LaTeX 3 kernel). %package multiexpand-doc Summary: Documentation for multiexpand -Version: svn45943 +Version: svn38416 + Provides: tex-multiexpand-doc AutoReqProv: No @@ -128097,7 +127371,7 @@ Documentation for multiexpand Provides: tex-multirow = %{tl_version} License: LPPL Summary: Create tabular cells spanning multiple rows -Version: svn51278 +Version: svn42588 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(bigdelim.sty) = %{tl_version} @@ -128112,7 +127386,7 @@ which can be used to advantage with \multirow cells. %package multirow-doc Summary: Documentation for multirow -Version: svn51278 +Version: svn42588 Provides: tex-multirow-doc AutoReqProv: No @@ -128152,9 +127426,11 @@ Documentation for mversion Provides: tex-mwe = %{tl_version} License: LPPL 1.3 Summary: Packages and image files for MWEs -Version: svn47194 +Version: svn26422.0.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(graphicx.sty) Requires: tex(lipsum.sty) Requires: tex(blindtext.sty) @@ -128194,7 +127470,8 @@ replacement code. %package mwe-doc Summary: Documentation for mwe -Version: svn47194 +Version: svn26422.0.3 + Provides: tex-mwe-doc AutoReqProv: No @@ -128660,9 +127937,11 @@ Documentation for newspaper Provides: tex-newunicodechar = %{tl_version} License: LPPL 1.3 Summary: Definitions of the meaning of Unicode characters -Version: svn47382 +Version: svn28253.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(newunicodechar.sty) = %{tl_version} %description newunicodechar @@ -128675,7 +127954,8 @@ typed Unicode character, and <code> is its replacement. %package newunicodechar-doc Summary: Documentation for newunicodechar -Version: svn47382 +Version: svn28253.1.1 + Provides: tex-newunicodechar-doc AutoReqProv: No @@ -129043,9 +128323,11 @@ Documentation for nolbreaks Provides: tex-nomencl = %{tl_version} License: LPPL Summary: Produce lists of symbols as in nomenclature -Version: svn51025 +Version: svn15878.3.1a + 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} @@ -129058,7 +128340,8 @@ MakeIndex program. %package nomencl-doc Summary: Documentation for nomencl -Version: svn51025 +Version: svn15878.3.1a + Provides: tex-nomencl-doc AutoReqProv: No @@ -129486,7 +128769,7 @@ Documentation for ocgx Provides: tex-ocgx2 = %{tl_version} License: LPPL 1.3 Summary: Drop-in replacement for the 'ocgx' package; adds support for dvips+ps2pdf, XeLaTeX, dvipdfmx -Version: svn51552 +Version: svn45430 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xparse.sty) @@ -129497,7 +128780,6 @@ Requires: tex(media9.sty) Requires: tex(tikz.sty) Provides: tex(fixocgx.sty) = %{tl_version} Provides: tex(ocgx2.sty) = %{tl_version} -Provides: tex(ocgbase.sty) = %{tl_version} %description ocgx2 This package is a drop-in replacement for the ocgx package by @@ -129509,7 +128791,7 @@ ensures compatibility with the media9 and animate packages. %package ocgx2-doc Summary: Documentation for ocgx2 -Version: svn51552 +Version: svn45430 Provides: tex-ocgx2-doc AutoReqProv: No @@ -130102,9 +129384,11 @@ Documentation for papertex Provides: tex-paracol = %{tl_version} License: LPPL Summary: Multiple columns with texts "in parallel" -Version: svn49560 +Version: svn38621 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(paracol.sty) = %{tl_version} %description paracol @@ -130115,7 +129399,8 @@ document switching and sychronizing each corresponding part in %package paracol-doc Summary: Documentation for paracol -Version: svn49560 +Version: svn38621 + Provides: tex-paracol-doc AutoReqProv: No @@ -130155,7 +129440,7 @@ Documentation for paresse Provides: tex-parnotes = %{tl_version} License: LPPL 1.3 Summary: Notes after every paragraph (or elsewhere) -Version: svn51720 +Version: svn41868 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(parnotes.sty) = %{tl_version} @@ -130167,7 +129452,7 @@ paragraph, or manually, using the \parnotes command. %package parnotes-doc Summary: Documentation for parnotes -Version: svn51720 +Version: svn41868 Provides: tex-parnotes-doc AutoReqProv: No @@ -130491,9 +129776,11 @@ Documentation for pdf14 Provides: tex-pdfcomment = %{tl_version} License: LPPL 1.3 Summary: A user-friendly interface to pdf annotations -Version: svn49047 +Version: svn40166 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(zref-savepos.sty) Requires: tex(refcount.sty) @@ -130524,7 +129811,8 @@ Reader. %package pdfcomment-doc Summary: Documentation for pdfcomment -Version: svn49047 +Version: svn40166 + Provides: tex-pdfcomment-doc AutoReqProv: No @@ -130729,9 +130017,11 @@ Documentation for pdfsync Provides: tex-pdfwin = %{tl_version} License: LPPL Summary: pdfwin package -Version: svn45797 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(amssymb.sty) Requires: tex(keyval.sty) Requires: tex(graphicx.sty) @@ -130746,7 +130036,7 @@ pdfwin package %package pdfwin-doc Summary: Documentation for pdfwin -Version: svn45797 +Version: svn15878.0 Provides: tex-pdfwin-doc AutoReqProv: No @@ -130758,7 +130048,7 @@ Documentation for pdfwin Provides: tex-pdfx = %{tl_version} License: LPPL Summary: PDF/X-1a and PDF/A-1b support for pdfTeX -Version: svn50338 +Version: svn44412 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(hyperref.sty) @@ -130775,7 +130065,7 @@ compliant pdf documents with pdfTeX. %package pdfx-doc Summary: Documentation for pdfx -Version: svn50338 +Version: svn44412 Provides: tex-pdfx-doc AutoReqProv: No @@ -130973,9 +130263,11 @@ Documentation for piff Provides: tex-pkgloader = %{tl_version} License: LPPL 1.3 Summary: Managing the options and loading order of other packages -Version: svn47486 +Version: svn35711.0.5.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(filecontents.sty) Requires: tex(xparse.sty) Requires: tex(etoolbox.sty) @@ -131006,7 +130298,8 @@ package's repository. %package pkgloader-doc Summary: Documentation for pkgloader -Version: svn47486 +Version: svn35711.0.5.0 + Provides: tex-pkgloader-doc AutoReqProv: No @@ -131535,7 +130828,7 @@ Documentation for progressbar Provides: tex-proofread = %{tl_version} License: LPPL 1.3 Summary: Commands for inserting annotations -Version: svn50938 +Version: svn43370 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(soul.sty) @@ -131556,7 +130849,7 @@ the style file by compiling proofread.dtx with pdfLaTeX. %package proofread-doc Summary: Documentation for proofread -Version: svn50938 +Version: svn43370 Provides: tex-proofread-doc AutoReqProv: No @@ -131756,7 +131049,7 @@ Documentation for psfragx Provides: tex-pstool = %{tl_version} License: LPPL Summary: Support for psfrag within pdfLaTeX -Version: svn46393 +Version: svn45534 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(catchfile.sty) @@ -131787,7 +131080,7 @@ any similar package). %package pstool-doc Summary: Documentation for pstool -Version: svn46393 +Version: svn45534 Provides: tex-pstool-doc AutoReqProv: No @@ -131961,9 +131254,11 @@ Documentation for qsymbols Provides: tex-quotchap = %{tl_version} License: GPL+ Summary: Decorative chapter headings -Version: svn51591 +Version: svn28046.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(color.sty) Provides: tex(quotchap.sty) = %{tl_version} @@ -131974,7 +131269,8 @@ needs the "Adobe standard font set" (as supported by psnfss). %package quotchap-doc Summary: Documentation for quotchap -Version: svn51591 +Version: svn28046.1.1 + Provides: tex-quotchap-doc AutoReqProv: No @@ -132624,9 +131920,11 @@ Documentation for regcount Provides: tex-regexpatch = %{tl_version} License: LPPL 1.3 Summary: High level patching of commands -Version: svn47601 +Version: svn41204 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Requires: tex(xparse.sty) Requires: tex(l3regex.sty) @@ -132641,7 +131939,8 @@ experimental packages. %package regexpatch-doc Summary: Documentation for regexpatch -Version: svn47601 +Version: svn41204 + Provides: tex-regexpatch-doc AutoReqProv: No @@ -132652,9 +131951,11 @@ Documentation for regexpatch Provides: tex-register = %{tl_version} License: LPPL Summary: Typeset programmable elements in digital hardware (registers) -Version: svn49581 +Version: svn21127.1.6 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifthen.sty) Requires: tex(graphicx.sty) Requires: tex(float.sty) @@ -132675,7 +131976,8 @@ structures. %package register-doc Summary: Documentation for register -Version: svn49581 +Version: svn21127.1.6 + Provides: tex-register-doc AutoReqProv: No @@ -132964,7 +132266,7 @@ Documentation for robustcommand Provides: tex-robustindex = %{tl_version} License: LPPL Summary: Create index with pagerefs -Version: svn49877 +Version: svn45452 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(robustglossary.sty) = %{tl_version} @@ -132979,7 +132281,7 @@ maintain correct page numbers %package robustindex-doc Summary: Documentation for robustindex -Version: svn49877 +Version: svn45452 Provides: tex-robustindex-doc AutoReqProv: No @@ -134586,7 +133888,7 @@ Documentation for skb Provides: tex-skdoc = %{tl_version} License: LPPL 1.3 Summary: Documentation and extraction for packages and document classes -Version: svn47526 +Version: svn43170 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -134629,7 +133931,7 @@ documentation and code in a single run of a single file. %package skdoc-doc Summary: Documentation for skdoc -Version: svn47526 +Version: svn43170 Provides: tex-skdoc-doc AutoReqProv: No @@ -134713,7 +134015,7 @@ Documentation for skeyval Provides: tex-skrapport = %{tl_version} License: LPPL 1.3 Summary: 'Simple' class for reports, etc -Version: svn49540 +Version: svn45304 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -134765,7 +134067,7 @@ journal style. %package skrapport-doc Summary: Documentation for skrapport -Version: svn49540 +Version: svn45304 Provides: tex-skrapport-doc AutoReqProv: No @@ -135077,9 +134379,11 @@ Documentation for spotcolor Provides: tex-spreadtab = %{tl_version} License: LPPL 1.3 Summary: Spreadsheet features for LaTeX tabular environments -Version: svn50147 +Version: svn35531.0.4c + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(fp.sty) Requires: tex(xstring.sty) Provides: tex(spreadtab.sty) = %{tl_version} @@ -135092,7 +134396,8 @@ values in other cells. %package spreadtab-doc Summary: Documentation for spreadtab -Version: svn50147 +Version: svn35531.0.4c + Provides: tex-spreadtab-doc AutoReqProv: No @@ -135133,9 +134438,11 @@ Documentation for spverbatim Provides: tex-srbook-mem = %{tl_version} License: LPPL Summary: srbook-mem package -Version: svn45818 +Version: svn23454.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(srbook-mem.sty) = %{tl_version} %description srbook-mem @@ -135143,7 +134450,8 @@ srbook-mem package %package srbook-mem-doc Summary: Documentation for srbook-mem -Version: svn45818 +Version: svn23454.0 + Provides: tex-srbook-mem-doc AutoReqProv: No @@ -135289,9 +134597,11 @@ Documentation for stackengine Provides: tex-standalone = %{tl_version} License: LPPL 1.3 Summary: Compile TeX pictures stand-alone or as part of a document -Version: svn47136 +Version: svn37875.1.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifluatex.sty) Requires: tex(ifpdf.sty) Requires: tex(ifxetex.sty) @@ -135325,7 +134635,8 @@ environment. %package standalone-doc Summary: Documentation for standalone -Version: svn47136 +Version: svn37875.1.2 + Provides: tex-standalone-doc AutoReqProv: No @@ -135426,9 +134737,11 @@ Documentation for stdpage Provides: tex-stex = %{tl_version} License: LPPL Summary: An Infrastructure for Semantic Preloading of LaTeX Documents -Version: svn50489 +Version: svn40320 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(sref.sty) Requires: tex(graphicx.sty) Requires: tex(size10.clo) @@ -135486,7 +134799,8 @@ document format for mathematical knowledge management (MKM). %package stex-doc Summary: Documentation for stex -Version: svn50489 +Version: svn40320 + Provides: tex-stex-doc AutoReqProv: No @@ -135805,9 +135119,11 @@ Documentation for subfigure Provides: tex-subfiles = %{tl_version} License: LPPL 1.3 Summary: Individual typesetting of subfiles of a "main" document -Version: svn48323 +Version: svn26645.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(verbatim.sty) Provides: tex(subfiles.cls) = %{tl_version} Provides: tex(subfiles.sty) = %{tl_version} @@ -135820,7 +135136,8 @@ them, without making any changes to either. %package subfiles-doc Summary: Documentation for subfiles -Version: svn48323 +Version: svn26645.1.1 + Provides: tex-subfiles-doc AutoReqProv: No @@ -135943,7 +135260,7 @@ Documentation for supertabular Provides: tex-svg = %{tl_version} License: LPPL 1.3 Summary: Include and extract SVG pictures using Inkscape -Version: svn49148 +Version: svn44503 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) @@ -135968,7 +135285,7 @@ high energy particle physics analysis package ROOT. %package svg-doc Summary: Documentation for svg -Version: svn49148 +Version: svn44503 Provides: tex-svg-doc AutoReqProv: No @@ -136362,7 +135679,7 @@ Documentation for tabls Provides: tex-tabstackengine = %{tl_version} License: LPPL Summary: "Tabbing" front-end to stackengine -Version: svn46848 +Version: svn42610 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(stackengine.sty) @@ -136380,7 +135697,7 @@ requiring use of any stacking constructions). %package tabstackengine-doc Summary: Documentation for tabstackengine -Version: svn46848 +Version: svn42610 Provides: tex-tabstackengine-doc AutoReqProv: No @@ -136391,9 +135708,11 @@ Documentation for tabstackengine Provides: tex-tabto-ltx = %{tl_version} License: LPPL Summary: "Tab" to a measured position in the line -Version: svn50188 +Version: svn30710.1.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(tabto.sty) = %{tl_version} %description tabto-ltx @@ -136408,7 +135727,8 @@ the next defined 'tab stop'. %package tabto-ltx-doc Summary: Documentation for tabto-ltx -Version: svn50188 +Version: svn30710.1.3 + Provides: tex-tabto-ltx-doc AutoReqProv: No @@ -136419,9 +135739,11 @@ Documentation for tabto-ltx Provides: tex-tabu = %{tl_version} License: LPPL 1.3 Summary: Flexible LaTeX tabulars -Version: svn49707 +Version: svn21534.2.8 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(array.sty) Requires: tex(varwidth.sty) Requires: tex(delarray.sty) @@ -136452,7 +135774,8 @@ enlarges the environment's "natural" width. %package tabu-doc Summary: Documentation for tabu -Version: svn49707 +Version: svn21534.2.8 + Provides: tex-tabu-doc AutoReqProv: No @@ -136779,7 +136102,7 @@ Documentation for tcldoc Provides: tex-tcolorbox = %{tl_version} License: LPPL 1.3 Summary: Coloured boxes, for LaTeX examples and theorems, etc -Version: svn50206 +Version: svn45313 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pgf.sty) @@ -136815,7 +136138,7 @@ parts. %package tcolorbox-doc Summary: Documentation for tcolorbox -Version: svn50206 +Version: svn45313 Provides: tex-tcolorbox-doc AutoReqProv: No @@ -137207,9 +136530,11 @@ Documentation for texpower Provides: tex-texshade = %{tl_version} License: GPLv2+ Summary: Package for setting nucleotide and peptide alignments -Version: svn46559 +Version: svn24716.1.24 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(color.sty) Requires: tex(graphics.sty) Requires: tex(amssymb.sty) @@ -137230,7 +136555,8 @@ excessive development time of the user. %package texshade-doc Summary: Documentation for texshade -Version: svn46559 +Version: svn24716.1.24 + Provides: tex-texshade-doc AutoReqProv: No @@ -137320,9 +136646,11 @@ Documentation for textmerg Provides: tex-textpos = %{tl_version} License: GPL+ Summary: Place boxes at arbitrary positions on the LaTeX page -Version: svn50988 +Version: svn41331 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(everyshi.sty) Provides: tex(textpos.sty) = %{tl_version} @@ -137334,7 +136662,8 @@ large-format conference posters. %package textpos-doc Summary: Documentation for textpos -Version: svn50988 +Version: svn41331 + Provides: tex-textpos-doc AutoReqProv: No @@ -137398,9 +136727,11 @@ Documentation for thinsp Provides: tex-thmtools = %{tl_version} License: LPPL 1.3 Summary: Extensions to theorem environments -Version: svn51790 +Version: svn33624.66 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(remreset.sty) Requires: tex(keyval.sty) Requires: tex(kvsetkeys.sty) @@ -137437,7 +136768,8 @@ entire theorems in a single macro call. %package thmtools-doc Summary: Documentation for thmtools -Version: svn51790 +Version: svn33624.66 + Provides: tex-thmtools-doc AutoReqProv: No @@ -137773,9 +137105,11 @@ Documentation for titleref Provides: tex-titlesec = %{tl_version} License: LPPL Summary: Select alternative section titles -Version: svn51664 +Version: svn40129 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(titleps.sty) = %{tl_version} Provides: tex(titlesec.sty) = %{tl_version} Provides: tex(titletoc.sty) = %{tl_version} @@ -137792,7 +137126,8 @@ may assign headers/footers to individual floats, too. %package titlesec-doc Summary: Documentation for titlesec -Version: svn51664 +Version: svn40129 + Provides: tex-titlesec-doc AutoReqProv: No @@ -137934,7 +137269,7 @@ Documentation for todo Provides: tex-todonotes = %{tl_version} License: LPPL 1.2 Summary: Marking things to do in a LaTeX document -Version: svn49820 +Version: svn42423 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -137951,7 +137286,7 @@ to enable customization/finetuning of the visual appearance. %package todonotes-doc Summary: Documentation for todonotes -Version: svn49820 +Version: svn42423 Provides: tex-todonotes-doc AutoReqProv: No @@ -138995,9 +138330,11 @@ Documentation for units Provides: tex-unravel = %{tl_version} License: LPPL Summary: Watching TeX digest tokens -Version: svn50557 +Version: svn38506 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(expl3.sty) Requires: tex(l3str.sty) Requires: tex(gtl.sty) @@ -139016,7 +138353,8 @@ package gtl. %package unravel-doc Summary: Documentation for unravel -Version: svn50557 +Version: svn38506 + Provides: tex-unravel-doc AutoReqProv: No @@ -139027,7 +138365,7 @@ Documentation for unravel Provides: tex-upmethodology = %{tl_version} License: LGPLv2+ Summary: Writing specifications such as for UP-based methodologies -Version: svn51818 +Version: svn45000 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(upmethodology-extension.sty) @@ -139085,7 +138423,7 @@ management, and several helping macros. %package upmethodology-doc Summary: Documentation for upmethodology -Version: svn51818 +Version: svn45000 Provides: tex-upmethodology-doc AutoReqProv: No @@ -139516,9 +138854,11 @@ Documentation for versions Provides: tex-versonotes = %{tl_version} License: LPPL 1.3 Summary: Display brief notes on verso pages -Version: svn51568 +Version: svn39084 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(versonotes.sty) = %{tl_version} %description versonotes @@ -139530,7 +138870,8 @@ lined up with the macro call. %package versonotes-doc Summary: Documentation for versonotes -Version: svn51568 +Version: svn39084 + Provides: tex-versonotes-doc AutoReqProv: No @@ -139541,9 +138882,11 @@ Documentation for versonotes Provides: tex-vertbars = %{tl_version} License: LPPL 1.3 Summary: Mark vertical rules in margin of text -Version: svn49429 +Version: svn20589.1.0b + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(lineno.sty) Provides: tex(vertbars.sty) = %{tl_version} @@ -139554,7 +138897,8 @@ text. %package vertbars-doc Summary: Documentation for vertbars -Version: svn49429 +Version: svn20589.1.0b + Provides: tex-vertbars-doc AutoReqProv: No @@ -139867,7 +139211,7 @@ Documentation for was Provides: tex-widetable = %{tl_version} License: LPPL 1.3 Summary: An environment for typesetting tables of specified width -Version: svn51501 +Version: svn45258 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifetex.sty) @@ -139883,7 +139227,7 @@ modern distributions). %package widetable-doc Summary: Documentation for widetable -Version: svn51501 +Version: svn45258 Provides: tex-widetable-doc AutoReqProv: No @@ -140221,7 +139565,7 @@ Documentation for xhfill Provides: tex-xint = %{tl_version} License: LPPL 1.3 Summary: Expandable operations on long numbers -Version: svn50844 +Version: svn45177 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xintfrac.sty) @@ -140261,7 +139605,7 @@ packages may be used either with Plain TeX or LaTeX. %package xint-doc Summary: Documentation for xint -Version: svn50844 +Version: svn45177 Provides: tex-xint-doc AutoReqProv: No @@ -140473,9 +139817,11 @@ Documentation for xpunctuate Provides: tex-xstring = %{tl_version} License: LPPL Summary: String manipulation for (La)TeX -Version: svn49946 +Version: svn31900.1.7c + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(xstring.sty) = %{tl_version} Provides: tex(xstring.tex) = %{tl_version} @@ -140490,7 +139836,8 @@ always required). The strings to be processed may contain %package xstring-doc Summary: Documentation for xstring -Version: svn49946 +Version: svn31900.1.7c + Provides: tex-xstring-doc AutoReqProv: No @@ -140809,49 +140156,40 @@ Documentation for zwpagelayout %package collection-luatex Summary: LuaTeX packages -Version: svn51127 +Version: svn45569 Requires: texlive-base Requires: texlive-collection-basic -Requires: texlive-addliga -Requires: texlive-auto-pst-pdf-lua -Requires: texlive-bezierplot Requires: texlive-checkcites Requires: texlive-chickenize Requires: texlive-combofont Requires: texlive-cstypo Requires: texlive-ctablestack Requires: texlive-enigma +Requires: texlive-fontloader-luaotfload Requires: texlive-interpreter -Requires: texlive-kanaparser Requires: texlive-lua-visual-debug Requires: texlive-lua2dox Requires: texlive-luacode Requires: texlive-luahyphenrules -Requires: texlive-luaimageembed Requires: texlive-luaindex Requires: texlive-luainputenc Requires: texlive-luaintro-doc Requires: texlive-lualatex-doc-doc Requires: texlive-lualatex-math -Requires: texlive-lualatex-truncate Requires: texlive-lualibs Requires: texlive-luamplib Requires: texlive-luaotfload Requires: texlive-luapackageloader -Requires: texlive-luarandom Requires: texlive-luatex85 Requires: texlive-luatexbase Requires: texlive-luatexko Requires: texlive-luatextra -Requires: texlive-luavlna Requires: texlive-luaxml Requires: texlive-nodetree Requires: texlive-odsfile Requires: texlive-placeat -Requires: texlive-plantuml Requires: texlive-selnolig Requires: texlive-spelling -Requires: texlive-typewriter %description collection-luatex Packages for LuaTeX, a Unicode-aware extension of pdfTeX, using @@ -140926,7 +140264,7 @@ Documentation for interpreter Provides: tex-lua-check-hyphen = %{tl_version} License: MIT Summary: Mark hyphenations in a document, for checking -Version: svn47527 +Version: svn44936 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifluatex.sty) @@ -140945,7 +140283,7 @@ white-list, or adjust the document to avoid the break. %package lua-check-hyphen-doc Summary: Documentation for lua-check-hyphen -Version: svn47527 +Version: svn44936 Provides: tex-lua-check-hyphen-doc AutoReqProv: No @@ -140956,9 +140294,11 @@ Documentation for lua-check-hyphen Provides: tex-lua-visual-debug = %{tl_version} License: MIT Summary: Visual debugging with LuaLaTeX -Version: svn49634 +Version: svn41387 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(ifluatex.sty) Requires: tex(atbegshi.sty) Provides: tex(lua-visual-debug.sty) = %{tl_version} @@ -140970,7 +140310,8 @@ package is known to work in LaTeX and Plain TeX documents. %package lua-visual-debug-doc Summary: Documentation for lua-visual-debug -Version: svn49634 +Version: svn41387 + Provides: tex-lua-visual-debug-doc AutoReqProv: No @@ -141149,7 +140490,7 @@ Documentation for lualatex-doc Provides: tex-lualatex-math = %{tl_version} License: LPPL 1.3 Summary: Fixes for mathematics-related LuaLaTeX issues -Version: svn49904 +Version: svn44621 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -141180,7 +140521,7 @@ Documentation for lualatex-math Provides: tex-lualibs = %{tl_version} License: GPLv2+ Summary: Additional Lua functions for LuaTeX macro programmers -Version: svn51642 +Version: svn43153 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -141192,7 +140533,7 @@ independent of ConTeXt. %package lualibs-doc Summary: Documentation for lualibs -Version: svn51642 +Version: svn43153 Provides: tex-lualibs-doc AutoReqProv: No @@ -141203,7 +140544,7 @@ Documentation for lualibs Provides: tex-luamplib = %{tl_version} License: GPLv2+ Summary: Use LuaTeX's built-in MetaPost interpreter -Version: svn50608 +Version: svn44496 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(luatexbase-modutils.sty) @@ -141217,7 +140558,7 @@ MetaPost library. The facility is only available in PDF mode. %package luamplib-doc Summary: Documentation for luamplib -Version: svn50608 +Version: svn44496 Provides: tex-luamplib-doc AutoReqProv: No @@ -141301,7 +140642,7 @@ Documentation for luatexbase Provides: tex-luatexko = %{tl_version} License: LPPL 1.3 Summary: Typeset Korean with Lua(La)TeX -Version: svn51803 +Version: svn45434 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(luaotfload.sty) @@ -141320,7 +140661,7 @@ ko and xetexko packages for its full functionality. %package luatexko-doc Summary: Documentation for luatexko -Version: svn51803 +Version: svn45434 Provides: tex-luatexko-doc AutoReqProv: No @@ -141405,10 +140746,12 @@ Documentation for luatodonotes Provides: tex-luaxml = %{tl_version} License: MIT Summary: Lua library for reading and serialising XML files -Version: svn49663 +Version: svn32741.0.0.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + %description luaxml This is a redistribution of a pure lua xml library, LuaXML (this version supports Lua 5.2). The library was originally @@ -141418,7 +140761,8 @@ other projects. %package luaxml-doc Summary: Documentation for luaxml -Version: svn49663 +Version: svn32741.0.0.2 + Provides: tex-luaxml-doc AutoReqProv: No @@ -141938,9 +141282,11 @@ Documentation for grundgesetze Provides: tex-interval = %{tl_version} License: LPPL 1.3 Summary: Format mathematical intervals, ensuring proper spacing -Version: svn50265 +Version: svn34840.0.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(pgfkeys.sty) Provides: tex(interval.sty) = %{tl_version} @@ -141956,7 +141302,8 @@ and opening types. TeX maths does not do this job properly. %package interval-doc Summary: Documentation for interval -Version: svn50265 +Version: svn34840.0.3 + Provides: tex-interval-doc AutoReqProv: No @@ -142355,7 +141702,7 @@ Documentation for oubraces Provides: tex-perfectcut = %{tl_version} License: LPPL 1.3 Summary: Brackets whose size adjusts to the nesting -Version: svn51744 +Version: svn44175 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(graphicx.sty) @@ -142375,7 +141722,7 @@ into arbitrary-size variants. %package perfectcut-doc Summary: Documentation for perfectcut -Version: svn51744 +Version: svn44175 Provides: tex-perfectcut-doc AutoReqProv: No @@ -142386,7 +141733,7 @@ Documentation for perfectcut Provides: tex-prftree = %{tl_version} License: GPL+ Summary: Macros for building proof trees -Version: svn51404 +Version: svn41985 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(prftree.sty) = %{tl_version} @@ -142397,7 +141744,7 @@ sequent-like calculi, and similar. %package prftree-doc Summary: Documentation for prftree -Version: svn51404 +Version: svn41985 Provides: tex-prftree-doc AutoReqProv: No @@ -142437,7 +141784,7 @@ Documentation for proba Provides: tex-rec-thy = %{tl_version} License: Public Domain Summary: Commands to typeset recursion theory papers -Version: svn50047 +Version: svn45488 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(suffix.sty) @@ -142457,7 +141804,7 @@ in recursion theory (otherwise known as computability theory). %package rec-thy-doc Summary: Documentation for rec-thy -Version: svn50047 +Version: svn45488 Provides: tex-rec-thy-doc AutoReqProv: No @@ -142622,7 +141969,7 @@ Documentation for shuffle Provides: tex-skmath = %{tl_version} License: LPPL 1.3 Summary: Extensions to the maths command repertoir -Version: svn49550 +Version: svn42902 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -142640,7 +141987,7 @@ improved re-definitions of existing commands. %package skmath-doc Summary: Documentation for skmath -Version: svn49550 +Version: svn42902 Provides: tex-skmath-doc AutoReqProv: No @@ -142793,9 +142140,11 @@ Documentation for syllogism Provides: tex-sympytexpackage = %{tl_version} License: LPPL Summary: sympytexpackage package -Version: svn45818 +Version: svn41190 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(verbatim.sty) Requires: tex(graphicx.sty) Requires: tex(makecmds.sty) @@ -142808,7 +142157,8 @@ sympytexpackage package %package sympytexpackage-doc Summary: Documentation for sympytexpackage -Version: svn45818 +Version: svn41190 + Provides: tex-sympytexpackage-doc AutoReqProv: No @@ -142999,7 +142349,7 @@ Documentation for turnstile Provides: tex-unicode-math = %{tl_version} License: LPPL 1.3 Summary: Unicode mathematics support for XeTeX and LuaTeX -Version: svn50245 +Version: svn45510 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex-fontspec @@ -143033,7 +142383,7 @@ packages. %package unicode-math-doc Summary: Documentation for unicode-math -Version: svn50245 +Version: svn45510 Provides: tex-unicode-math-doc AutoReqProv: No Requires: tex-fontspec-doc @@ -143068,10 +142418,13 @@ Documentation for venn Provides: tex-yhmath = %{tl_version} License: LPPL Summary: Extended maths fonts for LaTeX -Version: svn50127 +Version: svn31155.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-tetex-bin, tex-tetex + + Requires: tex(amsmath.sty) Provides: tex(yhmath.map) = %{tl_version} Provides: tex(yhcmex10.tfm) = %{tl_version} @@ -143087,7 +142440,8 @@ package for using them. %package yhmath-doc Summary: Documentation for yhmath -Version: svn50127 +Version: svn31155.1.1 + Provides: tex-yhmath-doc AutoReqProv: No @@ -143127,7 +142481,7 @@ Documentation for ytableau %package collection-metapost Summary: MetaPost and Metafont packages -Version: svn50293 +Version: svn39729 Requires: texlive-base Requires: texlive-collection-basic Requires: tex-automata @@ -143144,7 +142498,6 @@ Requires: tex-exteps Requires: tex-featpost Requires: tex-feynmf Requires: tex-feynmp-auto -Requires: texlive-fiziko Requires: tex-garrigues Requires: tex-gmp Requires: tex-hatching @@ -143154,16 +142507,14 @@ Requires: tex-metago Requires: tex-metaobj Requires: tex-metaplot Requires: tex-metapost -Requires: texlive-metapost-colorbrewer Requires: tex-metauml Requires: tex-mfpic Requires: tex-mfpic4ode Requires: tex-mp3d Requires: tex-mparrows -Requires: texlive-mpattern Requires: tex-mpcolornames +Requires: tex-mpattern Requires: tex-mpgraphics -Requires: texlive-mptrees Requires: tex-piechartmp Requires: tex-repere Requires: tex-roex @@ -143526,7 +142877,7 @@ Documentation for latexmp Provides: tex-mcf2graph = %{tl_version} License: BSD Summary: Draw chemical structure diagrams with Metafont/MetaPost -Version: svn51573 +Version: svn45310 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143537,7 +142888,7 @@ MCF to graphic files using Metafont / MetaPost. %package mcf2graph-doc Summary: Documentation for mcf2graph -Version: svn51573 +Version: svn45310 Provides: tex-mcf2graph-doc AutoReqProv: No @@ -143549,6 +142900,7 @@ Provides: tex-metago = %{tl_version} License: LPPL Summary: MetaPost output of Go positions Version: svn15878.0.9 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143635,9 +142987,11 @@ Documentation for metaplot Provides: tex-metauml = %{tl_version} License: GPL+ Summary: MetaPost library for typesetting UML diagrams -Version: svn49923 +Version: svn19692.0.2.5 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: metapost-metauml = %{tl_version} Obsoletes: metapost-metauml < %{tl_version} @@ -143649,7 +143003,8 @@ and use case diagrams. %package metauml-doc Summary: Documentation for metauml -Version: svn49923 +Version: svn19692.0.2.5 + Provides: tex-metauml-doc AutoReqProv: No @@ -143869,7 +143224,7 @@ Documentation for piechartmp Provides: tex-repere = %{tl_version} License: LPPL 1.3 Summary: Diagrams for school mathematics -Version: svn51363 +Version: svn44298 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -143879,7 +143234,7 @@ the specific target is support of secondary school mathematics. %package repere-doc Summary: Documentation for repere -Version: svn51363 +Version: svn44298 Provides: tex-repere-doc AutoReqProv: No @@ -143890,10 +143245,12 @@ Documentation for repere Provides: tex-roex = %{tl_version} License: LPPL Summary: roex package -Version: svn45818 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + %description roex roex package @@ -144080,26 +143437,21 @@ Documentation for threeddice %package collection-music Summary: Music packages -Version: svn51000 +Version: svn45440 Requires: texlive-base Requires: texlive-collection-latex Requires: texlive-abc Requires: texlive-autosp Requires: texlive-bagpipe -Requires: texlive-chordbars -Requires: texlive-chordbox Requires: texlive-figbas Requires: texlive-gchords Requires: texlive-gregoriotex Requires: texlive-gtrcrd Requires: texlive-guitar Requires: texlive-guitarchordschemes -Requires: texlive-guitartabs Requires: texlive-harmony -Requires: texlive-latex4musicians Requires: texlive-leadsheets Requires: texlive-lilyglyphs -Requires: texlive-lyluatex Requires: texlive-m-tx Requires: texlive-musicography Requires: texlive-musixguit @@ -144627,7 +143979,7 @@ Documentation for songbook Provides: tex-songs = %{tl_version} License: GPL+ Summary: Produce song books for church or fellowship -Version: svn51494 +Version: svn44553 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(etex.sty) @@ -144647,7 +143999,7 @@ set of example documents is provided. %package songs-doc Summary: Documentation for songs -Version: svn51494 +Version: svn44553 Provides: tex-songs-doc AutoReqProv: No @@ -144736,9 +144088,11 @@ Documentation for mxedruli Provides: tex-otibet = %{tl_version} License: LPPL Summary: otibet package -Version: svn45777 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(tibetan.tfm) = %{tl_version} Provides: tex(ot1tib.fd) = %{tl_version} Provides: tex(otibet.sty) = %{tl_version} @@ -144750,7 +144104,8 @@ otibet package %package otibet-doc Summary: Documentation for otibet -Version: svn45777 +Version: svn15878.0 + Provides: tex-otibet-doc AutoReqProv: No @@ -145012,7 +144367,7 @@ Documentation for gfnotation Provides: tex-graphics-pln = %{tl_version} License: LPPL Summary: LaTeX-style graphics for Plain TeX users -Version: svn46363 +Version: svn44567 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(autopict.sty) = %{tl_version} @@ -145032,7 +144387,7 @@ provides the LaTeX picture mode to Plain TeX users. %package graphics-pln-doc Summary: Documentation for graphics-pln -Version: svn46363 +Version: svn44567 Provides: tex-graphics-pln-doc AutoReqProv: No @@ -145287,9 +144642,11 @@ Documentation for plstmary Provides: tex-present = %{tl_version} License: LPPL Summary: Presentations with Plain TeX -Version: svn50048 +Version: svn25953.2.2 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(present.tex) = %{tl_version} %description present @@ -145304,7 +144661,8 @@ macros to their specific needs. %package present-doc Summary: Documentation for present -Version: svn50048 +Version: svn25953.2.2 + Provides: tex-present-doc AutoReqProv: No @@ -145340,7 +144698,7 @@ Documentation for resumemac Provides: tex-texinfo = %{tl_version} License: GPL+ Summary: Texinfo documentation system -Version: svn51312 +Version: svn45305 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(texinfo.tex) = %{tl_version} @@ -145461,7 +144819,7 @@ Documentation for xii %package collection-pstricks Summary: PSTricks -Version: svn49316 +Version: svn45079 Requires: texlive-base Requires: texlive-collection-basic Requires: texlive-collection-plaingeneric @@ -145478,7 +144836,6 @@ Requires: texlive-pst-3d Requires: texlive-pst-3dplot Requires: texlive-pst-abspos Requires: texlive-pst-am -Requires: texlive-pst-antiprism Requires: texlive-pst-arrow Requires: texlive-pst-asr Requires: texlive-pst-bar @@ -145486,21 +144843,17 @@ Requires: texlive-pst-barcode Requires: texlive-pst-bezier Requires: texlive-pst-blur Requires: texlive-pst-bspline -Requires: texlive-pst-calculate Requires: texlive-pst-calendar Requires: texlive-pst-cie Requires: texlive-pst-circ Requires: texlive-pst-coil -Requires: texlive-pst-contourplot Requires: texlive-pst-cox -Requires: texlive-pst-dart Requires: texlive-pst-dbicons Requires: texlive-pst-diffraction Requires: texlive-pst-electricfield Requires: texlive-pst-eps Requires: texlive-pst-eucl Requires: texlive-pst-exa -Requires: texlive-pst-feyn Requires: texlive-pst-fill Requires: texlive-pst-fit Requires: texlive-pst-fr3d @@ -145522,12 +144875,9 @@ Requires: texlive-pst-labo Requires: texlive-pst-layout Requires: texlive-pst-lens Requires: texlive-pst-light3d -Requires: texlive-pst-lsystem Requires: texlive-pst-magneticfield -Requires: texlive-pst-marble Requires: texlive-pst-math Requires: texlive-pst-mirror -Requires: texlive-pst-moire Requires: texlive-pst-node Requires: texlive-pst-ob3d Requires: texlive-pst-ode @@ -145536,7 +144886,6 @@ Requires: texlive-pst-optic Requires: texlive-pst-osci Requires: texlive-pst-ovl Requires: texlive-pst-pad -Requires: texlive-pst-pdf Requires: texlive-pst-pdgr Requires: texlive-pst-perspective Requires: texlive-pst-platon @@ -145554,7 +144903,6 @@ Requires: texlive-pst-solarsystem Requires: texlive-pst-solides3d Requires: texlive-pst-soroban Requires: texlive-pst-spectra -Requires: texlive-pst-spinner Requires: texlive-pst-spirograph Requires: texlive-pst-stru Requires: texlive-pst-support-doc @@ -145566,7 +144914,6 @@ Requires: texlive-pst-tvz Requires: texlive-pst-uml Requires: texlive-pst-vectorian Requires: texlive-pst-vehicle -Requires: texlive-pst-venn Requires: texlive-pst-vowel Requires: texlive-pst-vue3d Requires: texlive-pst2pdf @@ -146102,7 +145449,7 @@ Documentation for pst-calendar Provides: tex-pst-circ = %{tl_version} License: LPPL Summary: PSTricks package for drawing electric circuits -Version: svn49791 +Version: svn41901 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -146120,7 +145467,7 @@ expressing a circuit. %package pst-circ-doc Summary: Documentation for pst-circ -Version: svn49791 +Version: svn41901 Provides: tex-pst-circ-doc AutoReqProv: No @@ -146325,7 +145672,7 @@ Documentation for pst-eps Provides: tex-pst-eucl = %{tl_version} License: LPPL Summary: Euclidian geometry with pstricks -Version: svn49900 +Version: svn43911 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -146343,7 +145690,7 @@ limited to points which controlled the figure. %package pst-eucl-doc Summary: Documentation for pst-eucl -Version: svn49900 +Version: svn43911 Provides: tex-pst-eucl-doc AutoReqProv: No @@ -146463,9 +145810,11 @@ Documentation for pst-fr3d Provides: tex-pst-fractal = %{tl_version} License: LPPL Summary: Draw fractal sets using PSTricks -Version: svn49295 +Version: svn16958.0.06 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(pstricks.sty) Provides: tex(pst-fractal.tex) = %{tl_version} Provides: tex(pst-fractal.sty) = %{tl_version} @@ -146480,7 +145829,8 @@ part of the xkeyval distribution. %package pst-fractal-doc Summary: Documentation for pst-fractal -Version: svn49295 +Version: svn16958.0.06 + Provides: tex-pst-fractal-doc AutoReqProv: No @@ -146523,7 +145873,7 @@ Documentation for pst-fun Provides: tex-pst-func = %{tl_version} License: LPPL Summary: PSTricks package for plotting mathematical functions -Version: svn51149 +Version: svn45112 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -146553,7 +145903,7 @@ volumes of rotation about the X-axis, as well. %package pst-func-doc Summary: Documentation for pst-func -Version: svn51149 +Version: svn45112 Provides: tex-pst-func-doc AutoReqProv: No @@ -146592,7 +145942,7 @@ Documentation for pst-gantt Provides: tex-pst-geo = %{tl_version} License: LPPL Summary: Geographical Projections -Version: svn46273 +Version: svn44131 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -146674,7 +146024,7 @@ for the user to do the decompression, if the need should arise. %package pst-geo-doc Summary: Documentation for pst-geo -Version: svn46273 +Version: svn44131 Provides: tex-pst-geo-doc AutoReqProv: No @@ -146685,9 +146035,11 @@ Documentation for pst-geo Provides: tex-pst-ghsb = %{tl_version} License: LPPL Summary: pst-ghsb package -Version: svn45797 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(pst-ghsb.tex) = %{tl_version} Provides: tex(pst-ghsb.sty) = %{tl_version} @@ -146696,7 +146048,8 @@ pst-ghsb package %package pst-ghsb-doc Summary: Documentation for pst-ghsb -Version: svn45797 +Version: svn15878.0 + Provides: tex-pst-ghsb-doc AutoReqProv: No @@ -147023,9 +146376,11 @@ Documentation for pst-light3d Provides: tex-pst-magneticfield = %{tl_version} License: LPPL Summary: Plotting a magnetic field with PSTricks -Version: svn49780 +Version: svn18922.1.13 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(pstricks.sty) Requires: tex(pst-3d.sty) Requires: tex(multido.sty) @@ -147041,7 +146396,8 @@ the documentation of the package. %package pst-magneticfield-doc Summary: Documentation for pst-magneticfield -Version: svn49780 +Version: svn18922.1.13 + Provides: tex-pst-magneticfield-doc AutoReqProv: No @@ -147052,9 +146408,11 @@ Documentation for pst-magneticfield Provides: tex-pst-math = %{tl_version} License: LPPL Summary: Enhancement of PostScript math operators to use with pstricks -Version: svn49425 +Version: svn34786.0.63 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(pst-math.tex) = %{tl_version} Provides: tex(pst-math.sty) = %{tl_version} @@ -147073,7 +146431,8 @@ integration and a solver of linear equation systems. %package pst-math-doc Summary: Documentation for pst-math -Version: svn49425 +Version: svn34786.0.63 + Provides: tex-pst-math-doc AutoReqProv: No @@ -147112,7 +146471,7 @@ Documentation for pst-mirror Provides: tex-pst-node = %{tl_version} License: LPPL Summary: Nodes and node connections in pstricks -Version: svn50215 +Version: svn43015 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -147133,7 +146492,7 @@ extension to PSTricks. %package pst-node-doc Summary: Documentation for pst-node -Version: svn50215 +Version: svn43015 Provides: tex-pst-node-doc AutoReqProv: No @@ -147173,7 +146532,7 @@ Documentation for pst-ob3d Provides: tex-pst-ode = %{tl_version} License: LPPL Summary: Solving initial value problems for sets of Ordinary Differential Equations -Version: svn50587 +Version: svn45057 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -147193,7 +146552,7 @@ state vectors can be written as a table to a text file. %package pst-ode-doc Summary: Documentation for pst-ode -Version: svn50587 +Version: svn45057 Provides: tex-pst-ode-doc AutoReqProv: No @@ -147358,9 +146717,11 @@ Documentation for pst-pad Provides: tex-pst-pdgr = %{tl_version} License: LPPL Summary: Draw medical pedigrees using pstricks -Version: svn45875 +Version: svn15878.0.3 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(pst-pdgr.tex) = %{tl_version} Provides: tex(pst-pdgr.cfg) = %{tl_version} Provides: tex(pst-pdgr.sty) = %{tl_version} @@ -147376,7 +146737,8 @@ TeX files from spreadsheets is available. %package pst-pdgr-doc Summary: Documentation for pst-pdgr -Version: svn45875 +Version: svn15878.0.3 + Provides: tex-pst-pdgr-doc AutoReqProv: No @@ -147444,7 +146806,7 @@ Documentation for pst-platon Provides: tex-pst-plot = %{tl_version} License: LPPL Summary: Plot data using PSTricks -Version: svn51650 +Version: svn45199 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -147461,7 +146823,7 @@ variety of parameters. %package pst-plot-doc Summary: Documentation for pst-plot -Version: svn51650 +Version: svn45199 Provides: tex-pst-plot-doc AutoReqProv: No @@ -147682,7 +147044,7 @@ Documentation for pst-solarsystem Provides: tex-pst-solides3d = %{tl_version} License: LPPL 1.3 Summary: Draw perspective views of 3D solids -Version: svn49520 +Version: svn45113 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -147702,7 +147064,7 @@ database files. %package pst-solides3d-doc Summary: Documentation for pst-solides3d -Version: svn49520 +Version: svn45113 Provides: tex-pst-solides3d-doc AutoReqProv: No @@ -147840,9 +147202,11 @@ Documentation for pst-support Provides: tex-pst-text = %{tl_version} License: LPPL Summary: Text and character manipulation in PSTricks -Version: svn49542 +Version: svn15878.1.00 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(pstricks.sty) Provides: tex(pst-char.tex) = %{tl_version} Provides: tex(pst-text.tex) = %{tl_version} @@ -147856,7 +147220,8 @@ functionality of the old package pst-char. %package pst-text-doc Summary: Documentation for pst-text -Version: svn49542 +Version: svn15878.1.00 + Provides: tex-pst-text-doc AutoReqProv: No @@ -147894,7 +147259,7 @@ Documentation for pst-thick Provides: tex-pst-tools = %{tl_version} License: LPPL Summary: PStricks support functions -Version: svn45978 +Version: svn45475 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -147907,7 +147272,7 @@ related packages. %package pst-tools-doc Summary: Documentation for pst-tools -Version: svn45978 +Version: svn45475 Provides: tex-pst-tools-doc AutoReqProv: No @@ -148091,7 +147456,7 @@ Documentation for pst-vue3d Provides: tex-pstricks = %{tl_version} License: LPPL 1.3 Summary: PostScript macros for TeX -Version: svn51102 +Version: svn45464 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-pst-tools @@ -148183,7 +147548,7 @@ for PSTricks contributed is completed. %package pstricks-doc Summary: Documentation for pstricks -Version: svn51102 +Version: svn45464 Provides: tex-pstricks-doc AutoReqProv: No @@ -148194,7 +147559,7 @@ Documentation for pstricks Provides: tex-pstricks-add = %{tl_version} License: LPPL Summary: A collection of add-ons and bugfixes for PSTricks -Version: svn49680 +Version: svn45346 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(pstricks.sty) @@ -148220,7 +147585,7 @@ makes use of PostScript routines provided by pst-math. %package pstricks-add-doc Summary: Documentation for pstricks-add -Version: svn49680 +Version: svn45346 Provides: tex-pstricks-add-doc AutoReqProv: No @@ -148343,7 +147708,7 @@ Documentation for vocaltract %package collection-publishers Summary: Publisher styles, theses, etc -Version: svn51691 +Version: svn45581 Requires: texlive-base Requires: texlive-collection-latex Requires: texlive-IEEEconf @@ -148369,23 +147734,18 @@ Requires: texlive-arsclassica Requires: texlive-articleingud Requires: texlive-asaetr Requires: texlive-ascelike -Requires: texlive-asmeconf -Requires: texlive-asmejour Requires: texlive-aucklandthesis Requires: texlive-bangorcsthesis Requires: texlive-bangorexam -Requires: texlive-bath-bst Requires: texlive-beamer-FUBerlin Requires: texlive-beamer-verona Requires: texlive-beilstein Requires: texlive-bgteubner Requires: texlive-br-lex Requires: texlive-brandeis-dissertation -Requires: texlive-brandeis-problemset Requires: texlive-cascadilla Requires: texlive-cesenaexam Requires: texlive-chem-journal -Requires: texlive-chs-physics-report Requires: texlive-cje Requires: texlive-classicthesis Requires: texlive-cleanthesis @@ -148396,37 +147756,29 @@ Requires: texlive-dccpaper Requires: texlive-dithesis Requires: texlive-ebook Requires: texlive-ebsthesis -Requires: texlive-ecothesis Requires: texlive-ejpecp Requires: texlive-ekaia Requires: texlive-elbioimp -Requires: texlive-els-cas-templates Requires: texlive-elsarticle Requires: texlive-elteikthesis Requires: texlive-emisa Requires: texlive-erdc Requires: texlive-estcpmm -Requires: texlive-etsvthor -Requires: texlive-facture-belge-simple-sans-tva Requires: texlive-fbithesis Requires: texlive-fcavtex Requires: texlive-fcltxdoc Requires: texlive-fei -Requires: texlive-ftc-notebook Requires: texlive-gaceta -Requires: texlive-gammas Requires: texlive-gatech-thesis Requires: texlive-gradstudentresume Requires: texlive-grant Requires: texlive-gsemthesis Requires: texlive-gzt Requires: texlive-h2020proposal -Requires: texlive-hagenberg-thesis Requires: texlive-har2nat Requires: texlive-hecthese Requires: texlive-hithesis Requires: texlive-hobete -Requires: texlive-hu-berlin-bundle Requires: texlive-hustthesis Requires: texlive-icsv Requires: texlive-ieeepes @@ -148434,12 +147786,9 @@ Requires: texlive-ijmart Requires: texlive-ijsra Requires: texlive-imac Requires: texlive-imtekda -Requires: texlive-inkpaper -Requires: texlive-iodhbwm Requires: texlive-iscram Requires: texlive-jacow Requires: texlive-jmlr -Requires: texlive-jnuexam Requires: texlive-jpsj Requires: texlive-kdgdocs Requires: texlive-kluwer @@ -148448,14 +147797,12 @@ Requires: texlive-ku-template Requires: texlive-langsci Requires: texlive-limecv Requires: texlive-lion-msc -Requires: texlive-llncsconf Requires: texlive-lni Requires: texlive-lps Requires: texlive-matc3 Requires: texlive-matc3mem Requires: texlive-mcmthesis Requires: texlive-mentis -Requires: texlive-mlacls Requires: texlive-mnras Requires: texlive-msu-thesis Requires: texlive-mucproc @@ -148479,24 +147826,21 @@ Requires: texlive-philosophersimprint Requires: texlive-pittetd Requires: texlive-pkuthss Requires: texlive-powerdot-FUBerlin -Requires: texlive-powerdot-tuliplab Requires: texlive-pracjourn Requires: texlive-procIAGssymp Requires: texlive-proposal -Requires: texlive-prtec Requires: texlive-ptptex +Requires: texlive-psu-thesis Requires: texlive-resphilosophica Requires: texlive-resumecls Requires: texlive-revtex Requires: texlive-revtex4 Requires: texlive-rutitlepage -Requires: texlive-ryersonsgsthesis Requires: texlive-ryethesis Requires: texlive-sageep Requires: texlive-sapthesis -Requires: texlive-schule Requires: texlive-scrjrnl -Requires: texlive-scientific-thesis-cover +Requires: texlive-schule Requires: texlive-sduthesis Requires: texlive-seuthesis Requires: texlive-seuthesix @@ -148504,26 +147848,16 @@ Requires: texlive-soton Requires: texlive-sphdthesis Requires: texlive-spie Requires: texlive-sr-vorl -Requires: texlive-srdp-mathematik Requires: texlive-stellenbosch Requires: texlive-suftesi Requires: texlive-sugconf Requires: texlive-tabriz-thesis -Requires: texlive-technion-thesis-template Requires: texlive-texilikechaps Requires: texlive-texilikecover Requires: texlive-thesis-ekf -Requires: texlive-thesis-gwu -Requires: texlive-thesis-qom Requires: texlive-thesis-titlepage-fhac -Requires: texlive-thuaslogos -Requires: texlive-thucoursework Requires: texlive-thuthesis -Requires: texlive-timbreicmc -Requires: texlive-tlc-article -Requires: texlive-topletter Requires: texlive-toptesi -Requires: texlive-tuda-ci Requires: texlive-tudscr Requires: texlive-tugboat Requires: texlive-tugboat-plain @@ -148532,10 +147866,8 @@ Requires: texlive-tui Requires: texlive-uaclasses Requires: texlive-uafthesis Requires: texlive-uantwerpendocs -Requires: texlive-ucalgmthesis Requires: texlive-ucbthesis Requires: texlive-ucdavisthesis -Requires: texlive-ucsmonograph Requires: texlive-ucthesis Requires: texlive-uestcthesis Requires: texlive-uhhassignment @@ -148546,10 +147878,8 @@ Requires: texlive-umbclegislation Requires: texlive-umthesis Requires: texlive-umich-thesis Requires: texlive-unamth-template-doc -Requires: texlive-unam-thesis Requires: texlive-unamthesis Requires: texlive-unitn-bimrep -Requires: texlive-univie-ling Requires: texlive-unswcover Requires: texlive-uothesis Requires: texlive-urcls @@ -148560,6 +147890,7 @@ Requires: texlive-ut-thesis Requires: texlive-uwthesis Requires: texlive-vancouver Requires: texlive-wsemclassic +Requires: texlive-xcookybooky Requires: texlive-xduthesis Requires: texlive-yathesis Requires: texlive-york-thesis @@ -148602,9 +147933,11 @@ Documentation for IEEEconf Provides: tex-IEEEtran = %{tl_version} License: LPPL 1.3 Summary: Document class for IEEE Transactions journals and conferences -Version: svn51065 +Version: svn38238.1.8b + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(newtxmath.sty) Provides: tex(IEEEtran.cls) = %{tl_version} Provides: tex(IEEEtrantools.sty) = %{tl_version} @@ -148619,7 +147952,8 @@ conferences. %package IEEEtran-doc Summary: Documentation for IEEEtran -Version: svn51065 +Version: svn38238.1.8b + Provides: tex-IEEEtran-doc AutoReqProv: No @@ -148680,7 +148014,7 @@ Documentation for confproc Provides: tex-dccpaper = %{tl_version} License: LPPL 1.3 Summary: Typeset papers for the International Journal of Digital Curation -Version: svn50294 +Version: svn45563 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(dccpaper-base.tex) = %{tl_version} @@ -148697,7 +148031,7 @@ International Digital Curation Conference, beginning with the %package dccpaper-doc Summary: Documentation for dccpaper -Version: svn50294 +Version: svn45563 Provides: tex-dccpaper-doc AutoReqProv: No @@ -148828,7 +148162,7 @@ Documentation for ebsthesis Provides: tex-ejpecp = %{tl_version} License: LPPL 1.2 Summary: Class for EJP and ECP -Version: svn50761 +Version: svn42003 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(graphicx.sty) @@ -148857,7 +148191,7 @@ Probability (EJP) and Electronic Communications in Probability %package ejpecp-doc Summary: Documentation for ejpecp -Version: svn50761 +Version: svn42003 Provides: tex-ejpecp-doc AutoReqProv: No @@ -148868,7 +148202,7 @@ Documentation for ejpecp Provides: tex-ekaia = %{tl_version} License: LPPL 1.2 Summary: Article format for publishing the Basque Country Science and Technology Journal "Ekaia" -Version: svn49594 +Version: svn42578 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(babel.sty) @@ -148885,7 +148219,7 @@ University of the Basque Country. %package ekaia-doc Summary: Documentation for ekaia -Version: svn49594 +Version: svn42578 Provides: tex-ekaia-doc AutoReqProv: No @@ -148928,9 +148262,11 @@ Documentation for elbioimp Provides: tex-elsarticle = %{tl_version} License: LPPL 1.2 Summary: Class for articles for submission to Elsevier journals -Version: svn50786 +Version: svn15878.1.20 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(txfonts.sty) Requires: tex(times.sty) Requires: tex(graphicx.sty) @@ -148946,7 +148282,8 @@ system and elsewhere. %package elsarticle-doc Summary: Documentation for elsarticle -Version: svn50786 +Version: svn15878.1.20 + Provides: tex-elsarticle-doc AutoReqProv: No @@ -149205,7 +148542,7 @@ Documentation for fcltxdoc Provides: tex-fei = %{tl_version} License: LPPL 1.3 Summary: Class for academic works at FEI University Center -- Brazil -Version: svn51287 +Version: svn45410 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(geometry.sty) @@ -149250,7 +148587,7 @@ the creation of academic works, such as ABNT NBR 10520:2002 %package fei-doc Summary: Documentation for fei -Version: svn51287 +Version: svn45410 Provides: tex-fei-doc AutoReqProv: No @@ -149361,7 +148698,7 @@ Documentation for gsemthesis Provides: tex-gzt = %{tl_version} License: LPPL 1.3 Summary: Bundle of classes for "La Gazette des Mathematiciens" -Version: svn47381 +Version: svn43254 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(silence.sty) @@ -149438,7 +148775,7 @@ mathematic formulas. %package gzt-doc Summary: Documentation for gzt -Version: svn47381 +Version: svn43254 Provides: tex-gzt-doc AutoReqProv: No @@ -149799,9 +149136,11 @@ Documentation for kdgdocs Provides: tex-kluwer = %{tl_version} License: LPPL Summary: kluwer package -Version: svn45756 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(amssymb.sty) Requires: tex(wasysym.sty) Requires: tex(fontenc.sty) @@ -149836,7 +149175,8 @@ kluwer package %package kluwer-doc Summary: Documentation for kluwer -Version: svn45756 +Version: svn15878.0 + Provides: tex-kluwer-doc AutoReqProv: No @@ -149936,9 +149276,11 @@ Documentation for matc3mem Provides: tex-mcmthesis = %{tl_version} License: LPPL 1.3 Summary: Template designed for MCM/ICM -Version: svn49825 +Version: svn39515 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(kvoptions.sty) Requires: tex(etoolbox.sty) Requires: tex(fancyhdr.sty) @@ -149985,7 +149327,8 @@ Modeling). %package mcmthesis-doc Summary: Documentation for mcmthesis -Version: svn49825 +Version: svn39515 + Provides: tex-mcmthesis-doc AutoReqProv: No @@ -150060,7 +149403,7 @@ Documentation for mnras Provides: tex-msu-thesis = %{tl_version} License: LPPL 1.3 Summary: Class for Michigan State University Master's and PhD theses -Version: svn46106 +Version: svn44676 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(etex.sty) @@ -150080,7 +149423,7 @@ functionality of that class. %package msu-thesis-doc Summary: Documentation for msu-thesis -Version: svn46106 +Version: svn44676 Provides: tex-msu-thesis-doc AutoReqProv: No @@ -150259,9 +149602,11 @@ Documentation for nddiss Provides: tex-ndsu-thesis = %{tl_version} License: LPPL 1.3 Summary: North Dakota State University disquisition class -Version: svn46639 +Version: svn40536 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(ndsu-thesis.cls) = %{tl_version} %description ndsu-thesis @@ -150270,7 +149615,8 @@ compliance with North Dakota State University requirements. %package ndsu-thesis-doc Summary: Documentation for ndsu-thesis -Version: svn46639 +Version: svn40536 + Provides: tex-ndsu-thesis-doc AutoReqProv: No @@ -150525,7 +149871,7 @@ Documentation for pittetd Provides: tex-pkuthss = %{tl_version} License: LPPL Summary: LaTeX template for dissertations in Peking University -Version: svn48124 +Version: svn43374 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(tikz.sty) @@ -150551,7 +149897,7 @@ template for dissertations in Peking University. %package pkuthss-doc Summary: Documentation for pkuthss -Version: svn48124 +Version: svn43374 Provides: tex-pkuthss-doc AutoReqProv: No @@ -150637,9 +149983,11 @@ Documentation for pracjourn Provides: tex-procIAGssymp = %{tl_version} License: LPPL Summary: Macros for IAG symposium papers -Version: svn51771 +Version: svn15878.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(procIAGssymp.sty) = %{tl_version} %description procIAGssymp @@ -150651,7 +149999,8 @@ Springer-Verlag. %package procIAGssymp-doc Summary: Documentation for procIAGssymp -Version: svn51771 +Version: svn15878.0 + Provides: tex-procIAGssymp-doc AutoReqProv: No @@ -150762,11 +150111,40 @@ AutoReqProv: No %description ptptex-doc Documentation for ptptex +%package psu-thesis +Provides: tex-psu-thesis = %{tl_version} +License: LPPL +Summary: Package for writing a thesis at Penn State University +Version: svn15878.1.1 + +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea + +Requires: tex(setspace.sty) +Provides: tex(psu-thesis.sty) = %{tl_version} + +%description psu-thesis +The package provides proper page formatting according to the +Penn State thesis office guidelines (as of 2004) and +automatically formats the front and back matter, title page, +and more. A BibTeX style file is also included for the +bibliography. + +%package psu-thesis-doc +Summary: Documentation for psu-thesis +Version: svn15878.1.1 + +Provides: tex-psu-thesis-doc +AutoReqProv: No + +%description psu-thesis-doc +Documentation for psu-thesis + %package resphilosophica Provides: tex-resphilosophica = %{tl_version} License: LPPL 1.3 Summary: Typeset articles for the journal Res Philosophica -Version: svn50935 +Version: svn43631 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xkeyval.sty) @@ -150788,7 +150166,7 @@ Louis University. %package resphilosophica-doc Summary: Documentation for resphilosophica -Version: svn50935 +Version: svn43631 Provides: tex-resphilosophica-doc AutoReqProv: No @@ -150831,9 +150209,11 @@ Documentation for resumecls Provides: tex-revtex = %{tl_version} License: LPPL 1.3 Summary: Styles for various Physics Journals -Version: svn49751 +Version: svn19652.4.1r + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(verbatim.sty) Requires: tex(shortvrb.sty) Requires: tex(textcase.sty) @@ -150859,7 +150239,8 @@ support packages. %package revtex-doc Summary: Documentation for revtex -Version: svn49751 +Version: svn19652.4.1r + Provides: tex-revtex-doc AutoReqProv: No @@ -150870,9 +150251,11 @@ Documentation for revtex Provides: tex-revtex4 = %{tl_version} License: LPPL Summary: revtex4 package -Version: svn45873 +Version: svn16488.0 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(amsfonts.sty) Requires: tex(amssymb.sty) Requires: tex(amsmath.sty) @@ -150887,7 +150270,8 @@ revtex4 package %package revtex4-doc Summary: Documentation for revtex4 -Version: svn45873 +Version: svn16488.0 + Provides: tex-revtex4-doc AutoReqProv: No @@ -150966,9 +150350,11 @@ Documentation for sageep Provides: tex-sapthesis = %{tl_version} License: LPPL 1.3 Summary: Typeset theses for Sapienza-University, Rome -Version: svn48365 +Version: svn39014 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(geometry.sty) Requires: tex(ifxetex.sty) @@ -150991,7 +150377,8 @@ of Rome. %package sapthesis-doc Summary: Documentation for sapthesis -Version: svn48365 +Version: svn39014 + Provides: tex-sapthesis-doc AutoReqProv: No @@ -151395,9 +150782,11 @@ Documentation for stellenbosch Provides: tex-suftesi = %{tl_version} License: LPPL 1.3 Summary: A document class for typesetting theses, books and articles -Version: svn49138 +Version: svn40238 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(xkeyval.sty) Requires: tex(geometry.sty) Requires: tex(enumitem.sty) @@ -151430,7 +150819,8 @@ humanities. %package suftesi-doc Summary: Documentation for suftesi -Version: svn49138 +Version: svn40238 + Provides: tex-suftesi-doc AutoReqProv: No @@ -151468,9 +150858,11 @@ Documentation for sugconf Provides: tex-tabriz-thesis = %{tl_version} License: LPPL 1.3 Summary: A template for the University of Tabriz -Version: svn51729 +Version: svn29421.1.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(amsthm.sty) Requires: tex(amssymb.sty) Requires: tex(amsmath.sty) @@ -151491,7 +150883,8 @@ use of XeLaTeX. %package tabriz-thesis-doc Summary: Documentation for tabriz-thesis -Version: svn51729 +Version: svn29421.1.1 + Provides: tex-tabriz-thesis-doc AutoReqProv: No @@ -151534,7 +150927,7 @@ TeXinfo produces. Provides: tex-thesis-ekf = %{tl_version} License: LPPL 1.2 Summary: Thesis class for Eszterhazy Karoly College -Version: svn51026 +Version: svn43745 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(geometry.sty) @@ -151547,7 +150940,7 @@ class as well as three templates. %package thesis-ekf-doc Summary: Documentation for thesis-ekf -Version: svn51026 +Version: svn43745 Provides: tex-thesis-ekf-doc AutoReqProv: No @@ -151589,7 +150982,7 @@ Documentation for thesis-titlepage-fhac Provides: tex-thuthesis = %{tl_version} License: LPPL 1.3 Summary: Thesis template for Tsinghua University -Version: svn50932 +Version: svn43609 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifxetex.sty) @@ -151625,7 +151018,7 @@ bachelor's, master's or doctor's degree. %package thuthesis-doc Summary: Documentation for thuthesis -Version: svn50932 +Version: svn43609 Provides: tex-thuthesis-doc AutoReqProv: No @@ -151636,7 +151029,7 @@ Documentation for thuthesis Provides: tex-toptesi = %{tl_version} License: LPPL 1.3 Summary: Bundle for typesetting multilanguage theses -Version: svn51743 +Version: svn45577 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifxetex.sty) @@ -151670,7 +151063,7 @@ and with all the necessary metadata. %package toptesi-doc Summary: Documentation for toptesi -Version: svn51743 +Version: svn45577 Provides: tex-toptesi-doc AutoReqProv: No @@ -151681,7 +151074,7 @@ Documentation for toptesi Provides: tex-tudscr = %{tl_version} License: LPPL 1.3 Summary: The Corporate Design of TU Dresden -Version: svn51675 +Version: svn44480 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(fontspec.sty) @@ -151779,7 +151172,7 @@ comprehensive user documentation as well as several tutorials. %package tudscr-doc Summary: Documentation for tudscr -Version: svn51675 +Version: svn44480 Provides: tex-tudscr-doc AutoReqProv: No @@ -151790,7 +151183,7 @@ Documentation for tudscr Provides: tex-tugboat = %{tl_version} License: LPPL 1.3 Summary: LaTeX macros for TUGboat articles -Version: svn49415 +Version: svn42465 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(mflogo.sty) @@ -151807,7 +151200,7 @@ style appropriate for use with the classes' "harvard" option. %package tugboat-doc Summary: Documentation for tugboat -Version: svn49415 +Version: svn42465 Provides: tex-tugboat-doc AutoReqProv: No @@ -151818,7 +151211,7 @@ Documentation for tugboat Provides: tex-tugboat-plain = %{tl_version} License: Bibtex Summary: Plain TeX macros for TUGboat -Version: svn51373 +Version: svn43560 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(tugboat.sty) = %{tl_version} @@ -151831,7 +151224,7 @@ publication in TUGboat. %package tugboat-plain-doc Summary: Documentation for tugboat-plain -Version: svn51373 +Version: svn43560 Provides: tex-tugboat-plain-doc AutoReqProv: No @@ -151972,9 +151365,11 @@ Documentation for uafthesis Provides: tex-ucbthesis = %{tl_version} License: LPPL 1.3 Summary: Thesis and dissertation class supporting UCB requirements -Version: svn51690 +Version: svn37776.3.5 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(ucbthesis.cls) = %{tl_version} %description ucbthesis @@ -151985,7 +151380,8 @@ class. %package ucbthesis-doc Summary: Documentation for ucbthesis -Version: svn51690 +Version: svn37776.3.5 + Provides: tex-ucbthesis-doc AutoReqProv: No @@ -152167,7 +151563,7 @@ Documentation for uiucthesis Provides: tex-ulthese = %{tl_version} License: LPPL 1.3 Summary: Thesis class and templates for Universite Laval -Version: svn51038 +Version: svn44456 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -152195,7 +151591,7 @@ language of the target audience. %package ulthese-doc Summary: Documentation for ulthese -Version: svn51038 +Version: svn44456 Provides: tex-ulthese-doc AutoReqProv: No @@ -152377,7 +151773,7 @@ Documentation for uothesis Provides: tex-urcls = %{tl_version} License: LPPL Summary: Beamer and scrlttr2 classes and styles for the University of Regensburg -Version: svn49903 +Version: svn43734 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -152409,7 +151805,7 @@ are provided as .tex and .pdf-files. %package urcls-doc Summary: Documentation for urcls -Version: svn49903 +Version: svn43734 Provides: tex-urcls-doc AutoReqProv: No @@ -152687,7 +152083,7 @@ Documentation for xcookybooky Provides: tex-yathesis = %{tl_version} License: LPPL 1.3 Summary: yathesis provides a LaTeX class that aims to help to write a thesis following French rules -Version: svn50630 +Version: svn42671 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(xpatch.sty) @@ -152740,7 +152136,7 @@ following French rules. %package yathesis-doc Summary: Documentation for yathesis -Version: svn50630 +Version: svn42671 Provides: tex-yathesis-doc AutoReqProv: No @@ -152938,9 +152334,11 @@ Documentation for computational-complexity Provides: tex-cryptocode = %{tl_version} License: LPPL 1.3 Summary: Typesetting pseudocode, protocols, game-based proofs and black-box reductions in cryptography -Version: svn49131 +Version: svn37019.0.1 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(amsmath.sty) Requires: tex(mathtools.sty) Requires: tex(amsfonts.sty) @@ -152971,7 +152369,8 @@ used within the cryptographic community. %package cryptocode-doc Summary: Documentation for cryptocode -Version: svn49131 +Version: svn37019.0.1 + Provides: tex-cryptocode-doc AutoReqProv: No @@ -153536,7 +152935,7 @@ Documentation for hepparticles Provides: tex-hepthesis = %{tl_version} License: LPPL Summary: A class for academic reports, especially PhD theses -Version: svn46054 +Version: svn45371 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(a4wide.sty) @@ -153578,7 +152977,7 @@ from the KOMA-Script bundle. %package hepthesis-doc Summary: Documentation for hepthesis -Version: svn46054 +Version: svn45371 Provides: tex-hepthesis-doc AutoReqProv: No @@ -153708,7 +153107,7 @@ Documentation for matlab-prettifier Provides: tex-mhchem = %{tl_version} License: LPPL 1.3 Summary: Typeset chemical formulae/equations and Risk and Safety phrases -Version: svn48088 +Version: svn44888 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(babel.sty) @@ -153740,7 +153139,7 @@ requires the expl3 bundle. %package mhchem-doc Summary: Documentation for mhchem -Version: svn48088 +Version: svn44888 Provides: tex-mhchem-doc AutoReqProv: No @@ -153920,9 +153319,11 @@ Documentation for pseudocode Provides: tex-sasnrdisplay = %{tl_version} License: LPPL 1.3 Summary: Typeset SAS or R code or output -Version: svn45963 +Version: svn33120.0.93 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex(listings.sty) Requires: tex(xkeyval.sty) Requires: tex(xcolor.sty) @@ -153941,7 +153342,8 @@ and SASweave packages. %package sasnrdisplay-doc Summary: Documentation for sasnrdisplay -Version: svn45963 +Version: svn33120.0.93 + Provides: tex-sasnrdisplay-doc AutoReqProv: No @@ -154061,7 +153463,7 @@ Documentation for sfg Provides: tex-siunitx = %{tl_version} License: LPPL 1.3 Summary: A comprehensive (SI) units package -Version: svn47746 +Version: svn44946 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -154100,7 +153502,7 @@ l3packages bundles. %package siunitx-doc Summary: Documentation for siunitx -Version: svn47746 +Version: svn44946 Provides: tex-siunitx-doc AutoReqProv: No @@ -154139,7 +153541,7 @@ Documentation for steinmetz Provides: tex-struktex = %{tl_version} License: LPPL 1.2 Summary: Draw Nassi-Schneidermann charts -Version: svn47931 +Version: svn44789 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifpdf.sty) @@ -154168,7 +153570,7 @@ picture environment (using pict2e for preference). %package struktex-doc Summary: Documentation for struktex -Version: svn47931 +Version: svn44789 Provides: tex-struktex-doc AutoReqProv: No @@ -154408,7 +153810,7 @@ Documentation for youngtab %package collection-xetex Summary: XeTeX and packages -Version: svn49732 +Version: svn45489 Requires: texlive-base Requires: texlive-collection-basic Requires: texlive-arabxetex @@ -154418,8 +153820,6 @@ Requires: texlive-bidicontour Requires: texlive-bidipagegrid Requires: texlive-bidishadowtext Requires: texlive-bidipresentation -Requires: texlive-businesscard-qrcode -Requires: texlive-cqubeamer Requires: texlive-fixlatvian Requires: texlive-font-change-xetex Requires: texlive-fontbook @@ -154429,7 +153829,6 @@ Requires: texlive-na-position Requires: texlive-philokalia Requires: texlive-ptext Requires: texlive-quran -Requires: texlive-quran-de Requires: texlive-realscripts Requires: texlive-simple-resume-cv Requires: texlive-simple-thesis-dissertation @@ -154644,9 +154043,11 @@ Documentation for philokalia Provides: tex-polyglossia = %{tl_version} License: LPPL 1.3 Summary: An alternative to babel for XeLaTeX and LuaLaTeX -Version: svn50787 +Version: svn40138 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-etoolbox Requires: tex-fontspec Requires: tex-ifluatex @@ -154766,7 +154167,8 @@ that role. %package polyglossia-doc Summary: Documentation for polyglossia -Version: svn50787 +Version: svn40138 + Provides: tex-polyglossia-doc AutoReqProv: No Requires: tex-etoolbox-doc @@ -154810,7 +154212,7 @@ Documentation for ptext Provides: tex-quran = %{tl_version} License: LPPL 1.3 Summary: An easy way to typeset any part of The Holy Quran -Version: svn50980 +Version: svn45122 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(biditools.sty) @@ -154828,7 +154230,7 @@ loaded before the bidi package. %package quran-doc Summary: Documentation for quran -Version: svn50980 +Version: svn45122 Provides: tex-quran-doc AutoReqProv: No @@ -154960,7 +154362,7 @@ Documentation for xebaposter Provides: tex-xecjk = %{tl_version} License: LPPL 1.3 Summary: Support for CJK documents in XeLaTeX -Version: svn51298 +Version: svn44978 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(expl3.sty) @@ -154993,7 +154395,7 @@ development environment). %package xecjk-doc Summary: Documentation for xecjk -Version: svn51298 +Version: svn44978 Provides: tex-xecjk-doc AutoReqProv: No @@ -155090,7 +154492,7 @@ Documentation for xeindex Provides: tex-xepersian = %{tl_version} License: LPPL 1.3 Summary: Persian for LaTeX, using XeTeX -Version: svn50911 +Version: svn45233 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(ifthen.sty) @@ -155177,7 +154579,7 @@ The package supports Persian typesetting. %package xepersian-doc Summary: Documentation for xepersian -Version: svn50911 +Version: svn45233 Provides: tex-xepersian-doc AutoReqProv: No @@ -155366,7 +154768,7 @@ Documentation for xetexfontinfo Provides: tex-xetexko = %{tl_version} License: LPPL 1.3 Summary: Typeset Korean with Xe(La)TeX -Version: svn48378 +Version: svn45435 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: tex(fontspec.sty) @@ -155387,7 +154789,7 @@ typesetting. %package xetexko-doc Summary: Documentation for xetexko -Version: svn48378 +Version: svn45435 Provides: tex-xetexko-doc AutoReqProv: No @@ -155426,9 +154828,11 @@ Documentation for xevlna Provides: tex-xltxtra = %{tl_version} License: LPPL Summary: "Extras" for LaTeX users of XeTeX -Version: svn49555 +Version: svn39453 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Requires: tex-metalogo Requires: tex(ifluatex.sty) Requires: tex(fontspec.sty) @@ -155452,7 +154856,8 @@ package for typesetting the XeTeX and XeLaTeX logos. %package xltxtra-doc Summary: Documentation for xltxtra -Version: svn49555 +Version: svn39453 + Provides: tex-xltxtra-doc AutoReqProv: No Requires: tex-metalogo-doc @@ -155508,7 +154913,7 @@ scheme corresponds to collection-basic and collection-latex. %package scheme-context Summary: ConTeXt scheme -Version: svn50183 +Version: svn35799.0 Requires: texlive-base Requires: texlive-collection-context Requires: texlive-collection-metapost @@ -155808,7 +155213,7 @@ that was maintained by Thomas Esser. Provides: tex-texlive-docindex = %{tl_version} License: LPPL Summary: top-level TeX Live doc.html, etc -Version: svn51813 +Version: svn45575 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -155819,7 +155224,7 @@ for the process. %package texlive-docindex-doc Summary: Documentation for texlive-docindex -Version: svn51813 +Version: svn45575 Provides: tex-texlive-docindex-doc AutoReqProv: No @@ -155832,7 +155237,7 @@ Documentation for texlive-docindex Provides: tex-acmart-doc = %{tl_version} License: LPPL Summary: doc files of acmart -Version: svn51796 +Version: svn46476 AutoReqProv: No %description acmart-doc @@ -155842,39 +155247,10 @@ Documentation for acmart Provides: tex-acmart = %{tl_version} License: LPPL Summary: Class for typesetting publications of ACM> -Version: svn51796 +Version: svn46476 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(acmart.cls) = %{tl_version} -Requires: tex(balance.sty) -Requires: tex(hyperref.sty) -Requires: tex(booktabs.sty) -Requires: tex(caption.sty) -Requires: tex(float.sty) -Requires: tex(cmap.sty) -Requires: tex(comment.sty) -Requires: tex(draftwatermark.sty) -Requires: tex(environ.sty) -Requires: tex(etoolbox.sty) -Requires: tex(fancyhdr.sty) -Requires: tex(geometry.sty) -Requires: tex(graphicx.sty) -Requires: tex(iftex.sty) -Requires: tex(newtxmath.sty) -Requires: tex(manyfoot.sty) -Requires: tex(microtype.sty) -Requires: tex(natbib.sty) -Requires: tex(xcolor.sty) -Requires: tex(refcount.sty) -Requires: tex(setspace.sty) -Requires: tex(fontenc.sty) -Requires: tex(textcase.sty) -Requires: tex(textcomp.sty) -Requires: tex(totpages.sty) -Requires: tex(libertine.sty) -Requires: tex(zi4.sty) -Requires: tex(xkeyval.sty) -Requires: tex(xstring.sty) %description acmart This package provides a class for typesetting publications of @@ -155884,11 +155260,9 @@ Association for Computing Machinery. Provides: tex-adtrees = %{tl_version} License: GPL+ Summary: Macros for drawing adpositional trees -Version: svn51618 +Version: svn39438 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea -Requires: tex(epic.sty) -Requires: tex(cancel.sty) Provides: tex(adtrees.sty) = %{tl_version} %description adtrees @@ -155903,7 +155277,7 @@ adtreedoc.tex: the source code for the documentation. Provides: tex-adtrees-doc License: GPL+ Summary: doc files of adtrees -Version: svn51618 +Version: svn39438 AutoReqProv: No %description adtrees-doc @@ -155940,7 +155314,7 @@ contents for Arabic texts created by the arabi package. Provides: tex-arabluatex-doc = %{tl_version} License: GPLv3+ Summary: doc files of arabluatex -Version: svn50571 +Version: svn46227 AutoReqProv: No %description arabluatex-doc @@ -155950,7 +155324,7 @@ Documentation for arabluatex Provides: tex-arabluatex = %{tl_version} License: GPLv3+ Summary: An ArabTeX-like interface for LuaLaTeX -Version: svn50571 +Version: svn46227 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(arabluatex.sty) = %{tl_version} @@ -155974,7 +155348,7 @@ correlated in various ways. Provides: tex-archaeologie-doc = %{tl_version} License: LPPL Summary: doc files of archaeologie -Version: svn50908 +Version: svn45852 AutoReqProv: No %description archaeologie-doc @@ -155984,7 +155358,7 @@ Documentation for archaeologie Provides: tex-archaeologie = %{tl_version} License: LPPL Summary: Citation-style which covers rules of the German Archaeology Institute -Version: svn50908 +Version: svn45852 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -156031,7 +155405,7 @@ if an OTF-capable engine is not detected. Provides: tex-asciilist-doc = %{tl_version} License: LPPL Summary: doc files of asciilist -Version: svn49060 +Version: svn41158 AutoReqProv: No %description asciilist-doc @@ -156041,7 +155415,7 @@ Documentation for asciilist Provides: tex-asciilist = %{tl_version} License: LPPL Summary: Environments AsciiList and AsciiDocList for prototyping nested lists in LaTeX. -Version: svn49060 +Version: svn41158 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(asciilist.sty) = %{tl_version} @@ -156059,7 +155433,8 @@ environments and the appearance of the typeset results. Provides: tex-babel-belarusian-doc = %{tl_version} License: LPPL Summary: doc files of babel-belarusian -Version: svn49022 +Version: svn40636 + AutoReqProv: No %description babel-belarusian-doc @@ -156069,9 +155444,11 @@ Documentation for babel-belarusian Provides: tex-babel-belarusian = %{tl_version} License: LPPL Summary: Babel support for Belarusian -Version: svn49022 +Version: svn40636 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(belarusianb.ldf) = %{tl_version} %description babel-belarusian @@ -156307,7 +155684,7 @@ by Till Tantau. Provides: tex-biblatex-abnt-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-abnt -Version: svn49179 +Version: svn45765 AutoReqProv: No %description biblatex-abnt-doc @@ -156317,7 +155694,7 @@ Documentation for biblatex-abnt Provides: tex-biblatex-abnt = %{tl_version} License: LPPL Summary: BibLaTeX style for Brazil's ABNT rules -Version: svn49179 +Version: svn45765 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(abnt-numeric.bbx) = %{tl_version} @@ -156433,7 +155810,7 @@ specifying references. Provides: tex-bibtexperllibs-doc = %{tl_version} License: GPL+ or Artistic Summary: doc files of bibtexperllibs -Version: svn47520 +Version: svn43549 AutoReqProv: No %description bibtexperllibs-doc @@ -156443,7 +155820,7 @@ Documentation for bibtexperllibs Provides: tex-bibtexperllibs = %{tl_version} License: GPL+ or Artistic Summary: BibTeX Perl Libraries -Version: svn47520 +Version: svn43549 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: perl(LaTeX::ToUnicode) @@ -156653,7 +156030,8 @@ supported as well as alpha, beta, and chain isomers. Provides: tex-chivo-doc = %{tl_version} License: LPPL Summary: doc files of chivo -Version: svn51689 +Version: svn40931 + AutoReqProv: No %description chivo-doc @@ -156663,9 +156041,11 @@ Documentation for chivo Provides: tex-chivo = %{tl_version} License: LPPL Summary: Using the free Chivo fonts with LaTeX -Version: svn51689 +Version: svn40931 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(Chivo.sty) = %{tl_version} Provides: tex(Chivo.map) = %{tl_version} Provides: tex(OT1Chivo-TLF.fd) = %{tl_version} @@ -156891,7 +156271,8 @@ line 25"; "ndash was never used". Provides: tex-cmexb-doc = %{tl_version} License: Public Domain Summary: doc files of cmexb -Version: svn45677 +Version: svn40785 + AutoReqProv: No %description cmexb-doc @@ -156901,9 +156282,11 @@ Documentation for cmexb Provides: tex-cmexb = %{tl_version} License: Public Domain Summary: PFB font support -Version: svn45677 +Version: svn40785 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(cmexb.map) = %{tl_version} Provides: tex(cmexb10.pfb) = %{tl_version} Provides: tex(cmexb10.tfm) = %{tl_version} @@ -156916,7 +156299,7 @@ extrapolation only as bitmap font. Provides: tex-cochineal-doc = %{tl_version} License: LPPL and OFL Summary: doc files of cochineal -Version: svn51460 +Version: svn43462 AutoReqProv: No %description cochineal-doc @@ -156926,7 +156309,7 @@ Documentation for cochineal Provides: tex-cochineal = %{tl_version} License: LPPL and OFL Summary: Cochineal fonts with LaTeX support -Version: svn51460 +Version: svn43462 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(cochineal.sty) = %{tl_version} @@ -157859,7 +157242,8 @@ write \definecolor before using a color. Provides: tex-continue-doc = %{tl_version} License: LPPL Summary: doc files of continue -Version: svn49449 +Version: svn39308 + AutoReqProv: No %description continue-doc @@ -157869,9 +157253,11 @@ Documentation for continue Provides: tex-continue = %{tl_version} License: LPPL Summary: Prints 'continuation' marks on recto pages of multipage documents -Version: svn49449 +Version: svn39308 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(continue.sty) = %{tl_version} %description continue @@ -157885,7 +157271,7 @@ position and form of the continuation mark may be altered. Provides: tex-cquthesis-doc = %{tl_version} License: LPPL Summary: doc files of cquthesis -Version: svn46863 +Version: svn44476 AutoReqProv: No %description cquthesis-doc @@ -157895,7 +157281,7 @@ Documentation for cquthesis Provides: tex-cquthesis = %{tl_version} License: LPPL Summary: LaTeX Thesis Template for Chongqing University -Version: svn46863 +Version: svn44476 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(cquthesis.cls) = %{tl_version} @@ -158253,7 +157639,7 @@ picture environment. Provides: tex-emisa-doc = %{tl_version} License: LPPL Summary: doc files of emisa -Version: svn46734 +Version: svn41731 AutoReqProv: No %description emisa-doc @@ -158263,7 +157649,7 @@ Documentation for emisa Provides: tex-emisa = %{tl_version} License: LPPL Summary: A LaTeX package for preparing manuscripts for the journal EMISA -Version: svn46734 +Version: svn41731 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(emisa.cls) = %{tl_version} @@ -158473,7 +157859,7 @@ Documentation for fonts-churchslavonic. Provides: tex-footnotehyper-doc = %{tl_version} License: LPPL Summary: doc files of footnotehyper -Version: svn46431 +Version: svn43424 AutoReqProv: No %description footnotehyper-doc @@ -158483,7 +157869,7 @@ Documentation for footnotehyper Provides: tex-footnotehyper = %{tl_version} License: LPPL Summary: hyperref aware footnote.sty -Version: svn46431 +Version: svn43424 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(footnotehyper.sty) = %{tl_version} @@ -158493,6 +157879,16 @@ The footnote package by Mark Wooding dates back to 1997 and has not been made hyperref compatible. The aim of the present package is to do that. +%package formation-latex-ul-doc +Provides: tex-formation-latex-ul-doc = %{tl_version} +License: CC-BY-SA +Summary: doc files of formation-latex-ul +Version: svn43005 +AutoReqProv: No + +%description formation-latex-ul-doc +Documentation for formation-latex-ul + %package getitems-doc Provides: tex-getitems-doc = %{tl_version} License: LPPL @@ -158555,7 +157951,7 @@ suggestions, as well as code contributions are welcome. Provides: tex-glossaries-extra-doc = %{tl_version} License: LPPL Summary: doc files of glossaries-extra -Version: svn51006 +Version: svn45271 AutoReqProv: No %description glossaries-extra-doc @@ -158565,7 +157961,7 @@ Documentation for glossaries-extra Provides: tex-glossaries-extra = %{tl_version} License: LPPL Summary: An extension to the glossaries package -Version: svn51006 +Version: svn45271 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(glossaries-extra.sty) = %{tl_version} @@ -158606,7 +158002,8 @@ Occitan language description file for polyglossia Provides: tex-gobble-doc = %{tl_version} License: LPPL Summary: doc files of gobble -Version: svn49608 +Version: svn40936 + AutoReqProv: No %description gobble-doc @@ -158616,9 +158013,11 @@ Documentation for gobble Provides: tex-gobble = %{tl_version} License: LPPL Summary: More gobble macros for PlainTeX and LaTeX -Version: svn49608 +Version: svn40936 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(gobble.sty) = %{tl_version} Provides: tex(gobble-user.sty) = %{tl_version} Provides: tex(gobble.tex) = %{tl_version} @@ -158759,11 +158158,22 @@ proposal templates for writing EU H2020 RIA proposals and generating automatically the many cross-referenced tables that are required. +%package hyphen-bulgarian-doc +Provides: tex-hyphen-bulgarian-doc = %{tl_version} +License: LPPL +Summary: doc files of hyphen-bulgarian +Version: svn41113 + +AutoReqProv: No + +%description hyphen-bulgarian-doc +Documentation for hyphen-bulgarian + %package hyphen-churchslavonic Provides: tex-hyphen-churchslavonic = %{tl_version} License: Copyright only Summary: Church Slavonic hyphenation patterns. -Version: svn51186 +Version: svn44401 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(hyph-cu.tex) = %{tl_version} @@ -158776,9 +158186,11 @@ Hyphenation patterns for Church Slavonic in UTF-8 encoding Provides: tex-hyphen-occitan = %{tl_version} License: Copyright only Summary: Occitan hyphenation patterns. -Version: svn51186 +Version: svn40340 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(hyph-oc.ec.tex) = %{tl_version} Provides: tex(hyph-oc.tex) = %{tl_version} Provides: tex(hyph-quote-oc.tex) = %{tl_version} @@ -158796,7 +158208,8 @@ the French pentagon. Provides: tex-hyphen-sanskrit-doc = %{tl_version} License: LPPL Summary: doc files of hyphen-sanskrit -Version: svn51186 +Version: svn40340 + AutoReqProv: No %description hyphen-sanskrit-doc @@ -158806,7 +158219,8 @@ Documentation for hyphen-sanskrit Provides: tex-hyphen-spanish-doc = %{tl_version} License: LPPL Summary: doc files of hyphen-spanish -Version: svn51186 +Version: svn40340 + AutoReqProv: No %description hyphen-spanish-doc @@ -158947,7 +158361,8 @@ fonts. Provides: tex-jacow-doc = %{tl_version} License: LPPL Summary: doc files of jacow -Version: svn50870 +Version: svn40523 + AutoReqProv: No %description jacow-doc @@ -158957,9 +158372,11 @@ Documentation for jacow Provides: tex-jacow = %{tl_version} License: LPPL Summary: The "jacow.cls" class is used for submissions to the proceedings of conferences on JACoW.org -Version: svn50870 +Version: svn40523 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(jacow.cls) = %{tl_version} %description jacow @@ -158972,7 +158389,8 @@ of accelerator conferences held around the world. Provides: tex-keyvaltable-doc = %{tl_version} License: LPPL Summary: doc files of keyvaltable -Version: svn51288 +Version: svn41414 + AutoReqProv: No %description keyvaltable-doc @@ -158982,9 +158400,11 @@ Documentation for keyvaltable Provides: tex-keyvaltable = %{tl_version} License: LPPL Summary: Re-usable tables separating content and presentation -Version: svn51288 +Version: svn41414 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(keyvaltable.sty) = %{tl_version} %description keyvaltable @@ -159032,7 +158452,7 @@ requirements by KSP. Provides: tex-langsci-doc = %{tl_version} License: LPPL Summary: doc files of langsci -Version: svn50706 +Version: svn45403 AutoReqProv: No %description langsci-doc @@ -159042,7 +158462,7 @@ Documentation for langsci Provides: tex-langsci = %{tl_version} License: LPPL Summary: Typeset books for publication with Language Science Press -Version: svn50706 +Version: svn45403 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(langscibook.cls) = %{tl_version} @@ -159215,7 +158635,7 @@ LGR, T2A, T2B, T2C, OT2. Provides: tex-libertinus-doc = %{tl_version} License: OFL Summary: doc files of libertinus -Version: svn47488 +Version: svn44409 AutoReqProv: No %description libertinus-doc @@ -159225,7 +158645,7 @@ Documentation for libertinus Provides: tex-libertinust1math-doc = %{tl_version} License: LPPL and OFL Summary: doc files of libertinust1math -Version: svn48077 +Version: svn45439 AutoReqProv: No %description libertinust1math-doc @@ -159235,7 +158655,7 @@ Documentation for libertinust1math Provides: tex-libertinust1math = %{tl_version} License: LPPL and OFL Summary: A Type 1 font and LaTeX support for Libertinus Math -Version: svn48077 +Version: svn45439 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(libertinust1math.sty) = %{tl_version} @@ -159277,7 +158697,7 @@ LaTeX. Provides: tex-libertinus = %{tl_version} License: OFL Summary: The Libertinus font family -Version: svn47488 +Version: svn44409 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(libertinusserifinitials-regular.otf) = %{tl_version} @@ -159557,7 +158977,8 @@ Documentation for lshort-estonian Provides: tex-lstbayes-doc = %{tl_version} License: LPPL Summary: doc files of lstbayes -Version: svn48160 +Version: svn39183 + AutoReqProv: No %description lstbayes-doc @@ -159567,9 +158988,11 @@ Documentation for lstbayes Provides: tex-lstbayes = %{tl_version} License: LPPL Summary: Listings language driver for Bayesian modeling languages -Version: svn48160 +Version: svn39183 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(lstbayes.sty) = %{tl_version} %description lstbayes @@ -159638,7 +159061,7 @@ contain bugs. Please report problems to the author. Provides: tex-markdown-doc = %{tl_version} License: LPPL Summary: doc files of markdown -Version: svn50906 +Version: svn45278 AutoReqProv: No %description markdown-doc @@ -159648,7 +159071,7 @@ Documentation for markdown Provides: tex-markdown = %{tl_version} License: LPPL Summary: A package for converting and rendering markdown documents inside TeX -Version: svn50906 +Version: svn45278 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(markdown.sty) = %{tl_version} @@ -159706,7 +159129,8 @@ rules. Provides: tex-miama-doc = %{tl_version} License: LPPL and OFL Summary: doc files of miama -Version: svn51395 +Version: svn39837 + AutoReqProv: No %description miama-doc @@ -159716,9 +159140,11 @@ Documentation for miama Provides: tex-miama = %{tl_version} License: LPPL and OFL Summary: The Miama Nueva handwriting font with LaTeX support -Version: svn51395 +Version: svn39837 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(miama.sty) = %{tl_version} Provides: tex(miama.map) = %{tl_version} Provides: tex(lgrfmm.fd) = %{tl_version} @@ -160225,7 +159651,7 @@ current colour but the normal / default color. Provides: tex-noto-doc = %{tl_version} License: LPPL and OFL Summary: doc files of noto -Version: svn53105 +Version: svn42881 AutoReqProv: No %description noto-doc @@ -160235,12445 +159661,135 @@ Documentation for noto Provides: tex-noto = %{tl_version} License: LPPL and OFL Summary: Support for Noto fonts -Version: svn53105 -Requires: texlive-base -Requires: texlive-kpathsea-bin, tex-kpathsea -Provides: tex(LGRNotoSans-LF.fd) = %{tl_version} -Provides: tex(LGRNotoSansMono-Sup.fd) = %{tl_version} -Provides: tex(LGRNotoSansMono-TLF.fd) = %{tl_version} -Provides: tex(LGRNotoSansMono-TOsF.fd) = %{tl_version} -Provides: tex(LGRNotoSans-OsF.fd) = %{tl_version} -Provides: tex(LGRNotoSans-Sup.fd) = %{tl_version} -Provides: tex(LGRNotoSans-TLF.fd) = %{tl_version} -Provides: tex(LGRNotoSans-TOsF.fd) = %{tl_version} -Provides: tex(LGRNotoSerif-LF.fd) = %{tl_version} -Provides: tex(LGRNotoSerif-OsF.fd) = %{tl_version} -Provides: tex(LGRNotoSerif-Sup.fd) = %{tl_version} -Provides: tex(LGRNotoSerif-TLF.fd) = %{tl_version} -Provides: tex(LGRNotoSerif-TOsF.fd) = %{tl_version} -Provides: tex(LY1NotoSans-LF.fd) = %{tl_version} -Provides: tex(LY1NotoSansMono-Sup.fd) = %{tl_version} -Provides: tex(LY1NotoSansMono-TLF.fd) = %{tl_version} -Provides: tex(LY1NotoSansMono-TOsF.fd) = %{tl_version} -Provides: tex(LY1NotoSans-OsF.fd) = %{tl_version} -Provides: tex(LY1NotoSans-Sup.fd) = %{tl_version} +Version: svn42881 +Requires: texlive-base +Requires: texlive-kpathsea-bin, tex-kpathsea +Provides: tex(noto.sty) = %{tl_version} +Provides: tex(noto.map) = %{tl_version} +Provides: tex(OT1NotoSans-TLF.fd) = %{tl_version} +Provides: tex(TS1NotoSans-TLF.fd) = %{tl_version} +Provides: tex(TS1NotoSerif-TLF.fd) = %{tl_version} Provides: tex(LY1NotoSans-TLF.fd) = %{tl_version} -Provides: tex(LY1NotoSans-TOsF.fd) = %{tl_version} -Provides: tex(LY1NotoSerif-LF.fd) = %{tl_version} -Provides: tex(LY1NotoSerif-OsF.fd) = %{tl_version} -Provides: tex(LY1NotoSerif-Sup.fd) = %{tl_version} +Provides: tex(OT1NotoSerif-TLF.fd) = %{tl_version} +Provides: tex(T1NotoSerif-TLF.fd) = %{tl_version} +Provides: tex(T1NotoSans-TLF.fd) = %{tl_version} Provides: tex(LY1NotoSerif-TLF.fd) = %{tl_version} -Provides: tex(LY1NotoSerif-TOsF.fd) = %{tl_version} -Provides: tex(noto.map) = %{tl_version} -Provides: tex(NotoMono-BoldItalic.pfb) = %{tl_version} -Provides: tex(NotoMono-Bold.pfb) = %{tl_version} -Provides: tex(NotoMono-Italic.pfb) = %{tl_version} -Provides: tex(NotoMono-Regular.pfb) = %{tl_version} -Provides: tex(noto-mono.sty) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-BlackItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-BlackItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-Black-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Black.pfb) = %{tl_version} -Provides: tex(NotoSans-Black-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Black-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Black.ttf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-osf-ts1.vf) = %{tl_version} +Provides: tex(NotoSerif-Regular.pfb) = %{tl_version} +Provides: tex(NotoSerif-Italic.pfb) = %{tl_version} +Provides: tex(NotoSans-Regular.pfb) = %{tl_version} +Provides: tex(NotoSerif-Bold.pfb) = %{tl_version} Provides: tex(NotoSans-BoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-t1.tfm) = %{tl_version} +Provides: tex(NotoSans-Italic.pfb) = %{tl_version} +Provides: tex(NotoSans-Bold.pfb) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic.pfb) = %{tl_version} +Provides: tex(nto_5drdqr.enc) = %{tl_version} +Provides: tex(nto_rq4ual.enc) = %{tl_version} +Provides: tex(nto_m46tqg.enc) = %{tl_version} +Provides: tex(nto_5ritkc.enc) = %{tl_version} +Provides: tex(NotoSans-Italic.otf) = %{tl_version} +Provides: tex(NotoSerif-Regular.otf) = %{tl_version} +Provides: tex(NotoSans-Bold.otf) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic.otf) = %{tl_version} +Provides: tex(NotoSans-BoldItalic.otf) = %{tl_version} +Provides: tex(NotoSerif-Italic.otf) = %{tl_version} +Provides: tex(NotoSerif-Bold.otf) = %{tl_version} +Provides: tex(NotoSans-Regular.otf) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-ly1.vf) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-ot1.vf) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-ts1.vf) = %{tl_version} Provides: tex(NotoSans-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tlf-ts1.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-ts1.vf) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-ly1.vf) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-ot1.vf) = %{tl_version} +Provides: tex(NotoSerif-tlf-ot1.vf) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-ly1.vf) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-ot1.vf) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-ly1.vf) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-ot1.vf) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-t1.vf) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-t1.vf) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-ts1.vf) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-ly1.vf) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-ts1.vf) = %{tl_version} +Provides: tex(NotoSans-tlf-t1.vf) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-ot1.vf) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-ot1.vf) = %{tl_version} +Provides: tex(NotoSerif-tlf-t1.vf) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-ts1.vf) = %{tl_version} Provides: tex(NotoSans-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-BoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold.pfb) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-t1.tfm) = %{tl_version} Provides: tex(NotoSans-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tlf-ts1.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-ts1.vf) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-ly1.vf) = %{tl_version} +Provides: tex(NotoSans-tlf-ot1.vf) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-t1.vf) = %{tl_version} Provides: tex(NotoSans-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Bold.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlackItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBlack.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedBold.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLightItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLightItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedLight.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMediumItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedMedium.ttf) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedSemiBold.ttf) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThinItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin.pfb) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-CondensedThin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-CondensedThin.ttf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Condensed-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Condensed.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlackItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBlack.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedBold.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLightItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLightItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedLight.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMediumItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedMedium.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedSemiBold.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThinItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensedThin.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraCondensed.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLightItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic.pfb) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-lgr.tfm) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-t1.vf) = %{tl_version} +Provides: tex(NotoSans-tlf-ly1.vf) = %{tl_version} +Provides: tex(NotoSerif-tlf-ly1.vf) = %{tl_version} Provides: tex(NotoSans-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-t1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-t1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-ts1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-t1.tfm) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-ot1--base.tfm) = %{tl_version} Provides: tex(NotoSans-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Italic.ttf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-LightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-LightItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-Light-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Light.pfb) = %{tl_version} -Provides: tex(NotoSans-Light-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Light-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Light.ttf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-MediumItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-MediumItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium.pfb) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Medium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Medium.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Black.pfb) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Black-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Black.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Bold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Bold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBlack.ttf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedLight.ttf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedMedium.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedSemiBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin.pfb) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-CondensedThin.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Condensed-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Condensed.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBlack.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedLight.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedMedium.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedSemiBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensedThin.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraCondensed.ttf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-ExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Light.pfb) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Light-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Light.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Medium.pfb) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Medium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Medium.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Regular.pfb) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Regular.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBlack.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedLight.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedMedium.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedSemiBold.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin.pfb) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensedThin.ttf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-SemiCondensed.ttf) = %{tl_version} -Provides: tex(NotoSansMono-Thin.pfb) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSansMono-Thin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSansMono-Thin.ttf) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular.pfb) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Regular.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiBold.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlackItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBlack.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedBold.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLightItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLightItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedLight.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMediumItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedMedium.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedSemiBold.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThinItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin.pfb) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensedThin.ttf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-SemiCondensed.ttf) = %{tl_version} -Provides: tex(noto-sans.sty) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic.pfb) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-ThinItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-ThinItalic.ttf) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin.pfb) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSans-Thin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSans-Thin.ttf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic.pfb) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-BlackItalic.ttf) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black.pfb) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Black-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Black.ttf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-lgr.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-t1.tfm) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-ot1.tfm) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-t1.tfm) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} Provides: tex(NotoSerif-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-sc-t2c.tfm) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-ly1.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-ly1.tfm) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-t1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-ot1--base.tfm) = %{tl_version} Provides: tex(NotoSerif-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-t1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-ot1.tfm) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-ly1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-ot1.tfm) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-ly1.tfm) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-ly1.tfm) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-ot1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-ot1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-ot1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-ts1--base.tfm) = %{tl_version} Provides: tex(NotoSerif-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-BoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold.pfb) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-lgr.tfm) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-ot1.tfm) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-ot1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-ly1.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-ly1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-ts1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-ot1.tfm) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-ts1.tfm) = %{tl_version} Provides: tex(NotoSerif-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-ts1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-ts1.tfm) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-ts1.tfm) = %{tl_version} Provides: tex(NotoSerif-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Bold.ttf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold.pfb) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraBold.ttf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic.pfb) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLightItalic.ttf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight.pfb) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ExtraLight.ttf) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic.pfb) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-sc-t2c.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-ot1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-ts1--base.tfm) = %{tl_version} Provides: tex(NotoSerif-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-ts1--base.tfm) = %{tl_version} Provides: tex(NotoSerif-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Italic.ttf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic.pfb) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-LightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-LightItalic.ttf) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light.pfb) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Light-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Light.ttf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic.pfb) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-MediumItalic.ttf) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium.pfb) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Medium-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Medium.ttf) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular.pfb) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Regular.ttf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic.pfb) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBoldItalic.ttf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold.pfb) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-SemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-SemiBold.ttf) = %{tl_version} -Provides: tex(noto-serif.sty) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic.pfb) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-ThinItalic.ttf) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-lf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-osf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin.pfb) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-sup-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tlf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-t1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-t1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-t2a.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-t2b.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-t2c.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-ts1.tfm) = %{tl_version} -Provides: tex(NotoSerif-Thin-tosf-ts1.vf) = %{tl_version} -Provides: tex(NotoSerif-Thin.ttf) = %{tl_version} -Provides: tex(noto.sty) = %{tl_version} -Provides: tex(nto_2banio.enc) = %{tl_version} -Provides: tex(nto_2pknou.enc) = %{tl_version} -Provides: tex(nto_34ragx.enc) = %{tl_version} -Provides: tex(nto_3b7r4q.enc) = %{tl_version} -Provides: tex(nto_3dob2t.enc) = %{tl_version} -Provides: tex(nto_3idd2i.enc) = %{tl_version} -Provides: tex(nto_3jz62l.enc) = %{tl_version} -Provides: tex(nto_3kuu7o.enc) = %{tl_version} -Provides: tex(nto_3nbfkd.enc) = %{tl_version} -Provides: tex(nto_3ubgsk.enc) = %{tl_version} -Provides: tex(nto_453igs.enc) = %{tl_version} -Provides: tex(nto_4lhdnu.enc) = %{tl_version} -Provides: tex(nto_5taitr.enc) = %{tl_version} -Provides: tex(nto_5uhkks.enc) = %{tl_version} -Provides: tex(nto_5xcjwt.enc) = %{tl_version} -Provides: tex(nto_5yrndq.enc) = %{tl_version} -Provides: tex(nto_6egtta.enc) = %{tl_version} -Provides: tex(nto_6fjq7h.enc) = %{tl_version} -Provides: tex(nto_6jn4k6.enc) = %{tl_version} -Provides: tex(nto_72byc5.enc) = %{tl_version} -Provides: tex(nto_772cjc.enc) = %{tl_version} -Provides: tex(nto_7dmrun.enc) = %{tl_version} -Provides: tex(nto_7fe4g3.enc) = %{tl_version} -Provides: tex(nto_7wbp6x.enc) = %{tl_version} -Provides: tex(nto_7xrktb.enc) = %{tl_version} -Provides: tex(nto_a3kb4x.enc) = %{tl_version} -Provides: tex(nto_a3nlzj.enc) = %{tl_version} -Provides: tex(nto_a4scdo.enc) = %{tl_version} -Provides: tex(nto_ad2lir.enc) = %{tl_version} -Provides: tex(nto_b2faob.enc) = %{tl_version} -Provides: tex(nto_b2rbwz.enc) = %{tl_version} -Provides: tex(nto_b374rf.enc) = %{tl_version} -Provides: tex(nto_b3cf23.enc) = %{tl_version} -Provides: tex(nto_b6ko55.enc) = %{tl_version} -Provides: tex(nto_bcpmuc.enc) = %{tl_version} -Provides: tex(nto_bkthom.enc) = %{tl_version} -Provides: tex(nto_bvui6g.enc) = %{tl_version} -Provides: tex(nto_c3lxz4.enc) = %{tl_version} -Provides: tex(nto_c4ampu.enc) = %{tl_version} -Provides: tex(nto_ckgynt.enc) = %{tl_version} -Provides: tex(nto_cpzaze.enc) = %{tl_version} -Provides: tex(nto_cwvxtj.enc) = %{tl_version} -Provides: tex(nto_dekpws.enc) = %{tl_version} -Provides: tex(nto_dvdq72.enc) = %{tl_version} -Provides: tex(nto_e6yrw6.enc) = %{tl_version} -Provides: tex(nto_e7tkro.enc) = %{tl_version} -Provides: tex(nto_etmgrc.enc) = %{tl_version} -Provides: tex(nto_ewl7ea.enc) = %{tl_version} -Provides: tex(nto_f7fqkh.enc) = %{tl_version} -Provides: tex(nto_fw5lcu.enc) = %{tl_version} -Provides: tex(nto_gemibc.enc) = %{tl_version} -Provides: tex(nto_gfowk7.enc) = %{tl_version} -Provides: tex(nto_hcdl7d.enc) = %{tl_version} -Provides: tex(nto_hjcdnn.enc) = %{tl_version} -Provides: tex(nto_hvbi2c.enc) = %{tl_version} -Provides: tex(nto_i47ut3.enc) = %{tl_version} -Provides: tex(nto_ib6ubx.enc) = %{tl_version} -Provides: tex(nto_ibgtat.enc) = %{tl_version} -Provides: tex(nto_jayyhr.enc) = %{tl_version} -Provides: tex(nto_jcw7uk.enc) = %{tl_version} -Provides: tex(nto_jkat5h.enc) = %{tl_version} -Provides: tex(nto_jl7jon.enc) = %{tl_version} -Provides: tex(nto_jzlekz.enc) = %{tl_version} -Provides: tex(nto_khusna.enc) = %{tl_version} -Provides: tex(nto_kntwfo.enc) = %{tl_version} -Provides: tex(nto_ku6sr6.enc) = %{tl_version} -Provides: tex(nto_kyokto.enc) = %{tl_version} -Provides: tex(nto_l7r7sw.enc) = %{tl_version} -Provides: tex(nto_lirjoh.enc) = %{tl_version} -Provides: tex(nto_lr2om7.enc) = %{tl_version} -Provides: tex(nto_luhzk7.enc) = %{tl_version} -Provides: tex(nto_m3b3uh.enc) = %{tl_version} -Provides: tex(nto_mckgpj.enc) = %{tl_version} -Provides: tex(nto_mcmm5k.enc) = %{tl_version} -Provides: tex(nto_mcxhr4.enc) = %{tl_version} -Provides: tex(nto_mhwely.enc) = %{tl_version} -Provides: tex(nto_mpk62p.enc) = %{tl_version} -Provides: tex(nto_ndzcwf.enc) = %{tl_version} -Provides: tex(nto_nhjuvf.enc) = %{tl_version} -Provides: tex(nto_nhzdio.enc) = %{tl_version} -Provides: tex(nto_nog6ox.enc) = %{tl_version} -Provides: tex(nto_o37s5e.enc) = %{tl_version} -Provides: tex(nto_ol4yze.enc) = %{tl_version} -Provides: tex(nto_op2juy.enc) = %{tl_version} -Provides: tex(nto_p6rwlx.enc) = %{tl_version} -Provides: tex(nto_ph33kq.enc) = %{tl_version} -Provides: tex(nto_prsxmw.enc) = %{tl_version} -Provides: tex(nto_pvnjta.enc) = %{tl_version} -Provides: tex(nto_pz6pv7.enc) = %{tl_version} -Provides: tex(nto_q2iokw.enc) = %{tl_version} -Provides: tex(nto_qdgiej.enc) = %{tl_version} -Provides: tex(nto_qgk3xb.enc) = %{tl_version} -Provides: tex(nto_qielb2.enc) = %{tl_version} -Provides: tex(nto_qsoqct.enc) = %{tl_version} -Provides: tex(nto_r2ghbj.enc) = %{tl_version} -Provides: tex(nto_r5bxyy.enc) = %{tl_version} -Provides: tex(nto_ras4ps.enc) = %{tl_version} -Provides: tex(nto_rmq6cj.enc) = %{tl_version} -Provides: tex(nto_rscbfi.enc) = %{tl_version} -Provides: tex(nto_rsplpv.enc) = %{tl_version} -Provides: tex(nto_scavxs.enc) = %{tl_version} -Provides: tex(nto_sez6pn.enc) = %{tl_version} -Provides: tex(nto_sg5txc.enc) = %{tl_version} -Provides: tex(nto_tu4uv7.enc) = %{tl_version} -Provides: tex(nto_twgkjf.enc) = %{tl_version} -Provides: tex(nto_uc5ky7.enc) = %{tl_version} -Provides: tex(nto_ucmn45.enc) = %{tl_version} -Provides: tex(nto_umxzhz.enc) = %{tl_version} -Provides: tex(nto_uncbtn.enc) = %{tl_version} -Provides: tex(nto_uoung7.enc) = %{tl_version} -Provides: tex(nto_upvzdm.enc) = %{tl_version} -Provides: tex(nto_urvlpy.enc) = %{tl_version} -Provides: tex(nto_uvb24m.enc) = %{tl_version} -Provides: tex(nto_uwtd6c.enc) = %{tl_version} -Provides: tex(nto_v63ahm.enc) = %{tl_version} -Provides: tex(nto_vfbpi4.enc) = %{tl_version} -Provides: tex(nto_vmq34i.enc) = %{tl_version} -Provides: tex(nto_vuovel.enc) = %{tl_version} -Provides: tex(nto_w43d4m.enc) = %{tl_version} -Provides: tex(nto_wh7viy.enc) = %{tl_version} -Provides: tex(nto_whcw4o.enc) = %{tl_version} -Provides: tex(nto_wiy4e7.enc) = %{tl_version} -Provides: tex(nto_wwfksr.enc) = %{tl_version} -Provides: tex(nto_wxkdfs.enc) = %{tl_version} -Provides: tex(nto_x4teop.enc) = %{tl_version} -Provides: tex(nto_xffdr3.enc) = %{tl_version} -Provides: tex(nto_xhwpwl.enc) = %{tl_version} -Provides: tex(nto_xhxifo.enc) = %{tl_version} -Provides: tex(nto_xmopsz.enc) = %{tl_version} -Provides: tex(nto_xpfafm.enc) = %{tl_version} -Provides: tex(nto_y2n3gg.enc) = %{tl_version} -Provides: tex(nto_y52y4f.enc) = %{tl_version} -Provides: tex(nto_y5jpaa.enc) = %{tl_version} -Provides: tex(nto_ycidct.enc) = %{tl_version} -Provides: tex(nto_yifqxs.enc) = %{tl_version} -Provides: tex(nto_yyuepd.enc) = %{tl_version} -Provides: tex(nto_zlkvl2.enc) = %{tl_version} -Provides: tex(nto_zogsyl.enc) = %{tl_version} -Provides: tex(nto_zpdbre.enc) = %{tl_version} -Provides: tex(nto_zyhgfd.enc) = %{tl_version} -Provides: tex(OT1NotoSans-LF.fd) = %{tl_version} -Provides: tex(OT1NotoSansMono-Sup.fd) = %{tl_version} -Provides: tex(OT1NotoSansMono-TLF.fd) = %{tl_version} -Provides: tex(OT1NotoSansMono-TOsF.fd) = %{tl_version} -Provides: tex(OT1NotoSans-OsF.fd) = %{tl_version} -Provides: tex(OT1NotoSans-Sup.fd) = %{tl_version} -Provides: tex(OT1NotoSans-TLF.fd) = %{tl_version} -Provides: tex(OT1NotoSans-TOsF.fd) = %{tl_version} -Provides: tex(OT1NotoSerif-LF.fd) = %{tl_version} -Provides: tex(OT1NotoSerif-OsF.fd) = %{tl_version} -Provides: tex(OT1NotoSerif-Sup.fd) = %{tl_version} -Provides: tex(OT1NotoSerif-TLF.fd) = %{tl_version} -Provides: tex(OT1NotoSerif-TOsF.fd) = %{tl_version} -Provides: tex(T1NotoSans-LF.fd) = %{tl_version} -Provides: tex(T1NotoSansMono-Sup.fd) = %{tl_version} -Provides: tex(T1NotoSansMono-TLF.fd) = %{tl_version} -Provides: tex(T1NotoSansMono-TOsF.fd) = %{tl_version} -Provides: tex(T1NotoSans-OsF.fd) = %{tl_version} -Provides: tex(T1NotoSans-Sup.fd) = %{tl_version} -Provides: tex(T1NotoSans-TLF.fd) = %{tl_version} -Provides: tex(T1NotoSans-TOsF.fd) = %{tl_version} -Provides: tex(T1NotoSerif-LF.fd) = %{tl_version} -Provides: tex(T1NotoSerif-OsF.fd) = %{tl_version} -Provides: tex(T1NotoSerif-Sup.fd) = %{tl_version} -Provides: tex(T1NotoSerif-TLF.fd) = %{tl_version} -Provides: tex(T1NotoSerif-TOsF.fd) = %{tl_version} -Provides: tex(T2ANotoSans-LF.fd) = %{tl_version} -Provides: tex(T2ANotoSansMono-Sup.fd) = %{tl_version} -Provides: tex(T2ANotoSansMono-TLF.fd) = %{tl_version} -Provides: tex(T2ANotoSansMono-TOsF.fd) = %{tl_version} -Provides: tex(T2ANotoSans-OsF.fd) = %{tl_version} -Provides: tex(T2ANotoSans-Sup.fd) = %{tl_version} -Provides: tex(T2ANotoSans-TLF.fd) = %{tl_version} -Provides: tex(T2ANotoSans-TOsF.fd) = %{tl_version} -Provides: tex(T2ANotoSerif-LF.fd) = %{tl_version} -Provides: tex(T2ANotoSerif-OsF.fd) = %{tl_version} -Provides: tex(T2ANotoSerif-Sup.fd) = %{tl_version} -Provides: tex(T2ANotoSerif-TLF.fd) = %{tl_version} -Provides: tex(T2ANotoSerif-TOsF.fd) = %{tl_version} -Provides: tex(T2BNotoSans-LF.fd) = %{tl_version} -Provides: tex(T2BNotoSansMono-Sup.fd) = %{tl_version} -Provides: tex(T2BNotoSansMono-TLF.fd) = %{tl_version} -Provides: tex(T2BNotoSansMono-TOsF.fd) = %{tl_version} -Provides: tex(T2BNotoSans-OsF.fd) = %{tl_version} -Provides: tex(T2BNotoSans-Sup.fd) = %{tl_version} -Provides: tex(T2BNotoSans-TLF.fd) = %{tl_version} -Provides: tex(T2BNotoSans-TOsF.fd) = %{tl_version} -Provides: tex(T2BNotoSerif-LF.fd) = %{tl_version} -Provides: tex(T2BNotoSerif-OsF.fd) = %{tl_version} -Provides: tex(T2BNotoSerif-Sup.fd) = %{tl_version} -Provides: tex(T2BNotoSerif-TLF.fd) = %{tl_version} -Provides: tex(T2BNotoSerif-TOsF.fd) = %{tl_version} -Provides: tex(T2CNotoSans-LF.fd) = %{tl_version} -Provides: tex(T2CNotoSansMono-Sup.fd) = %{tl_version} -Provides: tex(T2CNotoSansMono-TLF.fd) = %{tl_version} -Provides: tex(T2CNotoSansMono-TOsF.fd) = %{tl_version} -Provides: tex(T2CNotoSans-OsF.fd) = %{tl_version} -Provides: tex(T2CNotoSans-Sup.fd) = %{tl_version} -Provides: tex(T2CNotoSans-TLF.fd) = %{tl_version} -Provides: tex(T2CNotoSans-TOsF.fd) = %{tl_version} -Provides: tex(T2CNotoSerif-LF.fd) = %{tl_version} -Provides: tex(T2CNotoSerif-OsF.fd) = %{tl_version} -Provides: tex(T2CNotoSerif-Sup.fd) = %{tl_version} -Provides: tex(T2CNotoSerif-TLF.fd) = %{tl_version} -Provides: tex(T2CNotoSerif-TOsF.fd) = %{tl_version} -Provides: tex(TS1NotoSans-LF.fd) = %{tl_version} -Provides: tex(TS1NotoSansMono-TLF.fd) = %{tl_version} -Provides: tex(TS1NotoSansMono-TOsF.fd) = %{tl_version} -Provides: tex(TS1NotoSans-OsF.fd) = %{tl_version} -Provides: tex(TS1NotoSans-TLF.fd) = %{tl_version} -Provides: tex(TS1NotoSans-TOsF.fd) = %{tl_version} -Provides: tex(TS1NotoSerif-LF.fd) = %{tl_version} -Provides: tex(TS1NotoSerif-OsF.fd) = %{tl_version} -Provides: tex(TS1NotoSerif-TLF.fd) = %{tl_version} -Provides: tex(TS1NotoSerif-TOsF.fd) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-ts1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-t1.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-ts1.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-ly1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-BoldItalic-tlf-t1.tfm) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-t1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-t1.tfm) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-ts1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-ts1.tfm) = %{tl_version} +Provides: tex(NotoSerif-Italic-tlf-ot1.tfm) = %{tl_version} +Provides: tex(NotoSerif-tlf-t1.tfm) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-t1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-t1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-Bold-tlf-ly1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-BoldItalic-tlf-ot1.tfm) = %{tl_version} +Provides: tex(NotoSans-tlf-ot1--base.tfm) = %{tl_version} +Provides: tex(NotoSerif-Bold-tlf-ly1--base.tfm) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-ot1.tfm) = %{tl_version} +Provides: tex(NotoSans-Italic-tlf-ly1--base.tfm) = %{tl_version} %description noto This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX @@ -172684,7 +159800,7 @@ designed by Steve Matteson for Google. Provides: tex-nucleardata-doc = %{tl_version} License: LPPL Summary: doc files of nucleardata -Version: svn47307 +Version: svn42307 AutoReqProv: No %description nucleardata-doc @@ -172694,7 +159810,7 @@ Documentation for nucleardata Provides: tex-nucleardata = %{tl_version} License: LPPL Summary: Provides data about atomic nuclides for documents -Version: svn47307 +Version: svn42307 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(nucleardata.sty) = %{tl_version} @@ -172709,7 +159825,7 @@ the TeX file as the argument. Provides: tex-nwejm-doc = %{tl_version} License: LPPL Summary: doc files of nwejm -Version: svn50447 +Version: svn44131 AutoReqProv: No %description nwejm-doc @@ -172719,7 +159835,7 @@ Documentation for nwejm Provides: tex-nwejm = %{tl_version} License: LPPL Summary: Support for the journal "North-Western European Journal of Mathematics" -Version: svn50447 +Version: svn44131 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(nwejm.cls) = %{tl_version} @@ -172735,7 +159851,7 @@ Mathematics". Provides: tex-optidef-doc = %{tl_version} License: LPPL Summary: doc files of optidef -Version: svn50941 +Version: svn44669 AutoReqProv: No %description optidef-doc @@ -172745,7 +159861,7 @@ Documentation for optidef Provides: tex-optidef = %{tl_version} License: LPPL Summary: Provides a standard set of environments for writing minimization problems -Version: svn50941 +Version: svn44669 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -172915,7 +160031,7 @@ using their own data. Provides: tex-platex-doc = %{tl_version} License: BSD Summary: doc files of platex -Version: svn51751 +Version: svn45413 AutoReqProv: No %description platex-doc @@ -172925,7 +160041,7 @@ Documentation for platex Provides: tex-platex = %{tl_version} License: BSD Summary: pLaTeX2e and miscellaneous macros for pTeX -Version: svn51751 +Version: svn45413 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Requires: texlive-platex-bin @@ -172937,8 +160053,11 @@ Provides: tex(jarticle.cls) = %{tl_version} Provides: tex(tbook.cls) = %{tl_version} Provides: tex(tarticle.cls) = %{tl_version} Provides: tex(pfltrace.sty) = %{tl_version} +Provides: tex(tascmac.sty) = %{tl_version} Provides: tex(jarticle.sty) = %{tl_version} Provides: tex(jreport.sty) = %{tl_version} +Provides: tex(ascmac.sty) = %{tl_version} +Provides: tex(nidanfloat.sty) = %{tl_version} Provides: tex(platexrelease.sty) = %{tl_version} Provides: tex(jbook.sty) = %{tl_version} Provides: tex(tarticle.sty) = %{tl_version} @@ -173009,7 +160128,7 @@ expected results and will not work with version 1. Provides: tex-pst-cie-doc = %{tl_version} License: LPPL Summary: doc files of pst-cie -Version: svn49422 +Version: svn45111 AutoReqProv: No %description pst-cie-doc @@ -173019,7 +160138,7 @@ Documentation for pst-cie Provides: tex-pst-cie = %{tl_version} License: LPPL Summary: CIE color space -Version: svn49422 +Version: svn45111 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(pst-cie.sty) = %{tl_version} @@ -173034,7 +160153,8 @@ ProPhoto, SMPTE, and sRGB. Provides: tex-rosario-doc = %{tl_version} License: LPPL and OFL Summary: doc files of rosario -Version: svn51688 +Version: svn40843 + AutoReqProv: No %description rosario-doc @@ -173044,9 +160164,11 @@ Documentation for rosario Provides: tex-rosario = %{tl_version} License: LPPL and OFL Summary: Using the free Rosario fonts with LaTeX -Version: svn51688 +Version: svn40843 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(Rosario.sty) = %{tl_version} Provides: tex(Rosario.map) = %{tl_version} Provides: tex(OT1Rosario-LF.fd) = %{tl_version} @@ -173343,7 +160465,8 @@ pgfkeys and siunitx. Provides: tex-svrsymbols-doc = %{tl_version} License: LPPL Summary: doc files of svrsymbols -Version: svn50019 +Version: svn40371 + AutoReqProv: No %description svrsymbols-doc @@ -173352,10 +160475,12 @@ Documentation for svrsymbols %package svrsymbols Provides: tex-svrsymbols = %{tl_version} License: LPPL -Summary: A new font with symbols for use in Physics texts. -Version: svn50019 +Summary: 'A new font with symbols for use in Physics texts.' +Version: svn40371 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(svrsymbols.sty) = %{tl_version} Provides: tex(svrsymbols.map) = %{tl_version} Provides: tex(SVRsymbols.pfb) = %{tl_version} @@ -173605,7 +160730,7 @@ file to work with XeTeX and LuaTeX. Provides: tex-texlive-es-doc = %{tl_version} License: LPPL Summary: doc files of texlive-es -Version: svn50671 +Version: svn44356 AutoReqProv: No %description texlive-es-doc @@ -173615,7 +160740,8 @@ Documentation for texlive-es Provides: tex-texvc-doc = %{tl_version} License: ASL 2.0 Summary: doc files of texvc -Version: svn46844 +Version: svn38809 + AutoReqProv: No %description texvc-doc @@ -173625,7 +160751,8 @@ Documentation for texvc Provides: tex-texvc = %{tl_version} License: ASL 2.0 and LPPL Summary: Use MediaWiki LaTeX commands -Version: svn46844 +Version: svn38809 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea @@ -173698,7 +160825,8 @@ screens and of menu items. Provides: tex-typed-checklist-doc = %{tl_version} License: LPPL Summary: doc files of typed-checklist -Version: svn49731 +Version: svn40389 + AutoReqProv: No %description typed-checklist-doc @@ -173708,9 +160836,11 @@ Documentation for typed-checklist Provides: tex-typed-checklist = %{tl_version} License: LPPL Summary: Typesetting tasks, goals, milestones, artifacts, and more in LaTeX -Version: svn49731 +Version: svn40389 + Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(typed-checklist.sty) = %{tl_version} %description typed-checklist @@ -173728,10 +160858,8 @@ different types. Provides: tex-uantwerpendocs-doc = %{tl_version} License: LPPL Summary: doc files of uantwerpendocs -Version: svn51007 +Version: svn42912 AutoReqProv: No -Provides: texlive-uantwerpe-docs-doc = %{tl_version} -Obsoletes: texlive-uantwerpe-docs-doc <= 6:svn40826 %description uantwerpendocs-doc Documentation for uantwerpendocs. @@ -173740,9 +160868,7 @@ Documentation for uantwerpendocs. Provides: tex-uantwerpendocs = %{tl_version} License: LPPL Summary: Course texts and masters theses in University of Antwerp style -Version: svn51007 -Provides: texlive-uantwerpe-docs = %{tl_version} -Obsoletes: texlive-uantwerpe-docs <= 6:svn40826 +Version: svn42912 %description uantwerpendocs These class files implement the house style of the University @@ -173809,7 +160935,7 @@ mdframed enumitem, lineno, and xifthen packages. Provides: tex-unicode-data-doc = %{tl_version} License: LPPL and Unicode Summary: doc files of unicode-data -Version: svn50303 +Version: svn44711 AutoReqProv: No %description unicode-data-doc @@ -173819,9 +160945,10 @@ Documentation for unicode-data Provides: tex-unicode-data = %{tl_version} License: LPPL and Unicode Summary: Unicode data and loaders for TeX -Version: svn50303 +Version: svn44711 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(load-unicode-math-classes.tex) = %{tl_version} Provides: tex(load-unicode-data.tex) = %{tl_version} Provides: tex(load-unicode-xetex-classes.tex) = %{tl_version} @@ -173846,7 +160973,7 @@ users. Provides: tex-updmap-map = %{tl_version} License: Public Domain Summary: Font maps -Version: svn52454 +Version: svn45274 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(pdftex_dl14.map) = %{tl_version} @@ -173867,7 +160994,7 @@ Font maps. Provides: tex-uplatex = %{tl_version} License: BSD Summary: pLaTeX2e and miscellaneous macros for upTeX -Version: svn51751 +Version: svn45414 Requires: texlive-babel Requires: texlive-base Requires: texlive-cm @@ -173931,7 +161058,7 @@ Documentation for visualtikz Provides: tex-xassoccnt-doc = %{tl_version} License: LPPL Summary: doc files of xassoccnt -Version: svn49516 +Version: svn44907 AutoReqProv: No %description xassoccnt-doc @@ -173941,9 +161068,10 @@ Documentation for xassoccnt Provides: tex-xassoccnt = %{tl_version} License: LPPL Summary: Associated counters stepping simultaneously -Version: svn49516 +Version: svn44907 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea + Provides: tex(xassoccnt.sty) = %{tl_version} %description xassoccnt @@ -173961,7 +161089,7 @@ that the older package cannot yet be regarded as obsolete. Provides: tex-xcntperchap-doc = %{tl_version} License: LPPL Summary: doc files of xcntperchap -Version: svn46236 +Version: svn44128 AutoReqProv: No %description xcntperchap-doc @@ -173971,7 +161099,7 @@ Documentation for xcntperchap Provides: tex-xcntperchap = %{tl_version} License: LPPL Summary: Track the number of subsections etc. that occur in a specified tracklevel -Version: svn46236 +Version: svn44128 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(xcntperchap.sty) = %{tl_version} @@ -174017,7 +161145,7 @@ template. Provides: tex-xellipsis-doc = %{tl_version} License: LPPL Summary: doc files of xellipsis -Version: svn47546 +Version: svn42764 AutoReqProv: No %description xellipsis-doc @@ -174027,7 +161155,7 @@ Documentation for xellipsis Provides: tex-xellipsis = %{tl_version} License: LPPL Summary: Extremely configurable ellipses with formats for various style manuals -Version: svn47546 +Version: svn42764 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(xellipsis.sty) = %{tl_version} @@ -174046,7 +161174,7 @@ guidelines. Provides: tex-xsavebox-doc = %{tl_version} License: LPPL Summary: doc files of xsavebox -Version: svn51448 +Version: svn44578 AutoReqProv: No %description xsavebox-doc @@ -174056,7 +161184,7 @@ Documentation for xsavebox Provides: tex-xsavebox = %{tl_version} License: LPPL Summary: Saveboxes for repeating content without code replication, based on PDF Form XObjects -Version: svn51448 +Version: svn44578 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(xsavebox.sty) = %{tl_version} @@ -174077,7 +161205,7 @@ ps2pdf/Distiller (Xe)LaTeX --> (x)dvipdfmx Provides: tex-ycbook-doc = %{tl_version} License: LPPL Summary: doc files of ycbook -Version: svn46201 +Version: svn43171 AutoReqProv: No %description ycbook-doc @@ -174087,7 +161215,7 @@ Documentation for ycbook Provides: tex-ycbook = %{tl_version} License: LPPL Summary: A versatile book class -Version: svn46201 +Version: svn43171 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(ycbook.cls) = %{tl_version} @@ -174284,7 +161412,7 @@ Documentation for biblatex-ijsra. Provides: tex-biblatex-lni = %{tl_version} License: LPPL Summary: LNI style for BibLaTeX -Version: svn49935 +Version: svn43032 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: tex(LNI.bbx) = %{tl_version} @@ -174298,7 +161426,7 @@ published by the Gesellschaft fur Informatik (GI e.V.). Provides: tex-biblatex-lni-doc = %{tl_version} License: LPPL Summary: doc files of biblatex-lni -Version: svn49935 +Version: svn43032 AutoReqProv: No %description biblatex-lni-doc @@ -174332,7 +161460,7 @@ Documentation for biblatex-nottsclassic. Provides: tex-graphics-def = %{tl_version} License: LPPL Summary: Colour and graphics option files -Version: svn46267 +Version: svn44697 Requires: texlive-base Requires: texlive-kpathsea-bin, tex-kpathsea Provides: texlive-pdftex-def = %{tl_version} @@ -174362,10 +161490,6 @@ be easier to coordinate updates. %package obsolete License: Public Domain -Provides: texlive-bezos = %{epoch}:svn25507.0.obsolete -Obsoletes: texlive-bezos <= 8:svn25507.0 -Provides: texlive-bezos-doc = %{epoch}:svn25507.0.obsolete -Obsoletes: texlive-bezos-doc <= 8:svn25507.0 Provides: texlive-context-fixme = %{epoch}:svn29341.0.obsolete Obsoletes: texlive-context-fixme <= 6:svn29341.0 Provides: texlive-context-games = %{epoch}:svn23167.0.obsolete @@ -174376,36 +161500,26 @@ Provides: texlive-context-lilypond = %{epoch}:svn23167.0.obsolete Obsoletes: texlive-context-lilypond <= 6:svn23167.0 Provides: texlive-context-lilypond-doc = %{epoch}:svn23167.0.obsolete Obsoletes: texlive-context-lilypond-doc <= 6:svn23167.0 -Provides: texlive-fontloader-luaotfload = %{epoch}:svn45090.obsolete -Obsoletes: texlive-fontloader-luaotfload <= 8:svn45090 -Provides: texlive-getargs = %{epoch}:svn41415.obsolete -Obsoletes: texlive-getargs <= 6:svn41415 -Provides: tex-japanese = %{epoch}:svn30855.1.3.obsolete -Provides: texlive-japanese = %{epoch}:svn30855.1.3.obsolete -Obsoletes: texlive-japanese <= 6:svn30855.1.3 -Provides: tex-japanese-doc = %{epoch}:svn30855.1.3.obsolete -Provides: texlive-japanese-doc = %{epoch}:svn30855.1.3.obsolete -Obsoletes: texlive-japanese-doc <= 6:svn30855.1.3 Provides: texlive-knuthotherfonts = %{epoch}:svn13293.0.obsolete Obsoletes: texlive-knuthotherfonts <= 6:svn13293.0 -Provides: texlive-mbenotes = %{epoch}:svn31813.2.obsolete -Obsoletes: texlive-mbenotes <= 8:svn31813.2 -Provides: texlive-mbenotes-doc = %{epoch}:svn31813.2.obsolete -Obsoletes: texlive-mbenotes-doc <= 8:svn31813.2 +Provides: texlive-scheme-xml = %{epoch}:svn40631.obsolete +Obsoletes: texlive-scheme-xml <= 6:svn40631 Provides: texlive-mil3-doc = %{epoch}:svn21677.0.obsolete Obsoletes: texlive-mil3-doc <= 6:svn21677.0 Provides: texlive-pstricks-examples-en-doc = %{epoch}:svn29349.0.obsolete Obsoletes: texlive-pstricks-examples-en-doc <= 6:svn29349.0 Provides: texlive-pstricks-examples-doc = %{epoch}:svn21511.0.obsolete Obsoletes: texlive-pstricks-examples-doc <= 6:svn21511.0 -Provides: texlive-psu-thesis = %{epoch}:svn15878.1.1.obsolete -Obsoletes: texlive-psu-thesis <= 8:svn15878.1.1 -Provides: texlive-psu-thesis-doc = %{epoch}:svn15878.1.1.obsolete -Obsoletes: texlive-psu-thesis-doc <= 8:svn15878.1.1 -Provides: texlive-scheme-xml = %{epoch}:svn40631.obsolete -Obsoletes: texlive-scheme-xml <= 6:svn40631 Provides: texlive-voss-mathmode-doc = %{epoch}:svn36093.2.47.obsolete Obsoletes: texlive-voss-mathmode-doc <= 6:svn36093.2.47 +Provides: tex-japanese = %{epoch}:svn30855.1.3.obsolete +Provides: texlive-japanese = %{epoch}:svn30855.1.3.obsolete +Obsoletes: texlive-japanese <= 6:svn30855.1.3 +Provides: tex-japanese-doc = %{epoch}:svn30855.1.3.obsolete +Provides: texlive-japanese-doc = %{epoch}:svn30855.1.3.obsolete +Obsoletes: texlive-japanese-doc <= 6:svn30855.1.3 +Provides: texlive-getargs = %{epoch}:svn41415.obsolete +Obsoletes: texlive-getargs <= 6:svn41415 Summary: This package handles obsolete texlive subpackages %description obsolete @@ -174414,7 +161528,6 @@ It does not contain the contents of the packages that it obsoletes. %package collection-mathscience Summary: Mathematics, natural sciences, computer science packages -Version: svn51797 Provides: texlive-collection-science = %{epoch}:svn39074.obsolete Obsoletes: texlive-collection-science <= 6:svn39074 Provides: texlive-collection-mathextra = %{epoch}:svn40076.obsolete @@ -174425,14 +161538,11 @@ Requires: texlive-collection-latex Requires: texlive-12many Requires: texlive-SIstyle Requires: texlive-SIunits -Requires: texlive-accents Requires: texlive-alg Requires: texlive-algobox Requires: texlive-algorithm2e Requires: texlive-algorithmicx Requires: texlive-algorithms -Requires: texlive-aligned-overset -Requires: texlive-amscdx Requires: texlive-amstex Requires: texlive-apxproof Requires: texlive-autobreak @@ -174447,11 +161557,8 @@ Requires: texlive-boldtensors Requires: texlive-bosisio Requires: texlive-bpchem Requires: texlive-bropd -Requires: texlive-bussproofs -Requires: texlive-bussproofs-extra Requires: texlive-bytefield Requires: texlive-calculation -Requires: texlive-cascade Requires: texlive-ccfonts Requires: texlive-chemarrow Requires: texlive-chemcompounds @@ -174462,11 +161569,9 @@ Requires: texlive-chemgreek Requires: texlive-chemmacros Requires: texlive-chemnum Requires: texlive-chemschemex -Requires: texlive-chemsec Requires: texlive-chemstyle Requires: texlive-clrscode Requires: texlive-clrscode3e -Requires: texlive-codeanatomy Requires: texlive-commath Requires: texlive-complexity Requires: texlive-computational-complexity @@ -174476,9 +161581,8 @@ Requires: texlive-conteq Requires: texlive-correctmathalign Requires: texlive-cryptocode Requires: texlive-delim -Requires: texlive-delimseasy Requires: texlive-delimset -Requires: texlive-derivative +Requires: texlive-delimseasy Requires: texlive-diffcoeff Requires: texlive-digiconfigs Requires: texlive-dijkstra @@ -174491,13 +161595,11 @@ Requires: texlive-eltex Requires: texlive-emf Requires: texlive-endiagram Requires: texlive-engtlc -Requires: texlive-eqexpl Requires: texlive-eqnarray Requires: texlive-eqnnumwarn Requires: texlive-extarrows Requires: texlive-extpfeil Requires: texlive-faktor -Requires: texlive-fascicules Requires: texlive-fnspe Requires: texlive-fouridx Requires: texlive-functan @@ -174505,7 +161607,6 @@ Requires: texlive-galois Requires: texlive-gastex Requires: texlive-gene-logic Requires: texlive-ghsystem -Requires: texlive-glosmathtools Requires: texlive-gotoh Requires: texlive-grundgesetze Requires: texlive-gu @@ -174514,38 +161615,30 @@ Requires: texlive-hepnames Requires: texlive-hepparticles Requires: texlive-hepthesis Requires: texlive-hepunits -Requires: texlive-includernw Requires: texlive-interval Requires: texlive-ionumbers Requires: texlive-isomath -Requires: texlive-jkmath Requires: texlive-karnaugh Requires: texlive-karnaugh-map Requires: texlive-karnaughmap -Requires: texlive-kvmap Requires: texlive-logicproof Requires: texlive-longdivision Requires: texlive-lpform Requires: texlive-lplfitch Requires: texlive-lstbayes -Requires: texlive-mathcommand Requires: texlive-mathcomp -Requires: texlive-mathfixs Requires: texlive-mathpartir Requires: texlive-mathpunctspace Requires: texlive-matlab-prettifier Requires: texlive-mattens -Requires: texlive-memorygraphs Requires: texlive-mgltex Requires: texlive-mhchem Requires: texlive-mhequ Requires: texlive-miller -Requires: texlive-mismath Requires: texlive-multiobjective Requires: texlive-mychemistry Requires: texlive-natded Requires: texlive-nath -Requires: texlive-nicematrix Requires: texlive-nuc Requires: texlive-nucleardata Requires: texlive-objectz @@ -174554,17 +161647,12 @@ Requires: texlive-ot-tableau Requires: texlive-oubraces Requires: texlive-perfectcut Requires: texlive-physics -Requires: texlive-pm-isomath -Requires: texlive-polexpr Requires: texlive-prftree Requires: texlive-proba -Requires: texlive-proof-at-the-end Requires: texlive-prooftrees -Requires: texlive-pseudo Requires: texlive-pseudocode +Requires: texlive-pygmentex Requires: texlive-pythonhighlight -Requires: texlive-qsharp -Requires: texlive-rank-2-roots Requires: texlive-rec-thy Requires: texlive-revquantum Requires: texlive-ribbonproofs @@ -174584,23 +161672,17 @@ Requires: texlive-spalign Requires: texlive-stanli Requires: texlive-statex Requires: texlive-statex2 -Requires: texlive-statistics -Requires: texlive-statistik -Requires: texlive-statmath Requires: texlive-steinmetz Requires: texlive-stmaryrd -Requires: texlive-structmech Requires: texlive-struktex Requires: texlive-substances Requires: texlive-subsupscripts -Requires: texlive-subtext Requires: texlive-susy Requires: texlive-syllogism Requires: texlive-sympytexpackage Requires: texlive-synproof Requires: texlive-t-angles Requires: texlive-tablor -Requires: texlive-tensind Requires: texlive-tensor Requires: texlive-tex-ewd Requires: texlive-textgreek @@ -174621,7 +161703,7 @@ Mathematics, natural sciences, computer science packages %package collection-plaingeneric Summary: Plain (La)TeX packages -Version: svn50044 +Version: svn44986 Provides: texlive-collection-genericrecommended = svn35655.0.obsolete Obsoletes: texlive-collection-genericrecommended <= svn35655.0 Provides: texlive-collection-genericextra = svn39964.obsolete @@ -174641,7 +161723,6 @@ Requires: texlive-c-pascal Requires: texlive-catcodes Requires: texlive-chronosys Requires: texlive-colorsep -Requires: texlive-cweb-old Requires: texlive-dinat Requires: texlive-dirtree Requires: texlive-docbytex @@ -174682,7 +161763,6 @@ Requires: texlive-mathdots Requires: texlive-metatex Requires: texlive-midnight Requires: texlive-mkpattern -Requires: texlive-modulus Requires: texlive-multido Requires: texlive-navigator Requires: texlive-newsletr @@ -174696,7 +161776,6 @@ Requires: texlive-plainpkg Requires: texlive-plipsum Requires: texlive-plnfss Requires: texlive-plstmary -Requires: texlive-poormanlog Requires: texlive-present Requires: texlive-randomlist Requires: texlive-resumemac @@ -174709,7 +161788,6 @@ Requires: texlive-termmenu Requires: texlive-tex-ps Requires: texlive-tex4ht Requires: texlive-texapi -Requires: texlive-texdate Requires: texlive-texinfo Requires: texlive-timetable Requires: texlive-tracklang @@ -174719,7 +161797,6 @@ Requires: texlive-ulem Requires: texlive-upca Requires: texlive-varisize Requires: texlive-xii-doc -Requires: texlive-xii-lat Requires: texlive-xlop Requires: texlive-yax @@ -174729,7 +161806,7 @@ occasionally other formats. %package listofitems Summary: Grab items in lists using user-specified sep char -Version: svn51159 +Version: svn45494 License: LPPL Requires: texlive-base, texlive-kpathsea Provides: tex(listofitems.sty) = %{tl_version} @@ -174750,7 +161827,7 @@ list contained within the item #3 of the top-tier list. %package abnt Summary: Typesetting academic works according to ABNT rules -Version: svn49188 +Version: svn45655 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(abnt.sty) = %{tl_version} @@ -174762,7 +161839,7 @@ simple and user-friendly as possible. %package actuarialsymbol Summary: Actuarial symbols of life contingencies and financial mathematics -Version: svn51371 +Version: svn44607 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(actuarialsymbol.sty) = %{tl_version} @@ -174799,7 +161876,7 @@ with LaTeX. %package algolrevived Summary: A revival of Frutiger's Algol alphabet -Version: svn51210 +Version: svn44784 License: OFL and LPPL Requires: texlive-base texlive-kpathsea Provides: tex(zal_2yvryp.enc) = %{tl_version} @@ -174935,7 +162012,7 @@ Kano region of Nigeria and Niger. %package apalike-german Summary: A copy of apalike.bst with German localization -Version: svn47002 +Version: svn42045 License: LPPL Requires: texlive-base texlive-kpathsea @@ -175046,7 +162123,7 @@ Chinese translation of asymptote manual. %package aucklandthesis Summary: Memoir-based class for formatting University of Auckland masters' and doctors' theses. -Version: svn51323 +Version: svn41506 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(aucklandthesis.cls) = %{tl_version} @@ -175072,7 +162149,7 @@ package provides the correct hyperlinks for those URLs. The %package awesomebox Summary: Draw admonition blocks in your documents, illustrated with FontAwesome icons -Version: svn51776 +Version: svn44131 License: WTFPL Requires: texlive-base texlive-kpathsea Provides: tex(awesomebox.sty) = %{tl_version} @@ -175114,7 +162191,7 @@ http://kldp.net/baekmuk/ %package bangorexam Summary: Typeset an examination at Bangor University -Version: svn46626 +Version: svn45507 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(bangorexam.cls) = %{tl_version} @@ -175127,7 +162204,7 @@ checked automatically. %package baskervillef Summary: Fry's Baskerville look-alike, with math support -Version: svn51121 +Version: svn45651 License: OFL and LPPL Requires: texlive-base texlive-kpathsea Provides: tex(zba_3oppw2.enc) = %{tl_version} @@ -175773,7 +162850,7 @@ an option to newtxmath. %package beamerswitch Summary: Convenient mode selection in Beamer documents -Version: svn51341 +Version: svn46042 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(beamerswitch.cls) = %{tl_version} @@ -175857,7 +162934,7 @@ with the necessary modifications. %package biblatex-gb7714-2015 Summary: A BibLaTeX implementation of the GBT7714-2015 bibliography style for Chinese users -Version: svn50661 +Version: svn44750 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(gb7714-2015.bbx) = %{tl_version} @@ -175874,7 +162951,7 @@ show how to format input for the style. %package biblatex-oxref Summary: BibLaTeX styles inspired by the Oxford Guide to Style -Version: svn50061 +Version: svn44385 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(oxnotes.bbx) = %{tl_version} @@ -175898,7 +162975,7 @@ media and legal references. %package biblatex-sbl Summary: Society of Biblical Literature (SBL) style files for BibLaTeX -Version: svn49426 +Version: svn42972 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(biblatex-sbl.def) = %{tl_version} @@ -175917,7 +162994,7 @@ papers is also included. %package biblatex-shortfields Summary: Use short forms of fields with BibLaTeX -Version: svn45858 +Version: svn43738 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(biblatex-shortfields.sty) = %{tl_version} @@ -175996,7 +163073,7 @@ and Recurrent Neural Networks trained on a corpus of Polish. %package bxcalc Summary: To extend the functionality of the calc package -Version: svn46482 +Version: svn44514 License: MIT Requires: texlive-base texlive-kpathsea Provides: tex(bxcalc.sty) = %{tl_version} @@ -176088,7 +163165,7 @@ the document in a multicol environment. %package childdoc Summary: directly compile \include'd child documents -Version: svn49543 +Version: svn44512 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(childdoc.def) = %{tl_version} @@ -176100,7 +163177,7 @@ individual files. %package cje Summary: LaTeX document class for CJE articles -Version: svn46721 +Version: svn44454 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(cje.cls) = %{tl_version} @@ -176121,14 +163198,14 @@ Version: svn36934 License: LPPL Requires: texlive-base texlive-kpathsea Requires: texlive-collection-basic -Requires: texlive-texworks-doc +Requires: texlive-texworks %description collection-texworks See http://tug.org/texworks. %package combofont Summary: Add NFSS-declarations of combo fonts to LuaLaTeX documents -Version: svn51348 +Version: svn44746 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(combofont.sty) = %{tl_version} @@ -176145,7 +163222,7 @@ environment: You have been warned. %package context-cmscbf Summary: Use Computer Modern bold Caps and Small-caps in ConTeXt -Version: svn47085 +Version: svn42327 License: GPL+ Requires: texlive-base texlive-kpathsea Requires: texlive-context @@ -176158,7 +163235,7 @@ Modern 'extras' font set. %package context-cmttbf Summary: Use Computer Modern Typewriter bold font in ConTeXt -Version: svn47085 +Version: svn42328 License: GPL+ Requires: texlive-base texlive-kpathsea Requires: texlive-context @@ -176171,7 +163248,7 @@ ConTeXt. Such a font may be found in the Computer Modern %package context-inifile Summary: An ini-file pretty-printer, using ConTeXt -Version: svn47085 +Version: svn42329 License: GPL+ Requires: texlive-base texlive-kpathsea Requires: texlive-context @@ -176187,7 +163264,7 @@ MkIV, and uses Lua to help process the input. %package context-layout Summary: Shows layout of current page -Version: svn47085 +Version: svn42330 License: GPL+ Requires: texlive-base texlive-kpathsea Requires: texlive-context @@ -176212,7 +163289,7 @@ notation and passes it on to xkeyval. %package cooking-units Summary: Typeset and convert units for cookery books and recipes -Version: svn47943 +Version: svn42507 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(cooking-units.sty) = %{tl_version} @@ -176225,7 +163302,7 @@ the documentation for more examples). %package cormorantgaramond Summary: Cormorant Garamond family of fonts -Version: svn51443 +Version: svn41865 License: OFL Requires: texlive-base texlive-kpathsea Provides: tex(cgrm_26xgja.enc) = %{tl_version} @@ -176928,7 +164005,7 @@ italics. %package crossreftools Summary: Expandable extraction of cleveref data -Version: svn49589 +Version: svn45508 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(crossreftools.sty) = %{tl_version} @@ -176974,7 +164051,7 @@ and units) with various formatting capabilities. %package docsurvey-doc Summary: Programming LaTeX - A survey of documentation and packages -Version: svn48108 +Version: svn45470 License: LPPL %description docsurvey-doc @@ -176994,7 +164071,7 @@ is set to draft and modify the display with various options. %package dtxdescribe Summary: Describe additional object types in dtx source files -Version: svn51652 +Version: svn42661 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(dtxdescribe.sty) = %{tl_version} @@ -177015,7 +164092,7 @@ then \input and executed, and the result is shown. %package ducksay Summary: The package draws ASCII art of animals saying a specified message. -Version: svn51364 +Version: svn45415 License: LPPL and GPLv3 Requires: texlive-base texlive-kpathsea Provides: tex(ducksay.sty) = %{tl_version} @@ -177028,7 +164105,7 @@ need to be manually created. %package dynkin-diagrams Summary: Draws Dynkin diagrams -Version: svn49808 +Version: svn45287 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(dynkin-diagrams.sty) = %{tl_version} @@ -177142,7 +164219,7 @@ kvoptions, etoolbox, xcolor, graphicx, eso-pic. %package filecontentsdef Summary: filecontents + macro + verbatim -Version: svn50942 +Version: svn42107 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(filecontentsdef.sty) = %{tl_version} @@ -177162,7 +164239,7 @@ Pakin's package attachfile). %package fixjfm Summary: Fix JFM (for *pTeX) -Version: svn47113 +Version: svn45370 License: Knuth Requires: texlive-base texlive-kpathsea Provides: tex(fixjfm.sty) = %{tl_version} @@ -177171,6 +164248,16 @@ Provides: tex(fixjfm.sty) = %{tl_version} This package fixes several bugs in the JFM format. Both LaTeX and plain TeX are supported. +%package fontloader-luaotfload +Summary: Alternative fontloaders for luaotfload +Version: svn45090 +License: LPPL +Requires: texlive-base texlive-kpathsea + +%description fontloader-luaotfload +The package offers a few alternative fontloaders that can be +used with luaotfload to access some new features. + %package footmisx Summary: A range of footnote options Version: svn42621 @@ -177210,7 +164297,7 @@ get started. %package forms16be Summary: Initialize form properties using big-endian encoding -Version: svn51305 +Version: svn45178 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(forms16be.sty) = %{tl_version} @@ -177245,7 +164332,7 @@ an initial release. %package gitfile-info Summary: Get git metadata for a specific file -Version: svn50885 +Version: svn41693 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(gitfile-info.sty) = %{tl_version} @@ -177264,7 +164351,7 @@ opportunity to do so. %package gofonts Summary: GoSans and GoMono fonts with LaTeX support -Version: svn51314 +Version: svn43726 License: BSD and LPPL Requires: texlive-base texlive-kpathsea Provides: tex(go_dpz6hk.enc) = %{tl_version} @@ -177461,7 +164548,7 @@ Office of Naval Research %package grayhints Summary: Produce 'gray hints' to a variable text field -Version: svn49052 +Version: svn43561 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(grayhints.sty) = %{tl_version} @@ -177479,7 +164566,7 @@ works for dvips/Distiller, pdfLaTeX, LuaLaTeX, and XeLaTeX. %package gtrlib-largetrees Summary: Library for genealogytree package aiming at large trees -Version: svn49062 +Version: svn43279 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(gtrlib.largetrees.code.tex) = %{tl_version} @@ -177492,7 +164579,7 @@ package, particularly for typesetting large trees. %package hackthefootline Summary: Footline selection for LaTeX beamer's standard themes -Version: svn46494 +Version: svn44959 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(hackthefootline.sty) = %{tl_version} @@ -177521,7 +164608,7 @@ the rest of the mathematics produced by (AmS-)LaTeX. %package hecthese Summary: A class for dissertations and theses at HEC Montreal -Version: svn50590 +Version: svn45562 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(hecthese.cls) = %{tl_version} @@ -177544,7 +164631,7 @@ fontawesome, framed, numprint, url, and hyperref. %package hithesis Summary: Harbin Institute of Technology Thesis Template -Version: svn50062 +Version: svn45155 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(ctex-fontset-siyuan.def) = %{tl_version} @@ -177570,7 +164657,7 @@ Huazhong University of Science and Technology. %package hyphen-belarusian Summary: Belarusian hyphenation patterns. -Version: svn51186 +Version: svn44401 License: Copyright only Requires: texlive-base texlive-kpathsea Requires: texlive-hyphen-base @@ -177614,7 +164701,7 @@ provided for backward compatibility. %package ifxptex Summary: Detect pTeX and its derivatives -Version: svn46153 +Version: svn45213 License: Knuth Requires: texlive-base texlive-kpathsea Provides: tex(ifxptex.sty) = %{tl_version} @@ -177637,7 +164724,7 @@ International Journal of Student Research in Archaeology. %package invoice2 Summary: Intelligent invoices with LaTeX3 -Version: svn46364 +Version: svn45060 License: GPLv3+ Requires: texlive-base texlive-kpathsea Provides: tex(invoice2.sty) = %{tl_version} @@ -177651,7 +164738,7 @@ cases. %package iscram Summary: a LaTeX class to publish article to ISCRAM conferences -Version: svn45801 +Version: svn42604 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(iscram.cls) = %{tl_version} @@ -177675,7 +164762,7 @@ inserts a user defined space between number and unit. %package istgame Summary: Drawing Game Trees with TikZ -Version: svn49848 +Version: svn45417 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(istgame.sty) = %{tl_version} @@ -177693,7 +164780,7 @@ stands for "it's a simple tree" or "In-Sung's simple tree." %package jlreq Summary: Japanese document class based on requirements for Japanese text layout -Version: svn51036 +Version: svn45162 License: BSD Requires: texlive-base texlive-kpathsea Provides: tex(bjlreq-v.tfm) = %{tl_version} @@ -177786,7 +164873,7 @@ upLaTeX are provided. %package keyfloat Summary: provides a key/value interface for generating floats -Version: svn50534 +Version: svn44306 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(keyfloat.sty) = %{tl_version} @@ -177811,7 +164898,7 @@ are supported by two environments. %package knowledge Summary: Displaying, hyperlinking, and indexing notions in a document -Version: svn50031 +Version: svn45560 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(knowledge.sty) = %{tl_version} @@ -177825,7 +164912,7 @@ also offers simple notations. %package komacv-rg Summary: LaTeX packages that aid in creating CVs based on the komacv class and creating related documents -Version: svn49064 +Version: svn45187 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(komacv-addons.sty) = %{tl_version} @@ -177847,7 +164934,7 @@ polyglossia. %package ku-template Summary: Template for University of Copenhagen logos -Version: svn45935 +Version: svn45282 License: MIT Requires: texlive-base texlive-kpathsea Provides: tex(ku-template.sty) = %{tl_version} @@ -177889,7 +164976,7 @@ all of which are in Bangla. %package latexbug Summary: Bug-classification for LaTeX related bugs -Version: svn49573 +Version: svn45559 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(latexbug.sty) = %{tl_version} @@ -177944,7 +165031,7 @@ which a thesis in the natural sciences needs. %package limecv Summary: a (Xe/Lua)LaTeX document class for curriculum vitae -Version: svn45906 +Version: svn45293 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(limecv.cls) = %{tl_version} @@ -177969,7 +165056,7 @@ linguistics. %package lion-msc Summary: LaTeX class for B.Sc. and M.Sc. reports at Leiden Institute of Physics (LION). -Version: svn51143 +Version: svn44131 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(lion-msc.cls) = %{tl_version} @@ -177986,7 +165073,7 @@ but should leave the title page as it is. %package lni Summary: Official class for the "Lecture Notes in Informatics" -Version: svn50754 +Version: svn44368 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(lni.cls) = %{tl_version} @@ -178074,7 +165161,7 @@ oficial IDE. %package marginfit Summary: Improved margin notes -Version: svn48281 +Version: svn44788 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(marginfit.sty) = %{tl_version} @@ -178096,7 +165183,7 @@ Samples for the book `(More) Math into LaTeX', 4th edition. %package mcexam Summary: LaTeX package for creating randomized Multiple Choice questions> -Version: svn46155 +Version: svn44171 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(mcexam.sty) = %{tl_version} @@ -178115,7 +165202,7 @@ calculates the grades. %package mendex-doc Summary: Docs for mendex -Version: svn50268 +Version: svn42767 License: BSD %description mendex-doc @@ -182182,7 +169269,7 @@ reflecting the signage in the neighborhood of Montserrat. %package mpostinl Summary: Embed MetaPost figures within LaTeX documents -Version: svn49559 +Version: svn44686 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(mpostinl.sty) = %{tl_version} @@ -182215,7 +169302,7 @@ formatting guidelines for MuC 2017. %package multilang Summary: A LaTeX package for maintaining multiple translations of a document -Version: svn49065 +Version: svn45179 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(multilang-sect.sty) = %{tl_version} @@ -182235,7 +169322,7 @@ document's language via babel or polyglossia. %package musicography Summary: Accessing symbols for music writing with pdfLaTeX -Version: svn51251 +Version: svn45440 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(musicography.sty) = %{tl_version} @@ -182264,7 +169351,7 @@ with fancy boxed theorem-alike environments. %package na-position Summary: Tables of relative positions of curves and asymptotes or tangents in Arabic documents -Version: svn48071 +Version: svn45489 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(na-position.sty) = %{tl_version} @@ -182355,7 +169442,7 @@ legible formatting structure. %package novel Summary: Class for printing fiction, such as novels -Version: svn47492 +Version: svn45558 License: LPPL and OFL Requires: texlive-base texlive-kpathsea Provides: tex(NovelDeco.otf) = %{tl_version} @@ -182418,7 +169505,7 @@ pdftexcmds, and etoolbox. %package octave Summary: Typeset musical pitches with octave designations -Version: svn45674 +Version: svn45089 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(octave.sty) = %{tl_version} @@ -182447,7 +169534,7 @@ writing systems that use the Myanmar script. %package pdfreview Summary: Annotate PDF files with margin notes -Version: svn50100 +Version: svn45391 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(pdfreview.sty) = %{tl_version} @@ -182576,7 +169663,7 @@ and "Proof of Theorem 4: ...". %package phonenumbers Summary: Typesetting telephone numbers with LaTeX. -Version: svn48355 +Version: svn45579 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(phn-AT_Ortsnamen.tex) = %{tl_version} @@ -182605,7 +169692,7 @@ numbers using the hyperref package. %package platexcheat-doc Summary: Japanese translation of LATEX cheat sheet -Version: svn49557 +Version: svn42918 License: MIT %description platexcheat-doc @@ -182614,7 +169701,7 @@ This is a translation to Japanese of Winston Chang’s LATEX cheat sheet %package platex-tools Summary: pLaTeX standard tools bundle -Version: svn49250 +Version: svn44912 License: BSD Requires: texlive-base texlive-kpathsea Provides: tex(bounddvi.sty) = %{tl_version} @@ -182625,7 +169712,6 @@ Provides: tex(pxeverysel.sty) = %{tl_version} Provides: tex(pxeveryshi.sty) = %{tl_version} Provides: tex(pxftnright.sty) = %{tl_version} Provides: tex(pxgentombow.sty) = %{tl_version} -Requires: texlive-platex %description platex-tools This bundle is an extended version of the latex-tools bundle @@ -182638,7 +169724,7 @@ writing directions. %package poetry Summary: Facilities for typesetting poetry and poetical structure -Version: svn50921 +Version: svn44655 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(poetry.sty) = %{tl_version} @@ -182678,7 +169764,7 @@ rulers, compasses and pencils. %package pst-poker Summary: Drawing poker cards -Version: svn48347 +Version: svn45117 License: LGPLv3 Requires: texlive-base texlive-kpathsea Provides: tex(pst-poker.sty) = %{tl_version} @@ -182760,7 +169846,7 @@ in vertical direction of Japanese pTeX/upTeX. %package pxufont Summary: Emulate non-Unicode Japanese fonts using Unicode fonts -Version: svn50355 +Version: svn44780 License: MIT Requires: texlive-base texlive-kpathsea Provides: tex(zu-brsgnmlgothb-h.tfm) = %{tl_version} @@ -183195,7 +170281,7 @@ pages with a graphic image. %package rutitlepage Summary: Radboud University Titlepage Package -Version: svn51073 +Version: svn44485 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(rutitlepage.sty) = %{tl_version} @@ -183209,7 +170295,7 @@ optionnaly, babel-dutch. %package scratch Summary: Draw programs like "scratch" -Version: svn50073 +Version: svn45362 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(scratch.sty) = %{tl_version} @@ -183221,7 +170307,7 @@ packages TikZ and simplekv. %package scsnowman Summary: Snowman variants using TikZ -Version: svn47953 +Version: svn44984 License: BSD Requires: texlive-base texlive-kpathsea Provides: tex(scsnowman-normal.def) = %{tl_version} @@ -183235,7 +170321,7 @@ TikZ is required for drawing these snowmen. %package sesstime Summary: Session and timing information in lecture notes -Version: svn49750 +Version: svn44157 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(sesstime.sty) = %{tl_version} @@ -183249,7 +170335,7 @@ course. %package shobhika Summary: An OpenType Devanagari font designed for scholars -Version: svn50555 +Version: svn44723 License: OFL Requires: texlive-base texlive-kpathsea Provides: tex(Shobhika-Bold.otf) = %{tl_version} @@ -183302,7 +170388,7 @@ definitions, lemmas, etc. %package soup Summary: Generate alphabet soup puzzles -Version: svn50815 +Version: svn42992 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(soup.sty) = %{tl_version} @@ -183316,7 +170402,7 @@ numbersoup and soups with custom symbol sets. %package spark-otf Summary: Support OpenType Spark fonts -Version: svn51005 +Version: svn45483 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(spark-otf.sty) = %{tl_version} @@ -183330,7 +170416,7 @@ Bar - Thin Spark - Dot-line - Medium Spark - Dot - Medium Spark %package spectralsequences Summary: Print spectral sequence diagrams using PGF/TikZ -Version: svn50072 +Version: svn45318 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(spectralsequences.sty) = %{tl_version} @@ -183394,7 +170480,7 @@ graph. %package termcal-de Summary: German localization for termcal -Version: svn47111 +Version: svn44952 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(termcal-de.sty) = %{tl_version} @@ -183449,7 +170535,7 @@ documentation. %package tikzcodeblocks Summary: Helps to draw codeblocks like scratch, NEPO and PXT in TikZ -Version: svn47265 +Version: svn44841 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(tikzcodeblocks.sty) = %{tl_version} @@ -183460,7 +170546,7 @@ graphic programming languages like scratch, nepo or pxt. %package tikzducks Summary: A little fun package for using rubber ducks in TikZ -Version: svn50840 +Version: svn45211 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(tikzducks.sty) = %{tl_version} @@ -183472,7 +170558,7 @@ StackExchange How we can draw a duck? %package tikz-kalender Summary: A LaTeX based calendar using TikZ -Version: svn51329 +Version: svn44393 License: CC-BY-SA Requires: texlive-base texlive-kpathsea Provides: tex(tikz-kalender-translation.clo) = %{tl_version} @@ -183545,7 +170631,7 @@ police, priest, sailor, santa, surgeon. %package tocdata Summary: Adds names to chapters, sections, figures in the TOC and LOF. -Version: svn51654 +Version: svn42623 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(tocdata.sty) = %{tl_version} @@ -183624,7 +170710,7 @@ aimed at US undergraduates. %package unfonts-core Summary: TrueType version of Un-fonts -Version: svn49455 +Version: svn44467 License: GPLv2 Requires: texlive-base texlive-kpathsea Provides: tex(UnBatang.ttf) = %{tl_version} @@ -183704,7 +170790,7 @@ performed by a student. %package upzhkinsoku Summary: Supplementary Chinese kinsoku for Unicode *pTeX -Version: svn47354 +Version: svn45214 License: Knuth Requires: texlive-base texlive-kpathsea Provides: tex(upzhkinsoku.sty) = %{tl_version} @@ -183728,7 +170814,7 @@ characters. %package variablelm Summary: Font definitions for the variable Latin Modern fonts -Version: svn46611 +Version: svn43686 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(variablelm.sty) = %{tl_version} @@ -183826,7 +170912,7 @@ consult the original documenation for usage information. %package xltabular Summary: Longtable support with possible X-column specifier -Version: svn49939 +Version: svn45446 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(xltabular.sty) = %{tl_version} @@ -183839,10 +170925,9 @@ definitions, X-column specifier, and with possible pagebreaks. %package xsim Summary: eXercise Sheets IMproved -Version: svn46634 +Version: svn45355 License: LPPL Requires: texlive-base texlive-kpathsea -Requires: tex(translations.sty) Provides: tex(xsim-manual.cls) = %{tl_version} Provides: tex(xsim.auxfile.code.tex) = %{tl_version} Provides: tex(xsim.base.code.tex) = %{tl_version} @@ -183889,7 +170974,7 @@ and sizes. %package zebra-goodies Summary: A collection of handy macros for paper writing -Version: svn51554 +Version: svn44760 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(zebra-goodies.sty) = %{tl_version} @@ -183908,7 +170993,7 @@ tikzpagenodes, xcolor, and, optionally, microtype. Note: %package zhlipsum Summary: Chinese dummy text -Version: svn47383 +Version: svn45317 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(zhlipsum-zh-cn-gbk.def) = %{tl_version} @@ -183922,7 +171007,7 @@ UTF-8 and GBK encodings are supported. %package fvextra Summary: Extensions and patches for fancyvrb -Version: svn49947 +Version: svn44787 License: LPPL Requires: texlive-base texlive-kpathsea Requires: tex(ifthen.sty) @@ -183941,7 +171026,7 @@ developed as part of pythontex and minted. %package translator Summary: Easy translation of strings in LaTeX -Version: svn51279 +Version: svn46231 License: LPPL or GPL+ Requires: texlive-base texlive-kpathsea Requires: tex(keyval.sty) @@ -183971,7 +171056,7 @@ complex layout materials. %package autoaligne Summary: Align terms and members in math expressions -Version: svn49092 +Version: svn43195 License: LPPL Requires: texlive-base texlive-kpathsea Provides: tex(autoaligne-fr.tex) = %{tl_version} @@ -183996,9 +171081,25 @@ This plain TeX and LaTeX package provides the "hlist" environment in which \hitem starts a horizontal and columned item. It depends upon the simplekv package. +%package modulus +Summary: A non-destructive modulus and integer quotient operator for TeX +Version: svn47599 +License: LPPL +Requires: texlive-base texlive-kpathsea +Provides: tex(modulus.sty) = %{tl_version} + +%description modulus +The package provides an easy way to take the remainder of a +division operation without destroying the values of the +counters containing the dividend and divisor. Also provides a +way to take the integer quotient of a division operation +without destroying the values of the counters containing the +dividend and divisor. A tiny but occasionally useful package, +when doing heavy TeX programming. + %package olsak-misc Summary: Collection with plain TeX macros written by Petr Olsak -Version: svn51063 +Version: svn41526 License: Public Domain Requires: texlive-base texlive-kpathsea Provides: tex(qrcode.tex) = %{tl_version} @@ -184122,14642 +171223,6 @@ inconsistent differences between the input syntax and the program text. This package depends upon the following other LaTeX packages: expl3, TikZ, environ, xparse, and xcolor. -%package adigraph -Summary: Augmenting directed graphs -Version: svn49862 -License: MIT -Requires: texlive-base texlive-kpathsea -Requires: texlive-fp -Requires: tex(fp.sty) -Requires: tex(xparse.sty) -Requires: tex(xstring.sty) -Requires: tex(tikz.sty) -Provides: tex(adigraph.sty) = %{tl_version} - -%description adigraph -This LaTeX package provides the means to easily draw augmenting -oriented graphs, as well as cuts on them, to demonstrate steps -of algorithms for solving max-flow min-cut problems. This -package requires the other LaTeX packages fp, xparse, xstring, -and TikZ (in particular the TikZ calc library). - -%package aligned-overset -Summary: Fix alignment at \overset or \underset -Version: svn47290 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(aligned-overset.sty) = %{tl_version} - -%description aligned-overset -This package allows the base character of \underset or \overset -to be used as the alignment position for the amsmath aligned -math environments. - -%package amscls-doc -Summary: User documentation for AMS document classes -Version: svn46110 -License: LPPL -Requires: texlive-base texlive-kpathsea - -%description amscls-doc -This collection comprises a set of four manuals, or Author -Handbooks, each documenting the use of a class of publications -based on one of the AMS document classes amsart, amsbook, -amsproc and one "hybrid", as well as a guide to the generation -of the four manuals from a coordinated set of LaTeX source -files. The Handbooks comprise the user documentation for the -pertinent document classes. As the source for the Handbooks -consists of a large number of files, and the intended output is -multiple different documents, the principles underlying this -collection can be used as a model for similar projects. The -manual "Compiling the AMS Author Handbooks" provides -information about the structure of and interaction between the -various components. - -%package apxproof -Summary: Proofs in appendix -Version: svn49865 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(amsthm.sty) -Requires: tex(bibunits.sty) -Requires: tex(environ.sty) -Requires: tex(etoolbox.sty) -Requires: tex(fancyvrb.sty) -Requires: tex(ifthen.sty) -Requires: tex(kvoptions.sty) -Provides: tex(apxproof.sty) = %{tl_version} - -%description apxproof -The package makes it easier to write articles where proofs and -other material are deferred to the appendix. The appendix -material is written in the LaTeX code along with the main text -which it naturally complements, and it is automatically -deferred. The package can automatically send proofs to the -appendix, can repeat in the appendix the theorem environments -stated in the main text, can section the appendix automatically -based on the sectioning of the main text, and supports a -separate bibliography for the appendix material. It depends on -the following other packages: amsthm, bibunits, environ, -etoolbox, fancyvrb, ifthen, and kvoptions. - -%package ascmac -Summary: Boxes and picture macros with Japanese vertical writing support -Version: svn46904 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(ascmac.sty) = %{tl_version} -Provides: tex(tascmac.sty) = %{tl_version} -Provides: tex(ascgrp.mf) = %{tl_version} -Provides: tex(ascii.mf) = %{tl_version} -Provides: tex(ascii10.mf) = %{tl_version} -Provides: tex(ascii36.mf) = %{tl_version} -Provides: tex(ascgrp.tfm) = %{tl_version} -Provides: tex(ascii10.tfm) = %{tl_version} -Provides: tex(ascii36.tfm) = %{tl_version} -Provides: tex(ascgrp.pfb) = %{tl_version} -Provides: tex(ascii10.pfb) = %{tl_version} -Provides: tex(ascii36.pfb) = %{tl_version} - -%description ascmac -The bundle provides boxes and picture macros with Japanese -vertical writing support. It uses only native picture macros -and fonts for drawing boxes and is thus driver-independent. -Formerly part of the Japanese pLaTeX bundle, it now supports -all LaTeX engines. - -%package authorarchive -Summary: Adds self-archiving information to scientific papers -Version: svn51430 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(authorarchive.sty) = %{tl_version} - -%description authorarchive -This is a LaTeX style for producing author self-archiving -copies of (academic) papers. The following layout-styles are -pre-defined: ACMfor the two-column layout used by many ACM -conferences IEEE for the two-column layout used by many IEEE -conferences LNCS for the LNCS layout (as used by Springer) LNI -for the Lecture Notes in Informatics, published by the GI ENTCS -for the Elsevier ENTCS layout - -%package autobreak -Summary: Simple line breaking of long formulae -Version: svn43337 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(autobreak.sty) = %{tl_version} - -%description autobreak -This package implements a simple mechanism of line/page -breaking within the align environment of the amsmath package; -new line characters are considered as possible candidates for -the breaks and the package tries to put breaks at adequate -places. It is suitable for computer-generated long formulae -with many terms. - -%package auto-pst-pdf-lua -Summary: Using LuaLaTeX together with PostScript code -Version: svn49364 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(ifpdf.sty) -Requires: tex(ifluatex.sty) -Requires: tex(ifplatform.sty) -Requires: tex(xkeyval.sty) -Provides: tex(auto-pst-pdf-lua.sty) = %{tl_version} - -%description auto-pst-pdf-lua -This package is a slightly modified version of auto-pst-pdf by -Will Robertson, which itself is a wrapper for pst-pdf by Rolf -Niepraschk. The package allows the use of LuaLaTeX together -with PostScript related code, eg. PSTricks. It depends on -ifpdf, ifluatex, ifplatform, and xkeyval. - -%package babel-japanese -Summary: Babel support for Japanes -Version: svn50735 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(japanese.ldf) = %{tl_version} - -%description babel-japanese -This package provides a japanese option for the babel package. -It defines all the language definition macros in Japanese. -Currently this package works with pLaTeX, upLaTeX, XeLaTeX and -LuaLaTeX. - -%package bath-bst -Summary: Harvard referencing style as recommended by the University of Bath Library -Version: svn51595 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(bath.bst) = %{tl_version} -Provides: tex(bathx.bst) = %{tl_version} - -%description bath-bst -This package provides a BibTeX style to format reference lists -in the Harvard style recommended by the University of Bath -Library. It should be used in conjunction with natbib for -citations. - -%package beamertheme-cuerna -Summary: A beamer theme with 4 colour palettes -Version: svn42161 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(beamercolorthemeCuerna.sty) = %{tl_version} -Provides: tex(beamercolorthemebluesimplex.sty) = %{tl_version} -Provides: tex(beamercolorthemebrick.sty) = %{tl_version} -Provides: tex(beamercolorthemelettuce.sty) = %{tl_version} -Provides: tex(beamerinnerthemeCuerna.sty) = %{tl_version} -Provides: tex(beamerouterthemeCuerna.sty) = %{tl_version} -Provides: tex(beamerthemeCuerna.sty) = %{tl_version} - -%description beamertheme-cuerna -The package contains a theme for Beamer which is referenced as -"Cuerna" inside beamer and has four basic colour themes. The -title page shows rectangles that represent the Fibonacci -sequence, and spiral is drawn on top of the rectangles. Besides -that the rest of the graphic elements in the slides are scarce -to keep it clean. - -%package beamertheme-focus -Summary: A minimalist presentation theme for LaTeX Beamer -Version: svn51489 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(beamercolorthemefocus.sty) = %{tl_version} -Provides: tex(beamerfontthemefocus.sty) = %{tl_version} -Provides: tex(beamerinnerthemefocus.sty) = %{tl_version} -Provides: tex(beamerouterthemefocus.sty) = %{tl_version} -Provides: tex(beamerthemefocus.sty) = %{tl_version} - -%description beamertheme-focus -A presentation theme for LaTeX Beamer that aims at a clean and -minimalist design, so to minimize distractions and put the -focus directly on the content. - -%package beamertheme-saintpetersburg -Summary: A beamer theme that incorporates colours and fonts of Saint Petersburg State University -Version: svn45877 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(beamercolorthemeSaintPetersburg.sty) = %{tl_version} -Provides: tex(beamerfontthemeSaintPetersburg.sty) = %{tl_version} -Provides: tex(beamerthemeSaintPetersburg.sty) = %{tl_version} - -%description beamertheme-saintpetersburg -This minimalistic beamer theme incorporates Saint Petersburg -State University colours and fonts. It is suitable for both -presentations and posters. - -%package bezierplot -Summary: Approximate smooth function graphs with cubic bezier splines for use with TikZ or MetaPost -Version: svn51398 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(bezierplot.sty) = %{tl_version} - -%description bezierplot -This package consists of a Lua program as well as a (Lua)LaTeX -.sty file. Given a smooth function, bezierplot returns a smooth -bezier path written in TikZ notation (which also matches -MetaPost) that approximates the graph of the function. For -polynomial functions of degree [?] 3 and their inverses the -approximation is exact (up to numeric precision). bezierplot -also finds special points such as extreme points and inflection -points and reduces the number of used points. - -%package biblatex-archaeology -Summary: A collection of BibLaTeX styles for German prehistory -Version: svn49202 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(UKenglish-aefkw.lbx) = %{tl_version} -Provides: tex(UKenglish-archa.lbx) = %{tl_version} -Provides: tex(UKenglish-archaeology.lbx) = %{tl_version} -Provides: tex(UKenglish-dguf-alt.lbx) = %{tl_version} -Provides: tex(UKenglish-dguf-apa.lbx) = %{tl_version} -Provides: tex(UKenglish-eaz.lbx) = %{tl_version} -Provides: tex(UKenglish-foe.lbx) = %{tl_version} -Provides: tex(UKenglish-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(UKenglish-karl.lbx) = %{tl_version} -Provides: tex(UKenglish-maja.lbx) = %{tl_version} -Provides: tex(UKenglish-mpk.lbx) = %{tl_version} -Provides: tex(UKenglish-mpkoeaw.lbx) = %{tl_version} -Provides: tex(UKenglish-offa.lbx) = %{tl_version} -Provides: tex(UKenglish-rgzm.lbx) = %{tl_version} -Provides: tex(UKenglish-zaak.lbx) = %{tl_version} -Provides: tex(UKenglish-zaes.lbx) = %{tl_version} -Provides: tex(USenglish-aefkw.lbx) = %{tl_version} -Provides: tex(USenglish-archa.lbx) = %{tl_version} -Provides: tex(USenglish-archaeology.lbx) = %{tl_version} -Provides: tex(USenglish-dguf-alt.lbx) = %{tl_version} -Provides: tex(USenglish-dguf-apa.lbx) = %{tl_version} -Provides: tex(USenglish-eaz.lbx) = %{tl_version} -Provides: tex(USenglish-foe.lbx) = %{tl_version} -Provides: tex(USenglish-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(USenglish-karl.lbx) = %{tl_version} -Provides: tex(USenglish-maja.lbx) = %{tl_version} -Provides: tex(USenglish-mpk.lbx) = %{tl_version} -Provides: tex(USenglish-mpkoeaw.lbx) = %{tl_version} -Provides: tex(USenglish-offa.lbx) = %{tl_version} -Provides: tex(USenglish-rgzm.lbx) = %{tl_version} -Provides: tex(USenglish-zaak.lbx) = %{tl_version} -Provides: tex(USenglish-zaes.lbx) = %{tl_version} -Provides: tex(aefkw.bbx) = %{tl_version} -Provides: tex(aefkw.cbx) = %{tl_version} -Provides: tex(aefkw.dbx) = %{tl_version} -Provides: tex(afwl.bbx) = %{tl_version} -Provides: tex(afwl.cbx) = %{tl_version} -Provides: tex(afwl.dbx) = %{tl_version} -Provides: tex(american-aefkw.lbx) = %{tl_version} -Provides: tex(american-archa.lbx) = %{tl_version} -Provides: tex(american-archaeology.lbx) = %{tl_version} -Provides: tex(american-dguf-alt.lbx) = %{tl_version} -Provides: tex(american-dguf-apa.lbx) = %{tl_version} -Provides: tex(american-eaz.lbx) = %{tl_version} -Provides: tex(american-foe.lbx) = %{tl_version} -Provides: tex(american-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(american-karl.lbx) = %{tl_version} -Provides: tex(american-maja.lbx) = %{tl_version} -Provides: tex(american-mpk.lbx) = %{tl_version} -Provides: tex(american-mpkoeaw.lbx) = %{tl_version} -Provides: tex(american-offa.lbx) = %{tl_version} -Provides: tex(american-rgzm.lbx) = %{tl_version} -Provides: tex(american-zaak.lbx) = %{tl_version} -Provides: tex(american-zaes.lbx) = %{tl_version} -Provides: tex(amit.bbx) = %{tl_version} -Provides: tex(amit.cbx) = %{tl_version} -Provides: tex(amit.dbx) = %{tl_version} -Provides: tex(archa.bbx) = %{tl_version} -Provides: tex(archa.cbx) = %{tl_version} -Provides: tex(archa.dbx) = %{tl_version} -Provides: tex(australian-aefkw.lbx) = %{tl_version} -Provides: tex(australian-archa.lbx) = %{tl_version} -Provides: tex(australian-archaeology.lbx) = %{tl_version} -Provides: tex(australian-dguf-alt.lbx) = %{tl_version} -Provides: tex(australian-dguf-apa.lbx) = %{tl_version} -Provides: tex(australian-eaz.lbx) = %{tl_version} -Provides: tex(australian-foe.lbx) = %{tl_version} -Provides: tex(australian-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(australian-karl.lbx) = %{tl_version} -Provides: tex(australian-maja.lbx) = %{tl_version} -Provides: tex(australian-mpk.lbx) = %{tl_version} -Provides: tex(australian-mpkoeaw.lbx) = %{tl_version} -Provides: tex(australian-offa.lbx) = %{tl_version} -Provides: tex(australian-rgzm.lbx) = %{tl_version} -Provides: tex(australian-zaak.lbx) = %{tl_version} -Provides: tex(australian-zaes.lbx) = %{tl_version} -Provides: tex(austrian-aefkw.lbx) = %{tl_version} -Provides: tex(austrian-archa.lbx) = %{tl_version} -Provides: tex(austrian-archaeology.lbx) = %{tl_version} -Provides: tex(austrian-dguf-alt.lbx) = %{tl_version} -Provides: tex(austrian-dguf-apa.lbx) = %{tl_version} -Provides: tex(austrian-eaz.lbx) = %{tl_version} -Provides: tex(austrian-foe.lbx) = %{tl_version} -Provides: tex(austrian-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(austrian-karl.lbx) = %{tl_version} -Provides: tex(austrian-maja.lbx) = %{tl_version} -Provides: tex(austrian-mpk.lbx) = %{tl_version} -Provides: tex(austrian-mpkoeaw.lbx) = %{tl_version} -Provides: tex(austrian-offa.lbx) = %{tl_version} -Provides: tex(austrian-rgzm.lbx) = %{tl_version} -Provides: tex(austrian-zaak.lbx) = %{tl_version} -Provides: tex(austrian-zaes.lbx) = %{tl_version} -Provides: tex(authoryear-archaeology.bbx) = %{tl_version} -Provides: tex(authoryear-archaeology.cbx) = %{tl_version} -Provides: tex(authoryear-archaeology.dbx) = %{tl_version} -Provides: tex(authoryear-comp-archaeology.bbx) = %{tl_version} -Provides: tex(authoryear-comp-archaeology.cbx) = %{tl_version} -Provides: tex(authoryear-comp-archaeology.dbx) = %{tl_version} -Provides: tex(authoryear-ibid-archaeology.bbx) = %{tl_version} -Provides: tex(authoryear-ibid-archaeology.cbx) = %{tl_version} -Provides: tex(authoryear-ibid-archaeology.dbx) = %{tl_version} -Provides: tex(authoryear-icomp-archaeology.bbx) = %{tl_version} -Provides: tex(authoryear-icomp-archaeology.cbx) = %{tl_version} -Provides: tex(authoryear-icomp-archaeology.dbx) = %{tl_version} -Provides: tex(biblatex-archaeology.sty) = %{tl_version} -Provides: tex(british-aefkw.lbx) = %{tl_version} -Provides: tex(british-archa.lbx) = %{tl_version} -Provides: tex(british-archaeology.lbx) = %{tl_version} -Provides: tex(british-dguf-alt.lbx) = %{tl_version} -Provides: tex(british-dguf-apa.lbx) = %{tl_version} -Provides: tex(british-eaz.lbx) = %{tl_version} -Provides: tex(british-foe.lbx) = %{tl_version} -Provides: tex(british-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(british-karl.lbx) = %{tl_version} -Provides: tex(british-maja.lbx) = %{tl_version} -Provides: tex(british-mpk.lbx) = %{tl_version} -Provides: tex(british-mpkoeaw.lbx) = %{tl_version} -Provides: tex(british-offa.lbx) = %{tl_version} -Provides: tex(british-rgzm.lbx) = %{tl_version} -Provides: tex(british-zaak.lbx) = %{tl_version} -Provides: tex(british-zaes.lbx) = %{tl_version} -Provides: tex(canadian-aefkw.lbx) = %{tl_version} -Provides: tex(canadian-archa.lbx) = %{tl_version} -Provides: tex(canadian-archaeology.lbx) = %{tl_version} -Provides: tex(canadian-dguf-alt.lbx) = %{tl_version} -Provides: tex(canadian-dguf-apa.lbx) = %{tl_version} -Provides: tex(canadian-eaz.lbx) = %{tl_version} -Provides: tex(canadian-foe.lbx) = %{tl_version} -Provides: tex(canadian-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(canadian-karl.lbx) = %{tl_version} -Provides: tex(canadian-maja.lbx) = %{tl_version} -Provides: tex(canadian-mpk.lbx) = %{tl_version} -Provides: tex(canadian-mpkoeaw.lbx) = %{tl_version} -Provides: tex(canadian-offa.lbx) = %{tl_version} -Provides: tex(canadian-rgzm.lbx) = %{tl_version} -Provides: tex(canadian-zaak.lbx) = %{tl_version} -Provides: tex(canadian-zaes.lbx) = %{tl_version} -Provides: tex(dguf-alt.bbx) = %{tl_version} -Provides: tex(dguf-alt.cbx) = %{tl_version} -Provides: tex(dguf-alt.dbx) = %{tl_version} -Provides: tex(dguf-apa.bbx) = %{tl_version} -Provides: tex(dguf-apa.cbx) = %{tl_version} -Provides: tex(dguf-apa.dbx) = %{tl_version} -Provides: tex(dguf.bbx) = %{tl_version} -Provides: tex(dguf.cbx) = %{tl_version} -Provides: tex(dguf.dbx) = %{tl_version} -Provides: tex(eaz-alt.bbx) = %{tl_version} -Provides: tex(eaz-alt.cbx) = %{tl_version} -Provides: tex(eaz-alt.dbx) = %{tl_version} -Provides: tex(eaz.bbx) = %{tl_version} -Provides: tex(eaz.cbx) = %{tl_version} -Provides: tex(eaz.dbx) = %{tl_version} -Provides: tex(english-aefkw.lbx) = %{tl_version} -Provides: tex(english-archa.lbx) = %{tl_version} -Provides: tex(english-archaeology.lbx) = %{tl_version} -Provides: tex(english-dguf-alt.lbx) = %{tl_version} -Provides: tex(english-dguf-apa.lbx) = %{tl_version} -Provides: tex(english-eaz.lbx) = %{tl_version} -Provides: tex(english-foe.lbx) = %{tl_version} -Provides: tex(english-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(english-karl.lbx) = %{tl_version} -Provides: tex(english-maja.lbx) = %{tl_version} -Provides: tex(english-mpk.lbx) = %{tl_version} -Provides: tex(english-mpkoeaw.lbx) = %{tl_version} -Provides: tex(english-offa.lbx) = %{tl_version} -Provides: tex(english-rgzm.lbx) = %{tl_version} -Provides: tex(english-zaak.lbx) = %{tl_version} -Provides: tex(english-zaes.lbx) = %{tl_version} -Provides: tex(foe.bbx) = %{tl_version} -Provides: tex(foe.cbx) = %{tl_version} -Provides: tex(foe.dbx) = %{tl_version} -Provides: tex(german-aefkw.lbx) = %{tl_version} -Provides: tex(german-archa.lbx) = %{tl_version} -Provides: tex(german-archaeology.lbx) = %{tl_version} -Provides: tex(german-dguf-alt.lbx) = %{tl_version} -Provides: tex(german-dguf-apa.lbx) = %{tl_version} -Provides: tex(german-eaz.lbx) = %{tl_version} -Provides: tex(german-foe.lbx) = %{tl_version} -Provides: tex(german-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(german-karl.lbx) = %{tl_version} -Provides: tex(german-maja.lbx) = %{tl_version} -Provides: tex(german-mpk.lbx) = %{tl_version} -Provides: tex(german-mpkoeaw.lbx) = %{tl_version} -Provides: tex(german-offa.lbx) = %{tl_version} -Provides: tex(german-rgzm.lbx) = %{tl_version} -Provides: tex(german-zaak.lbx) = %{tl_version} -Provides: tex(german-zaes.lbx) = %{tl_version} -Provides: tex(jb-halle.bbx) = %{tl_version} -Provides: tex(jb-halle.cbx) = %{tl_version} -Provides: tex(jb-halle.dbx) = %{tl_version} -Provides: tex(jb-kreis-neuss.bbx) = %{tl_version} -Provides: tex(jb-kreis-neuss.cbx) = %{tl_version} -Provides: tex(jb-kreis-neuss.dbx) = %{tl_version} -Provides: tex(karl.bbx) = %{tl_version} -Provides: tex(karl.cbx) = %{tl_version} -Provides: tex(karl.dbx) = %{tl_version} -Provides: tex(maja.bbx) = %{tl_version} -Provides: tex(maja.cbx) = %{tl_version} -Provides: tex(maja.dbx) = %{tl_version} -Provides: tex(mpk.bbx) = %{tl_version} -Provides: tex(mpk.cbx) = %{tl_version} -Provides: tex(mpk.dbx) = %{tl_version} -Provides: tex(mpkoeaw.bbx) = %{tl_version} -Provides: tex(mpkoeaw.cbx) = %{tl_version} -Provides: tex(mpkoeaw.dbx) = %{tl_version} -Provides: tex(naustrian-aefkw.lbx) = %{tl_version} -Provides: tex(naustrian-archa.lbx) = %{tl_version} -Provides: tex(naustrian-archaeology.lbx) = %{tl_version} -Provides: tex(naustrian-dguf-alt.lbx) = %{tl_version} -Provides: tex(naustrian-dguf-apa.lbx) = %{tl_version} -Provides: tex(naustrian-eaz.lbx) = %{tl_version} -Provides: tex(naustrian-foe.lbx) = %{tl_version} -Provides: tex(naustrian-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(naustrian-karl.lbx) = %{tl_version} -Provides: tex(naustrian-maja.lbx) = %{tl_version} -Provides: tex(naustrian-mpk.lbx) = %{tl_version} -Provides: tex(naustrian-mpkoeaw.lbx) = %{tl_version} -Provides: tex(naustrian-offa.lbx) = %{tl_version} -Provides: tex(naustrian-rgzm.lbx) = %{tl_version} -Provides: tex(naustrian-zaak.lbx) = %{tl_version} -Provides: tex(naustrian-zaes.lbx) = %{tl_version} -Provides: tex(newzealand-aefkw.lbx) = %{tl_version} -Provides: tex(newzealand-archa.lbx) = %{tl_version} -Provides: tex(newzealand-archaeology.lbx) = %{tl_version} -Provides: tex(newzealand-dguf-alt.lbx) = %{tl_version} -Provides: tex(newzealand-dguf-apa.lbx) = %{tl_version} -Provides: tex(newzealand-eaz.lbx) = %{tl_version} -Provides: tex(newzealand-foe.lbx) = %{tl_version} -Provides: tex(newzealand-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(newzealand-karl.lbx) = %{tl_version} -Provides: tex(newzealand-maja.lbx) = %{tl_version} -Provides: tex(newzealand-mpk.lbx) = %{tl_version} -Provides: tex(newzealand-mpkoeaw.lbx) = %{tl_version} -Provides: tex(newzealand-offa.lbx) = %{tl_version} -Provides: tex(newzealand-rgzm.lbx) = %{tl_version} -Provides: tex(newzealand-zaak.lbx) = %{tl_version} -Provides: tex(newzealand-zaes.lbx) = %{tl_version} -Provides: tex(ngerman-aefkw.lbx) = %{tl_version} -Provides: tex(ngerman-archa.lbx) = %{tl_version} -Provides: tex(ngerman-archaeology.lbx) = %{tl_version} -Provides: tex(ngerman-dguf-alt.lbx) = %{tl_version} -Provides: tex(ngerman-dguf-apa.lbx) = %{tl_version} -Provides: tex(ngerman-eaz.lbx) = %{tl_version} -Provides: tex(ngerman-foe.lbx) = %{tl_version} -Provides: tex(ngerman-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(ngerman-karl.lbx) = %{tl_version} -Provides: tex(ngerman-maja.lbx) = %{tl_version} -Provides: tex(ngerman-mpk.lbx) = %{tl_version} -Provides: tex(ngerman-mpkoeaw.lbx) = %{tl_version} -Provides: tex(ngerman-offa.lbx) = %{tl_version} -Provides: tex(ngerman-rgzm.lbx) = %{tl_version} -Provides: tex(ngerman-zaak.lbx) = %{tl_version} -Provides: tex(ngerman-zaes.lbx) = %{tl_version} -Provides: tex(nnu.bbx) = %{tl_version} -Provides: tex(nnu.cbx) = %{tl_version} -Provides: tex(nnu.dbx) = %{tl_version} -Provides: tex(nswissgerman-aefkw.lbx) = %{tl_version} -Provides: tex(nswissgerman-archa.lbx) = %{tl_version} -Provides: tex(nswissgerman-archaeology.lbx) = %{tl_version} -Provides: tex(nswissgerman-dguf-alt.lbx) = %{tl_version} -Provides: tex(nswissgerman-dguf-apa.lbx) = %{tl_version} -Provides: tex(nswissgerman-eaz.lbx) = %{tl_version} -Provides: tex(nswissgerman-foe.lbx) = %{tl_version} -Provides: tex(nswissgerman-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(nswissgerman-karl.lbx) = %{tl_version} -Provides: tex(nswissgerman-maja.lbx) = %{tl_version} -Provides: tex(nswissgerman-mpk.lbx) = %{tl_version} -Provides: tex(nswissgerman-mpkoeaw.lbx) = %{tl_version} -Provides: tex(nswissgerman-offa.lbx) = %{tl_version} -Provides: tex(nswissgerman-rgzm.lbx) = %{tl_version} -Provides: tex(nswissgerman-zaak.lbx) = %{tl_version} -Provides: tex(nswissgerman-zaes.lbx) = %{tl_version} -Provides: tex(numeric-comp-archaeology.bbx) = %{tl_version} -Provides: tex(numeric-comp-archaeology.cbx) = %{tl_version} -Provides: tex(numeric-comp-archaeology.dbx) = %{tl_version} -Provides: tex(offa.bbx) = %{tl_version} -Provides: tex(offa.cbx) = %{tl_version} -Provides: tex(offa.dbx) = %{tl_version} -Provides: tex(rgk-inline.bbx) = %{tl_version} -Provides: tex(rgk-inline.cbx) = %{tl_version} -Provides: tex(rgk-inline.dbx) = %{tl_version} -Provides: tex(rgk-numeric.bbx) = %{tl_version} -Provides: tex(rgk-numeric.cbx) = %{tl_version} -Provides: tex(rgk-numeric.dbx) = %{tl_version} -Provides: tex(rgk-verbose.bbx) = %{tl_version} -Provides: tex(rgk-verbose.cbx) = %{tl_version} -Provides: tex(rgk-verbose.dbx) = %{tl_version} -Provides: tex(rgzm-inline.bbx) = %{tl_version} -Provides: tex(rgzm-inline.cbx) = %{tl_version} -Provides: tex(rgzm-inline.dbx) = %{tl_version} -Provides: tex(rgzm-numeric.bbx) = %{tl_version} -Provides: tex(rgzm-numeric.cbx) = %{tl_version} -Provides: tex(rgzm-numeric.dbx) = %{tl_version} -Provides: tex(rgzm-verbose.bbx) = %{tl_version} -Provides: tex(rgzm-verbose.cbx) = %{tl_version} -Provides: tex(rgzm-verbose.dbx) = %{tl_version} -Provides: tex(swissgerman-aefkw.lbx) = %{tl_version} -Provides: tex(swissgerman-archa.lbx) = %{tl_version} -Provides: tex(swissgerman-archaeology.lbx) = %{tl_version} -Provides: tex(swissgerman-dguf-alt.lbx) = %{tl_version} -Provides: tex(swissgerman-dguf-apa.lbx) = %{tl_version} -Provides: tex(swissgerman-eaz.lbx) = %{tl_version} -Provides: tex(swissgerman-foe.lbx) = %{tl_version} -Provides: tex(swissgerman-jb-kreis-neuss.lbx) = %{tl_version} -Provides: tex(swissgerman-karl.lbx) = %{tl_version} -Provides: tex(swissgerman-maja.lbx) = %{tl_version} -Provides: tex(swissgerman-mpk.lbx) = %{tl_version} -Provides: tex(swissgerman-mpkoeaw.lbx) = %{tl_version} -Provides: tex(swissgerman-offa.lbx) = %{tl_version} -Provides: tex(swissgerman-rgzm.lbx) = %{tl_version} -Provides: tex(swissgerman-zaak.lbx) = %{tl_version} -Provides: tex(swissgerman-zaes.lbx) = %{tl_version} -Provides: tex(ufg-muenster-inline.bbx) = %{tl_version} -Provides: tex(ufg-muenster-inline.cbx) = %{tl_version} -Provides: tex(ufg-muenster-inline.dbx) = %{tl_version} -Provides: tex(ufg-muenster-numeric.bbx) = %{tl_version} -Provides: tex(ufg-muenster-numeric.cbx) = %{tl_version} -Provides: tex(ufg-muenster-numeric.dbx) = %{tl_version} -Provides: tex(ufg-muenster-verbose.bbx) = %{tl_version} -Provides: tex(ufg-muenster-verbose.cbx) = %{tl_version} -Provides: tex(ufg-muenster-verbose.dbx) = %{tl_version} -Provides: tex(verbose-archaeology.bbx) = %{tl_version} -Provides: tex(verbose-archaeology.cbx) = %{tl_version} -Provides: tex(verbose-archaeology.dbx) = %{tl_version} -Provides: tex(verbose-ibid-archaeology.bbx) = %{tl_version} -Provides: tex(verbose-ibid-archaeology.cbx) = %{tl_version} -Provides: tex(verbose-ibid-archaeology.dbx) = %{tl_version} -Provides: tex(verbose-trad2note-archaeology.bbx) = %{tl_version} -Provides: tex(verbose-trad2note-archaeology.cbx) = %{tl_version} -Provides: tex(verbose-trad2note-archaeology.dbx) = %{tl_version} -Provides: tex(volkskunde.bbx) = %{tl_version} -Provides: tex(volkskunde.cbx) = %{tl_version} -Provides: tex(volkskunde.dbx) = %{tl_version} -Provides: tex(zaak.bbx) = %{tl_version} -Provides: tex(zaak.cbx) = %{tl_version} -Provides: tex(zaak.dbx) = %{tl_version} -Provides: tex(zaes.bbx) = %{tl_version} -Provides: tex(zaes.cbx) = %{tl_version} -Provides: tex(zaes.dbx) = %{tl_version} - -%description biblatex-archaeology -This package provides additional BibLaTeX styles for German -humanities. Its core purpose is to enable the referencing rules -of the Romisch-Germanische Komission, the department of -prehistory of the Deutsches Archaologisches Institut (German -Archaeological Institute), since these are referenced by most -guidelines in German prehistory and medieval archaeology and -serve as a kind of template. It contains verbose and -author-date styles as well. - -%package biblatex-arthistory-bonn -Summary: BibLaTeX citation style covers the citation and bibliography guidelines for art historians -Version: svn46637 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(arthistory-bonn-english.lbx) = %{tl_version} -Provides: tex(arthistory-bonn-german.lbx) = %{tl_version} -Provides: tex(arthistory-bonn.bbx) = %{tl_version} -Provides: tex(arthistory-bonn.cbx) = %{tl_version} -Provides: tex(arthistory-bonn.dbx) = %{tl_version} - -%description biblatex-arthistory-bonn -This citation style covers the citation and bibliography -guidelines of the Kunsthistorisches Institut der Universitat -Bonn for undergraduates. It introduces bibliography entry types -for catalogs and features a tabular bibliography, among other -things. Various options are available to change and adjust the -outcome according to one's own preferences. The style is -compatible with English and German. - -%package biblatex-socialscienceshuberlin -Summary: BibLaTeX-style for the social sciences at HU Berlin -Version: svn47839 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(german-socialscienceshuberlin.lbx) = %{tl_version} -Provides: tex(socialscienceshuberlin.bbx) = %{tl_version} -Provides: tex(socialscienceshuberlin.cbx) = %{tl_version} - -%description biblatex-socialscienceshuberlin -This is a BibLaTeX style for the social sciences at the -Humboldt-Universitat zu Berlin. - -%package cascade -Summary: Constructions with braces to present mathematical demonstrations -Version: svn48200 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(cascade.sty) = %{tl_version} - -%description cascade -The LaTeX package cascade provides a command \Cascade to do -constructions to present mathematical demonstrations with -successive braces for the deductions. - -%package cellprops -Summary: Accept CSS-like selectors in tabular, array, ... -Version: svn48227 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea -Requires: tex(mdwtab.sty) -Requires: tex(xcolor.sty) -Requires: tex(expl3.sty) -Requires: tex(xparse.sty) -Provides: tex(cellprops.sty) = %{tl_version} - -%description cellprops -This package reworks the internals of tabular, array, and -similar constructs, and adds a \cellprops command accepting -CSS-like selectors and properties. It depends on mdwtab, -xcolor, expl3, and xparse. - -%package chemsec -Summary: Automated creation of numeric entity labels -Version: svn46972 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(chemsec.sty) = %{tl_version} - -%description chemsec -Packages provides creation of sequential numeric labels for -entities in a document. The motivating example is chemical -structures in a scientific document. The package can -automatically output a full object name and label on the first -occurence in the document and just labels only on subsequent -references. - -%package citeref -Summary: Add reference-page-list to bibliography-items -Version: svn47407 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(citeref.sty) = %{tl_version} - -%description citeref -The package does its job without using the indexing facilities, -and needs no special \cite-replacement package. - -%package clrdblpg -Summary: Control pagestyle of pages left blank by \cleardoublepage -Version: svn47511 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(clrdblpg.sty) = %{tl_version} - -%description clrdblpg -This tiny package allows easy manipulation of the headers and -footers on pages left blank by \cleardoublepage. By default, -LaTeX has no easy facilities for this. This package uses more -or less the algorithm listed in the fancyhdr package -documentation, with some better indentation and added -flexibility. - -%package clrstrip -Summary: Place contents into a full width colour strip -Version: svn51307 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(clrstrip.sty) = %{tl_version} - -%description clrstrip -This lightweight package provides the colorstrip environment, -that places its contents into a full page width colour strip. - -%package cm-mf-extra-bold -Summary: Extra Metafont files for CM -Version: svn45796 -License: GPL+ and Public Domain -Requires: texlive-base texlive-kpathsea -Provides: tex(cmbcsc10.mf) = %{tl_version} -Provides: tex(cmbtex10.mf) = %{tl_version} -Provides: tex(cmbtt10.mf) = %{tl_version} -Provides: tex(cmbtt8.mf) = %{tl_version} -Provides: tex(cmbtt9.mf) = %{tl_version} -Provides: tex(cmexb10.mf) = %{tl_version} -Provides: tex(cmttb10.mf) = %{tl_version} -Provides: tex(cmbcsc10.tfm) = %{tl_version} -Provides: tex(cmbtex10.tfm) = %{tl_version} -Provides: tex(cmbtt10.tfm) = %{tl_version} -Provides: tex(cmbtt8.tfm) = %{tl_version} -Provides: tex(cmbtt9.tfm) = %{tl_version} -Provides: tex(cmttb10.tfm) = %{tl_version} - -%description cm-mf-extra-bold -The bundle provides bold versions of cmcsc, cmex, cmtex and -cmtt fonts (all parts of the standard computer modern font -distribution), as Metafont base files. - -%package cmsrb -Summary: Computer Modern for Serbian and Macedonian -Version: svn50531 -License: GPL+ -Requires: texlive-base texlive-kpathsea -Provides: tex(cmsrbrb.afm) = %{tl_version} -Provides: tex(cmsrbrc.afm) = %{tl_version} -Provides: tex(cmsrbrd.afm) = %{tl_version} -Provides: tex(cmsrbri.afm) = %{tl_version} -Provides: tex(cmsrbrr.afm) = %{tl_version} -Provides: tex(cmsrbrs.afm) = %{tl_version} -Provides: tex(cmsrbrx.afm) = %{tl_version} -Provides: tex(cmsrbry.afm) = %{tl_version} -Provides: tex(cmsrbsb.afm) = %{tl_version} -Provides: tex(cmsrbsr.afm) = %{tl_version} -Provides: tex(cmsrbss.afm) = %{tl_version} -Provides: tex(cmsrbst.afm) = %{tl_version} -Provides: tex(cmsrbtc.afm) = %{tl_version} -Provides: tex(cmsrbti.afm) = %{tl_version} -Provides: tex(cmsrbtr.afm) = %{tl_version} -Provides: tex(cmsrbts.afm) = %{tl_version} -Provides: tex(cmsrbot2.enc) = %{tl_version} -Provides: tex(cmsrbt1.enc) = %{tl_version} -Provides: tex(cmsrbt2a.enc) = %{tl_version} -Provides: tex(cmsrbts1.enc) = %{tl_version} -Provides: tex(cmsrbx2.enc) = %{tl_version} -Provides: tex(cmsrb.map) = %{tl_version} -Provides: tex(ot2cmsrbrb-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrb.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrc-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrc.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrd-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrd.tfm) = %{tl_version} -Provides: tex(ot2cmsrbri-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbri.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrr-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrr.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrs-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrs.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrx-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbrx.tfm) = %{tl_version} -Provides: tex(ot2cmsrbry-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbry.tfm) = %{tl_version} -Provides: tex(ot2cmsrbsb-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbsb.tfm) = %{tl_version} -Provides: tex(ot2cmsrbsr-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbsr.tfm) = %{tl_version} -Provides: tex(ot2cmsrbss-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbss.tfm) = %{tl_version} -Provides: tex(ot2cmsrbst-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbst.tfm) = %{tl_version} -Provides: tex(ot2cmsrbtc-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbtc.tfm) = %{tl_version} -Provides: tex(ot2cmsrbti-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbti.tfm) = %{tl_version} -Provides: tex(ot2cmsrbtr-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbtr.tfm) = %{tl_version} -Provides: tex(ot2cmsrbts-base.tfm) = %{tl_version} -Provides: tex(ot2cmsrbts.tfm) = %{tl_version} -Provides: tex(t1cmsrbrb-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbrb.tfm) = %{tl_version} -Provides: tex(t1cmsrbrc-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbrc.tfm) = %{tl_version} -Provides: tex(t1cmsrbrd-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbrd.tfm) = %{tl_version} -Provides: tex(t1cmsrbri-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbri.tfm) = %{tl_version} -Provides: tex(t1cmsrbrr-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbrr.tfm) = %{tl_version} -Provides: tex(t1cmsrbrs-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbrs.tfm) = %{tl_version} -Provides: tex(t1cmsrbrx-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbrx.tfm) = %{tl_version} -Provides: tex(t1cmsrbry-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbry.tfm) = %{tl_version} -Provides: tex(t1cmsrbsb-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbsb.tfm) = %{tl_version} -Provides: tex(t1cmsrbsr-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbsr.tfm) = %{tl_version} -Provides: tex(t1cmsrbss-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbss.tfm) = %{tl_version} -Provides: tex(t1cmsrbst-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbst.tfm) = %{tl_version} -Provides: tex(t1cmsrbtc-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbtc.tfm) = %{tl_version} -Provides: tex(t1cmsrbti-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbti.tfm) = %{tl_version} -Provides: tex(t1cmsrbtr-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbtr.tfm) = %{tl_version} -Provides: tex(t1cmsrbts-base.tfm) = %{tl_version} -Provides: tex(t1cmsrbts.tfm) = %{tl_version} -Provides: tex(t2acmsrbrb-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbrb.tfm) = %{tl_version} -Provides: tex(t2acmsrbrc-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbrc.tfm) = %{tl_version} -Provides: tex(t2acmsrbrd-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbrd.tfm) = %{tl_version} -Provides: tex(t2acmsrbri-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbri.tfm) = %{tl_version} -Provides: tex(t2acmsrbrr-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbrr.tfm) = %{tl_version} -Provides: tex(t2acmsrbrs-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbrs.tfm) = %{tl_version} -Provides: tex(t2acmsrbrx-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbrx.tfm) = %{tl_version} -Provides: tex(t2acmsrbry-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbry.tfm) = %{tl_version} -Provides: tex(t2acmsrbsb-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbsb.tfm) = %{tl_version} -Provides: tex(t2acmsrbsr-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbsr.tfm) = %{tl_version} -Provides: tex(t2acmsrbss-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbss.tfm) = %{tl_version} -Provides: tex(t2acmsrbst-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbst.tfm) = %{tl_version} -Provides: tex(t2acmsrbtc-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbtc.tfm) = %{tl_version} -Provides: tex(t2acmsrbti-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbti.tfm) = %{tl_version} -Provides: tex(t2acmsrbtr-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbtr.tfm) = %{tl_version} -Provides: tex(t2acmsrbts-base.tfm) = %{tl_version} -Provides: tex(t2acmsrbts.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrb-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrb.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrc-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrc.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrd-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrd.tfm) = %{tl_version} -Provides: tex(ts1cmsrbri-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbri.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrr-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrr.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrs-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrs.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrx-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbrx.tfm) = %{tl_version} -Provides: tex(ts1cmsrbry-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbry.tfm) = %{tl_version} -Provides: tex(ts1cmsrbsb-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbsb.tfm) = %{tl_version} -Provides: tex(ts1cmsrbsr-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbsr.tfm) = %{tl_version} -Provides: tex(ts1cmsrbss-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbss.tfm) = %{tl_version} -Provides: tex(ts1cmsrbst-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbst.tfm) = %{tl_version} -Provides: tex(ts1cmsrbtc-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbtc.tfm) = %{tl_version} -Provides: tex(ts1cmsrbti-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbti.tfm) = %{tl_version} -Provides: tex(ts1cmsrbtr-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbtr.tfm) = %{tl_version} -Provides: tex(ts1cmsrbts-base.tfm) = %{tl_version} -Provides: tex(ts1cmsrbts.tfm) = %{tl_version} -Provides: tex(x2cmsrbrb-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbrb.tfm) = %{tl_version} -Provides: tex(x2cmsrbrc-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbrc.tfm) = %{tl_version} -Provides: tex(x2cmsrbrd-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbrd.tfm) = %{tl_version} -Provides: tex(x2cmsrbri-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbri.tfm) = %{tl_version} -Provides: tex(x2cmsrbrr-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbrr.tfm) = %{tl_version} -Provides: tex(x2cmsrbrs-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbrs.tfm) = %{tl_version} -Provides: tex(x2cmsrbrx-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbrx.tfm) = %{tl_version} -Provides: tex(x2cmsrbry-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbry.tfm) = %{tl_version} -Provides: tex(x2cmsrbsb-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbsb.tfm) = %{tl_version} -Provides: tex(x2cmsrbsr-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbsr.tfm) = %{tl_version} -Provides: tex(x2cmsrbss-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbss.tfm) = %{tl_version} -Provides: tex(x2cmsrbst-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbst.tfm) = %{tl_version} -Provides: tex(x2cmsrbtc-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbtc.tfm) = %{tl_version} -Provides: tex(x2cmsrbti-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbti.tfm) = %{tl_version} -Provides: tex(x2cmsrbtr-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbtr.tfm) = %{tl_version} -Provides: tex(x2cmsrbts-base.tfm) = %{tl_version} -Provides: tex(x2cmsrbts.tfm) = %{tl_version} -Provides: tex(cmsrbrb.pfb) = %{tl_version} -Provides: tex(cmsrbrc.pfb) = %{tl_version} -Provides: tex(cmsrbrd.pfb) = %{tl_version} -Provides: tex(cmsrbri.pfb) = %{tl_version} -Provides: tex(cmsrbrr.pfb) = %{tl_version} -Provides: tex(cmsrbrs.pfb) = %{tl_version} -Provides: tex(cmsrbrx.pfb) = %{tl_version} -Provides: tex(cmsrbry.pfb) = %{tl_version} -Provides: tex(cmsrbsb.pfb) = %{tl_version} -Provides: tex(cmsrbsr.pfb) = %{tl_version} -Provides: tex(cmsrbss.pfb) = %{tl_version} -Provides: tex(cmsrbst.pfb) = %{tl_version} -Provides: tex(cmsrbtc.pfb) = %{tl_version} -Provides: tex(cmsrbti.pfb) = %{tl_version} -Provides: tex(cmsrbtr.pfb) = %{tl_version} -Provides: tex(cmsrbts.pfb) = %{tl_version} -Provides: tex(ot2cmsrbrb.vf) = %{tl_version} -Provides: tex(ot2cmsrbrc.vf) = %{tl_version} -Provides: tex(ot2cmsrbrd.vf) = %{tl_version} -Provides: tex(ot2cmsrbri.vf) = %{tl_version} -Provides: tex(ot2cmsrbrr.vf) = %{tl_version} -Provides: tex(ot2cmsrbrs.vf) = %{tl_version} -Provides: tex(ot2cmsrbrx.vf) = %{tl_version} -Provides: tex(ot2cmsrbry.vf) = %{tl_version} -Provides: tex(ot2cmsrbsb.vf) = %{tl_version} -Provides: tex(ot2cmsrbsr.vf) = %{tl_version} -Provides: tex(ot2cmsrbss.vf) = %{tl_version} -Provides: tex(ot2cmsrbst.vf) = %{tl_version} -Provides: tex(ot2cmsrbtc.vf) = %{tl_version} -Provides: tex(ot2cmsrbti.vf) = %{tl_version} -Provides: tex(ot2cmsrbtr.vf) = %{tl_version} -Provides: tex(ot2cmsrbts.vf) = %{tl_version} -Provides: tex(t1cmsrbrb.vf) = %{tl_version} -Provides: tex(t1cmsrbrc.vf) = %{tl_version} -Provides: tex(t1cmsrbrd.vf) = %{tl_version} -Provides: tex(t1cmsrbri.vf) = %{tl_version} -Provides: tex(t1cmsrbrr.vf) = %{tl_version} -Provides: tex(t1cmsrbrs.vf) = %{tl_version} -Provides: tex(t1cmsrbrx.vf) = %{tl_version} -Provides: tex(t1cmsrbry.vf) = %{tl_version} -Provides: tex(t1cmsrbsb.vf) = %{tl_version} -Provides: tex(t1cmsrbsr.vf) = %{tl_version} -Provides: tex(t1cmsrbss.vf) = %{tl_version} -Provides: tex(t1cmsrbst.vf) = %{tl_version} -Provides: tex(t1cmsrbtc.vf) = %{tl_version} -Provides: tex(t1cmsrbti.vf) = %{tl_version} -Provides: tex(t1cmsrbtr.vf) = %{tl_version} -Provides: tex(t1cmsrbts.vf) = %{tl_version} -Provides: tex(t2acmsrbrb.vf) = %{tl_version} -Provides: tex(t2acmsrbrc.vf) = %{tl_version} -Provides: tex(t2acmsrbrd.vf) = %{tl_version} -Provides: tex(t2acmsrbri.vf) = %{tl_version} -Provides: tex(t2acmsrbrr.vf) = %{tl_version} -Provides: tex(t2acmsrbrs.vf) = %{tl_version} -Provides: tex(t2acmsrbrx.vf) = %{tl_version} -Provides: tex(t2acmsrbry.vf) = %{tl_version} -Provides: tex(t2acmsrbsb.vf) = %{tl_version} -Provides: tex(t2acmsrbsr.vf) = %{tl_version} -Provides: tex(t2acmsrbss.vf) = %{tl_version} -Provides: tex(t2acmsrbst.vf) = %{tl_version} -Provides: tex(t2acmsrbtc.vf) = %{tl_version} -Provides: tex(t2acmsrbti.vf) = %{tl_version} -Provides: tex(t2acmsrbtr.vf) = %{tl_version} -Provides: tex(t2acmsrbts.vf) = %{tl_version} -Provides: tex(ts1cmsrbrb.vf) = %{tl_version} -Provides: tex(ts1cmsrbrc.vf) = %{tl_version} -Provides: tex(ts1cmsrbrd.vf) = %{tl_version} -Provides: tex(ts1cmsrbri.vf) = %{tl_version} -Provides: tex(ts1cmsrbrr.vf) = %{tl_version} -Provides: tex(ts1cmsrbrs.vf) = %{tl_version} -Provides: tex(ts1cmsrbrx.vf) = %{tl_version} -Provides: tex(ts1cmsrbry.vf) = %{tl_version} -Provides: tex(ts1cmsrbsb.vf) = %{tl_version} -Provides: tex(ts1cmsrbsr.vf) = %{tl_version} -Provides: tex(ts1cmsrbss.vf) = %{tl_version} -Provides: tex(ts1cmsrbst.vf) = %{tl_version} -Provides: tex(ts1cmsrbtc.vf) = %{tl_version} -Provides: tex(ts1cmsrbti.vf) = %{tl_version} -Provides: tex(ts1cmsrbtr.vf) = %{tl_version} -Provides: tex(ts1cmsrbts.vf) = %{tl_version} -Provides: tex(x2cmsrbrb.vf) = %{tl_version} -Provides: tex(x2cmsrbrc.vf) = %{tl_version} -Provides: tex(x2cmsrbrd.vf) = %{tl_version} -Provides: tex(x2cmsrbri.vf) = %{tl_version} -Provides: tex(x2cmsrbrr.vf) = %{tl_version} -Provides: tex(x2cmsrbrs.vf) = %{tl_version} -Provides: tex(x2cmsrbrx.vf) = %{tl_version} -Provides: tex(x2cmsrbry.vf) = %{tl_version} -Provides: tex(x2cmsrbsb.vf) = %{tl_version} -Provides: tex(x2cmsrbsr.vf) = %{tl_version} -Provides: tex(x2cmsrbss.vf) = %{tl_version} -Provides: tex(x2cmsrbst.vf) = %{tl_version} -Provides: tex(x2cmsrbtc.vf) = %{tl_version} -Provides: tex(x2cmsrbti.vf) = %{tl_version} -Provides: tex(x2cmsrbtr.vf) = %{tl_version} -Provides: tex(x2cmsrbts.vf) = %{tl_version} -Provides: tex(cmsrb.sty) = %{tl_version} -Provides: tex(ot2cmsrbr.fd) = %{tl_version} -Provides: tex(ot2cmsrbs.fd) = %{tl_version} -Provides: tex(ot2cmsrbt.fd) = %{tl_version} -Provides: tex(t1cmsrbr.fd) = %{tl_version} -Provides: tex(t1cmsrbs.fd) = %{tl_version} -Provides: tex(t1cmsrbt.fd) = %{tl_version} -Provides: tex(t2acmsrbr.fd) = %{tl_version} -Provides: tex(t2acmsrbs.fd) = %{tl_version} -Provides: tex(t2acmsrbt.fd) = %{tl_version} -Provides: tex(ts1cmsrbr.fd) = %{tl_version} -Provides: tex(ts1cmsrbs.fd) = %{tl_version} -Provides: tex(ts1cmsrbt.fd) = %{tl_version} -Provides: tex(x2cmsrbr.fd) = %{tl_version} -Provides: tex(x2cmsrbs.fd) = %{tl_version} -Provides: tex(x2cmsrbt.fd) = %{tl_version} - -%description cmsrb -This package provides provides Adobe Type 1 Computer Modern -fonts for the Serbian and Macedonian languages. Although the -cm-super package provides great support for cyrillic script in -various languages, there remains a problem with italic variants -of some letters for Serbian and Macedonian. This package -includes the correct shapes for italic letters \cyrb, \cyrg, -\cyrd, \cyrp, and \cyrt. It also offers some improvements in -letters and accents used in the Serbian language. Supported -encodings are: T1, T2A, TS1, X2 and OT2. The OT2 encoding is -modified so that it is now easy to transcribe Latin text to -Cyrillic. - -%package competences -Summary: Track skills of classroom checks -Version: svn47573 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(competences.sty) = %{tl_version} - -%description competences -This package is an attempt to track skills assessed during a -classroom check. Each question can be associated with one or -more skills and be assigned a number of points to be earned. At -the end of the text, a table set summarizes the skills -assessed, and in what proportions. - -%package context-handlecsv -Summary: Data merging for automatic document creation -Version: svn51306 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(t-handlecsv-extra.lua) = %{tl_version} -Provides: tex(t-handlecsv-tools.lua) = %{tl_version} -Provides: tex(t-handlecsv.lua) = %{tl_version} -Provides: tex(t-handlecsv.tex) = %{tl_version} - -%description context-handlecsv -The package handles csv data merging for automatic document -creation. - -%package correctmathalign -Summary: Correct spacing of the alignment in expressions -Version: svn44131 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(correctmathalign.sty) = %{tl_version} - -%description correctmathalign -This package realigns the horizontal spacing of the alignments -in some mathematical environments. - -%package cqubeamer -Summary: LaTeX Beamer Template for Chongqing University -Version: svn47630 -License: MIT and CC-BY -Requires: texlive-base texlive-kpathsea -Provides: tex(cqubeamer.sty) = %{tl_version} - -%description cqubeamer -This package provides a LaTeX beamer template designed for -researchers of Chongqing University. It can be used for -academic reports, conferences, or thesis defense, and can be -helpful for delivering a speech. It should be used with the -XeTeX engine. - -%package dejavu-otf -Summary: Support for the ttf and otf DejaVu fonts -Version: svn45991 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(dejavu-otf.sty) = %{tl_version} - -%description dejavu-otf -Package dejavu-otf supports the free ttf-fonts from the DejaVu -project which are available from GitHub or already part of your -system (Windows/Linux/...) and the OpenType version of the -TeXGyre Math, which is part of any TeX distribution. - -%package delimset -Summary: Typeset and declare sets of delimiters with convenient size control -Version: svn49544 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(delimset.sty) = %{tl_version} - -%description delimset -delimset is a LaTeX2e package to typeset and declare sets of -delimiters in math mode whose size can be adjusted -conveniently. - -%package diffcoeff -Summary: Write differential coefficients easily -Version: svn50320 -License: GPLv2 -Requires: texlive-base texlive-kpathsea -Provides: tex(diffcoeff.sty) = %{tl_version} -Provides: tex(diffcoeffx.sty) = %{tl_version} -Requires: texlive-l3kernel -Requires: texlive-l3packages - -%description diffcoeff -diffcoeff.sty allows the easy writing of ordinary and partial -differential coefficients of arbitrary order. For mixed partial -derivatives, the overall order (algebraic or numeric) is -calculated by the package. Optional arguments allow the easy -specification of a point of evaluation for ordinary -derivatives, or variables held constant for partial -derivatives, and the placement of the differentiand (in the -numerator or appended). Some tweaking of the display is -possible through key = value settings. Secondary commands -provide analogous coefficients constructed from D, \Delta and -\delta and a command for writing Jacobians. diffcoeffx.sty is -diffcoeff.sty 'on steroids', extending that package in ways -that are probably unnecessary but have a certain logical force. -The packages require the LaTeX3 bundles, l3kernel and -l3packages. - -%package dijkstra -Summary: Dijkstra algorithm for LaTeX -Version: svn45256 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(simplekv.sty) -Provides: tex(dijkstra.sty) = %{tl_version} - -%description dijkstra -This small package uses the Dijkstra algorithm for weighted -graphs,directed or not: the search table of the shortest path -can be displayed, the minimum distance between two vertices and -the corresponding path are stored in macros. This packages -depends on simplekv. - -%package dsserif -Summary: A double-struck serifed font for mathematical use -Version: svn47570 -License: OFL and LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(DSSerif-Bold.afm) = %{tl_version} -Provides: tex(DSSerif.afm) = %{tl_version} -Provides: tex(DSSerifUni-Bold.afm) = %{tl_version} -Provides: tex(DSSerifUni.afm) = %{tl_version} -Provides: tex(DSSerif.map) = %{tl_version} -Provides: tex(DSSerif-Bold.tfm) = %{tl_version} -Provides: tex(DSSerif.tfm) = %{tl_version} -Provides: tex(DSSerifUni-Bold.tfm) = %{tl_version} -Provides: tex(DSSerifUni.tfm) = %{tl_version} -Provides: tex(DSSerif-Bold.pfb) = %{tl_version} -Provides: tex(DSSerif.pfb) = %{tl_version} -Provides: tex(DSSerifUni-Bold.pfb) = %{tl_version} -Provides: tex(DSSerifUni.pfb) = %{tl_version} -Provides: tex(dsserif.sty) = %{tl_version} -Provides: tex(udsserif.fd) = %{tl_version} - -%description dsserif -DSSerif is a mathematical font package with double struck -serifed digits, upper and lower case letters, in regular and -bold weights. The design was inspired by the STIX double struck -fonts, which are sans serif, but starting from a Courier-like -base. - -%package emf -Summary: Support for the EMF symbol -Version: svn42023 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(emf.sty) = %{tl_version} - -%description emf -This package provides LaTeX support for the symbol for the EMF -in electric circuits and electrodynamics. It provides support -for multiple symbols but does not provide any fonts. The fonts -themselves must be acquired otherwise. However the fonts are -part of a normal TeX Live installation. - -%package endnotesj -Summary: Japanese-style endnotes -Version: svn47703 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(endnotesj.sty) = %{tl_version} - -%description endnotesj -This package provides customized styles for endnotes to be used -with Japanese documents. It can be used on pLaTeX, upLaTeX, and -LuaLaTeX (LuaTeX-ja). - -%package eqnnumwarn -Summary: Modifies the amsmath equation environments to warn for a displaced equation number -Version: svn45511 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(eqnnumwarn.sty) = %{tl_version} - -%description eqnnumwarn -Sometimes an equation is too long that an equation number will -be typeset below the equation itself, but yet not long enough -to yield an "overfull \hbox" warning. The eqnnumwarn package -modifies the standard amsmath numbered equation environments to -throw a warning whenever this occurs. - -%package erw-l3 -Summary: A bundle of small utilities built around expl3 -Version: svn48069 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(expl3.sty) -Provides: tex(erw-l3.sty) = %{tl_version} - -%description erw-l3 -Bundles LaTeX3 packages sharing the erw-l3 prefix. List of -packages in this bundle: compose: compose control sequences, -whether predefined or inline csutil: narrow purpose control -sequences (backend to other packages) disambig: wrapper around -\NewDocumentCommand to prevent name conflicts with external -cmds numbrdcs: numbered control sequences built from other -control sequences or inline - -%package etsvthor -Summary: Some useful abbreviations for members of e.t.s.v. Thor -Version: svn48186 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(etsvthor.sty) = %{tl_version} - -%description etsvthor -"e.t.s.v. Thor" stands for "Elektrotechnische Studievereniging -Thor", a study association of Electrical Engeering at the -Eindhoven University of Technology. The author of the package -tells us: "Most of our committees use LaTeX to create meeting -notes or other formal documents within the association. When -you create a lot of these documents (which I do a lot, since I -am currently the candidate Secretary of the new board), some -abbreviations are extremely useful. I discovered that more -people from our association are interested in using these, so I -decided to put them in a package, so they can use it very -easily too." - -%package euro-ce -Summary: Euro and CE sign font -Version: svn25714 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(ceit.mf) = %{tl_version} -Provides: tex(cemac.mf) = %{tl_version} -Provides: tex(cerm.mf) = %{tl_version} -Provides: tex(cesl.mf) = %{tl_version} -Provides: tex(eurobf.mf) = %{tl_version} -Provides: tex(eurobfit.mf) = %{tl_version} -Provides: tex(eurobfsl.mf) = %{tl_version} -Provides: tex(euroit.mf) = %{tl_version} -Provides: tex(euromac.mf) = %{tl_version} -Provides: tex(euroof.mf) = %{tl_version} -Provides: tex(eurorm.mf) = %{tl_version} -Provides: tex(eurosl.mf) = %{tl_version} -Provides: tex(eurosp.mf) = %{tl_version} -Provides: tex(ceit.tfm) = %{tl_version} -Provides: tex(cerm.tfm) = %{tl_version} -Provides: tex(cesl.tfm) = %{tl_version} -Provides: tex(eurobf.tfm) = %{tl_version} -Provides: tex(eurobfit.tfm) = %{tl_version} -Provides: tex(eurobfsl.tfm) = %{tl_version} -Provides: tex(euroit.tfm) = %{tl_version} -Provides: tex(euroof.tfm) = %{tl_version} -Provides: tex(eurorm.tfm) = %{tl_version} -Provides: tex(eurosl.tfm) = %{tl_version} -Provides: tex(eurosp.tfm) = %{tl_version} - -%description euro-ce -Metafont source for the symbols in several variants, designed -to fit with the Computer Modern-set text. - -%package exercisebank -Summary: Creating and managing exercises, and reusing them as composed sets -Version: svn50448 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(exercisebank.sty) = %{tl_version} - -%description exercisebank -This package makes it easier to maintain and edit your exercise -sets. Exercises are saved as separate files containing part -problems. These files can be used to make sets, and you can -cherry-pick or exclude certain part problems as you see fit. - -%package fduthesis -Summary: LaTeX thesis template for Fudan University -Version: svn50738 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(fdudoc.cls) = %{tl_version} -Provides: tex(fdulogo.sty) = %{tl_version} -Provides: tex(fduthesis-en.cls) = %{tl_version} -Provides: tex(fduthesis.cls) = %{tl_version} -Provides: tex(fduthesis.def) = %{tl_version} - -%description fduthesis -This package is a LaTeX thesis template package for Fudan -University. It can make it easy to write theses both in Chinese -and English. - -%package fnspe -Summary: Macros for supporting mainly students of FNSPE CTU in Prague -Version: svn45360 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(fnspe.sty) = %{tl_version} - -%description fnspe -This package is primary intended for students of FNSPE CTU in -Prague but many other students or scientists can found this -package as useful. This package implements different standards -of tensor notation, interval notation and complex notation. -Further many macros and shortcuts are added, e.q. for spaces, -operators, physics unit, etc. - -%package fontawesome5 -Summary: Font Awesome 5 with with LaTeX support -Version: svn51339 -License: OFL and LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(fa5brands0.enc) = %{tl_version} -Provides: tex(fa5brands1.enc) = %{tl_version} -Provides: tex(fa5free0.enc) = %{tl_version} -Provides: tex(fa5free1.enc) = %{tl_version} -Provides: tex(fa5free2.enc) = %{tl_version} -Provides: tex(fontawesome5.map) = %{tl_version} -Provides: tex(FontAwesome5Brands-Regular-400.otf) = %{tl_version} -Provides: tex(FontAwesome5Free-Regular-400.otf) = %{tl_version} -Provides: tex(FontAwesome5Free-Solid-900.otf) = %{tl_version} -Provides: tex(fa5brands0.tfm) = %{tl_version} -Provides: tex(fa5brands1.tfm) = %{tl_version} -Provides: tex(fa5free0regular.tfm) = %{tl_version} -Provides: tex(fa5free0solid.tfm) = %{tl_version} -Provides: tex(fa5free1regular.tfm) = %{tl_version} -Provides: tex(fa5free1solid.tfm) = %{tl_version} -Provides: tex(fa5free2regular.tfm) = %{tl_version} -Provides: tex(fa5free2solid.tfm) = %{tl_version} -Provides: tex(FontAwesome5BrandsRegular.pfb) = %{tl_version} -Provides: tex(FontAwesome5FreeRegular.pfb) = %{tl_version} -Provides: tex(FontAwesome5FreeSolid.pfb) = %{tl_version} -Provides: tex(fontawesome5-generic-helper.sty) = %{tl_version} -Provides: tex(fontawesome5-mapping.def) = %{tl_version} -Provides: tex(fontawesome5-utex-helper.sty) = %{tl_version} -Provides: tex(fontawesome5.lua) = %{tl_version} -Provides: tex(fontawesome5.sty) = %{tl_version} -Provides: tex(tufontawesomebrands.fd) = %{tl_version} -Provides: tex(tufontawesomefree.fd) = %{tl_version} -Provides: tex(tufontawesomepro.fd) = %{tl_version} -Provides: tex(ufontawesomebrands0.fd) = %{tl_version} -Provides: tex(ufontawesomebrands1.fd) = %{tl_version} -Provides: tex(ufontawesomefree0.fd) = %{tl_version} -Provides: tex(ufontawesomefree1.fd) = %{tl_version} -Provides: tex(ufontawesomefree2.fd) = %{tl_version} - -%description fontawesome5 -This package provides LaTeX support for the included "Font -Awesome 5 Free" icon set. These icons were designed by Fort -Awesome and released under the SIL OFL 1.1 license. The -commercial "Pro" version is also supported, if it is installed -and XeLaTeX or LuaLaTeX is used. - -%package formation-latex-ul -Summary: Introductory LaTeX course in French -Version: svn50205 -License: CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: texlive-formation-latex-ul-doc = %{epoch}:%{version}-%{release} -Obsoletes: texlive-formation-latex-ul-doc < 8:2018 - -%description formation-latex-ul -This package contains the supporting documentation, slides, -exercise files, and templates for an introductory LaTeX course -(in French) prepared for Universite Laval, Quebec, Canada. - -%package gatherenum -Summary: A crossover of align* and enumerate -Version: svn48051 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea -Requires: tex(enumitem.sty) -Requires: tex(expl3.sty) -Requires: tex(xparse.sty) -Provides: tex(gatherenum.sty) = %{tl_version} - -%description gatherenum -This package (ab)uses the inline enumeration capabilities of -enumitem to add a "displayed" enumeration mode, triggered by -adding 'gathered' to the key-value option list of the enumerate -environment. The end result is similar to a regular enumerate -environment wrapped in a multicols environment, with the -following advantages: Gathered enumerate can pack items -depending on their actual width rather than a fixed, constant -number per line. Gathered enumeration fills items in a -line-major order (instead of column-major order), which my -students found less confusing. YMMV. The package depends on -enumitem, expl3, and xparse, - -%package gbt7714 -Summary: BibTeX implementation of China's bibliography style standard GB/T 7714-2015 -Version: svn50504 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(gbt7714-2005-plain.bst) = %{tl_version} -Provides: tex(gbt7714-2005-unsrt.bst) = %{tl_version} -Provides: tex(gbt7714-plain.bst) = %{tl_version} -Provides: tex(gbt7714-unsrt.bst) = %{tl_version} -Provides: tex(gbt7714.sty) = %{tl_version} - -%description gbt7714 -The package provides a BibTeX implementation for the Chinese -national bibliography style standard GB/T 7714-2015. It -consists of two bst files for numerical and author-year styles -and a LaTeX package which provides the citation style defined -in the standard. It also support automatic language -recognization (Chinese and English) for each biblilography -entry and is designed to be fully compatible with natbib. - -%package gentombow -Summary: Generate Japanese-style crop marks -Version: svn51697 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(bounddvi.sty) = %{tl_version} -Provides: tex(gentombow.sty) = %{tl_version} -Provides: tex(pxgentombow.sty) = %{tl_version} - -%description gentombow -This bundle provides a LaTeX package for generating -Japanese-style crop marks (called 'tombow' in Japanese) for -practical use in self-publishing. The bundle contains the -following packages: gentombow.sty: Generate crop marks (called -'tombow' in Japanese) for practical use in self-publishing. It -provides the core 'tombow' feature if not available. -pxgentombow.sty: Superseded by gentombow.sty; kept for -compatibility only. bounddvi.sty: Set papersize special to DVI -file. Can be used on LaTeX/pLaTeX/upLaTeX (with DVI output -mode) with dvips or dvipdfmx drivers. - -%package gfsneohellenicmath -Summary: A Greek math font in the Neo-Hellenic style -Version: svn46869 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(gfsneohellenicot.sty) = %{tl_version} -Provides: tex(GFSNeohellenicMath.otf) = %{tl_version} - -%description gfsneohellenicmath -The GFSNeohellenic font, a historic font first designed by -Victor Scholderer, and digitized by George Matthiopoulos of the -Greek Font Society (GFS), now has native support for -Mathematics. The project was commissioned to GFS by the -Department of Mathematics of the University of the Aegean, -Samos, Greece. The Math Table was constructed by the -Mathematics Professor A. Tsolomitis. A useful application is in -beamer documents since this is a Sans Math font. The -GFSNeohellenic fontfamily supports many languages (including -Greek), and it is distributed (both text and math) under the -OFL license. - -%package glossaries-finnish -Summary: Finnish language module for glossaries package -Version: svn45604 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(glossaries-finnish-ascii.ldf) = %{tl_version} -Provides: tex(glossaries-finnish-utf8.ldf) = %{tl_version} -Provides: tex(glossaries-finnish.ldf) = %{tl_version} - -%description glossaries-finnish -Finnish language module for glossaries package. - -%package gotoh -Summary: An implementation of the Gotoh sequence alignment algorithm -Version: svn44764 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(gotoh.sty) = %{tl_version} - -%description gotoh -This package calculates biological sequence alignment with the -Gotoh algorithm. The package also provides an interface to -control various settings including algorithm parameters. - -%package graph35 -Summary: Draw keys and screen items of several Casio calculators -Version: svn47522 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(graph35.sty) = %{tl_version} -Provides: tex(graph35-pixelart.sty) = %{tl_version} -Provides: tex(graph35-keys.sty) = %{tl_version} - -%description graph35 -This package defines commands to draw the Casio Graph 35 / -fx-9750GII calculator (and other models). It can draw the whole -calculator, or parts of it (individual keys, part of the -screen, etc.). It was written to typeset documents instructing -students how to use their calculator. - -%package graphicxpsd -Summary: Adobe Photoshop Data format (PSD) support for graphicx package -Version: svn46477 -License: MIT -Requires: texlive-base texlive-kpathsea -Requires: ImageMagick -Provides: tex(graphicxpsd.sty) = %{tl_version} - -%description graphicxpsd -This package provides Adobe Photoshop Data format (PSD) support -for graphicx package with sips (Darwin/macOS) / convert -(ImageMagick) command. - -%package hagenberg-thesis -Summary: A Collection of LaTeX classes, style files, and example documents for academic manuscripts -Version: svn51150 -License: CC-BY -Requires: texlive-base texlive-kpathsea -Provides: tex(hgb.sty) = %{tl_version} -Provides: tex(hgbabbrev.sty) = %{tl_version} -Provides: tex(hgbarticle.cls) = %{tl_version} -Provides: tex(hgbbib.sty) = %{tl_version} -Provides: tex(hgbheadings.sty) = %{tl_version} -Provides: tex(hgblistings.sty) = %{tl_version} -Provides: tex(hgbmath.sty) = %{tl_version} -Provides: tex(hgbreport.cls) = %{tl_version} -Provides: tex(hgbthesis.cls) = %{tl_version} - -%description hagenberg-thesis -This bundle contains a collection of modern LaTeX classes, -style files, and example documents for authoring Bachelor, -Master, or Diploma theses and related academic manuscripts in -English and German. Includes a comprehensive tutorial (in -German) with detailed instructions and authoring guidelines. - -%package handin -Summary: Light weight template for creating school submissions using LaTeX -Version: svn48255 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(handin.sty) = %{tl_version} - -%description handin -This package is for students creating school submissions using -LaTeX. It is especially suitable for math, physics, statistics -and the like. It can easily be used for creating exercises, -too. - -%package hulipsum -Summary: Hungarian dummy text (Lorum ipse) -Version: svn46803 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(hulipsum.sty) = %{tl_version} - -%description hulipsum -Lorem ipsum is an improper Latin filler dummy text, cf. the -lipsum package. It is commonly used for demonstrating the -textual elements of a document template. Lorum ipse is a -Hungarian variation of Lorem ipsum. (Lorum is a Hungarian card -game, and ipse is a Hungarian slang word meaning bloke.) With -this package you can typeset 150 paragraphs of Lorum ipse. All -paragraphs are taken with permission from -http://www.lorumipse.hu. Thanks to Lorum Ipse Lab (Viktor Nagy -and David Takacs) for their work. - -%package hyperbar -Summary: Add interactive Barcode fields to PDF forms -Version: svn48147 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(hyperbar.sty) = %{tl_version} - -%description hyperbar -The package extends the hyperref functionality for creating -interactive forms to allow adding Barcode form fields supported -by some modern PDF readers. Currently, only pdfTeX is -supported. - -%package includernw -Summary: Include .Rnw inside .tex -Version: svn47557 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: R-knitr -Provides: tex(includeRnw.sty) = %{tl_version} - -%description includernw -This package is for including .Rnw (knitr/sweave)-files inside -.tex-files. It requires that you have R and the R-package knitr -installed. - -%package intopdf -Summary: Embed non-PDF files into PDF with hyperlink -Version: svn51247 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(intopdf.sty) = %{tl_version} - -%description intopdf -The package allows to embed non-PDF files (e.g., BibTeX) into -PDF with a hyperlink. - -%package jnuexam -Summary: Exam class for Jinan University -Version: svn49212 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(jnuexam.cls) = %{tl_version} - -%description jnuexam -The package provides an exam class for Jinan University -(China). - -%package kanaparser -Summary: Kana parser for LuaTeX -Version: svn48052 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(kanaparser.lua) = %{tl_version} -Provides: tex(kanaparser.tex) = %{tl_version} - -%description kanaparser -The package provides a kana parser for LuaTeX. It is a set of 4 -macros that handle transliteration of text: from hiragana and -katakana to Latin from Latin and katakana to hiragana from -Latin and hiragana to katakana It can be used to write kana -directly using only the ASCII character set or for education -purposes. The package has support for obsolete and rarely used -syllables, some only accessible via the provided toggle macro. - -%package karnaugh-map -Summary: LaTeX package for drawing karnaugh maps with up to 6 variables -Version: svn44131 -License: CC-BY-SA -Requires: texlive-base texlive-kpathsea -Requires: tex(tikz.sty) -Requires: tex(xparse.sty) -Requires: tex(xstring.sty) -Provides: tex(karnaugh-map.sty) = %{tl_version} - -%description karnaugh-map -This package draws karnaugh maps with 2, 3, 4, 5, and 6 -variables. It also contains commands for filling the karnaugh -map with terms semi-automatically or manually. Last but not -least it contains commands for drawing implicants on top of the -map. This package depends on the TikZ, xparse, and xstring -packages. - -%package kurdishlipsum -Summary: A package similar to the lipsum and ptext packages for the Kurdish language -Version: svn47518 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(kurdishlipsum.sty) = %{tl_version} - -%description kurdishlipsum -This package provides lispum-like facilities for the Kurdish -language. This package gives you easy access to the Kurdish -poerty and balladry text of the Diwany Vafaiy, Ahmedy Xani, -Naly, Mahwy,.... The package needs to be run under XeLaTeX. - -%package labelschanged -Summary: Identify labels which cause endless "may have changed" warnings -Version: svn46040 -License: Public Domain -Requires: texlive-base texlive-kpathsea -Provides: tex(labelschanged.sty) = %{tl_version} - -%description labelschanged -Several conditions can cause LaTeX labels to keep changing, no -matter how many times a document is recompiled. This package -helps diagnose the cause of repeated "Label(s) may have -changed" warnings. The names and before/after definitions of -changing labels are printed at the end of each compile. -Multiply-defined labels are printed as well. - -%package latex-via-exemplos -Summary: A LaTeX course written in brazilian portuguese language -Version: svn48038 -License: GPLv2+ -Requires: texlive-base texlive-kpathsea - -%description latex-via-exemplos -This is a LaTeX2e course written in brazilian portuguese -language. - -%package lccaps -Summary: Lowercased (spaced) small capitals -Version: svn46432 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(lccaps.sty) = %{tl_version} - -%description lccaps -This little package serves the purpose of providing a uniform -method to use lowercased small capitals and spaced lowercased -small capitals. It relies on the iftex, textcase, and microtype -packages and comes with four new user macros: \textlcc, the -main feature: lowercased small capitals; \spacedcaps, a prefix -to small capitals text commands to slightly increase their -spacing; \textslcc and \textssc, which are shortcuts for -\spacedcaps\textlcc and \spacedcaps\textsc (accordingly). - -%package libertinus-otf -Summary: Support for Libertinus OpenType -Version: svn51277 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(libertinusmath-bold.otf) = %{tl_version} -Provides: tex(libertinusmono-bold.otf) = %{tl_version} -Provides: tex(libertinusmono-bolditalic.otf) = %{tl_version} -Provides: tex(libertinusmono-italic.otf) = %{tl_version} -Provides: tex(libertinussans-bolditalic.otf) = %{tl_version} -Provides: tex(libertinus-otf.sty) = %{tl_version} - -%description libertinus-otf -This package offers LuaLaTeX/XeLaTeX support for the Libertinus -OpenType fonts maintained by Khaled Hosny. Furthermore -math-bold, mono-bold, mono-oblique, and mono-bold-oblique font -styles are provided, which have been derived from the ones in -the libertinus package itself. The Libertinus fonts are -similiar to Libertine and Biolinum, but come with math symbols. - -%package llncsconf -Summary: LaTeX package extending Springer's llcns class -Version: svn46707 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(llncsconf.sty) = %{tl_version} - -%description llncsconf -The package extends Springer's llncs class for adding -additional notes describing the status of the paper (submitted, -accepted) as well as for creating author-archived versions that -include the references to the official version hosted by -Springer (as requested by the copyright transfer agreement for -Springer's LNCS series). - -%package longdivision -Summary: Long division arithmetic problems -Version: svn50586 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(xparse.sty) -Provides: tex(longdivision.sty) = %{tl_version} - -%description longdivision -This package solves long division problems and typesets the -solutions. The dividend must be a positive decimal number and -the divisor must be a positive integer. Repeating decimals is -handled correctly, putting a bar over the repeated part of the -decimal. Dividends up to 20 digits long are handled gracefully -(though the typeset result will take up about a page), and -dividends between 20 and 60 digits long slightly less -gracefully. The package defines two macros, \longdivision and -\intlongdivision. Each takes two arguments, a dividend and a -divisor. \longdivision keeps dividing until the remainder is -zero, or it encounters a repeated remainder. \intlongdivision -stops when the dividend stops (though the dividend doesn't have -to be an integer). This package depends on the xparse package -from the l3packages bundle. - -%package lualatex-truncate -Summary: A wrapper for using the truncate package with LuaLaTeX -Version: svn48469 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(lualatex-truncate.sty) = %{tl_version} - -%description lualatex-truncate -This package provides a wrapper for the truncate package, thus -fixing issues related to LuaTeX's hyphenation algorithm. - -%package luavlna -Summary: Prevent line breaks after single letter words, units, or adademic titles -Version: svn50993 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(luavlna-csplain-langs.lua) = %{tl_version} -Provides: tex(luavlna-langno.lua) = %{tl_version} -Provides: tex(luavlna-predegrees.lua) = %{tl_version} -Provides: tex(luavlna-presi.lua) = %{tl_version} -Provides: tex(luavlna-si.lua) = %{tl_version} -Provides: tex(luavlna-sufdegrees.lua) = %{tl_version} -Provides: tex(luavlna.4ht) = %{tl_version} -Provides: tex(luavlna.lua) = %{tl_version} -Provides: tex(luavlna.sty) = %{tl_version} - -%description luavlna -In some languages, like Czech or Polish, there should be no -single letter words at the end of a line, according to -typographical norms. This package handles such situations using -LuaTeX's callback mechanism. In doing this, the package can -detect languages used in the text and insert spaces only in -parts of the document where languages requiring this feature -are used. Another feature of this package is the inclusion of -non-breakable space after initials (like in personal names), -after or before academic degrees, and between numbers and -units. The package supports both plain LuaTeX and LuaLaTeX. -BTW: "vlna" is the Czech word for "wave" or "curl" and also -denotes the tilde which, in TeX, is used for "unbreakable -spaces". - -%package manyind -Summary: Provides support for many indexes -Version: svn49874 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(manyind.sty) = %{tl_version} - -%description manyind -This package provides support for many indexes, leaving all the -bookkeeping to LaTeX and makeindex. No extra programs or files -are needed. One runs latex and makeindex as if there is just -one index. In the main file one puts commands like -\setindex{main} to steer the flow. Some features of makeindex -may no longer work. - -%package mathfam256 -Summary: Extend math family up to 256 for pLaTeX/upLaTeX/Lamed -Version: svn46412 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(mathfam256.sty) = %{tl_version} - -%description mathfam256 -This package increases the upper limit of math symbols up to -256, using \omath... primitives. These primitives were -originally introduced in Omega and are currently available in -the following formats: pLaTeX (runs on e-pTeX), upLaTeX (runs -on e-upTeX), Lamed (runs on Aleph, successor of Omega). - -%package mathfixs -Summary: Fix various layout issues in math mode -Version: svn49547 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(mathfixs.sty) = %{tl_version} - -%description mathfixs -This is a LaTeX2e package to fix some odd behaviour in math -mode such as spacing around fractions and roots, math symbols -within bold text as well as capital Greek letters. It also adds -some related macros. - -%package mathfont -Summary: Use TrueType and OpenType fonts in math mode; compatible with XeTeX and LuaTeX -Version: svn51017 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(mathfont.sty) = %{tl_version} - -%description mathfont -The mathfont package provides a flexible interface for changing -the font of math mode characters. The package allows the user -to specify a default unicode font for each of six basic classes -of Latin and Greek characters, and it provides additional -support for unicode alphanumeric symbols. Crucially, mathfont -is compatible with both LuaLaTeX and XeLaTeX, and it provides -several font-loading commands that allow the user to change -fonts locally or for individual symbols within math mode. - -%package mathpunctspace -Summary: Control the space after punctuation in math expressions -Version: svn46754 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(mathpunctspace.sty) = %{tl_version} - -%description mathpunctspace -This package provides a mechanism to control the space after -commas and semicolons in mathematical expressions. - -%package mgltex -Summary: High-quality graphics from MGL scripts embedded in LaTeX documents -Version: svn41676 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(mgltex.sty) = %{tl_version} - -%description mgltex -This package allows you to create high-quality -publication-ready graphics directly from MGL scripts embedded -into your LaTeX document, using the MathGL library. Besides -following the LaTeX philosophy of allowing you to concentrate -on content rather than output (mglTeX takes care of producing -the output), mglTeX facilitates the maintenance of your -document, since both code for text and code for plots are -contained in a single file. MathGL. is a fast and efficient -library by Alexey Balakin for the creation of high-quality -publication-ready scientific graphics. Although it defines -interfaces for many programming languages, it also implements -its own scripting language, called MGL, which can be used -independently. - -%package milsymb -Summary: LaTeX package for TikZ based drawing of military symbols as per NATO APP-6(C) -Version: svn51566 -License: CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: tex(milsymb.sty) = %{tl_version} - -%description milsymb -The package offers commands to draw military symbols as per -NATO APP-6(C) https://www.awl.edu.pl/images/en/APP_6_C.pdf. It -has a set of commands for drawing all symbols found in the -document up to the control measures, as well as support for -custom non-standard symbols. Control measures are planned to be -included in a future release. - -%package minidocument -Summary: Creates miniature documents inside other LaTeX documents -Version: svn43752 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(minidocument.sty) = %{tl_version} - -%description minidocument -This package can be used to create miniature documents inside -other LaTeX documents. Inside the minidocument all features of -the outer vertical mode like page breaking, floats, marginpars, -etc. are available. - -%package modernposter -Summary: A modern LaTeX poster theme -Version: svn47269 -License: CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: tex(modernposter.cls) = %{tl_version} - -%description modernposter -This class extends the a0poster class in that it adds support -to easily create posters without the need for taking care of -the layout at all. It allows to use \maketitle to generate a -fancy header containing the title information and also provides -macros to position various different types of text boxes in a -two-column layout. The color scheme is inspired by the -metropolis beamer theme. - -%package modulus -Summary: A non-destructive modulus and integer quotient operator for TeX -Version: svn47599 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(modulus.sty) = %{tl_version} - -%description modulus -The package provides an easy way to take the remainder of a -division operation without destroying the values of the -counters containing the dividend and divisor. Also provides a -way to take the integer quotient of a division operation -without destroying the values of the counters containing the -dividend and divisor. A tiny but occasionally useful package, -when doing heavy TeX programming. - -%package morisawa -Summary: Enables selection of 5 standard Japanese fonts for pLaTeX + dvips -Version: svn46946 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(morisawa5.map) = %{tl_version} -Provides: tex(FutoGoB101-Bold-H.tfm) = %{tl_version} -Provides: tex(FutoGoB101-Bold-J.tfm) = %{tl_version} -Provides: tex(FutoGoB101-Bold-V.tfm) = %{tl_version} -Provides: tex(FutoMinA101-Bold-H.tfm) = %{tl_version} -Provides: tex(FutoMinA101-Bold-J.tfm) = %{tl_version} -Provides: tex(FutoMinA101-Bold-V.tfm) = %{tl_version} -Provides: tex(GothicBBB-Medium-H.tfm) = %{tl_version} -Provides: tex(GothicBBB-Medium-J.tfm) = %{tl_version} -Provides: tex(GothicBBB-Medium-V.tfm) = %{tl_version} -Provides: tex(Jun101-Light-H.tfm) = %{tl_version} -Provides: tex(Jun101-Light-J.tfm) = %{tl_version} -Provides: tex(Jun101-Light-V.tfm) = %{tl_version} -Provides: tex(Ryumin-Light-H.tfm) = %{tl_version} -Provides: tex(Ryumin-Light-J.tfm) = %{tl_version} -Provides: tex(Ryumin-Light-V.tfm) = %{tl_version} -Provides: tex(futogo-b-v.tfm) = %{tl_version} -Provides: tex(futogo-b.tfm) = %{tl_version} -Provides: tex(futomin-b-v.tfm) = %{tl_version} -Provides: tex(futomin-b.tfm) = %{tl_version} -Provides: tex(gtbbb-m-v.tfm) = %{tl_version} -Provides: tex(gtbbb-m.tfm) = %{tl_version} -Provides: tex(jun101-l-v.tfm) = %{tl_version} -Provides: tex(jun101-l.tfm) = %{tl_version} -Provides: tex(ryumin-l-v.tfm) = %{tl_version} -Provides: tex(ryumin-l.tfm) = %{tl_version} -Provides: tex(FutoGoB101-Bold-H.vf) = %{tl_version} -Provides: tex(FutoGoB101-Bold-J.vf) = %{tl_version} -Provides: tex(FutoGoB101-Bold-V.vf) = %{tl_version} -Provides: tex(FutoMinA101-Bold-H.vf) = %{tl_version} -Provides: tex(FutoMinA101-Bold-J.vf) = %{tl_version} -Provides: tex(FutoMinA101-Bold-V.vf) = %{tl_version} -Provides: tex(GothicBBB-Medium-H.vf) = %{tl_version} -Provides: tex(GothicBBB-Medium-J.vf) = %{tl_version} -Provides: tex(GothicBBB-Medium-V.vf) = %{tl_version} -Provides: tex(Jun101-Light-H.vf) = %{tl_version} -Provides: tex(Jun101-Light-J.vf) = %{tl_version} -Provides: tex(Jun101-Light-V.vf) = %{tl_version} -Provides: tex(Ryumin-Light-H.vf) = %{tl_version} -Provides: tex(Ryumin-Light-J.vf) = %{tl_version} -Provides: tex(Ryumin-Light-V.vf) = %{tl_version} -Provides: tex(morisawa.sty) = %{tl_version} - -%description morisawa -The package enables selection of 5 standard Japanese fonts for -pLaTeX + dvips. It was originally written by Haruhiko Okumura -as part of jsclasses bundle, and the TFM/VF files were -previously distributed as part of the ptex-fonts package. - -%package mptrees -Summary: Probability trees with MetaPost -Version: svn44453 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(mptrees.mp) = %{tl_version} - -%description mptrees -This package provides MetaPost tools for drawing simple -probability trees. One command and several parameters to -control the output are provided. - -%package musikui -Summary: Easy creation of "arithmetical restoration" puzzles -Version: svn47472 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(graphicx.sty) -Provides: tex(musikui.sty) = %{tl_version} - -%description musikui -This package permits to easily typeset arithmetical -longdesc restorations using LaTeX. This package requires the graphicx -longdesc package. - -%package nicematrix -Summary: Several features to improve the typesetting of mathematical matrices with TikZ -Version: svn51680 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(nicematrix.sty) = %{tl_version} - -%description nicematrix -This package provides new environments similar to the -environments matrix, pmatrix, bmatrix, etc. of amsmath and -mathtools. In these new environments, a TikZ node is created -for each cell of the matrix. The user can use these nodes -directly but nicematrix also provides commands which use these -nodes to draw continuous dotted lines from two cells of the -matrix (the result is more aesthetic than the classical result -obtained using \cdots, \vdots, \ddots, etc.). This package also -provides a control over the width of the columns and the -possibility to add an exterior line and an exterior column. - -%package nidanfloat -Summary: Bottom placement option for double float in two column mode (nidan-kumi) -Version: svn48295 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(nidanfloat.sty) = %{tl_version} - -%description nidanfloat -This package enables a bottom placement option for double -floats in two column mode (nidan-kumi). It was originally part -of the Japanese pLaTeX bundle and is now distributed as a -separate package because it supports all LaTeX formats. - -%package notex-bst -Summary: A BibTeX style that outputs HTML -Version: svn42361 -License: Public Domain -Requires: texlive-base texlive-kpathsea -Provides: tex(noTeX.bst) = %{tl_version} - -%description notex-bst -noTeX.bst produces a number of beautifully formatted HTML P -elements instead of TeX code. It can be used to automatically -generate bibliographies to be served on the web starting from -BibTeX files. - -%package onedown -Summary: Typeset Bridge Diagrams -Version: svn50104 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(ODw-danish.trsl) = %{tl_version} -Provides: tex(ODw-dutch.trsl) = %{tl_version} -Provides: tex(ODw-english.trsl) = %{tl_version} -Provides: tex(ODw-fallback.trsl) = %{tl_version} -Provides: tex(ODw-french.trsl) = %{tl_version} -Provides: tex(ODw-german.trsl) = %{tl_version} -Provides: tex(ODw-norwegian.trsl) = %{tl_version} -Provides: tex(ODw-swedish.trsl) = %{tl_version} -Provides: tex(ODw-turkish.trsl) = %{tl_version} -Provides: tex(onedown.sty) = %{tl_version} - -%description onedown -This is a comprehensive package to draw all sorts of bridge -diagrams, including hands (stand alone or arround a compass), -bidding tables (stand alone or in connection with -hands/compass), trick tables, and expert quizzes. Features: -Works for all fontsizes from \ssmall to \HUGE. Different fonts -for hands, bidding diagrams, compass, etc. are possible. -Annotations to card and bidding diagrams. Automated check on -consistency of suit and hands. Multilingual output of bridge -terms. Extensive documentation: User manual, Reference manual, -and Examples. - -%package oplotsymbl -Summary: Some symbols which are not easily available -Version: svn44951 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(tikz.sty) -Requires: tex(xcolor.sty) -Provides: tex(oplotsymbl.sty) = %{tl_version} - -%description oplotsymbl -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. - -%package outlining -Summary: Create outlines for scientific documents -Version: svn45601 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(outlining.sty) = %{tl_version} - -%description outlining -Every scientific document requires outlining before it is -written. This package adds simple macros for your LaTeX -document. - -%package overlays -Summary: Incremental slides -Version: svn46122 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(xcolor.sty) -Requires: tex(environ.sty) -Requires: tex(pgffor.sty) -Provides: tex(overlays.sty) = %{tl_version} - -%description overlays -The overlay package allows to write presentations with -incremental slides. It does not presuppose any specific -document class. Rather, it is a lightweight alternative to -full-fledged presentation classes like beamer. The package -requires xcolor, environ, and pgffor (from the pgf bundle). - -%package padcount -Summary: Pad numbers with arbitrary characters -Version: svn47621 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(padcount.sty) = %{tl_version} - -%description padcount -This package provides some simple macros which will pad numbers -(or, indeed, any expanded token) with your choice of character -(defaulting to "0") to your choice of number of places -(defaults to "2"). This works not only on arabic numerals, but -on any expanded list of tokens passed to it. This makes it -suitable for, among other things, counters of all kinds. - -%package pdfoverlay -Summary: A LaTeX style for overlaying text on a PDF -Version: svn47657 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(xparse.sty) -Requires: tex(everypage.sty) -Requires: tex(pdfpages.sty) -Provides: tex(pdfoverlay.sty) = %{tl_version} - -%description pdfoverlay -It is often desirable to take an exisiting PDF and easily add -annotations or text overlaying the PDF. This might arise if you -wish to add comments to a PDF, fill in a PDF form, or add text -to a PDF where space has been left for notes. This package -provides a simple interface to do this without having to resort -to inserting one page at a time. Some or all of the pages of -the PDF can be included and not all pages of the PDF need have -overlayed text. It is also possible to include text between -pages of the PDF. Another advantage of this package is that the -overlayed text can be set as normal flowing from one page to -another or with manual page breaks if you wish. It is also -possible to use any standard method to position text at -arbitrary places on a given page. This package depends on -xparse, everypage, and pdfpages. - -%package pdfpc-movie -Summary: Pdfpc viewer-compatible hyperlinks to movies -Version: svn48245 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(etoolbox.sty) -Requires: tex(hyperref.sty) -Requires: tex(pgfkeys.sty) -Requires: pdfpc -Provides: tex(pdfpc-movie.sty) = %{tl_version} - -%description pdfpc-movie -This LaTeX2e package provides a command \pdfpcmovie for -embedding (hyperlinking) movies in a way compatible with the -PDF Presenter Console (pdfpc), a GPL2-licensed multi-monitor -PDF presentation viewer application available on GitHub and -shipped with some LINUX distributions such as Debian, Fedora, -and Arch. The package depends on etoolbox, hyperref, and -pgfkeys. - -%package pdfprivacy -Summary: A LaTeX package to remove or suppress pdf meta-data -Version: svn45985 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pdfprivacy.sty) = %{tl_version} - -%description pdfprivacy -Creating pdfs with pdfLaTeX populates several pdf meta-data -fields such as date/time of creation/modification, information -about the LaTeX installation (e.g., pdfTeX version), and the -relative paths of included pdfs. The pdfprivacy package -provides support for emptying several of these pdf meta-data -fields as well as suppressing some pdfTeX meta-data entries in -the resulting pdf. - -%package penrose -Summary: A TikZ library for producing Penrose tilings -Version: svn48202 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tikzlibrarypenrose.code.tex) = %{tl_version} - -%description penrose -This package provides a TikZ library for drawing Penrose tiles. -It currently supports the kite/dart, rhombus, and pentagon tile -sets. There are two main methods for their placement: one that -automatically generates a tiling, and one that allows for "by -hand" placement. Furthermore, the tiles themselves can be -deformed and will still (hopefully!) fit together in the -correct fashion. - -%package pgfornament-han -Summary: pgfornament library for Chinese traditional motifs and patterns -Version: svn51719 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(beamerthemeHeavenlyClouds.sty) = %{tl_version} -Provides: tex(beamerthemeXiaoshan.sty) = %{tl_version} -Provides: tex(cncolours.sty) = %{tl_version} -Provides: tex(han1.pgf) = %{tl_version} -Provides: tex(han10.pgf) = %{tl_version} -Provides: tex(han11.pgf) = %{tl_version} -Provides: tex(han12.pgf) = %{tl_version} -Provides: tex(han13.pgf) = %{tl_version} -Provides: tex(han14.pgf) = %{tl_version} -Provides: tex(han15.pgf) = %{tl_version} -Provides: tex(han16.pgf) = %{tl_version} -Provides: tex(han17.pgf) = %{tl_version} -Provides: tex(han18.pgf) = %{tl_version} -Provides: tex(han19.pgf) = %{tl_version} -Provides: tex(han2.pgf) = %{tl_version} -Provides: tex(han20.pgf) = %{tl_version} -Provides: tex(han21.pgf) = %{tl_version} -Provides: tex(han22.pgf) = %{tl_version} -Provides: tex(han23.pgf) = %{tl_version} -Provides: tex(han24.pgf) = %{tl_version} -Provides: tex(han25.pgf) = %{tl_version} -Provides: tex(han26.pgf) = %{tl_version} -Provides: tex(han27.pgf) = %{tl_version} -Provides: tex(han28.pgf) = %{tl_version} -Provides: tex(han29.pgf) = %{tl_version} -Provides: tex(han3.pgf) = %{tl_version} -Provides: tex(han30.pgf) = %{tl_version} -Provides: tex(han31.pgf) = %{tl_version} -Provides: tex(han32.pgf) = %{tl_version} -Provides: tex(han33.pgf) = %{tl_version} -Provides: tex(han34.pgf) = %{tl_version} -Provides: tex(han35.pgf) = %{tl_version} -Provides: tex(han36.pgf) = %{tl_version} -Provides: tex(han37.pgf) = %{tl_version} -Provides: tex(han38.pgf) = %{tl_version} -Provides: tex(han39.pgf) = %{tl_version} -Provides: tex(han4.pgf) = %{tl_version} -Provides: tex(han40.pgf) = %{tl_version} -Provides: tex(han41.pgf) = %{tl_version} -Provides: tex(han42.pgf) = %{tl_version} -Provides: tex(han43.pgf) = %{tl_version} -Provides: tex(han44.pgf) = %{tl_version} -Provides: tex(han45.pgf) = %{tl_version} -Provides: tex(han46.pgf) = %{tl_version} -Provides: tex(han47.pgf) = %{tl_version} -Provides: tex(han48.pgf) = %{tl_version} -Provides: tex(han49.pgf) = %{tl_version} -Provides: tex(han5.pgf) = %{tl_version} -Provides: tex(han50.pgf) = %{tl_version} -Provides: tex(han51.pgf) = %{tl_version} -Provides: tex(han52.pgf) = %{tl_version} -Provides: tex(han53.pgf) = %{tl_version} -Provides: tex(han54.pgf) = %{tl_version} -Provides: tex(han55.pgf) = %{tl_version} -Provides: tex(han56.pgf) = %{tl_version} -Provides: tex(han57.pgf) = %{tl_version} -Provides: tex(han58.pgf) = %{tl_version} -Provides: tex(han59.pgf) = %{tl_version} -Provides: tex(han6.pgf) = %{tl_version} -Provides: tex(han60.pgf) = %{tl_version} -Provides: tex(han61.pgf) = %{tl_version} -Provides: tex(han62.pgf) = %{tl_version} -Provides: tex(han63.pgf) = %{tl_version} -Provides: tex(han64.pgf) = %{tl_version} -Provides: tex(han65.pgf) = %{tl_version} -Provides: tex(han66.pgf) = %{tl_version} -Provides: tex(han67.pgf) = %{tl_version} -Provides: tex(han68.pgf) = %{tl_version} -Provides: tex(han69.pgf) = %{tl_version} -Provides: tex(han7.pgf) = %{tl_version} -Provides: tex(han70.pgf) = %{tl_version} -Provides: tex(han71.pgf) = %{tl_version} -Provides: tex(han72.pgf) = %{tl_version} -Provides: tex(han73.pgf) = %{tl_version} -Provides: tex(han74.pgf) = %{tl_version} -Provides: tex(han75.pgf) = %{tl_version} -Provides: tex(han76.pgf) = %{tl_version} -Provides: tex(han77.pgf) = %{tl_version} -Provides: tex(han8.pgf) = %{tl_version} -Provides: tex(han9.pgf) = %{tl_version} -Provides: tex(pgflibraryhan.code.tex) = %{tl_version} -Provides: tex(pgfornament-han.sty) = %{tl_version} - -%description pgfornament-han -This package provides a pgfornament library for Chinese -traditional motifs and patterns. The command \pgfornamenthan -takes the same options as \pgfornament from the pgfornament -package, but renders Chinese traditional motifs instead. The -list of supported motifs, as well as some examples, can be -found in the accompanying documentation. - -%package pixelart -Summary: A package to draw pixel-art pictures -Version: svn46740 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pixelart.sty) = %{tl_version} - -%description pixelart -A LaTeX package to draw single-color pixel-art pictures using -TikZ. - -%package plantuml -Summary: Support for rendering UML diagrams using the syntax and tool of PlantUML -Version: svn47924 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(plantuml.lua) = %{tl_version} -Provides: tex(plantuml.sty) = %{tl_version} - -%description plantuml -The package provides support for rendering UML diagrams using -the syntax and tools of PlantUML. The PlantUML syntax is very -short and thus enables quickly specifying UML diagrams. Using -dot, PlantUML layouts the diagrams. - -%package plex -Summary: Support for IBM Plex fonts -Version: svn51295 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(plx_3iickh.enc) = %{tl_version} -Provides: tex(plx_6tuc4c.enc) = %{tl_version} -Provides: tex(plx_ankagf.enc) = %{tl_version} -Provides: tex(plx_be3ach.enc) = %{tl_version} -Provides: tex(plx_dqgnwu.enc) = %{tl_version} -Provides: tex(plx_eofykt.enc) = %{tl_version} -Provides: tex(plx_errukl.enc) = %{tl_version} -Provides: tex(plx_i5ra6t.enc) = %{tl_version} -Provides: tex(plx_its57d.enc) = %{tl_version} -Provides: tex(plx_jmvqu6.enc) = %{tl_version} -Provides: tex(plx_m2a4iq.enc) = %{tl_version} -Provides: tex(plx_mlp3up.enc) = %{tl_version} -Provides: tex(plx_nhokty.enc) = %{tl_version} -Provides: tex(plx_ojqnwd.enc) = %{tl_version} -Provides: tex(plx_oqvkyq.enc) = %{tl_version} -Provides: tex(plx_pkz4m6.enc) = %{tl_version} -Provides: tex(plx_til3jj.enc) = %{tl_version} -Provides: tex(plx_tire4t.enc) = %{tl_version} -Provides: tex(plx_toaz2j.enc) = %{tl_version} -Provides: tex(plx_wvtw5j.enc) = %{tl_version} -Provides: tex(plx_xl2q4z.enc) = %{tl_version} -Provides: tex(plx_y64dew.enc) = %{tl_version} -Provides: tex(plex.map) = %{tl_version} -Provides: tex(IBMPlexMono-Bold.otf) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic.otf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight.otf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic.otf) = %{tl_version} -Provides: tex(IBMPlexMono-Italic.otf) = %{tl_version} -Provides: tex(IBMPlexMono-Light.otf) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic.otf) = %{tl_version} -Provides: tex(IBMPlexMono-Medium.otf) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic.otf) = %{tl_version} -Provides: tex(IBMPlexMono-Regular.otf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold.otf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic.otf) = %{tl_version} -Provides: tex(IBMPlexMono-Text.otf) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic.otf) = %{tl_version} -Provides: tex(IBMPlexMono-Thin.otf) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSans-Bold.otf) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight.otf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSans-Italic.otf) = %{tl_version} -Provides: tex(IBMPlexSans-Light.otf) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSans-Medium.otf) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSans-Regular.otf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold.otf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSans-Text.otf) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSans-Thin.otf) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-Bold.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-BoldItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-ExtraLight.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-ExtraLightItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-Italic.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-Light.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-LightItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-Medium.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-MediumItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-Regular.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-SemiBold.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-SemiBoldItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-Text.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-TextItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-Thin.otf) = %{tl_version} -Provides: tex(IBMPlexSansCondensed-ThinItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-Light.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-Regular.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-Text.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin.otf) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic.otf) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-sup-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-sup-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-sup-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-sup-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-ly1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-ot1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-t1.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-ts1.tfm) = %{tl_version} -Provides: tex(IBMPlexMono-Bold.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-Italic.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-Light.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-Medium.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-Regular.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-Text.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-Thin.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-Bold.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-Italic.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-Light.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-Medium.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-Regular.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-Text.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-Thin.pfb) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-Regular.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin.pfb) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-Light.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-Regular.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-Text.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin.pfb) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic.pfb) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Light-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Light-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-MediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-SemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Text-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Text-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Text-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-TextItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-Thin-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-ThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexMono-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Light-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Light-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-MediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-SemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Text-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Text-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Text-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-TextItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-Thin-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-ThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSans-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-MediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-SemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Text-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-TextItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-Thin-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-ThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSansCond-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-MediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-SemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Text-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-TextItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-Thin-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-ThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-sup-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-sup-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-ly1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-t1.vf) = %{tl_version} -Provides: tex(IBMPlexSerif-tlf-ts1.vf) = %{tl_version} -Provides: tex(LY1IBMPlexMono-Sup.fd) = %{tl_version} -Provides: tex(LY1IBMPlexMono-TLF.fd) = %{tl_version} -Provides: tex(LY1IBMPlexSans-Sup.fd) = %{tl_version} -Provides: tex(LY1IBMPlexSans-TLF.fd) = %{tl_version} -Provides: tex(LY1IBMPlexSansCondensed-Sup.fd) = %{tl_version} -Provides: tex(LY1IBMPlexSansCondensed-TLF.fd) = %{tl_version} -Provides: tex(LY1IBMPlexSerif-Sup.fd) = %{tl_version} -Provides: tex(LY1IBMPlexSerif-TLF.fd) = %{tl_version} -Provides: tex(OT1IBMPlexMono-Sup.fd) = %{tl_version} -Provides: tex(OT1IBMPlexMono-TLF.fd) = %{tl_version} -Provides: tex(OT1IBMPlexSans-Sup.fd) = %{tl_version} -Provides: tex(OT1IBMPlexSans-TLF.fd) = %{tl_version} -Provides: tex(OT1IBMPlexSansCondensed-Sup.fd) = %{tl_version} -Provides: tex(OT1IBMPlexSansCondensed-TLF.fd) = %{tl_version} -Provides: tex(OT1IBMPlexSerif-Sup.fd) = %{tl_version} -Provides: tex(OT1IBMPlexSerif-TLF.fd) = %{tl_version} -Provides: tex(T1IBMPlexMono-Sup.fd) = %{tl_version} -Provides: tex(T1IBMPlexMono-TLF.fd) = %{tl_version} -Provides: tex(T1IBMPlexSans-Sup.fd) = %{tl_version} -Provides: tex(T1IBMPlexSans-TLF.fd) = %{tl_version} -Provides: tex(T1IBMPlexSansCondensed-Sup.fd) = %{tl_version} -Provides: tex(T1IBMPlexSansCondensed-TLF.fd) = %{tl_version} -Provides: tex(T1IBMPlexSerif-Sup.fd) = %{tl_version} -Provides: tex(T1IBMPlexSerif-TLF.fd) = %{tl_version} -Provides: tex(TS1IBMPlexMono-TLF.fd) = %{tl_version} -Provides: tex(TS1IBMPlexSans-TLF.fd) = %{tl_version} -Provides: tex(TS1IBMPlexSansCondensed-TLF.fd) = %{tl_version} -Provides: tex(TS1IBMPlexSerif-TLF.fd) = %{tl_version} -Provides: tex(plex-mono.sty) = %{tl_version} -Provides: tex(plex-sans.sty) = %{tl_version} -Provides: tex(plex-serif.sty) = %{tl_version} - -%description plex -The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -support for the IBM Plex families of fonts. Serif, Sans and -Mono families are available in eight weights: Regular, Light, -ExtraLight, Thin, Bold, Text, Medium and SemiBold (with -corresponding italics). - -%package plex-otf -Summary: Support for the OpenType font IBM Plex -Version: svn47562 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(plex-otf.sty) = %{tl_version} - -%description plex-otf -This package supports the free otf fonts from the IBM Plex -project which are available from GitHub or already part of your -system (Windows/Linux/...). This package supports only XeLaTeX -or LuaLaTeX; for pdfLaTeX use plex-mono.sty, plex-sans.sty, -and/or plex-serif.sty from the plex package. IBM Plex has no -math symbols. You will have to use one of the existing math -fonts if you need them. - -%package pm-isomath -Summary: Poor man ISO math for pdfLaTeX users -Version: svn46402 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pm-isomath.sty) = %{tl_version} - -%description pm-isomath -This small package realizes a poor man approximation of the ISO -regulations for physical sciences and technology. Contrary to -other more elegant solutions, it does not load any math -alphabet, since pdfLaTeX can use only a maximum of such -alphabets. The necessary user macros are defined for typsetting -common math symbols that require specia ISO treatement. - -%package polexpr -Summary: A parser for polynomial expressions -Version: svn50013 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(polexpr.sty) = %{tl_version} - -%description polexpr -The package provides \poldef: a parser for polynomial -expressions based upon the \xintdeffunc mechanism of the -package xintexpr. The parsed expressions use the operations of -algebra (inclusive of composition of functions) with standard -operators, fractional numbers (possibly in scientific notation) -and previously defined polynomial functions or other constructs -as recognized by the \xintexpr numerical parser. The -polynomials are then not only genuine \xintexpr numerical -functions but additionally are also known to the package via -their coefficients. This allows dedicated macros to implement -polynomial algorithmics. - -%package postage -Summary: stamp letters with >>Deutsche Post<<'s service >>Internetmarke<< -Version: svn47893 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(postage.sty) = %{tl_version} - -%description postage -The postage package is used for franking letters with ->>Deutsche Post<<'s online postage service >>Internetmarke<<. -Note that in order to print valid stamps you must point to a -valid PDF of >>Deutsche Post<<'s >>Ausdruck 4-spaltig (DIN -A4)<<. - -%package powerdot-tuliplab -Summary: A style package for Powerdot to provide the design of TULIP Lab -Version: svn47963 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tulip-logo.eps) = %{tl_version} -Provides: tex(tulip-wordmark.eps) = %{tl_version} -Provides: tex(tulip.eps) = %{tl_version} -Provides: tex(tulip-wordmark0.eps) = %{tl_version} -Provides: tex(tulip-wordmark1.eps) = %{tl_version} -Provides: tex(tulip0.eps) = %{tl_version} -Provides: tex(tulip1.eps) = %{tl_version} -Provides: tex(tulip2.eps) = %{tl_version} -Provides: tex(tulip3.eps) = %{tl_version} -Provides: tex(powerdot-tuliplab.sty) = %{tl_version} - -%description powerdot-tuliplab -powerdot-tuliplab is the LaTeX package used in TULIP Lab for -presentation drafting. It comes with several sample .tex files -so that you can quickly start working with it. - -%package pst-antiprism -Summary: A PSTricks related package which draws an antiprism -Version: svn46643 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-antiprism.pro) = %{tl_version} -Provides: tex(pst-antiprism.tex) = %{tl_version} -Provides: tex(pst-antiprism.sty) = %{tl_version} - -%description pst-antiprism -pst-antiprism is a PSTricks related package which draws an -antiprism, which is a semiregular polyhedron constructed with -2-gons and triangles. - -%package pst-calculate -Summary: Support for floating point operations at LaTeX level -Version: svn49817 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(expl3.sty) -Requires: tex(siunitx.sty) -Requires: tex(xkeyval.sty) -Requires: tex(xparse.sty) -Provides: tex(pst-calculate.sty) = %{tl_version} - -%description pst-calculate -This package provides an interface to the LaTeX3 floating point -unit (part of expl3), mainly used for PSTricks related packages -to allow math expressions at LaTeX level. siunitx is used for -formatting the calculated number. The package also depends on -xkeyval and xparse. - -%package pst-contourplot -Summary: Draw implicit functions using the "marching squares" algorithm -Version: svn48230 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-contourplot.tex) = %{tl_version} -Provides: tex(pst-contourplot.sty) = %{tl_version} - -%description pst-contourplot -This package allows to draw implicit functions "f(x,y) = 0" -with options for coloring the inside of the surfaces, for -marking the points and arrowing the curve at points chosen by -the user. The package uses the "marching squares" algorithm. - -%package pst-dart -Summary: Plotting dart boards -Version: svn46579 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-dart.sty) = %{tl_version} -Provides: tex(pst-dart.tex) = %{tl_version} - -%description pst-dart -pst-dart is a PSTricks related package and draws Dart Boards. -Optional arguments are the unit and the fontsize. - -%package pst-spinner -Summary: Drawing a fidget spinner -Version: svn44507 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-spinner.sty) = %{tl_version} -Provides: tex(pst-spinner.tex) = %{tl_version} - -%description pst-spinner -This package aims to propose a model of the fidget spinner -gadget. It exists under different forms with 2, 3 poles and -even more. We chose the most popular model: the triple Fidget -Spinner. You can run the PSTricks related documents with -XeLaTeX. - -%package pythonhighlight -Summary: Highlighting of Python code, based on the listings package -Version: svn43191 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(pythonhighlight.sty) = %{tl_version} - -%description pythonhighlight -Highlighting of Python code, based on the listings package. - -%package revquantum -Summary: Hacks to make writing quantum papers for revtex4-1 less painful -Version: svn43505 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(revquantum.sty) = %{tl_version} - -%description revquantum -This package provides a number of useful hacks to solve common -annoyances with the revtex4-1 package, and to define notation -in common use within quantum information. In doing so, it -imports and configures a number of commonly-available and used -packages, and where reasonable, provides fallbacks. It also -warns when users try to load packages which are known to be -incompatible with revtex4-1. - -%package scientific-thesis-cover -Summary: Provides cover page and affirmation at the end of a thesis -Version: svn47923 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(scientific-thesis-cover.sty) = %{tl_version} - -%description scientific-thesis-cover -Institutions require a cover page and an affirmation at the end -of a thesis. This package provides both. - -%package scratchx -Summary: Include Scratch programs in LaTeX documents -Version: svn44906 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(calc.sty) -Requires: tex(fp.sty) -Requires: tex(ifsym.sty) -Requires: tex(multido.sty) -Requires: tex(tikz.sty) -Requires: tex(xargs.sty) -Requires: tex(xstring.sty) -Provides: tex(ScratchX.sty) = %{tl_version} - -%description scratchx -This package can be used to include every kind of Scratch -program in LaTeX documents. This may be particularly useful for -Math Teachers and IT specialists. The package depends on the -following other LaTeX packages: calc, fp, ifsym, multido, tikz, -xargs, and xstring. - -%package sectionbreak -Summary: LaTeX support for section breaks -Version: svn50339 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(sectionbreak.sty) = %{tl_version} - -%description sectionbreak -This package provides LaTeX support for section breaks, used -mainly in fiction books to signal changes in a story, like -changes in time, location, etc. It supports the asterism -symbol, text content, or custom macros as the section break -mark symbol. - -%package semantic-markup -Summary: Meaningful semantic markup in the spirit of the Text Encoding Initiative -Version: svn47837 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(semantic-markup.sty) = %{tl_version} - -%description semantic-markup -The package provides simple commands to allow authors -(especially scholars in the humanities) to write with a focus -on content rather than presentation. The commands are inspired -by the XML elements of the Text Encoding Initiative. Commands -like \term and \foreign are aliases for \emph. \quoted and -\soCalled are aliases for quoting commands. These commands -could be easily redefined for different formats. The package -also provides a footnote environment so that long footnotes can -be more cleanly separated from the main text. Because the -author is a music scholar, the package also includes some -macros for musical symbols and other basic notations for -musical analysis. - -%package sexam -Summary: Package for typesetting arabic exam scripts -Version: svn46628 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(bacex.sty) = %{tl_version} -Provides: tex(sexam.sty) = %{tl_version} -Provides: tex(wexam.sty) = %{tl_version} - -%description sexam -The package provides a modified version of the exam package -made compatible with XeLaTeX/polyglossia to typesetting arabic. - -%package short-math-guide -Summary: Guide to using amsmath and related packages to typeset mathematical notation with LaTeX -Version: svn46126 -License: LPPL -Requires: texlive-base texlive-kpathsea - -%description short-math-guide -The Short Math Guide is intended to be a concise introduction -to the use of the facilities provided by amsmath and various -other LaTeX packages for typesetting mathematical notation. -Originally created by Michael Downes of the American -Mathematical Society based only on amsmath, it has been brought -up to date with references to related packages and other useful -information. - -%package simpleinvoice -Summary: Easy typesetting of invoices -Version: svn45673 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(simpleinvoice.sty) = %{tl_version} - -%description simpleinvoice -This package lets you easily typeset professional-looking -invoices. The user specifies the content of the invoice by -different \setPROPERTY commands, and an invoice is generated -automatically with the \makeinvoice command. - -%package spalign -Summary: Typeset matrices and arrays with spaces and semicolons as delimiters -Version: svn42225 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(spalign.sty) = %{tl_version} - -%description spalign -Typeset matrices and arrays with spaces and semicolons as -delimiters. The purpose of this package is to decrease the -number of keystrokes needed to typeset small amounts of aligned -material (matrices, arrays, etc.). It provides a facility for -typing alignment environments and macros with spaces as the -alignment delimiter and semicolons (by default) as the -end-of-row indicator. For instance, typeset a matrix using -\spalignmat{1 12 -3; 24 -2 2; 0 0 1}, or a vector using -\spalignvector{22 \frac{1}{2} -14}. This package also contains -utility macros for typesetting augmented matrices, vectors, -arrays, systems of equations, and more, and is easily -extendable to other situations that use alignments. People who -have to typeset a large number of matrices (like linear algebra -teachers) should find this package to be a real time saver. - -%package stanli -Summary: TikZ Library for Structural Analysis -Version: svn42765 -License: GPL+ and LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(stanli.sty) = %{tl_version} - -%description stanli -stanli is a STructural ANalysis LIbrary based on PGF/TikZ. -Creating new assignments and tests, at university, is usually a -very time-consuming task, especially when this includes drawing -graphics. In the field of structural engineering, those small -structures are a key part for teaching. This package permits to -create such 2D and 3D structures in a very fast and simple way. - -%package statistics -Summary: Compute and typeset statistics tables and graphics -Version: svn48252 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea -Provides: tex(statistics.sty) = %{tl_version} - -%description statistics -The 'statistics' package can compute and typeset statistics -like frequency tables, cumulative distribution functions -(increasing or decreasing, in frequency or absolute count -domain), from the counts of individual values, or ranges, or -even the raw value list with repetitions. It can also compute -and draw a bar diagram in case of individual values, or, when -the data repartition is known from ranges, an histogram or the -continuous cumulative distribution function. You can ask -'statistics' to display no result, selective results or all of -them. Similarly 'statistics' can draw only some parts of the -graphs. Every part of the generated tables or graphics is -customizable. - -%package statmath -Summary: A LaTeX package for simple use of statistical notation -Version: svn46925 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(statmath.sty) = %{tl_version} - -%description statmath -The package offers anumber of notational conventions to be used -in applied and theoretical papers in statistics which are -currently lacking in the popular amsmath package. The seasoned -LaTeX user will see that the provided commands are simple, -almost trivial, but will hopefully offer less cluttered -preambles as well as a welcome help for novice users. - -%package stealcaps -Summary: "Steal" small capitals -Version: svn46434 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(pgfopts.sty) -Requires: tex(iftex.sty) -Requires: tex(fontspec.sty) -Provides: tex(stealcaps.sty) = %{tl_version} - -%description stealcaps -This little package is mainly meant to be used when there is a -(TrueType or OpenType) font that does not provide real small -capitals. As a workaround, this package helps to borrow, or -"steal", the small capitals from another font. This might also -be useful in the rare case that someone does not like the -present small capitals, and wants to change them, or likes -those from another font better. To achieve the borrowing, one -only needs to load the package and specify the name of the -target font via the from option. Package dependencies: pgfopts, -iftex, fontspec. - -%package stickstoo -Summary: A reworking of STIX2 -Version: svn47858 -License: OFL and LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(SticksTooText-Bold.afm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic.afm) = %{tl_version} -Provides: tex(SticksTooText-Italic.afm) = %{tl_version} -Provides: tex(SticksTooText-Regular.afm) = %{tl_version} -Provides: tex(stickstooMath-Bold.afm) = %{tl_version} -Provides: tex(stickstooMath-BoldItalic.afm) = %{tl_version} -Provides: tex(stickstooMath-Italic.afm) = %{tl_version} -Provides: tex(stickstooMath-Regular.afm) = %{tl_version} -Provides: tex(stx2-ot1.enc) = %{tl_version} -Provides: tex(stx2_3t3wpf.enc) = %{tl_version} -Provides: tex(stx2_3vezss.enc) = %{tl_version} -Provides: tex(stx2_4fcdhj.enc) = %{tl_version} -Provides: tex(stx2_57cumc.enc) = %{tl_version} -Provides: tex(stx2_5xzouo.enc) = %{tl_version} -Provides: tex(stx2_7bhcze.enc) = %{tl_version} -Provides: tex(stx2_7fpfyw.enc) = %{tl_version} -Provides: tex(stx2_ao4o3i.enc) = %{tl_version} -Provides: tex(stx2_b3i2vo.enc) = %{tl_version} -Provides: tex(stx2_bg3hea.enc) = %{tl_version} -Provides: tex(stx2_btooep.enc) = %{tl_version} -Provides: tex(stx2_c34sac.enc) = %{tl_version} -Provides: tex(stx2_dbm33u.enc) = %{tl_version} -Provides: tex(stx2_eexofg.enc) = %{tl_version} -Provides: tex(stx2_eqh7z7.enc) = %{tl_version} -Provides: tex(stx2_gbmh45.enc) = %{tl_version} -Provides: tex(stx2_gxpwoy.enc) = %{tl_version} -Provides: tex(stx2_hfcbd6.enc) = %{tl_version} -Provides: tex(stx2_irreni.enc) = %{tl_version} -Provides: tex(stx2_iximus.enc) = %{tl_version} -Provides: tex(stx2_m7frfq.enc) = %{tl_version} -Provides: tex(stx2_nb7tts.enc) = %{tl_version} -Provides: tex(stx2_nl7rkm.enc) = %{tl_version} -Provides: tex(stx2_noim42.enc) = %{tl_version} -Provides: tex(stx2_opxk4k.enc) = %{tl_version} -Provides: tex(stx2_pu4fsw.enc) = %{tl_version} -Provides: tex(stx2_pwkoq7.enc) = %{tl_version} -Provides: tex(stx2_qdtmbx.enc) = %{tl_version} -Provides: tex(stx2_quvxut.enc) = %{tl_version} -Provides: tex(stx2_rejbux.enc) = %{tl_version} -Provides: tex(stx2_rfrl5v.enc) = %{tl_version} -Provides: tex(stx2_sdn3a4.enc) = %{tl_version} -Provides: tex(stx2_slv267.enc) = %{tl_version} -Provides: tex(stx2_srw4fv.enc) = %{tl_version} -Provides: tex(stx2_t6nmmd.enc) = %{tl_version} -Provides: tex(stx2_tu2ozo.enc) = %{tl_version} -Provides: tex(stx2_uab2xo.enc) = %{tl_version} -Provides: tex(stx2_uhazou.enc) = %{tl_version} -Provides: tex(stx2_uofyr3.enc) = %{tl_version} -Provides: tex(stx2_v3a2cx.enc) = %{tl_version} -Provides: tex(stx2_vydqhu.enc) = %{tl_version} -Provides: tex(stx2_w6fsfr.enc) = %{tl_version} -Provides: tex(stx2_wfth6k.enc) = %{tl_version} -Provides: tex(stx2_wwmqdh.enc) = %{tl_version} -Provides: tex(stx2_wwolpm.enc) = %{tl_version} -Provides: tex(stx2_wxq2z6.enc) = %{tl_version} -Provides: tex(stx2_y4oioo.enc) = %{tl_version} -Provides: tex(stx2_ym7moh.enc) = %{tl_version} -Provides: tex(stx2_zscetg.enc) = %{tl_version} -Provides: tex(stx2i-ot1.enc) = %{tl_version} -Provides: tex(SticksTooText.map) = %{tl_version} -Provides: tex(SticksTooText-Bold-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-dnom-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-dnom-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-dnom-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-inf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-inf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-inf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-inf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-numr-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-numr-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-numr-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-numr-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ot1G.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-dnom-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-dnom-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-dnom-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-numr-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-numr-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-numr-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-numr-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ot1G.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-dnom-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-dnom-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-dnom-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-inf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-inf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-inf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-th-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-th-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-th-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-th-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-th-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-numr-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-numr-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-numr-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-numr-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-th-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-th-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-th-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-th-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-th-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ot1G.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-th-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-th-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-th-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-th-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-th-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-th-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-th-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-th-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-th-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-th-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-dnom-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-dnom-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-dnom-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-dnom-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-dnom-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-inf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-inf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-inf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-inf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-numr-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-numr-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-numr-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-numr-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-numr-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ot1G.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(ntxstx2bmi.tfm) = %{tl_version} -Provides: tex(ntxstx2bmia.tfm) = %{tl_version} -Provides: tex(ntxstx2mi.tfm) = %{tl_version} -Provides: tex(ntxstx2mia.tfm) = %{tl_version} -Provides: tex(stickstooMath-Bold.tfm) = %{tl_version} -Provides: tex(stickstooMath-BoldItalic.tfm) = %{tl_version} -Provides: tex(stickstooMath-Italic.tfm) = %{tl_version} -Provides: tex(stickstooMath-Regular.tfm) = %{tl_version} -Provides: tex(SticksTooText-Bold.pfb) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic.pfb) = %{tl_version} -Provides: tex(SticksTooText-Italic.pfb) = %{tl_version} -Provides: tex(SticksTooText-Regular.pfb) = %{tl_version} -Provides: tex(stickstooMath-Bold.pfb) = %{tl_version} -Provides: tex(stickstooMath-BoldItalic.pfb) = %{tl_version} -Provides: tex(stickstooMath-Italic.pfb) = %{tl_version} -Provides: tex(stickstooMath-Regular.pfb) = %{tl_version} -Provides: tex(SticksTooText-Bold-dnom-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-dnom-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-inf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-inf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-numr-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-numr-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ot1G.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-dnom-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-dnom-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-inf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-numr-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-numr-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ot1G.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-dnom-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-dnom-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-inf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-inf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-th-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-th-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-numr-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-numr-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-th-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-th-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ot1G.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-th-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-th-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-th-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-th-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-dnom-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-dnom-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-inf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-inf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-numr-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-numr-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-sup-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ot1G.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(SticksTooText-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(ntxstx2bmi.vf) = %{tl_version} -Provides: tex(ntxstx2bmia.vf) = %{tl_version} -Provides: tex(ntxstx2mi.vf) = %{tl_version} -Provides: tex(ntxstx2mia.vf) = %{tl_version} -Provides: tex(LY1SticksTooText-Dnom.fd) = %{tl_version} -Provides: tex(LY1SticksTooText-Inf.fd) = %{tl_version} -Provides: tex(LY1SticksTooText-LF.fd) = %{tl_version} -Provides: tex(LY1SticksTooText-Numr.fd) = %{tl_version} -Provides: tex(LY1SticksTooText-OsF.fd) = %{tl_version} -Provides: tex(LY1SticksTooText-Sup.fd) = %{tl_version} -Provides: tex(LY1SticksTooText-TLF.fd) = %{tl_version} -Provides: tex(LY1SticksTooText-TOsF.fd) = %{tl_version} -Provides: tex(OT1SticksTooText-Dnom.fd) = %{tl_version} -Provides: tex(OT1SticksTooText-Inf.fd) = %{tl_version} -Provides: tex(OT1SticksTooText-LF.fd) = %{tl_version} -Provides: tex(OT1SticksTooText-Numr.fd) = %{tl_version} -Provides: tex(OT1SticksTooText-OsF.fd) = %{tl_version} -Provides: tex(OT1SticksTooText-Sup.fd) = %{tl_version} -Provides: tex(OT1SticksTooText-TLF.fd) = %{tl_version} -Provides: tex(OT1SticksTooText-TOsF.fd) = %{tl_version} -Provides: tex(T1SticksTooText-Dnom.fd) = %{tl_version} -Provides: tex(T1SticksTooText-Inf.fd) = %{tl_version} -Provides: tex(T1SticksTooText-LF.fd) = %{tl_version} -Provides: tex(T1SticksTooText-Numr.fd) = %{tl_version} -Provides: tex(T1SticksTooText-OsF.fd) = %{tl_version} -Provides: tex(T1SticksTooText-Sup.fd) = %{tl_version} -Provides: tex(T1SticksTooText-TLF.fd) = %{tl_version} -Provides: tex(T1SticksTooText-TOsF.fd) = %{tl_version} -Provides: tex(TS1SticksTooText-LF.fd) = %{tl_version} -Provides: tex(TS1SticksTooText-OsF.fd) = %{tl_version} -Provides: tex(TS1SticksTooText-TLF.fd) = %{tl_version} -Provides: tex(TS1SticksTooText-TOsF.fd) = %{tl_version} -Provides: tex(stickstootext.sty) = %{tl_version} - -%description stickstoo -SticksToo is a reworking of the STIX2 with support files -focussing on enhancements of support for LaTeX users wishing to -be able to access more of its features. A companion addition to -the newtxmath package (version 1.55) provides a matching math -package using STIX2 letters (Roman and Greek) with newtxmath -symbols. - -%package stix2-otf -Summary: OpenType Unicode text and maths fonts -Version: svn50948 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(STIX2Math.otf) = %{tl_version} -Provides: tex(STIX2Text-Bold.otf) = %{tl_version} -Provides: tex(STIX2Text-BoldItalic.otf) = %{tl_version} -Provides: tex(STIX2Text-Italic.otf) = %{tl_version} -Provides: tex(STIX2Text-Regular.otf) = %{tl_version} - -%description stix2-otf -The Scientific and Technical Information eXchange (STIX) fonts -are intended to satisfy the demanding needs of authors, -publishers, printers, and others working in the scientific, -medical, and technical fields. They combine a comprehensive -Unicode-based collection of mathematical symbols and alphabets -with a set of text faces suitable for professional publishing. -The fonts are available royalty-free under the SIL Open Font -License. - -%package stix2-type1 -Summary: Type1 versions of the STIX Two OpenType fonts -Version: svn50940 -License: OFL and LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(stix2-mathbb.enc) = %{tl_version} -Provides: tex(stix2-mathbbit.enc) = %{tl_version} -Provides: tex(stix2-mathcal.enc) = %{tl_version} -Provides: tex(stix2-mathex.enc) = %{tl_version} -Provides: tex(stix2-mathfrak-bold.enc) = %{tl_version} -Provides: tex(stix2-mathfrak.enc) = %{tl_version} -Provides: tex(stix2-mathit-bold.enc) = %{tl_version} -Provides: tex(stix2-mathit.enc) = %{tl_version} -Provides: tex(stix2-mathrm-bold.enc) = %{tl_version} -Provides: tex(stix2-mathrm.enc) = %{tl_version} -Provides: tex(stix2-mathscr-bold.enc) = %{tl_version} -Provides: tex(stix2-mathscr.enc) = %{tl_version} -Provides: tex(stix2-mathsf-bold.enc) = %{tl_version} -Provides: tex(stix2-mathsf.enc) = %{tl_version} -Provides: tex(stix2-mathsfit-bold.enc) = %{tl_version} -Provides: tex(stix2-mathsfit.enc) = %{tl_version} -Provides: tex(stix2-mathtt.enc) = %{tl_version} -Provides: tex(stix2-ot1.enc) = %{tl_version} -Provides: tex(stix2-ot1sc.enc) = %{tl_version} -Provides: tex(stix2-ot2.enc) = %{tl_version} -Provides: tex(stix2-ot2sc.enc) = %{tl_version} -Provides: tex(stix2-t1.enc) = %{tl_version} -Provides: tex(stix2-t1sc.enc) = %{tl_version} -Provides: tex(stix2-ts1.enc) = %{tl_version} -Provides: tex(stix2.map) = %{tl_version} -Provides: tex(ot1-stix2text-bold.pl) = %{tl_version} -Provides: tex(ot1-stix2text-bolditalic.pl) = %{tl_version} -Provides: tex(ot1-stix2text-italic.pl) = %{tl_version} -Provides: tex(ot1-stix2text.pl) = %{tl_version} -Provides: tex(ot1-stix2textsc-bold.pl) = %{tl_version} -Provides: tex(ot1-stix2textsc.pl) = %{tl_version} -Provides: tex(ot2-stix2text-bold.pl) = %{tl_version} -Provides: tex(ot2-stix2text-bolditalic.pl) = %{tl_version} -Provides: tex(ot2-stix2text-italic.pl) = %{tl_version} -Provides: tex(ot2-stix2text.pl) = %{tl_version} -Provides: tex(ot2-stix2textsc-bold.pl) = %{tl_version} -Provides: tex(ot2-stix2textsc.pl) = %{tl_version} -Provides: tex(stix2-mathbb.pl) = %{tl_version} -Provides: tex(stix2-mathbbit.pl) = %{tl_version} -Provides: tex(stix2-mathcal.pl) = %{tl_version} -Provides: tex(stix2-mathex.pl) = %{tl_version} -Provides: tex(stix2-mathfrak-bold.pl) = %{tl_version} -Provides: tex(stix2-mathfrak.pl) = %{tl_version} -Provides: tex(stix2-mathit-bold.pl) = %{tl_version} -Provides: tex(stix2-mathit.pl) = %{tl_version} -Provides: tex(stix2-mathrm-bold.pl) = %{tl_version} -Provides: tex(stix2-mathrm.pl) = %{tl_version} -Provides: tex(stix2-mathscr-bold.pl) = %{tl_version} -Provides: tex(stix2-mathscr.pl) = %{tl_version} -Provides: tex(stix2-mathsf-bold.pl) = %{tl_version} -Provides: tex(stix2-mathsf.pl) = %{tl_version} -Provides: tex(stix2-mathsfit-bold.pl) = %{tl_version} -Provides: tex(stix2-mathsfit.pl) = %{tl_version} -Provides: tex(stix2-mathtt.pl) = %{tl_version} -Provides: tex(t1-stix2text-bold.pl) = %{tl_version} -Provides: tex(t1-stix2text-bolditalic.pl) = %{tl_version} -Provides: tex(t1-stix2text-italic.pl) = %{tl_version} -Provides: tex(t1-stix2text.pl) = %{tl_version} -Provides: tex(t1-stix2textsc-bold.pl) = %{tl_version} -Provides: tex(t1-stix2textsc.pl) = %{tl_version} -Provides: tex(ts1-stix2text-bold.pl) = %{tl_version} -Provides: tex(ts1-stix2text-bolditalic.pl) = %{tl_version} -Provides: tex(ts1-stix2text-italic.pl) = %{tl_version} -Provides: tex(ts1-stix2text.pl) = %{tl_version} -Provides: tex(ot1-stix2text-bold.tfm) = %{tl_version} -Provides: tex(ot1-stix2text-bolditalic.tfm) = %{tl_version} -Provides: tex(ot1-stix2text-italic.tfm) = %{tl_version} -Provides: tex(ot1-stix2text.tfm) = %{tl_version} -Provides: tex(ot1-stix2textsc-bold.tfm) = %{tl_version} -Provides: tex(ot1-stix2textsc.tfm) = %{tl_version} -Provides: tex(ot2-stix2text-bold.tfm) = %{tl_version} -Provides: tex(ot2-stix2text-bolditalic.tfm) = %{tl_version} -Provides: tex(ot2-stix2text-italic.tfm) = %{tl_version} -Provides: tex(ot2-stix2text.tfm) = %{tl_version} -Provides: tex(ot2-stix2textsc-bold.tfm) = %{tl_version} -Provides: tex(ot2-stix2textsc.tfm) = %{tl_version} -Provides: tex(stix2-mathbb.tfm) = %{tl_version} -Provides: tex(stix2-mathbbit.tfm) = %{tl_version} -Provides: tex(stix2-mathcal.tfm) = %{tl_version} -Provides: tex(stix2-mathex.tfm) = %{tl_version} -Provides: tex(stix2-mathfrak-bold.tfm) = %{tl_version} -Provides: tex(stix2-mathfrak.tfm) = %{tl_version} -Provides: tex(stix2-mathit-bold.tfm) = %{tl_version} -Provides: tex(stix2-mathit.tfm) = %{tl_version} -Provides: tex(stix2-mathrm-bold.tfm) = %{tl_version} -Provides: tex(stix2-mathrm.tfm) = %{tl_version} -Provides: tex(stix2-mathscr-bold.tfm) = %{tl_version} -Provides: tex(stix2-mathscr.tfm) = %{tl_version} -Provides: tex(stix2-mathsf-bold.tfm) = %{tl_version} -Provides: tex(stix2-mathsf.tfm) = %{tl_version} -Provides: tex(stix2-mathsfit-bold.tfm) = %{tl_version} -Provides: tex(stix2-mathsfit.tfm) = %{tl_version} -Provides: tex(stix2-mathtt.tfm) = %{tl_version} -Provides: tex(t1-stix2text-bold.tfm) = %{tl_version} -Provides: tex(t1-stix2text-bolditalic.tfm) = %{tl_version} -Provides: tex(t1-stix2text-italic.tfm) = %{tl_version} -Provides: tex(t1-stix2text.tfm) = %{tl_version} -Provides: tex(t1-stix2textsc-bold.tfm) = %{tl_version} -Provides: tex(t1-stix2textsc.tfm) = %{tl_version} -Provides: tex(ts1-stix2text-bold.tfm) = %{tl_version} -Provides: tex(ts1-stix2text-bolditalic.tfm) = %{tl_version} -Provides: tex(ts1-stix2text-italic.tfm) = %{tl_version} -Provides: tex(ts1-stix2text.tfm) = %{tl_version} -Provides: tex(STIX2Math.pfb) = %{tl_version} -Provides: tex(STIX2Text-Bold.pfb) = %{tl_version} -Provides: tex(STIX2Text-BoldItalic.pfb) = %{tl_version} -Provides: tex(STIX2Text-Italic.pfb) = %{tl_version} -Provides: tex(STIX2Text-Regular.pfb) = %{tl_version} -Provides: tex(ls1stix2.fd) = %{tl_version} -Provides: tex(ls1stix2bb.fd) = %{tl_version} -Provides: tex(ls1stix2frak.fd) = %{tl_version} -Provides: tex(ls1stix2scr.fd) = %{tl_version} -Provides: tex(ls1stix2sf.fd) = %{tl_version} -Provides: tex(ls2stix2.fd) = %{tl_version} -Provides: tex(ls2stix2cal.fd) = %{tl_version} -Provides: tex(ls2stix2ex.fd) = %{tl_version} -Provides: tex(ls2stix2tt.fd) = %{tl_version} -Provides: tex(ot1stix2.fd) = %{tl_version} -Provides: tex(ot2stix2.fd) = %{tl_version} -Provides: tex(stix2.sty) = %{tl_version} -Provides: tex(t1stix2.fd) = %{tl_version} -Provides: tex(ts1stix2.fd) = %{tl_version} - -%description stix2-type1 -The stix2 package provides minimal support for using the STIX -Two fonts with versions of TeX that are limited to TFM files, -Type 1 PostScript fonts, and 8-bit font encodings. Version -2.0.0 of the STIX fonts are being released in this format in -hopes of easing the transition from legacy TeX engines to -modern fully Unicode-compatible systems. The Type 1 versions -are merely a repackaging of the original OpenType versions and -should not be viewed as independent entities. Some glyphs that -are traditionally available in TeX math fonts are not yet -available in the STIX Two OpenType fonts. In such cases, we -have chosen to omit them from the stix2 package rather than -create incompatibilities between the OpenType and Type 1 -versions. In addition, while development of the OpenType -versions is ongoing, no further updates are planned to the Type -1 versions of the fonts. - -%package structmech -Summary: A TikZ command set for structural mechanics drawings -Version: svn47859 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea - -%description structmech -This package provides a collection of TikZ commands that allow -users to draw basic elements in material/structural mechanics. -It is thus possible to draw member forces, nodal -forces/displacements, various boundary conditions, internal -force distributions, etc. - -%package tagpdf -Summary: Tools for experimenting with tagging using pdfLaTeX and LuaLaTeX -Version: svn51535 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tagpdf-checks-code.sty) = %{tl_version} -Provides: tex(tagpdf-luatex.def) = %{tl_version} -Provides: tex(tagpdf-mc-code-generic.sty) = %{tl_version} -Provides: tex(tagpdf-mc-code-lua.sty) = %{tl_version} -Provides: tex(tagpdf-mc-code-shared.sty) = %{tl_version} -Provides: tex(tagpdf-pdftex.def) = %{tl_version} -Provides: tex(tagpdf-roles-code.sty) = %{tl_version} -Provides: tex(tagpdf-struct-code.sty) = %{tl_version} -Provides: tex(tagpdf-tree-code.sty) = %{tl_version} -Provides: tex(tagpdf-user.sty) = %{tl_version} -Provides: tex(tagpdf.lua) = %{tl_version} -Provides: tex(tagpdf.sty) = %{tl_version} - -%description tagpdf -The package offers tools to experiment with tagging and -accessibility using pdfLaTeX and LuaTeX. It isn't meant for -production but allows the user to try out how difficult it is -to tag some structures; to try out how much tagging is really -needed; to test what else is needed so that a pdf works e.g. -with a screen reader. Its goal is to get a feeling for what has -to be done, which kernel changes are needed, how packages -should be adapted. - -%package texdate -Summary: Date printing, formatting, and manipulation in TeX -Version: svn49362 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(texdate.sty) = %{tl_version} - -%description texdate -TeX and LaTeX provide few facilities for dates by default, -though many packages have filled this gap. This package fills -it, as well, with a pure TeX-primitive implementation. It can -print dates, advance them by numbers of days, weeks, or months, -determine the weekday automatically (with an algorithm cribbed -from the dayofweek.tex file written by Martin Minow), and print -them in (mostly) arbitrary format. It can also print calendars -(monthly and yearly) automatically, and can be easily localized -for non-English languages. - -%package textualicomma -Summary: Use the textual comma character as decimal separator in math mode -Version: svn48474 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(textualicomma.sty) = %{tl_version} - -%description textualicomma -The package is based on the icomma package, and intended as a -solution for situations where the text comma character discerns -from the math comma character, e. g. when fonts whithout math -support are involved. Escaping to text mode every time a comma -is used in math mode may slow down the compilation process. - -%package thaispec -Summary: Thai Language Typesetting in XeLaTeX -Version: svn51598 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(fontspec.sty) -Requires: tex(ucharclasses.sty) -Requires: tex(polyglossia.sty) -Requires: tex(setspace.sty) -Requires: tex(datetime2.sty) -Requires: tex(kvoptions.sty) -Requires: tex(fp.sty) -Requires: tex(afterpackage.sty) -Requires: tex(xstring.sty) -Requires: tex(xpatch.sty) -Provides: tex(thaispec.sty) = %{tl_version} - -%description thaispec -This package allows the user to input Thai characters directly -to a .tex file and choose any Thai fonts to be used in the -document. Required packages are fontspec, ucharclasses, -polyglossia, setspace, datetime2, kvoptions, fp, afterpackage, -xstring, and xpatch. - -%package thesis-gwu -Summary: Thesis class for George Washington University School of Engineering and Applied Science -Version: svn48324 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(thesis-gwu.cls) = %{tl_version} - -%description thesis-gwu -This class is an attempt to create a standard format for GWU -SEAS dissertations/theses. It automatically handles many of the -complicated formatting requirements and includes many useful -packages. An example thesis is provided serving as a user guide -and a demonstration of the thesis. - -%package thucoursework -Summary: Coursework template for Tsinghua University -Version: svn47781 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(iidef.sty) = %{tl_version} - -%description thucoursework -A LaTeX package for students of Tsinghua University to write -coursework more efficiently. It can also be used by students -from other universities. Note that the package itself does not -import the ctex package; to use it with Chinese writing, see -example file ithw.tex for details. - -%package tikz-karnaugh -Summary: Typeset Karnaugh maps using TikZ -Version: svn47026 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tikzlibrarykarnaugh.code.tex) = %{tl_version} - -%description tikz-karnaugh -The tikz-karnaugh package is a LaTeX package used to draw -Karnaugh maps. It uses TikZ to produce high quality graph up to -12 variables, but this limit depends on the TeX memory usage -and can be different for you. It is very good for presentation -since TikZ allows for a better control over the final -appearance of the map. You can control colour, styles and -distances. It can be considered as an upgrade of Andreas W. -Wieland's karnaugh package towards TikZ supporting. Also, -complex maps with solution (prime implicants) pointed out can -be generated with external java software. It supports both -America and traditional styles, though American style requires -a little extra effort. - -%package tikz-ladder -Summary: Draw ladder diagrams using TikZ -Version: svn46555 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tikzlibrarycircuits.plc.ladder.code.tex) = %{tl_version} - -%description tikz-ladder -The tikz-ladder package contains a collection of symbols for -typesetting ladder diagrams (PLC program) in agreement with the -international standard IEC-61131-3/2013. It includes blocks -(for representing functions and function blocks) besides -contacts and coils. It extends the circuit library of TikZ and -allows you to draw a ladder diagram in the same way as you -would draw any other circuit. - -%package tikz-layers -Summary: TikZ provides graphical layers on TikZ: "behind", "above" and "glass" -Version: svn46660 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tikz-layers.sty) = %{tl_version} - -%description tikz-layers -TikZ-layers is a tiny package that provides, along side -"background", typical graphical layers on TikZ: "behind", -"above" and "glass". The layers may be selected with one of the -styles "on behind layer", "on above layer", "on glass layer" as -an option to a {scope} environment. - -%package tikzmarmots -Summary: Drawing little marmots in TikZ -Version: svn49114 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tikzmarmots.sty) = %{tl_version} -Provides: tex(tikzlibrarymarmots.code.tex) = %{tl_version} - -%description tikzmarmots -This is a LaTeX package for marmots to be used in TikZ -pictures. These little figures are constructed in such a way -that they may even "borrow" some garments and other attributes -from the TikZducks. - -%package tikz-nef -Summary: Create diagrams for neural networks constructed with the methods of the Neural Engineering Framework (NEF) -Version: svn48240 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(tikzlibrarynef.code.tex) = %{tl_version} - -%description tikz-nef -The nef TikZ library provides predefined styles and shapes to -create diagrams for neural networks constructed with the -methods of the Neural Engineering Framework (NEF). The -following styles are supported: ea: ensemble array ens: -ensemble ext: external input or output inhibt: inhibitory -connection net: network pnode: pass-through node rect: -rectification ensemble recurrent: recurrent connection. - -%package tikz-network -Summary: Draw networks with TikZ -Version: svn48314 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea -Provides: tex(tikz-network.sty) = %{tl_version} - -%description tikz-network -This package allows the creation of images of complex networks -that are seamlessly integrated into the underlying LaTeX files. - -%package tikz-relay -Summary: TikZ library for typesetting electrical diagrams -Version: svn51355 -License: LPPL -Requires: texlive-base texlive-kpathsea - -%description tikz-relay -This package contains a collection of symbols for typesetting -electrical wiring diagrams for relay control systems. The -symbols are meant to be in agreement with the international -standard IEC-60617 which has been adopted worldwide, with -perhaps the exception of the USA. It extends and modifies, when -needed, the TikZ-libray circuits.ee.IEC. A few non-standard -symbols are also included mainly to be used in presentations, -particularly with the beamer package. - -%package tikz-sfc -Summary: Symbols collection for typesetting Sequential Function Chart (SFC) diagrams (PLC programs) -Version: svn49424 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tikzlibrarycircuits.plc.sfc.code.tex) = %{tl_version} - -%description tikz-sfc -This package contains a collection of symbols for typesetting -Sequential Function Chart (SFC) diagrams in agreement with the -international standard IEC-61131-3/2013. It includes steps -(normal and initial), transitions, actions and actions -qualifiers (with and without time duration). It extends the -circuit library of TikZ and allows you to draw an SFC diagram -in same way you would draw any other circuit. - -%package timbreicmc -Summary: Typeset documents with ICMC/USP watermarks -Version: svn49740 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(timbreicmc.sty) = %{tl_version} - -%description timbreicmc -With this package you can typeset documents with ICMC/USP Sao -Carlos watermarks. ICMC is acronym for "Instituto de Ciencias -Matematicas e de Computacao" of the "Universidade de Sao Paulo" -(USP), in the city of Sao Carlos-SP, Brazil. - -%package tinos -Summary: Tinos fonts with LaTeX support -Version: svn42882 -License: ASL 2.0 -Requires: texlive-base texlive-kpathsea -Provides: tex(tns_27astb.enc) = %{tl_version} -Provides: tex(tns_s6t4vy.enc) = %{tl_version} -Provides: tex(tns_xze2cy.enc) = %{tl_version} -Provides: tex(tns_y6kixo.enc) = %{tl_version} -Provides: tex(tinos.map) = %{tl_version} -Provides: tex(Tinos-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(Tinos-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(Tinos-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(Tinos-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(Tinos-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(Tinos-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(Tinos-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(Tinos-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(Tinos-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(Tinos-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(Tinos-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(Tinos-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(Tinos-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(Tinos-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(Tinos-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(Tinos-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(Tinos-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(Tinos-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(Tinos-tlf-ly1.tfm) = %{tl_version} -Provides: tex(Tinos-tlf-ot1.tfm) = %{tl_version} -Provides: tex(Tinos-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(Tinos-tlf-t1.tfm) = %{tl_version} -Provides: tex(Tinos-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(Tinos-tlf-ts1.tfm) = %{tl_version} -Provides: tex(Tinos-Bold.ttf) = %{tl_version} -Provides: tex(Tinos-BoldItalic.ttf) = %{tl_version} -Provides: tex(Tinos-Italic.ttf) = %{tl_version} -Provides: tex(Tinos-Regular.ttf) = %{tl_version} -Provides: tex(Tinos-Bold.pfb) = %{tl_version} -Provides: tex(Tinos-BoldItalic.pfb) = %{tl_version} -Provides: tex(Tinos-Italic.pfb) = %{tl_version} -Provides: tex(Tinos.pfb) = %{tl_version} -Provides: tex(Tinos-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(Tinos-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(Tinos-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(Tinos-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(Tinos-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(Tinos-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(Tinos-tlf-t1.vf) = %{tl_version} -Provides: tex(Tinos-tlf-ts1.vf) = %{tl_version} -Provides: tex(LY1Tinos-TLF.fd) = %{tl_version} -Provides: tex(OT1Tinos-TLF.fd) = %{tl_version} -Provides: tex(T1Tinos-TLF.fd) = %{tl_version} -Provides: tex(TS1Tinos-TLF.fd) = %{tl_version} -Provides: tex(tinos.sty) = %{tl_version} - -%description tinos -Tinos, designed by Steve Matteson, is an innovative, refreshing -serif design that is metrically compatible with Times New -Roman. - -%package tlc-article -Summary: A LaTeX document class for formal documents -Version: svn51431 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(tlc-article.cls) = %{tl_version} - -%description tlc-article -The package provides a LaTeX document class that orchestrates a -logical arrangement for document header, footer, author, -abstract, table of contents, and margins. It standardizes a -document layout intended for formal documents. The tlc_article -GitHub repository uses a SCRUM framework adapted to standard -GitHub tooling. tlc_article is integrated with Travis-ci.org -for continuous integration and AllanConsulting.slack.com for -centralized notification. - -%package topletter -Summary: Letter class for the Politecnico di Torino -Version: svn48182 -License: ASL 2.0 -Requires: texlive-base texlive-kpathsea -Provides: tex(TOPletter.cls) = %{tl_version} - -%description topletter -This package provides a LaTeX class for typesetting letters -conforming to the official Corporate Image guidelines for the -Politecnico di Torino. The class can be used for letters -written in Italian and in English. - -%package typewriter -Summary: Typeset with a randomly variable monospace font -Version: svn46641 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(typewriter.sty) = %{tl_version} - -%description typewriter -The typewriter package uses the OpenType Computer Modern -Unicode Typewriter font, together with a LuaTeX virtual font -setup that introduces random variability in grey level and -angle of each character. It was originally an answer to a -question on stackexchange. - -%package ucsmonograph -Summary: Typesetting academic documents from the University of Caxias do Sul -Version: svn49389 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(ucsmonograph.cls) = %{tl_version} - -%description ucsmonograph -This is a LaTeX class for typesetting academic documents -according to the ABNT (Brazilian Technical Standards -Association) standards and the UCS (University of Caxias do -Sul) specifications. - -%package univie-ling -Summary: Papers, theses and research proposals in (Applied) Linguistics at Vienna University -Version: svn49785 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(univie-ling-expose.cls) = %{tl_version} -Provides: tex(univie-ling-paper.cls) = %{tl_version} -Provides: tex(univie-ling-thesis.cls) = %{tl_version} -Provides: tex(univie-ling-wlg.cls) = %{tl_version} -Provides: tex(univie-ling.bbx) = %{tl_version} -Provides: tex(univie-ling.cbx) = %{tl_version} - -%description univie-ling -This bundle provides LaTeX2e classes suitable for student -papers, PhD research proposals (Exposes), and theses in -(Applied) Linguistics at the University of Vienna. The classes -implement some standards for these types of text, such as -suitable title pages. They are particularly suited for the -field of (Applied) Linguistics and pre-load some packages that -are considered useful in this context. The classes can also be -used for General and Historical Linguistics as well as for -other fields of study at Vienna University. In this case, -however, some settings may have to be adjusted. - -%package uppunctlm -Summary: Always keep upright shape for some punctuation marks and Arabic numerals -Version: svn42334 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(ec-uplmri10.tfm) = %{tl_version} -Provides: tex(ec-uplmri12.tfm) = %{tl_version} -Provides: tex(ec-uplmri7.tfm) = %{tl_version} -Provides: tex(ec-uplmri8.tfm) = %{tl_version} -Provides: tex(ec-uplmri9.tfm) = %{tl_version} -Provides: tex(ec-uplmri10.vf) = %{tl_version} -Provides: tex(ec-uplmri12.vf) = %{tl_version} -Provides: tex(ec-uplmri7.vf) = %{tl_version} -Provides: tex(ec-uplmri8.vf) = %{tl_version} -Provides: tex(ec-uplmri9.vf) = %{tl_version} -Provides: tex(t1uplmr.fd) = %{tl_version} -Provides: tex(uppunctlm.sty) = %{tl_version} - -%description uppunctlm -The package provides a mechanism to keep punctuation always in -upright shape even if italic was specified. It is directed to -Latin Modern fonts, and provides .tfm, .vf, .fd, and .sty -files. Here a list of punctuation characters always presented -in upright shapes: comma, period, semicolon, colon, -parentheses, square brackets, and Arabic numerals. - -%package witharrows -Summary: "Aligned" math environments with arrows for comments -Version: svn51793 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(expl3.sty) -Requires: tex(footnote.sty) -Requires: tex(l3keys2e.sty) -Requires: tex(tikz.sty) -Requires: tex(xparse.sty) -Provides: tex(witharrows.sty) = %{tl_version} - -%description witharrows -This package provides an environment WithArrows which is -similar to the environment aligned of amsmath (and mathtools), -but gives the possibility to draw arrows on the right side of -the alignment. These arrows are usually used to give -explanations concerning the mathematical calculus presented. -The package requires the following other LaTeX packages: expl3, -footnote, l3keys2e, tikz, and xparse. - -%package xfakebold -Summary: Fake a regular font for bold characters -Version: svn48460 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: tex(ifluatex.sty) -Requires: tex(ifxetex.sty) -Requires: tex(xkeyval.sty) -Provides: tex(xfakebold.sty) = %{tl_version} - -%description xfakebold -This package uses PDF's text rendering to modify the linewidth -of an outline font to get bold characters. It works only for -vectorfonts where the glyphs are defined by their outline. The -package works both in text and in math mode, for pdfLaTeX as -well as for LuaLaTeX. The package depends on ifluatex, ifxetex, -and xkeyval. - -%package xtuthesis -Summary: XTU thesis template -Version: svn47049 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(xtuformat.sty) = %{tl_version} - -%description xtuthesis -The package provides a thesis template for the Xiangtan -University. - -%package xurl -Summary: Allow url break at any alphanumerical character -Version: svn49488 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(xurl.sty) = %{tl_version} - -%description xurl -Package xurl loads package url by default and defines possible -url breaks for all alphanumerical characters and = / . : * - ~ -' " All arguments which are valid for url can be used. It will -be passed to package url. xurl itself has no special optional -argument. For more information read the documentation of -package url. - -# TL2019 - -%package accents -Summary: Multiple mathematical accents -Version: svn51497 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(accents.sty) = %{tl_version} - -%description accents -A package for multiple accents in mathematics, with nice -features concerning the creation of accents and placement of -scripts. - -%package addliga -Summary: Access basic ligatures in legacy TrueType fonts -Version: svn50912 -License: Public Domain -Requires: texlive-base texlive-kpathsea -Provides: tex(addliga.sty) = %{tl_version} - -%description addliga -This small and simple package allows LuaLaTeX users to access -basic ligatures (ff, fi, ffi, fl, ffl) in legacy TrueType fonts -(those lacking a liga table) accessed via fontspec. - -%package almendra -Summary: Almendra fonts with LaTeX support -Version: svn51085 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(almnd_3ehf7b.enc) = %{tl_version} -Provides: tex(almnd_3qmmf2.enc) = %{tl_version} -Provides: tex(almnd_3smkg7.enc) = %{tl_version} -Provides: tex(almnd_4ostoe.enc) = %{tl_version} -Provides: tex(almnd_aisq53.enc) = %{tl_version} -Provides: tex(almnd_aphd5h.enc) = %{tl_version} -Provides: tex(almnd_cksmvz.enc) = %{tl_version} -Provides: tex(almnd_ktaaad.enc) = %{tl_version} -Provides: tex(almnd_ncjtqa.enc) = %{tl_version} -Provides: tex(almnd_qv6mtu.enc) = %{tl_version} -Provides: tex(almnd_w4vl5k.enc) = %{tl_version} -Provides: tex(almnd_yh7c3k.enc) = %{tl_version} -Provides: tex(almnd_yuo247.enc) = %{tl_version} -Provides: tex(almendra.map) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ot1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(Almendra-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ot1--base.tfm) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ot1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(Almendra-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ot1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(Almendra-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ts1--base.tfm) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ts1.tfm) = %{tl_version} -Provides: tex(Almendra-Bold.ttf) = %{tl_version} -Provides: tex(Almendra-BoldItalic.ttf) = %{tl_version} -Provides: tex(Almendra-Italic.ttf) = %{tl_version} -Provides: tex(Almendra-Regular.ttf) = %{tl_version} -Provides: tex(AlmendraSmallCaps.ttf) = %{tl_version} -Provides: tex(Almendra-Bold.pfb) = %{tl_version} -Provides: tex(Almendra-BoldItalic.pfb) = %{tl_version} -Provides: tex(Almendra-Italic.pfb) = %{tl_version} -Provides: tex(Almendra-Regular.pfb) = %{tl_version} -Provides: tex(AlmendraDisplay-Regular.pfb) = %{tl_version} -Provides: tex(AlmendraSmallCaps.pfb) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ly1.vf) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ot1.vf) = %{tl_version} -Provides: tex(Almendra-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(Almendra-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ot1.vf) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(Almendra-BoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ly1.vf) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ot1.vf) = %{tl_version} -Provides: tex(Almendra-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(Almendra-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ly1.vf) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ot1.vf) = %{tl_version} -Provides: tex(Almendra-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(Almendra-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-t1.vf) = %{tl_version} -Provides: tex(AlmendraSmallCaps-osf-sc-ts1.vf) = %{tl_version} -Provides: tex(LY1Almendra-OsF.fd) = %{tl_version} -Provides: tex(OT1Almendra-OsF.fd) = %{tl_version} -Provides: tex(T1Almendra-OsF.fd) = %{tl_version} -Provides: tex(TS1Almendra-OsF.fd) = %{tl_version} -Provides: tex(almendra.sty) = %{tl_version} - -%description almendra -This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -support for the Almendra family of fonts, designed by Ana -Sanfelippo. Almendra is a typeface design based on calligraphy. -Its style is related to the chancery and gothic hands. There -are regular and bold weights with matching italics. There is -also a regular-weight small-caps. - -%package alpha-persian -Summary: Persian version of alpha.bst -Version: svn50316 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(alpha-persian.bst) = %{tl_version} - -%description alpha-persian -The package provides a Persian version of the alpha BibTeX -style and offers several enhancements. It is compatible with -the hyperref, url, natbib, and cite packages. - -%package amscdx -Summary: Enhanced commutative diagrams -Version: svn51532 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(amscdx.sty) = %{tl_version} - -%description amscdx -The original amscd package provides a CD environment that -emulates the commutative diagram capabilities of AMS-TeX -version 2.x. This means that only simple rectangular diagrams -are supported, with no diagonal arrows or more exotic features. -This enhancement package implements double ("fat"), dashed, and -bidirectional arrows (left-right and up-down), and color -attributes for arrows and their annotations. The restriction to -rectangular geometry remains. This nevertheless allows the -drawing of a much broader class of "commutative-diagram-like" -diagrams. This update, 2.2x of 2019-07-02, fixes the -dashed-arrows parts placement bug, and adds the package option -'lyx', for use with lyx to prevent conflict with the already -loaded amscd. The packages xcolor and graphicx are made -required. - -%package apprendre-a-programmer-en-tex -Summary: The book "Apprendre a programmer en TeX" -Version: svn50933 -License: LPPL -Requires: texlive-base texlive-kpathsea - -%description apprendre-a-programmer-en-tex -This book explains the basic concepts required for programming -in TeX and explains the programming methods, providing many -examples. The package makes the compileable source code as well -as the compiled pdf file accessible to everyone. - -%description -l fr apprendre-a-programmer-en-tex -Ce livre expose les concepts de base requis pour programmer en -TeX et decrit les methodes de programmation en s'appuyant sur -de nombreux exemples. Ce package met a disposition de tous le -code source compilable ainsi que le fichier pdf du livre. - -%package arabicfront -Summary: Frontmatter with arabic page numbers -Version: svn51474 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(arabicfront.sty) = %{tl_version} - -%description arabicfront -This package modifies the definitions of \frontmatter and -\mainmatter so that page numbering starts in arabic style from -the front matter while preserving the rest of the original -definitions. For it to work, \pagenumbering has to be inside -these macros--most of classes do that, but there are exceptions -like memoir. - -%package arraycols -Summary: New column types for array and tabular environments -Version: svn51491 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(arraycols.sty) = %{tl_version} - -%description arraycols -This small package provides new column types for array and -tabular environments, horizontally and vertically centered, or -with adjusted height for big mathematical expressions. The -columns width can be fixed or calculated like in tabularx -environments. Macros for drawing vertical and horizontal rules -of variable thickness are also provided. - -%package asmeconf -Summary: A template for ASME conference papers -Version: svn51583 -License: MIT -Requires: texlive-base texlive-kpathsea -Requires: texlive-newtx -Provides: tex(asmeconf.bst) = %{tl_version} -Provides: tex(asmeconf.cls) = %{tl_version} - -%description asmeconf -This package provides a LaTeX class, a BibTeX style, and a -LaTeX template to format conference papers for the American -Society of Mechanical Engineers (ASME) according to the -requirements on ASME's conference web pages (as posted in March -2019). The .tex and .cls files are commented and should be -self-explanatory. The package depends on newtx. This work is -not a publication of ASME itself. - -%package asmejour -Summary: A template for ASME journal papers -Version: svn51567 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(asmejour.bst) = %{tl_version} -Provides: tex(asmejour.cls) = %{tl_version} - -%description asmejour -This package provides a LaTeX class, a BibTeX style, and a -LaTeX template to format journal papers for submission to the -American Society of Mechanical Engineers (ASME). The .tex and -.cls files are commented and should be self-explanatory. The -package depends on newtx. This work is not a publication of -ASME itself. - -%package beamerauxtheme -Summary: Supplementary outer and inner themes for beamer -Version: svn51053 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(beamerinnerthemesimplelines.sty) = %{tl_version} -Provides: tex(beamerouterthemesidebarwithminiframes.sty) = %{tl_version} -Provides: tex(beamerouterthemesplitwithminiframes.sty) = %{tl_version} -Provides: tex(beamerouterthemetwolines.sty) = %{tl_version} - -%description beamerauxtheme -This bundle provides a collection of inner and outer themes as -supplements to the default themes in the beamer distribution. -These themes can be used in combination with existing inner, -outer, and color themes. - -%package beamer-rl -Summary: Right to left presentation with beamer and babel -Version: svn50970 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: texlive-babel -Provides: tex(beamer-rl.sty) = %{tl_version} - -%description beamer-rl -This package provides patches of some beamer templates and -commands for presentation from right to left. It requires Babel -with the LuaLaTeX engine. - -%package beamertheme-light -Summary: A minimal beamer style -Version: svn49867 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(beamertheme-light.sty) = %{tl_version} - -%description beamertheme-light -The LaTeX package beamertheme-light provides an aesthetic and -minimal beamer style by redefining colors and fonts. - -%package beamertheme-npbt -Summary: A collection of LaTeX beamer themes -Version: svn48424 -License: GPLv3 and Public Domain -Requires: texlive-base texlive-kpathsea -Provides: tex(beamercolorthemeNPBT_EUFOM.sty) = %{tl_version} -Provides: tex(beamercolorthemeNPBT_FOM.sty) = %{tl_version} -Provides: tex(beamercolorthemeNPBT_FOM_ifes.sty) = %{tl_version} -Provides: tex(beamercolorthemeNPBT_SC.sty) = %{tl_version} -Provides: tex(beamerouterthemeNPBT_FOM.sty) = %{tl_version} -Provides: tex(beamerouterthemeNPBT_FOM_ifes.sty) = %{tl_version} -Provides: tex(beamerthemeNPBT.sty) = %{tl_version} -Provides: tex(LICENSE.md) = %{tl_version} -Provides: tex(NPBT_FOM_background.png) = %{tl_version} -Provides: tex(NPBT_FOM_frametitlebackground.png) = %{tl_version} -Provides: tex(NPBT_FOM_ifes_backgound.png) = %{tl_version} -Provides: tex(NPBT_FOM_ifes_frametitlebackgound.png) = %{tl_version} -Provides: tex(NPBT_FOM_ifes_linie.pdf) = %{tl_version} -Provides: tex(NPBT_FOM_ifes_logo.png) = %{tl_version} -Provides: tex(NPBT_FOM_linie.pdf) = %{tl_version} -Provides: tex(NPBT_FOM_logo.pdf) = %{tl_version} -Provides: tex(NPBT_SC_background.jpg) = %{tl_version} -Provides: tex(NPBT_SC_logo.png) = %{tl_version} -Provides: tex(NPBT_eufom_backgound.png) = %{tl_version} -Provides: tex(NPBT_eufom_frametitlebackgound.png) = %{tl_version} -Provides: tex(NPBT_eufom_linie.png) = %{tl_version} -Provides: tex(NPBT_eufom_logo.png) = %{tl_version} -Provides: tex(lNPBT_SC_linie.png) = %{tl_version} - -%description beamertheme-npbt -"NPBT" stands for "Norman's Pandoc Beamer Themes". Currently -the following themes are supported: Sefiroth Consulting: A -private (demonstration) theme. FOM: The layout of Hochschule -FOM. FOM ifes: The layout of Hochschule FOM, Institut fur -Empirie & Statistik. eufom: The layout of eufom. - -%package biblatex-bath -Summary: Harvard referencing style as recommended by the University of Bath Library -Version: svn51599 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(bath.bbx) = %{tl_version} -Provides: tex(bath.cbx) = %{tl_version} -Provides: tex(bath.dbx) = %{tl_version} -Provides: tex(british-bath.lbx) = %{tl_version} -Provides: tex(english-bath.lbx) = %{tl_version} - -%description biblatex-bath -This package provides a BibLaTeX style to format reference -lists in the Harvard style recommended by the University of -Bath Library. - -%package biblatex-ext -Summary: Extended BibLaTeX standard styles -Version: svn50759 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(biblatex-ext-oa-doiapi.sty) = %{tl_version} -Provides: tex(biblatex-ext-oa.sty) = %{tl_version} -Provides: tex(biblatex-ext-oasymb-l3draw.sty) = %{tl_version} -Provides: tex(biblatex-ext-oasymb-pict2e.sty) = %{tl_version} -Provides: tex(biblatex-ext-oasymb-tikz.sty) = %{tl_version} -Provides: tex(biblatex-ext-tabular.sty) = %{tl_version} -Provides: tex(blxextdoiapi.lua) = %{tl_version} -Provides: tex(ext-alphabetic-verb.bbx) = %{tl_version} -Provides: tex(ext-alphabetic-verb.cbx) = %{tl_version} -Provides: tex(ext-alphabetic.bbx) = %{tl_version} -Provides: tex(ext-alphabetic.cbx) = %{tl_version} -Provides: tex(ext-authortitle-common.bbx) = %{tl_version} -Provides: tex(ext-authortitle-comp.bbx) = %{tl_version} -Provides: tex(ext-authortitle-comp.cbx) = %{tl_version} -Provides: tex(ext-authortitle-ibid.bbx) = %{tl_version} -Provides: tex(ext-authortitle-ibid.cbx) = %{tl_version} -Provides: tex(ext-authortitle-icomp.bbx) = %{tl_version} -Provides: tex(ext-authortitle-icomp.cbx) = %{tl_version} -Provides: tex(ext-authortitle-tcomp.bbx) = %{tl_version} -Provides: tex(ext-authortitle-tcomp.cbx) = %{tl_version} -Provides: tex(ext-authortitle-terse.bbx) = %{tl_version} -Provides: tex(ext-authortitle-terse.cbx) = %{tl_version} -Provides: tex(ext-authortitle-ticomp.bbx) = %{tl_version} -Provides: tex(ext-authortitle-ticomp.cbx) = %{tl_version} -Provides: tex(ext-authortitle.bbx) = %{tl_version} -Provides: tex(ext-authortitle.cbx) = %{tl_version} -Provides: tex(ext-authoryear-common.bbx) = %{tl_version} -Provides: tex(ext-authoryear-comp.bbx) = %{tl_version} -Provides: tex(ext-authoryear-comp.cbx) = %{tl_version} -Provides: tex(ext-authoryear-ecomp.bbx) = %{tl_version} -Provides: tex(ext-authoryear-ecomp.cbx) = %{tl_version} -Provides: tex(ext-authoryear-ibid.bbx) = %{tl_version} -Provides: tex(ext-authoryear-ibid.cbx) = %{tl_version} -Provides: tex(ext-authoryear-icomp.bbx) = %{tl_version} -Provides: tex(ext-authoryear-icomp.cbx) = %{tl_version} -Provides: tex(ext-authoryear-iecomp.bbx) = %{tl_version} -Provides: tex(ext-authoryear-iecomp.cbx) = %{tl_version} -Provides: tex(ext-authoryear-tcomp.bbx) = %{tl_version} -Provides: tex(ext-authoryear-tcomp.cbx) = %{tl_version} -Provides: tex(ext-authoryear-tecomp.bbx) = %{tl_version} -Provides: tex(ext-authoryear-tecomp.cbx) = %{tl_version} -Provides: tex(ext-authoryear-terse.bbx) = %{tl_version} -Provides: tex(ext-authoryear-terse.cbx) = %{tl_version} -Provides: tex(ext-authoryear-ticomp.bbx) = %{tl_version} -Provides: tex(ext-authoryear-ticomp.cbx) = %{tl_version} -Provides: tex(ext-authoryear-tiecomp.bbx) = %{tl_version} -Provides: tex(ext-authoryear-tiecomp.cbx) = %{tl_version} -Provides: tex(ext-authoryear.bbx) = %{tl_version} -Provides: tex(ext-authoryear.cbx) = %{tl_version} -Provides: tex(ext-biblatex-aux.def) = %{tl_version} -Provides: tex(ext-dashed-common.bbx) = %{tl_version} -Provides: tex(ext-numeric-comp.bbx) = %{tl_version} -Provides: tex(ext-numeric-comp.cbx) = %{tl_version} -Provides: tex(ext-numeric-verb.bbx) = %{tl_version} -Provides: tex(ext-numeric-verb.cbx) = %{tl_version} -Provides: tex(ext-numeric.bbx) = %{tl_version} -Provides: tex(ext-numeric.cbx) = %{tl_version} -Provides: tex(ext-standard.bbx) = %{tl_version} -Provides: tex(ext-verbose-ibid.bbx) = %{tl_version} -Provides: tex(ext-verbose-ibid.cbx) = %{tl_version} -Provides: tex(ext-verbose-inote.bbx) = %{tl_version} -Provides: tex(ext-verbose-inote.cbx) = %{tl_version} -Provides: tex(ext-verbose-note.bbx) = %{tl_version} -Provides: tex(ext-verbose-note.cbx) = %{tl_version} -Provides: tex(ext-verbose-trad1.bbx) = %{tl_version} -Provides: tex(ext-verbose-trad1.cbx) = %{tl_version} -Provides: tex(ext-verbose-trad2.bbx) = %{tl_version} -Provides: tex(ext-verbose-trad2.cbx) = %{tl_version} -Provides: tex(ext-verbose-trad3.bbx) = %{tl_version} -Provides: tex(ext-verbose-trad3.cbx) = %{tl_version} -Provides: tex(ext-verbose.bbx) = %{tl_version} -Provides: tex(ext-verbose.cbx) = %{tl_version} - -%description biblatex-ext -The BibLaTeX-ext bundle provides styles that slightly extend -the standard styles that ship with BibLaTeX. The styles offered -in this bundle provide a simple interface to change some of the -stylistic decisions made in the standard styles. At the same -time they stay as close to their standard counterparts as -possible, so that most customisation methods can be applied -here as well. - -%package bitter -Summary: LaTeX support for the Bitter family of fonts -Version: svn51086 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(btr_6upxhe.enc) = %{tl_version} -Provides: tex(btr_72jdjw.enc) = %{tl_version} -Provides: tex(btr_azarls.enc) = %{tl_version} -Provides: tex(btr_b5i5mx.enc) = %{tl_version} -Provides: tex(btr_f2umud.enc) = %{tl_version} -Provides: tex(btr_gljolu.enc) = %{tl_version} -Provides: tex(btr_ncjtqa.enc) = %{tl_version} -Provides: tex(btr_ssdm5h.enc) = %{tl_version} -Provides: tex(btr_vzfpnj.enc) = %{tl_version} -Provides: tex(btr_w3wxei.enc) = %{tl_version} -Provides: tex(btr_x2bjkb.enc) = %{tl_version} -Provides: tex(bitter.map) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(Bitter-Bold.ttf) = %{tl_version} -Provides: tex(Bitter-Italic.ttf) = %{tl_version} -Provides: tex(Bitter-Regular.ttf) = %{tl_version} -Provides: tex(Bitter-Bold.pfb) = %{tl_version} -Provides: tex(Bitter-Italic.pfb) = %{tl_version} -Provides: tex(Bitter-Regular.pfb) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(Bitter-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(Bitter-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(Bitter-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(LY1Bitter-TLF.fd) = %{tl_version} -Provides: tex(OT1Bitter-TLF.fd) = %{tl_version} -Provides: tex(T1Bitter-TLF.fd) = %{tl_version} -Provides: tex(TS1Bitter-TLF.fd) = %{tl_version} -Provides: tex(bitter.sty) = %{tl_version} - -%description bitter -This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -support for the Bitter family of fonts, designed by Sol Matas -for Huerta Tipografica Bitter is a contemporary slab-serif -typeface for text. There are regular and bold weights and an -italic, but no bold italic. - -%package brandeis-problemset -Summary: Document class for COSI Problem sets at Brandeis University (Waltham, MA) -Version: svn50991 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(brandeis-problemset.cls) = %{tl_version} -Provides: tex(brandeis-problemset.sty) = %{tl_version} - -%description brandeis-problemset -Brandeis University's computer science ("COSI") courses often -assign "problem sets" which require fairly rigorous formatting. -This document class, which extends article, provides a simple -way to typeset these problem sets in LaTeX. Although the class -is compatible with all LaTeX flavors, XeLaTeX or LuaLaTeX are -recommended for fontspec support. - -%package businesscard-qrcode -Summary: Business cards with QR-Code -Version: svn48417 -License: LGPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(businesscard-qrcode.cls) = %{tl_version} - -%description businesscard-qrcode -What happens when you give your visiting card to someone? -Either they manually type the text into their computer or -mobile phone, or it will end up in a box and be forgotten. -Nowadays data is required electronically, not on paper. Here is -the solution: A visiting card with QR-Code that contains a full -vcard so that it can be scanned with an app on the mobile phone -and thereby automatically imported into the electronic -contacts. This also works well when you are offline and -bluetooth transfer fails. So here is the highly configurable -business card or visiting card with full vcard as QR-Code, -ready to send to online printers. You can specify the exact -size of the paper and the content within the paper, inluding -generation of crop marks. The package depends on the following -other LaTeX packages: calc, crop, DejaVuSans, etoolbox, -fontawesome, fontenc, geometry, kvoptions, marvosym, qrcode, -varwidth, and wrapfig. The package needs XeLaTeX for working -properly. - -%package bussproofs-extra -Summary: Extra commands for bussproofs.sty -Version: svn51299 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(bussproofs-extra.sty) = %{tl_version} - -%description bussproofs-extra -This package provides additional functionality for -bussproofs.sty; specifically, it allows for typesetting of -entire (sub)deductions. - -%package bxjaholiday -Summary: Support for Japanese holidays -Version: svn49924 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(bxjaholiday.sty) = %{tl_version} - -%description bxjaholiday -This LaTeX package provides a command to convert dates to names -of Japanese holidays. Another command, converting dates to the -day of the week in Japanese, is available as a free gift. -Further (lower-level) APIs are provided for expl3. The package -supports pdfTeX, XeTeX, LuaTeX, pTeX, and upTeX. - -%package bxtexlogo -Summary: Additional TeX-family logos -Version: svn47230 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(bxtexlogo.sty) = %{tl_version} - -%description bxtexlogo -The hologo package provides many useful logos of popular (and -not so popular) TeX-family software. However, its interface is -a bit cumbersome because you must type \hologo{BibTeX} instead -of \BibTeX. This package makes it possible to import some of -the logos provided by hologo as single commands, such as -\BibTeX. Additionally, the package provides logos of some -TeX-family software that is popular mainly in Japan. These -logos can be imported in the same way as those provided by the -\hologo command. bxtexlogo depends on hologo and cjhebrew (if -\logoAleph and \logoLamed are used). - -%package bxwareki -Summary: Convert dates from Gregorian to Japanese calender -Version: svn51286 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(bxwareki-cd.def) = %{tl_version} -Provides: tex(bxwareki.sty) = %{tl_version} -Provides: tex(bxwareki2019.def) = %{tl_version} - -%description bxwareki -This LaTeX package provides commands to convert from the -Gregorian calendar (e. g. 2018/8/28) to the Japanese rendering -of the Japanese calendar (e. g. Heisei 30 nen 8 gatsu 28 nichi; -actually with kanji characters). You can choose whether the -numbers are written in Western numerals or kanji numerals. Note -that the package only deals with dates in the year 1873 or -later, where the Japanese calendar is really a Gregorian -calendar with a different notation of years. - -%package centeredline -Summary: A macro for centering lines -Version: svn50971 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(centeredline.sty) = %{tl_version} - -%description centeredline -This package provides a macro \centeredline{...} which allows -to conveniently center a line inside a paragraph while allowing -usage therein of \verb or other macros changing catcodes. It -works nicely in list environments, and material whose natural -width exceeds the current linewidth will get properly centered -too. - -%package changelog -Summary: Provides a changelog environment -Version: svn51574 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(changelog.sty) = %{tl_version} - -%description changelog -This package provides a changelog environment (which itself -provides a version environment) to represent a changelog. The -package supports multiple authors, unreleased changes, and -yanked (revoked) releases. Inspired by keepachangelog.com. - -%package checkend -Summary: Extend "improperly closed environment" messages -Version: svn51475 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(checkend.sty) = %{tl_version} - -%description checkend -When an environment is left open, LaTeX gives an error at the -end of the document. However it only informs about the first of -them, while the rest are shown with meaningless errors: (\end -occurred inside a group at level N) This package replaces these -errors with more useful messages which show which environments -(in reverse order) were not closed. There are no user macros: -just use the package. - -%package chordbars -Summary: Print chord grids for pop/jazz tunes -Version: svn49569 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(chordbars.sty) = %{tl_version} - -%description chordbars -This Tikz-based music-related package is targeted at pop/jazz -guitar/bass/piano musicians. They usually need only the chords -and the song structure. This package produces rectangular song -patterns with "one square per bar", with the chord shown inside -the square. It also handles the song structure by showing the -bar count and the repetitions of the patterns. - -%package chordbox -Summary: Draw chord diagrams -Version: svn51000 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(chordbox.sty) = %{tl_version} - -%description chordbox -This package provides two macros for drawing chord diagrams, as -may be found for example in chord charts/books and educational -materials. They are composed as TikZ pictures and have several -options to modify their appearance. - -%package chs-physics-report -Summary: Physics lab reports for Carmel High School -Version: svn48549 -License: Public Domain and CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: tex(chs-physics-report.sty) = %{tl_version} - -%description chs-physics-report -This package may optionally be used by students at Carmel High -School in Indiana in the United States to write physics lab -reports for FW physics courses. As many students are beginners -at LaTeX, it also attempts to simplify the report-writing -process by offering macros for commonly used notation and by -automatically formatting the documents for students who will -only use TeX for mathematics and not typesetting. The package -depends on amsmath, calc, fancyhdr, geometry, graphicx, -letltxmacro, titlesec, transparent, and xcolor. - -%package codeanatomy -Summary: Typeset code with annotations -Version: svn51627 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(codeanatomy.sty) = %{tl_version} - -%description codeanatomy -The idea of this Package is to typeset illustrations of pieces -of code with annotations on each single part of code (Code -Anatomy). The origin of this idea are code illustrations from -the book "Computer Science: An Interdisciplinary Approach" from -Robert Sedgewick and Kevin Wayne. The package depends on expl3, -xparse, and TikZ. - -%package coelacanth -Summary: Coelacanth fonts with LaTeX support -Version: svn45270 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(coel_2jlhoq.enc) = %{tl_version} -Provides: tex(coel_35r5ki.enc) = %{tl_version} -Provides: tex(coel_3oskfe.enc) = %{tl_version} -Provides: tex(coel_4utx75.enc) = %{tl_version} -Provides: tex(coel_552nxl.enc) = %{tl_version} -Provides: tex(coel_56r2mu.enc) = %{tl_version} -Provides: tex(coel_5kfzcm.enc) = %{tl_version} -Provides: tex(coel_676vfy.enc) = %{tl_version} -Provides: tex(coel_7a7buo.enc) = %{tl_version} -Provides: tex(coel_7svyb7.enc) = %{tl_version} -Provides: tex(coel_aksfuu.enc) = %{tl_version} -Provides: tex(coel_akszvl.enc) = %{tl_version} -Provides: tex(coel_arj52v.enc) = %{tl_version} -Provides: tex(coel_asvvw4.enc) = %{tl_version} -Provides: tex(coel_aztaqt.enc) = %{tl_version} -Provides: tex(coel_bgukot.enc) = %{tl_version} -Provides: tex(coel_c2xknr.enc) = %{tl_version} -Provides: tex(coel_cktdqa.enc) = %{tl_version} -Provides: tex(coel_dyimfx.enc) = %{tl_version} -Provides: tex(coel_foqa6g.enc) = %{tl_version} -Provides: tex(coel_fv62g6.enc) = %{tl_version} -Provides: tex(coel_fzzktv.enc) = %{tl_version} -Provides: tex(coel_gi7fl5.enc) = %{tl_version} -Provides: tex(coel_gwryf6.enc) = %{tl_version} -Provides: tex(coel_h4mk3u.enc) = %{tl_version} -Provides: tex(coel_hw4v6f.enc) = %{tl_version} -Provides: tex(coel_imsj7k.enc) = %{tl_version} -Provides: tex(coel_jiunfz.enc) = %{tl_version} -Provides: tex(coel_jnppct.enc) = %{tl_version} -Provides: tex(coel_ksfdos.enc) = %{tl_version} -Provides: tex(coel_ltfl5o.enc) = %{tl_version} -Provides: tex(coel_nbsgyv.enc) = %{tl_version} -Provides: tex(coel_nxpxy7.enc) = %{tl_version} -Provides: tex(coel_osu6er.enc) = %{tl_version} -Provides: tex(coel_pvge6z.enc) = %{tl_version} -Provides: tex(coel_pxgy5y.enc) = %{tl_version} -Provides: tex(coel_pxwm7f.enc) = %{tl_version} -Provides: tex(coel_qyombs.enc) = %{tl_version} -Provides: tex(coel_r7t3wu.enc) = %{tl_version} -Provides: tex(coel_rvr22c.enc) = %{tl_version} -Provides: tex(coel_rwwz7l.enc) = %{tl_version} -Provides: tex(coel_sfojue.enc) = %{tl_version} -Provides: tex(coel_surv45.enc) = %{tl_version} -Provides: tex(coel_ti6dce.enc) = %{tl_version} -Provides: tex(coel_tlxuk3.enc) = %{tl_version} -Provides: tex(coel_tpkp5g.enc) = %{tl_version} -Provides: tex(coel_tzvqqj.enc) = %{tl_version} -Provides: tex(coel_u3c7bp.enc) = %{tl_version} -Provides: tex(coel_v7z4te.enc) = %{tl_version} -Provides: tex(coel_vd2zd6.enc) = %{tl_version} -Provides: tex(coel_vhsdt6.enc) = %{tl_version} -Provides: tex(coel_xf4635.enc) = %{tl_version} -Provides: tex(coel_xkpln4.enc) = %{tl_version} -Provides: tex(coel_y2piry.enc) = %{tl_version} -Provides: tex(coel_y72t4k.enc) = %{tl_version} -Provides: tex(coel_yuuo6b.enc) = %{tl_version} -Provides: tex(coel_yxz7qf.enc) = %{tl_version} -Provides: tex(coel_zhgwvo.enc) = %{tl_version} -Provides: tex(Coelacanth.map) = %{tl_version} -Provides: tex(Coelacanth.otf) = %{tl_version} -Provides: tex(CoelacanthBold.otf) = %{tl_version} -Provides: tex(CoelacanthExtraLt.otf) = %{tl_version} -Provides: tex(CoelacanthHeavy.otf) = %{tl_version} -Provides: tex(CoelacanthItalic.otf) = %{tl_version} -Provides: tex(CoelacanthLt.otf) = %{tl_version} -Provides: tex(CoelacanthSemibd.otf) = %{tl_version} -Provides: tex(Coelacanth-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-ot1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-lf-ts1.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-osf-ts1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-ot1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tlf-ts1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-t1.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(Coelacanth-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-osf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-t1.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-ts1.tfm) = %{tl_version} -Provides: tex(Coelacanth.pfb) = %{tl_version} -Provides: tex(CoelacanthBold.pfb) = %{tl_version} -Provides: tex(CoelacanthExtraLt.pfb) = %{tl_version} -Provides: tex(CoelacanthHeavy.pfb) = %{tl_version} -Provides: tex(CoelacanthItalic.pfb) = %{tl_version} -Provides: tex(CoelacanthLt.pfb) = %{tl_version} -Provides: tex(CoelacanthSemibd.pfb) = %{tl_version} -Provides: tex(Coelacanth-lf-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-ot1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-sc-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-ot1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-titling-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-lf-ts1.vf) = %{tl_version} -Provides: tex(Coelacanth-osf-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(Coelacanth-osf-sc-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-osf-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-osf-ts1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-ot1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-ot1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-tlf-ts1.vf) = %{tl_version} -Provides: tex(Coelacanth-tosf-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(Coelacanth-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-tosf-t1.vf) = %{tl_version} -Provides: tex(Coelacanth-tosf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-lf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-osf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-osf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-osf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-lf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-osf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tlf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthExtraLt-tosf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-lf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-osf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tlf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthHeavy-tosf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-lf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-osf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-osf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-osf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-osf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tlf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthLt-tosf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-lf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-osf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tlf-ts1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-t1.vf) = %{tl_version} -Provides: tex(CoelacanthSemibd-tosf-ts1.vf) = %{tl_version} -Provides: tex(LY1Coelacanth-LF.fd) = %{tl_version} -Provides: tex(LY1Coelacanth-OsF.fd) = %{tl_version} -Provides: tex(LY1Coelacanth-TLF.fd) = %{tl_version} -Provides: tex(LY1Coelacanth-TOsF.fd) = %{tl_version} -Provides: tex(OT1Coelacanth-LF.fd) = %{tl_version} -Provides: tex(OT1Coelacanth-OsF.fd) = %{tl_version} -Provides: tex(OT1Coelacanth-TLF.fd) = %{tl_version} -Provides: tex(OT1Coelacanth-TOsF.fd) = %{tl_version} -Provides: tex(T1Coelacanth-LF.fd) = %{tl_version} -Provides: tex(T1Coelacanth-OsF.fd) = %{tl_version} -Provides: tex(T1Coelacanth-TLF.fd) = %{tl_version} -Provides: tex(T1Coelacanth-TOsF.fd) = %{tl_version} -Provides: tex(TS1Coelacanth-LF.fd) = %{tl_version} -Provides: tex(TS1Coelacanth-OsF.fd) = %{tl_version} -Provides: tex(TS1Coelacanth-TLF.fd) = %{tl_version} -Provides: tex(TS1Coelacanth-TOsF.fd) = %{tl_version} -Provides: tex(coelacanth.sty) = %{tl_version} - -%description coelacanth -The Coelacanth font is inspired by the classic Centaur type -design of Bruce Rogers, described by some as the most beautiful -typeface ever designed. It aims to be a professional quality -type family for general book typesetting. - -%package colophon -Summary: Provides commands for producing a colophon -Version: svn47913 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(colophon.sty) = %{tl_version} - -%description colophon -Colophons are a once-common design device by which a book (or -document) designer gave some information to his readers about -the design and makeup of the text. It typically includes the -publisher (if not included elsewhere in the document), font -size, leading size, measure, and of course font face -identification. Sometimes it includes information about the -tools used, as well. This package provides some highly -configurable macros, with sensible defaults, for producing -colophons without having to muck around with a lot of manual -code. - -%package colorprofiles -Summary: Collection of free ICC profiles -Version: svn49086 -License: LPPL and MIT and Public Domain and zlib -Requires: texlive-base texlive-kpathsea -Provides: tex(FOGRA39L_coated.icc) = %{tl_version} -Provides: tex(colorprofiles.sty) = %{tl_version} -Provides: tex(colorprofiles.tex) = %{tl_version} -Provides: tex(sRGB.icc) = %{tl_version} - -%description colorprofiles -This package collects free ICC profiles that can be used by -color profile aware applications/tools like the pdfx package, -as well as TeX and LaTeX packages to access them. - -%package commedit -Summary: Commented editions with LaTeX -Version: svn50116 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(commedit.sty) = %{tl_version} - -%description commedit -The package is intended for commented editions. An example of -commented edition is a teacher's book based on a student's -textbook. Each page of a teacher's book is a page from the -textbook and comments for the teacher. This package was -commissioned by Instituto de Matematica Pura e Aplicada ( IMPA) - -%package crimsonpro -Summary: CrimsonPro fonts with LaTeX support -Version: svn49568 -License: OFL and LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(crp_26fdub.enc) = %{tl_version} -Provides: tex(crp_27ir52.enc) = %{tl_version} -Provides: tex(crp_36e4fm.enc) = %{tl_version} -Provides: tex(crp_3qcve5.enc) = %{tl_version} -Provides: tex(crp_3wykti.enc) = %{tl_version} -Provides: tex(crp_4klt2j.enc) = %{tl_version} -Provides: tex(crp_4netob.enc) = %{tl_version} -Provides: tex(crp_635enj.enc) = %{tl_version} -Provides: tex(crp_adnmjt.enc) = %{tl_version} -Provides: tex(crp_c5x2ld.enc) = %{tl_version} -Provides: tex(crp_cxrnwq.enc) = %{tl_version} -Provides: tex(crp_ekytnr.enc) = %{tl_version} -Provides: tex(crp_fshbks.enc) = %{tl_version} -Provides: tex(crp_g4frwu.enc) = %{tl_version} -Provides: tex(crp_hau3x5.enc) = %{tl_version} -Provides: tex(crp_jps62n.enc) = %{tl_version} -Provides: tex(crp_lvynmn.enc) = %{tl_version} -Provides: tex(crp_m2hvgx.enc) = %{tl_version} -Provides: tex(crp_n7rrsx.enc) = %{tl_version} -Provides: tex(crp_onibjc.enc) = %{tl_version} -Provides: tex(crp_owqrxg.enc) = %{tl_version} -Provides: tex(crp_oxm4ax.enc) = %{tl_version} -Provides: tex(crp_q32vei.enc) = %{tl_version} -Provides: tex(crp_tckgju.enc) = %{tl_version} -Provides: tex(crp_tdvvlu.enc) = %{tl_version} -Provides: tex(crp_tkiwxq.enc) = %{tl_version} -Provides: tex(crp_vlqc7k.enc) = %{tl_version} -Provides: tex(crp_vqpkf5.enc) = %{tl_version} -Provides: tex(crp_w6wfcd.enc) = %{tl_version} -Provides: tex(crp_xv7ze7.enc) = %{tl_version} -Provides: tex(crp_zv5bnh.enc) = %{tl_version} -Provides: tex(CrimsonPro.map) = %{tl_version} -Provides: tex(CrimsonPro-Black-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-inf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-inf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-inf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-inf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-inf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-swash-ly1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-swash-ly1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-swash-ot1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-swash-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-swash-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(CrimsonPro-Black.ttf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic.ttf) = %{tl_version} -Provides: tex(CrimsonPro-Bold.ttf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic.ttf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold.ttf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic.ttf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight.ttf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic.ttf) = %{tl_version} -Provides: tex(CrimsonPro-Italic.ttf) = %{tl_version} -Provides: tex(CrimsonPro-Light.ttf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic.ttf) = %{tl_version} -Provides: tex(CrimsonPro-Medium.ttf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic.ttf) = %{tl_version} -Provides: tex(CrimsonPro-Regular.ttf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold.ttf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic.ttf) = %{tl_version} -Provides: tex(CrimsonPro-Black.pfb) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic.pfb) = %{tl_version} -Provides: tex(CrimsonPro-Bold.pfb) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic.pfb) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold.pfb) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic.pfb) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight.pfb) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic.pfb) = %{tl_version} -Provides: tex(CrimsonPro-Italic.pfb) = %{tl_version} -Provides: tex(CrimsonPro-Light.pfb) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic.pfb) = %{tl_version} -Provides: tex(CrimsonPro-Medium.pfb) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic.pfb) = %{tl_version} -Provides: tex(CrimsonPro-Regular.pfb) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold.pfb) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic.pfb) = %{tl_version} -Provides: tex(CrimsonPro-Black-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Black-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BlackItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLight-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-ExtraLightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Light-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-LightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Medium-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-MediumItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBold-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-inf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-inf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-swash-ly1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-swash-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(CrimsonPro-SemiBoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(CrimsonPro.sty) = %{tl_version} -Provides: tex(LY1CrimsonPro-Inf.fd) = %{tl_version} -Provides: tex(LY1CrimsonPro-LF.fd) = %{tl_version} -Provides: tex(LY1CrimsonPro-OsF.fd) = %{tl_version} -Provides: tex(LY1CrimsonPro-Sup.fd) = %{tl_version} -Provides: tex(LY1CrimsonPro-TLF.fd) = %{tl_version} -Provides: tex(LY1CrimsonPro-TOsF.fd) = %{tl_version} -Provides: tex(OT1CrimsonPro-Inf.fd) = %{tl_version} -Provides: tex(OT1CrimsonPro-LF.fd) = %{tl_version} -Provides: tex(OT1CrimsonPro-OsF.fd) = %{tl_version} -Provides: tex(OT1CrimsonPro-Sup.fd) = %{tl_version} -Provides: tex(OT1CrimsonPro-TLF.fd) = %{tl_version} -Provides: tex(OT1CrimsonPro-TOsF.fd) = %{tl_version} -Provides: tex(T1CrimsonPro-Inf.fd) = %{tl_version} -Provides: tex(T1CrimsonPro-LF.fd) = %{tl_version} -Provides: tex(T1CrimsonPro-OsF.fd) = %{tl_version} -Provides: tex(T1CrimsonPro-Sup.fd) = %{tl_version} -Provides: tex(T1CrimsonPro-TLF.fd) = %{tl_version} -Provides: tex(T1CrimsonPro-TOsF.fd) = %{tl_version} -Provides: tex(TS1CrimsonPro-LF.fd) = %{tl_version} -Provides: tex(TS1CrimsonPro-OsF.fd) = %{tl_version} -Provides: tex(TS1CrimsonPro-TLF.fd) = %{tl_version} -Provides: tex(TS1CrimsonPro-TOsF.fd) = %{tl_version} - -%description crimsonpro -The CrimsonPro fonts are designed by Jacques Le Bailly and -derived from the Crimson Text fonts designed by Sebastian -Kosch. The family includes eight weights and italics for each -weight. - -%package cuprum -Summary: Cuprum font family support for LaTeX -Version: svn49909 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(cuprum.map) = %{tl_version} -Provides: tex(cprbit8t.tfm) = %{tl_version} -Provides: tex(cprbn8t.tfm) = %{tl_version} -Provides: tex(cprmit8t.tfm) = %{tl_version} -Provides: tex(cprmn8t.tfm) = %{tl_version} -Provides: tex(Cuprum-Bold.ttf) = %{tl_version} -Provides: tex(Cuprum-BoldItalic.ttf) = %{tl_version} -Provides: tex(Cuprum-Italic.ttf) = %{tl_version} -Provides: tex(Cuprum-Regular.ttf) = %{tl_version} -Provides: tex(cuprum.sty) = %{tl_version} -Provides: tex(t1cpr.fd) = %{tl_version} - -%description cuprum -This package provides support for the Cuprum font family (see -http://jovanny.ru). - -%package cweb-old -Summary: Old cweb files -Version: svn49271 -License: Public Domain -Requires: texlive-base texlive-kpathsea -Provides: tex(README) = %{tl_version} -Provides: tex(pdfXcwebmac.tex) = %{tl_version} -Provides: tex(pdfcwebmac.tex) = %{tl_version} -Provides: tex(pdfdcwebmac.tex) = %{tl_version} -Provides: tex(pdffcwebmac.tex) = %{tl_version} -Provides: tex(pdficwebmac.tex) = %{tl_version} -Provides: tex(pdfwebmac.tex) = %{tl_version} - -%description cweb-old -Old cweb files. - -%package derivative -Summary: Nice and easy derivatives -Version: svn51696 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(derivative.sty) = %{tl_version} - -%description derivative -This package provides a set of commands \NewOdvVariant, -\NewPdvVariant etc. that can be used to define derivatives. -Each derivative comes with a great number of options that tweak -the derivative's format to your liking. The following types of -derivatives come readily defined: \odv Ordinary derivative, -\pdv Partial derivative, \fdv Functional derivative, \mdv -Material derivative, \adv Average rate of change, \jdv -Jacobian. - -%package dotlessi -Summary: Provides dotless i's and j's for use in any math font -Version: svn51476 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(dotlessi.sty) = %{tl_version} - -%description dotlessi -The package provides two commands: \dotlessi and \dotlessj, -which give access to dotless i's and j's in math mode. They are -intended for symbols in non English languages. - -%package duckuments -Summary: Create duckified dummy content -Version: svn51308 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(duckuments.sty) = %{tl_version} -Provides: tex(example-image-duck-portrait.pdf) = %{tl_version} -Provides: tex(example-image-duck.pdf) = %{tl_version} - -%description duckuments -The package provides facilities to create duckified dummy -contents. It was inspired by the question "Getting ducks in -example images" on TeX-LaTeX Stack Exchange. The following -macros are available: \duckument[key=val] - print a short -duckument \blindduck[key=val] - print a paragraph -\ducklist(*){environment} - create a list of type environment -\ducklistlist(*){environment} - create nested lists -\duckitemize - ducklist{itemize} \duckenumerate - -ducklist{enumerate} \duckdescription - ducklist{description} -\duckumentsCreateExampleFile \duckumentsDrawRandomDucks The -package works with pdfTeX, LuaTeX, and XeTeX. - -%package ecothesis -Summary: LaTeX thesis template for the Universidade Federal de Vicosa (UFV), Brazil -Version: svn48007 -License: LPPL -Requires: texlive-base texlive-kpathsea - -%description ecothesis -The package provides a LaTeX thesis template for the -Universidade Federal de Vicosa (UFV), Brazil. - -%package ehhline -Summary: Extend the \hhline command -Version: svn51122 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(ehhline.sty) = %{tl_version} - -%description ehhline -This package extends the \hhline command with a !{...} token, -which allows to create lines with arbitrary LaTeX commands. - -%package elegantbook -Summary: An Elegant LaTeX Template for Books -Version: svn51246 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(elegantbook.cls) = %{tl_version} - -%description elegantbook -ElegantBook is designed for writing Books. This template is -based on the standard LaTeX book class. The goal of this -template is to make the writing process more elegant. Just -enjoy it! - -%package elegantnote -Summary: Elegant LaTeX Template for Notes -Version: svn49926 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(elegantnote.cls) = %{tl_version} - -%description elegantnote -ElegantNote is designed for writing working papers, especially -for economics students. This template is based on the standard -LaTeX article class. The goal of this template is to make the -writing process easier and more comfortable. - -%package elegantpaper -Summary: An Elegant LaTeX Template for Working Papers -Version: svn50679 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(elegantpaper.cls) = %{tl_version} - -%description elegantpaper -ElegantPaper is designed for writing working papers, especially -for economics students. This template is based on the standard -LaTeX article class. The goal of this template is to make the -writing process easier and more comfortable. - -%package els-cas-templates -Summary: Elsevier CAS LaTeX templates -Version: svn50820 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(cas-model2-names.bst) = %{tl_version} -Provides: tex(cas-common.sty) = %{tl_version} -Provides: tex(cas-dc.cls) = %{tl_version} -Provides: tex(cas-sc.cls) = %{tl_version} - -%description els-cas-templates -This bundle provides two class and corresponding template files -for typesetting journal articles supposed to go through -Elsevier's Complex Article Service (CAS) workflow. One of the -sets is meant for one-column, the other for two-column layout. -These are now accepted for submitting articles both in -Elsevier's electronic submission system and elsewhere. - -%package eqexpl -Summary: Align explanations for formulas -Version: svn51524 -License: CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: tex(eqexpl.sty) = %{tl_version} - -%description eqexpl -This package was developed in response to a question on -https://tex.stackexchange.com. Its purpose is to enable a -perfectly formatted explanation of components of a formula. The -package depends on calc, etoolbox, and xparse. - -%package euflag -Summary: A command to reproduce the flag of the European Union -Version: svn49970 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(euflag.sty) = %{tl_version} - -%description euflag -This LaTeX package implements a command to reproduce the -official flag of the European Union (EU). The flag is -reproduced at 1em high based on the current font size, so it -can be scaled arbitrarily by changing the font size. - -%package exam-randomizechoices -Summary: Randomize mc choices using the exam class -Version: svn49662 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(exam-randomizechoices.sty) = %{tl_version} - -%description exam-randomizechoices -This package is an extension to the exam document class. It -provides the user with four new multiple choice typesetting -environments which place their content in a random order. It -can (only) be used in combination with the exam class. It can -only randomize the placement of choices in multiple choice -questions. The questions themselves cannot be randomized with -this package. Furthermore, the package provides a simple answer -key table typesetter and has a command for writing the answer -keys to an external file. - -%package exercisepoints -Summary: A LaTeX package to count exercises and points -Version: svn49590 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(exercisepoints.sty) = %{tl_version} - -%description exercisepoints -The package can be used to facilitate exercise counting and -exercise point counting in a LaTeX-document. It counts the -number of exercises and it sums all the points of the exercises -in a document. Especially for exams it is also common to have -an overview of all exercises and their maximal points. This is -also supported by this package by providing a macro to retrieve -the points of each exercise. - -%package exframe -Summary: Framework for exercise problems -Version: svn51388 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(exframe.sty) = %{tl_version} - -%description exframe -This LaTeX2e package provides a general purpose framework to -describe and typeset exercises and exam questions along with -their solutions. The package features mechanisms to hide or -postpone solutions, to assign and handle points, to collect -problems on exercise sheets, to store and use metadata, and to -implement a consistent numbering. It also provides a very -flexible interface for configuring and customising the -formatting, layout, and representation of the exercise content. - -%package facture-belge-simple-sans-tva -Summary: Simple Belgian invoice without VAT -Version: svn49004 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(facture-belge-simple-sans-tva.sty) = %{tl_version} - -%description facture-belge-simple-sans-tva -This package can be used to generate invoices for Belgian -individuals who do not have a VAT number and who wish to do -occasional work, or to carry out paid additional activities -during their free time up to 6,000 euros per calendar year -(amount indexed annually) without having to pay tax or social -security contributions (see the website Activites -complementaires). The package can also generate expense -reports. All totals are calculated automatically, in the -invoice and in the expense report. The package depends on -calctab, ifthen, hyperref, fancyhdr, multirow, eurosym, color, -and colortbl. - -%package fancyhandout -Summary: A LaTeX class for producing nice-looking handouts -Version: svn46411 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(fancyhandout.cls) = %{tl_version} - -%description fancyhandout -This package breaks with some of LaTeX's principles and -redefines basic LaTeX commands with the aim of producing -well-designed and clearly structured handouts: A sans-serif -font is used by default; sections are not numbered, but -highlighted by underlining; head- and footline display document -information; and in order to avoid too much whitespace around -the text the margin sizes are adjusted to smaller values. All -in all, fancyhandout provides a means of typesetting documents -not exclusively consisting of running text in a beautiful way. -fancyhandout depends on the following other LaTeX packages: -csquotes, enumitem, etoolbox, fancyhdr, geometry, and xcolor. - -%package fascicules -Summary: Create mathematical manuals for schools -Version: svn49457 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(fascicules.sty) = %{tl_version} - -%description fascicules -This package enables LaTeX users to create math books for -middle and high schools. It provides commands to create the -front page of the manual and the chapters. Each chapter can -consist of three sections: the lesson, the exercises and the -activities. - -%package fbox -Summary: Extended \fbox macro from standard LaTeX -Version: svn50305 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(fbox.sty) = %{tl_version} - -%description fbox -This package redefines \fbox to allow an optional argument for -different frames. It can be any combination of l)eft, r)ight, -t)op, and b)ottom, for example: \fbox[lt]{foo}. Using uppercase -letters or a combination of lowercase and uppercase is also -possible. - -%package firamath-otf -Summary: Use OpenType math font Fira Math -Version: svn50732 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(firamath-otf.sty) = %{tl_version} - -%description firamath-otf -The package offers XeTeX/LuaTeX support for the Sans Serif -OpenType Fira Math Font. - -%package firamath -Summary: Fira sans serif font with Unicode math support -Version: svn51333 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(FiraMath-Regular.otf) = %{tl_version} - -%description firamath -Fira Math is a sans-serif font with Unicode math support. The -design of this font is based on Fira Sans and FiraGO. Fira Math -is distributed in OpenType format and can be used with the -unicode-math package under XeLaTeX or LuaLaTeX. More support is -offered by the firamath-otf package. - -%package fiziko -Summary: A MetaPost library for physics textbook illustrations -Version: svn50293 -License: GPLv3+ and CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: tex(fiziko.mp) = %{tl_version} - -%description fiziko -This MetaPost library was initially written to automate some -elements of black and white illustrations for a physics -textbook. It provides functions to draw things like lines of -variable width, shaded spheres, and tubes of different kinds, -which can be used to produce images of a variety of objects. -The library also contains functions to draw some objects -constructed from these primitives. - -%package forum -Summary: TeX support for the Forum font -Version: svn51403 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(frm_acf3pt.enc) = %{tl_version} -Provides: tex(frm_b5i5mx.enc) = %{tl_version} -Provides: tex(frm_e2otk2.enc) = %{tl_version} -Provides: tex(frm_fx2ufv.enc) = %{tl_version} -Provides: tex(frm_jsuphk.enc) = %{tl_version} -Provides: tex(frm_o6hya7.enc) = %{tl_version} -Provides: tex(frm_ylkcu6.enc) = %{tl_version} -Provides: tex(frm_zacml7.enc) = %{tl_version} -Provides: tex(forum.map) = %{tl_version} -Provides: tex(Forum-Bold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-t2a.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-t2b.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-t2c.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(Forum-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(Forum-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(Forum-lf-ly1.tfm) = %{tl_version} -Provides: tex(Forum-lf-ot1.tfm) = %{tl_version} -Provides: tex(Forum-lf-t1--base.tfm) = %{tl_version} -Provides: tex(Forum-lf-t1.tfm) = %{tl_version} -Provides: tex(Forum-lf-t2a.tfm) = %{tl_version} -Provides: tex(Forum-lf-t2b.tfm) = %{tl_version} -Provides: tex(Forum-lf-t2c.tfm) = %{tl_version} -Provides: tex(Forum-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(Forum-lf-ts1.tfm) = %{tl_version} -Provides: tex(Forum-Bold.ttf) = %{tl_version} -Provides: tex(Forum-Regular.ttf) = %{tl_version} -Provides: tex(Forum-Bold.pfb) = %{tl_version} -Provides: tex(Forum-Regular.pfb) = %{tl_version} -Provides: tex(Forum-Bold-lf-ly1.vf) = %{tl_version} -Provides: tex(Forum-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(Forum-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(Forum-lf-ly1.vf) = %{tl_version} -Provides: tex(Forum-lf-t1.vf) = %{tl_version} -Provides: tex(Forum-lf-ts1.vf) = %{tl_version} -Provides: tex(LY1Forum-LF.fd) = %{tl_version} -Provides: tex(OT1Forum-LF.fd) = %{tl_version} -Provides: tex(T1Forum-LF.fd) = %{tl_version} -Provides: tex(T2AForum-LF.fd) = %{tl_version} -Provides: tex(T2BForum-LF.fd) = %{tl_version} -Provides: tex(T2CForum-LF.fd) = %{tl_version} -Provides: tex(TS1Forum-LF.fd) = %{tl_version} -Provides: tex(forum.sty) = %{tl_version} - -%description forum -This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -support for the Forum font, designed by Denis Masharov. -Forum has antique, classic "Roman" proportions. It can -be used to set body texts and works well in titles and -headlines too. It is truly multilingual, with glyphs for -Central and Eastern Europe, Baltics, Cyrillic and Asian -Cyrillic communities. There is currently just a regular -weight and an artificially emboldened bold. - -%package ftc-notebook -Summary: Typeset FIRST Tech Challenge (FTC) notebooks -Version: svn50043 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(ftc-notebook.sty) = %{tl_version} - -%description ftc-notebook -This LaTeX package will greatly simplify filling entries for -your FIRST Tech Challenge (FTC) engineering or outreach -notebook. We developed this package to support most frequently -used constructs encountered in an FTC notebook: meetings, -tasks, decisions with pros and cons, tables, figures with -explanations, team stories and bios, and more. We developed -this package during the 2018-2019 season and are using it for -our engineering notebook. Team Robocracy is sharing this style -in the spirit of coopertition. - -%package gammas -Summary: Template for the GAMM Archive for Students -Version: svn50012 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(gammas.bst) = %{tl_version} -Provides: tex(gammas.cls) = %{tl_version} - -%description gammas -This is the official document class for typesetting journal -articles for GAMM Archive for Students (GAMMAS), the -open-access online yournal run by the GAMM Juniors. - -%package garamond-libre -Summary: The Garamond Libre font face -Version: svn51703 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(GaramondLibre-Bold.otf) = %{tl_version} -Provides: tex(GaramondLibre-Italic.otf) = %{tl_version} -Provides: tex(GaramondLibre-Regular.otf) = %{tl_version} - -%description garamond-libre -Garamond Libre is a free and open-source old-style font family. -It is a "true Garamond," i.e., it is based off the designs of -16th-century French engraver Claude Garamond (also spelled -Garamont). The Roman design is Garamond's; the italics are from -a design by Robert Granjon. The upright Greek font is after a -design by Firmin Didot; the "italic" Greek font is after a -design by Alexander Wilson. The font family includes support -for Latin, Greek (monotonic and polytonic) and Cyrillic -scripts, as well as small capitals, old-style figures, superior -and inferior figures, historical ligatures, Byzantine musical -symbols, the IPA and swash capitals. Currently, regular, italic -and bold fonts are provided; there is no set timeframe for the -completion of a bold italic. The fonts are provided in OpenType -format, and are intended to be used with LuaLaTeX or XeLaTeX -via fontspec. - -%package garamond-math -Summary: An OTF math font matching EB Garamond -Version: svn49933 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(Garamond-Math.otf) = %{tl_version} - -%description garamond-math -This is an open type math font matching EB Garamond (Octavio -Pardo) and EB Garamond (Georg Mayr-Duffner). Many mathematical -symbols are derived from other fonts, others are made from -scratch. The metric is generated with a python script. The font -is best used with XeTeX and the unicode-math package. Other -engines (e.g. LuaTeX; also: MS Word) are likely to produce -unsatifactory spacings. This font is still under development, -so do not expect it to be free of bugs. Any component might be -updated at any time. Issues, bug reports, forks, and other -contributions are welcome. - -%package gitver -Summary: Get the current git hash of a project and typeset it in the document -Version: svn49980 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(gitver.sty) = %{tl_version} - -%description gitver -This package will get a description of the current git version -of the document and store it in a command \gitVer. If memoir or -fancyhdr are in use, it will also add this to the document -footers unless the option "noheader" is passed. The package -also defines a command \versionBox which outputs a box -containing the version and date of compilation. - -%package globalvals -Summary: Declare global variables -Version: svn49962 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(globalvals.sty) = %{tl_version} - -%description globalvals -This package allows the user to declare a variable which can -then be used anywhere else in a document, including before it -was declared. - -%package glosmathtools -Summary: Mathematical nomenclature tools based on the glossaries package -Version: svn51809 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(glosmathtools.sty) = %{tl_version} - -%description glosmathtools -This package can be used to generate a mathematical -nomenclature (also called "list of symbols" or "notation"). It -is based on the glossaries package. Its main features are: -symbol categories (e.g.: latin, greek) automatic but -customizable symbol sorting easy subscript management easy -accentuation management abbreviation support (with first use -definition) bilingual nomenclatures (for bilingual documents) -bilingual abbreviations For the time being, the documentation -is based on the ulthese class and is in French only. The -package depends on glossaries, amsmath, amsfonts, and etoolbox. - -%package glossaries-estonian -Summary: Estonian language module for glossaries package -Version: svn49928 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(glossaries-estonian-ascii.ldf) = %{tl_version} -Provides: tex(glossaries-estonian-utf8.ldf) = %{tl_version} -Provides: tex(glossaries-estonian.ldf) = %{tl_version} - -%description glossaries-estonian -This package provides the Estonian language module for the -glossaries package. - -%package glossaries-slovene -Summary: Slovene language module for glossaries package -Version: svn51211 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(glossaries-slovene.ldf) = %{tl_version} - -%description glossaries-slovene -Slovene language module for glossaries package. - -%package grabbox -Summary: Read an argument into a box and execute the code afterwards -Version: svn51052 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(grabbox.sty) = %{tl_version} - -%description grabbox -The package provides the command \grabbox, which grabs an -argument into a box and executes the code afterwards. - -%package gridslides -Summary: Free form slides with blocks placed on a grid -Version: svn45933 -License: LPPLgpl2 -Requires: texlive-base texlive-kpathsea -Provides: tex(gridslides.cls) = %{tl_version} -Provides: tex(gridslides.sty) = %{tl_version} - -%description gridslides -This package allows creating free form slides with blocks -placed on a grid. The blocks can be filled with text, -equations, figures etc. The resulting slides are similar to the -ones produced with LaTeX beamer, but more flexible. Sequential -unconvering of elements is supported. A compiler script is -provided which compiles each slide separately, this way -avoiding long compile times. - -%package guitartabs -Summary: A class for drawing guitar tablatures easily -Version: svn48102 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(guitartabs.cls) = %{tl_version} - -%description guitartabs -This package provides is a simple LaTeX2e class that allows -guitarists to create basic guitar tablatures using LaTeX. -Create music and do not be bothered with macro programming. The -class depends on the LaTeX packages geometry, harmony, -inputenc, intcalc, musixtex, tikz, and xifthen, as well as the -article class. - -# hmtrump is non-free -%if 0 -%package hmtrump -Summary: Describe card games -Version: svn51829 -License: CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: tex(nkd04_playing_cards_index.ttf) = %{tl_version} -Provides: tex(hmtrump.sty) = %{tl_version} - -%description hmtrump -This package provides a font with LuaLaTeX support for -describing card games. -%endif - -%package hu-berlin-bundle -Summary: LaTeX classes for the Humboldt-Universitat zu Berlin -Version: svn51477 -License: LPPL and GPLv2 and BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(hu-berlin-bundle-style.sty) = %{tl_version} -Provides: tex(hu-berlin-letter.cls) = %{tl_version} - -%description hu-berlin-bundle -This package provides files according to the corporate design -of the Humboldt-Universitat zu Berlin. This is not an official -package by the university itself, and not officially approved -by it. More information can be found in the Humboldt -University's corporate design guideline and on the website -https://www.hu-berlin.de/de/hu-intern/design. At present, the -bundle contains a letter class based on scrlttr2. - -%package icite -Summary: Indices locorum citatorum -Version: svn50429 -License: GPLv3+ and CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: tex(icite.sty) = %{tl_version} - -%description icite -The package is designed to produce from BibTeX or BibLaTeX -bibliographical databases the different indices of authors and -works cited which are called indices locorum citatorum. It -relies on a specific \icite command and can operate with either -BibTeX or BibLaTeX. - -%package identkey -Summary: Typesetting bracketed dichotomous identification keys -Version: svn49018 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(identkey.sty) = %{tl_version} - -%description identkey -The package is for typesetting bracketed dichotomous -identification keys. - -%package inkpaper -Summary: A LaTeX class for writing a thesis following French rules -Version: svn51447 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(inkpaper.cls) = %{tl_version} - -%description inkpaper -InkPaper is designed to write mathematical papers,especially -designed for Mathematics Students. ZJGS students. magazine -editors. NOTICE.This is not a Thesis class. - -%package inline-images -Summary: Inline images in base64 encoding -Version: svn48415 -License: LGPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(inline-images.sty) = %{tl_version} - -%description inline-images -The package provides a command \inlineimg to dynamically create -a file containing the inline image in base64 format, which is -decoded and included in the source file. Requirements LaTeX -must be run with option --shell-escape. Program base64. - -%package inriafonts -Summary: Inria fonts with LaTeX support -Version: svn49826 -License: OFL and LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(inriasans_2ikqt3.enc) = %{tl_version} -Provides: tex(inriasans_aeswfl.enc) = %{tl_version} -Provides: tex(inriasans_azhk4k.enc) = %{tl_version} -Provides: tex(inriasans_clzm26.enc) = %{tl_version} -Provides: tex(inriasans_dl3y4j.enc) = %{tl_version} -Provides: tex(inriasans_efwr3l.enc) = %{tl_version} -Provides: tex(inriasans_fhoe3z.enc) = %{tl_version} -Provides: tex(inriasans_g56wvz.enc) = %{tl_version} -Provides: tex(inriasans_gn4bcn.enc) = %{tl_version} -Provides: tex(inriasans_kgbpoz.enc) = %{tl_version} -Provides: tex(inriasans_necsus.enc) = %{tl_version} -Provides: tex(inriasans_psyc4t.enc) = %{tl_version} -Provides: tex(inriasans_pv4xsz.enc) = %{tl_version} -Provides: tex(inriasans_rhfpoz.enc) = %{tl_version} -Provides: tex(inriasans_rriqaz.enc) = %{tl_version} -Provides: tex(inriasans_svhg3d.enc) = %{tl_version} -Provides: tex(inriasans_x5ybkq.enc) = %{tl_version} -Provides: tex(inriasans_yeotsr.enc) = %{tl_version} -Provides: tex(inriasans_yl5fy2.enc) = %{tl_version} -Provides: tex(inriaserif_2ikqt3.enc) = %{tl_version} -Provides: tex(inriaserif_aeswfl.enc) = %{tl_version} -Provides: tex(inriaserif_azhk4k.enc) = %{tl_version} -Provides: tex(inriaserif_clzm26.enc) = %{tl_version} -Provides: tex(inriaserif_dl3y4j.enc) = %{tl_version} -Provides: tex(inriaserif_efwr3l.enc) = %{tl_version} -Provides: tex(inriaserif_fhoe3z.enc) = %{tl_version} -Provides: tex(inriaserif_g56wvz.enc) = %{tl_version} -Provides: tex(inriaserif_gn4bcn.enc) = %{tl_version} -Provides: tex(inriaserif_kgbpoz.enc) = %{tl_version} -Provides: tex(inriaserif_necsus.enc) = %{tl_version} -Provides: tex(inriaserif_psyc4t.enc) = %{tl_version} -Provides: tex(inriaserif_pv4xsz.enc) = %{tl_version} -Provides: tex(inriaserif_rhfpoz.enc) = %{tl_version} -Provides: tex(inriaserif_rriqaz.enc) = %{tl_version} -Provides: tex(inriaserif_svhg3d.enc) = %{tl_version} -Provides: tex(inriaserif_x5ybkq.enc) = %{tl_version} -Provides: tex(inriaserif_yeotsr.enc) = %{tl_version} -Provides: tex(inriaserif_yl5fy2.enc) = %{tl_version} -Provides: tex(InriaSans.map) = %{tl_version} -Provides: tex(InriaSerif.map) = %{tl_version} -Provides: tex(InriaSans-Bold.otf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic.otf) = %{tl_version} -Provides: tex(InriaSans-Italic.otf) = %{tl_version} -Provides: tex(InriaSans-Light.otf) = %{tl_version} -Provides: tex(InriaSans-LightItalic.otf) = %{tl_version} -Provides: tex(InriaSans-Regular.otf) = %{tl_version} -Provides: tex(InriaSerif-Bold.otf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic.otf) = %{tl_version} -Provides: tex(InriaSerif-Italic.otf) = %{tl_version} -Provides: tex(InriaSerif-Light.otf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic.otf) = %{tl_version} -Provides: tex(InriaSerif-Regular.otf) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-titling-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-titling-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-titling-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-titling-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-titling-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(InriaSans-Bold.ttf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic.ttf) = %{tl_version} -Provides: tex(InriaSans-Italic.ttf) = %{tl_version} -Provides: tex(InriaSans-Light.ttf) = %{tl_version} -Provides: tex(InriaSans-LightItalic.ttf) = %{tl_version} -Provides: tex(InriaSans-Regular.ttf) = %{tl_version} -Provides: tex(InriaSerif-Bold.ttf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic.ttf) = %{tl_version} -Provides: tex(InriaSerif-Italic.ttf) = %{tl_version} -Provides: tex(InriaSerif-Light.ttf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic.ttf) = %{tl_version} -Provides: tex(InriaSerif-Regular.ttf) = %{tl_version} -Provides: tex(InriaSans-Bold.pfb) = %{tl_version} -Provides: tex(InriaSans-BoldItalic.pfb) = %{tl_version} -Provides: tex(InriaSans-Italic.pfb) = %{tl_version} -Provides: tex(InriaSans-Light.pfb) = %{tl_version} -Provides: tex(InriaSans-LightItalic.pfb) = %{tl_version} -Provides: tex(InriaSans-Regular.pfb) = %{tl_version} -Provides: tex(InriaSerif-Bold.pfb) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic.pfb) = %{tl_version} -Provides: tex(InriaSerif-Italic.pfb) = %{tl_version} -Provides: tex(InriaSerif-Light.pfb) = %{tl_version} -Provides: tex(InriaSerif-LightItalic.pfb) = %{tl_version} -Provides: tex(InriaSerif-Regular.pfb) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Light-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-LightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSans-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Light-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-LightItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-sup-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-titling-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-titling-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-ly1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(InriaSerif-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(InriaSans.sty) = %{tl_version} -Provides: tex(InriaSerif.sty) = %{tl_version} -Provides: tex(LY1InriaSans-LF.fd) = %{tl_version} -Provides: tex(LY1InriaSans-OsF.fd) = %{tl_version} -Provides: tex(LY1InriaSans-Sup.fd) = %{tl_version} -Provides: tex(LY1InriaSans-TLF.fd) = %{tl_version} -Provides: tex(LY1InriaSans-TOsF.fd) = %{tl_version} -Provides: tex(LY1InriaSerif-LF.fd) = %{tl_version} -Provides: tex(LY1InriaSerif-OsF.fd) = %{tl_version} -Provides: tex(LY1InriaSerif-Sup.fd) = %{tl_version} -Provides: tex(LY1InriaSerif-TLF.fd) = %{tl_version} -Provides: tex(LY1InriaSerif-TOsF.fd) = %{tl_version} -Provides: tex(OT1InriaSans-LF.fd) = %{tl_version} -Provides: tex(OT1InriaSans-OsF.fd) = %{tl_version} -Provides: tex(OT1InriaSans-Sup.fd) = %{tl_version} -Provides: tex(OT1InriaSans-TLF.fd) = %{tl_version} -Provides: tex(OT1InriaSans-TOsF.fd) = %{tl_version} -Provides: tex(OT1InriaSerif-LF.fd) = %{tl_version} -Provides: tex(OT1InriaSerif-OsF.fd) = %{tl_version} -Provides: tex(OT1InriaSerif-Sup.fd) = %{tl_version} -Provides: tex(OT1InriaSerif-TLF.fd) = %{tl_version} -Provides: tex(OT1InriaSerif-TOsF.fd) = %{tl_version} -Provides: tex(T1InriaSans-LF.fd) = %{tl_version} -Provides: tex(T1InriaSans-OsF.fd) = %{tl_version} -Provides: tex(T1InriaSans-Sup.fd) = %{tl_version} -Provides: tex(T1InriaSans-TLF.fd) = %{tl_version} -Provides: tex(T1InriaSans-TOsF.fd) = %{tl_version} -Provides: tex(T1InriaSerif-LF.fd) = %{tl_version} -Provides: tex(T1InriaSerif-OsF.fd) = %{tl_version} -Provides: tex(T1InriaSerif-Sup.fd) = %{tl_version} -Provides: tex(T1InriaSerif-TLF.fd) = %{tl_version} -Provides: tex(T1InriaSerif-TOsF.fd) = %{tl_version} -Provides: tex(TS1InriaSans-LF.fd) = %{tl_version} -Provides: tex(TS1InriaSans-OsF.fd) = %{tl_version} -Provides: tex(TS1InriaSans-TLF.fd) = %{tl_version} -Provides: tex(TS1InriaSans-TOsF.fd) = %{tl_version} -Provides: tex(TS1InriaSerif-LF.fd) = %{tl_version} -Provides: tex(TS1InriaSerif-OsF.fd) = %{tl_version} -Provides: tex(TS1InriaSerif-TLF.fd) = %{tl_version} -Provides: tex(TS1InriaSerif-TOsF.fd) = %{tl_version} - -%description inriafonts -Inria is a free font designed by Black[Foundry] for Inria -research institute. The font is available for free. It comes as -Serif and Sans Serif, each with three weights and matching -italics. Using these fonts with XeLaTeX and LuaLaTeX is easy -using the fontspec package; we refer to the documentation of -fontspec for more information. The present package provides a -way of using them with LaTeX and pdfLaTeX: it provides two -style files, InriaSerif.sty and InriaSans.sty, together with -the PostScript version of the fonts and their associated files. -These were created using autoinst. - -%package invoice-class -Summary: Produces a standard US invoice from a CSV file -Version: svn49749 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(invoice-class.cls) = %{tl_version} - -%description invoice-class -This class produces a standard US commercial invoice using data -from a CSV file. Invoices can span multiple pages. The class is -configurable for different shipping addresses. - -%package iodhbwm -Summary: Unofficial template of the DHBW Mannheim -Version: svn51175 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(dhbw-declaration.def) = %{tl_version} -Provides: tex(dhbw-logo.png) = %{tl_version} -Provides: tex(dhbw-titlepage-ba.def) = %{tl_version} -Provides: tex(dhbw-titlepage-pa.def) = %{tl_version} -Provides: tex(dhbw-titlepage-sa.def) = %{tl_version} -Provides: tex(dhbw-titlepage.def) = %{tl_version} -Provides: tex(iodhbwm-templates.sty) = %{tl_version} -Provides: tex(iodhbwm.cls) = %{tl_version} - -%description iodhbwm -This package provides an unofficial template of the DHBW -Mannheim for the creation of bachelor thesis, studies or -project work with LaTeX. The aim of the package is the quick -creation of a basic framework without much effort. - -%package jigsaw -Summary: Draw jigsaw pieces with TikZ -Version: svn49111 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(jigsaw.sty) = %{tl_version} - -%description jigsaw -This is a small LaTeX package to draw jigsaw pieces with TikZ. -It is possible to draw individual pieces and adjust their -shape, create tile patterns or automatically generate complete -jigsaws. - -%package jkmath -Summary: Macros for mathematics that make the code more readable -Version: svn47109 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(jkmath.sty) = %{tl_version} - -%description jkmath -Inspired by the physicspackage on CTAN, the package defines -some simple macros for mathematical notation which make the -code more readable and/or allow flexibility in typesetting -material. - -%package kalendarium -Summary: Print dates according to the classical Latin calendar -Version: svn48744 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(kalendarium.sty) = %{tl_version} - -%description kalendarium -kalendarium is a LaTeX3 package that provides several macros -with which to print dates in classical Latin given days on the -Julian or Gregorian calendars, using the same syntax used by -ancient Roman authors. The format of these dates may be -customised either in the package options or on a per-command -basis; these options also allow for the generation of date -strings according to different eras of the Classical period. - -%package ketcindy -Summary: macros for graphic generation and Cinderella plugin -Version: svn51444 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea - -%description ketcindy -KETpic is a macro package designed for computer algebra systems -(CAS) to generate LaTeX source codes for high-quality -mathematical artwork. KETcindy is a plugin for Cinderella that -allows to generate graphics using KETpic. The generated code -can be included in any LaTeX document. - -%package kvmap -Summary: Create Karnaugh maps with LaTeX -Version: svn48708 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(kvmap.sty) = %{tl_version} - -%description kvmap -This LaTeX package allows the creation of (even large) Karnaugh -maps. It provides a tabular-like input syntax and support for -drawing bundles (implicants) around adjacent values. It is -based on an answer at StackExchange. - -%package labels4easylist -Summary: Add reference labels to easylist items -Version: svn51124 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(labels4easylist.sty) = %{tl_version} - -%description labels4easylist -This package provides the \itemLabel macro for adding -configurable reference labels to easylist items. - -%package latex4musicians -Summary: A guide for combining LaTeX and music -Version: svn49759 -License: GFDL -Requires: texlive-base texlive-kpathsea - -%description latex4musicians -This guide, "LaTeX for Musicians", explains how to create LaTeX -documents that include several kinds of music elements: music -symbols, song lyrics, guitar chords diagrams, lead sheets, -music excerpts, guitar tablatures, multi-page scores. - -%package latex-base-dev -Summary: Development pre-release of the LaTeX kernel -Version: svn51730 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(alltt.sty) = %{tl_version} -Provides: tex(ansinew.def) = %{tl_version} -Provides: tex(applemac.def) = %{tl_version} -Provides: tex(article.cls) = %{tl_version} -Provides: tex(article.sty) = %{tl_version} -Provides: tex(ascii.def) = %{tl_version} -Provides: tex(bezier.sty) = %{tl_version} -Provides: tex(bk10.clo) = %{tl_version} -Provides: tex(bk11.clo) = %{tl_version} -Provides: tex(bk12.clo) = %{tl_version} -Provides: tex(book.cls) = %{tl_version} -Provides: tex(book.sty) = %{tl_version} -Provides: tex(cp1250.def) = %{tl_version} -Provides: tex(cp1252.def) = %{tl_version} -Provides: tex(cp1257.def) = %{tl_version} -Provides: tex(cp437.def) = %{tl_version} -Provides: tex(cp437de.def) = %{tl_version} -Provides: tex(cp850.def) = %{tl_version} -Provides: tex(cp852.def) = %{tl_version} -Provides: tex(cp858.def) = %{tl_version} -Provides: tex(cp865.def) = %{tl_version} -Provides: tex(decmulti.def) = %{tl_version} -Provides: tex(doc.sty) = %{tl_version} -Provides: tex(docstrip.tex) = %{tl_version} -Provides: tex(exscale.sty) = %{tl_version} -Provides: tex(fix-cm.sty) = %{tl_version} -Provides: tex(fixltx2e.sty) = %{tl_version} -Provides: tex(flafter.sty) = %{tl_version} -Provides: tex(fleqn.clo) = %{tl_version} -Provides: tex(fleqn.sty) = %{tl_version} -Provides: tex(fltrace.sty) = %{tl_version} -Provides: tex(fontenc.sty) = %{tl_version} -Provides: tex(fontmath.cfg) = %{tl_version} -Provides: tex(fontmath.ltx) = %{tl_version} -Provides: tex(fonttext.cfg) = %{tl_version} -Provides: tex(fonttext.ltx) = %{tl_version} -Provides: tex(graphpap.sty) = %{tl_version} -Provides: tex(hyphen.ltx) = %{tl_version} -Provides: tex(idx.tex) = %{tl_version} -Provides: tex(ifthen.sty) = %{tl_version} -Provides: tex(inputenc.sty) = %{tl_version} -Provides: tex(lablst.tex) = %{tl_version} -Provides: tex(latex.ltx) = %{tl_version} -Provides: tex(latex209.def) = %{tl_version} -Provides: tex(latexrelease.sty) = %{tl_version} -Provides: tex(latexsym.sty) = %{tl_version} -Provides: tex(latin1.def) = %{tl_version} -Provides: tex(latin10.def) = %{tl_version} -Provides: tex(latin2.def) = %{tl_version} -Provides: tex(latin3.def) = %{tl_version} -Provides: tex(latin4.def) = %{tl_version} -Provides: tex(latin5.def) = %{tl_version} -Provides: tex(latin9.def) = %{tl_version} -Provides: tex(lcyenc.dfu) = %{tl_version} -Provides: tex(leqno.clo) = %{tl_version} -Provides: tex(leqno.sty) = %{tl_version} -Provides: tex(letter.cls) = %{tl_version} -Provides: tex(letter.sty) = %{tl_version} -Provides: tex(ltluatex.lua) = %{tl_version} -Provides: tex(ltluatex.tex) = %{tl_version} -Provides: tex(ltnews.cls) = %{tl_version} -Provides: tex(ltxcheck.tex) = %{tl_version} -Provides: tex(ltxdoc.cls) = %{tl_version} -Provides: tex(ltxguide.cls) = %{tl_version} -Provides: tex(ly1enc.dfu) = %{tl_version} -Provides: tex(macce.def) = %{tl_version} -Provides: tex(makeidx.sty) = %{tl_version} -Provides: tex(minimal.cls) = %{tl_version} -Provides: tex(newlfont.sty) = %{tl_version} -Provides: tex(next.def) = %{tl_version} -Provides: tex(nfssfont.tex) = %{tl_version} -Provides: tex(oldlfont.sty) = %{tl_version} -Provides: tex(omlcmm.fd) = %{tl_version} -Provides: tex(omlcmr.fd) = %{tl_version} -Provides: tex(omlenc.def) = %{tl_version} -Provides: tex(omllcmm.fd) = %{tl_version} -Provides: tex(omscmr.fd) = %{tl_version} -Provides: tex(omscmsy.fd) = %{tl_version} -Provides: tex(omsenc.def) = %{tl_version} -Provides: tex(omsenc.dfu) = %{tl_version} -Provides: tex(omslcmsy.fd) = %{tl_version} -Provides: tex(omxcmex.fd) = %{tl_version} -Provides: tex(omxlcmex.fd) = %{tl_version} -Provides: tex(openbib.sty) = %{tl_version} -Provides: tex(ot1cmdh.fd) = %{tl_version} -Provides: tex(ot1cmfib.fd) = %{tl_version} -Provides: tex(ot1cmfr.fd) = %{tl_version} -Provides: tex(ot1cmr.fd) = %{tl_version} -Provides: tex(ot1cmss.fd) = %{tl_version} -Provides: tex(ot1cmtt.fd) = %{tl_version} -Provides: tex(ot1cmvtt.fd) = %{tl_version} -Provides: tex(ot1enc.def) = %{tl_version} -Provides: tex(ot1enc.dfu) = %{tl_version} -Provides: tex(ot1lcmss.fd) = %{tl_version} -Provides: tex(ot1lcmtt.fd) = %{tl_version} -Provides: tex(ot2enc.dfu) = %{tl_version} -Provides: tex(ot4enc.def) = %{tl_version} -Provides: tex(preload.cfg) = %{tl_version} -Provides: tex(preload.ltx) = %{tl_version} -Provides: tex(proc.cls) = %{tl_version} -Provides: tex(proc.sty) = %{tl_version} -Provides: tex(report.cls) = %{tl_version} -Provides: tex(report.sty) = %{tl_version} -Provides: tex(sample2e.tex) = %{tl_version} -Provides: tex(sfonts.def) = %{tl_version} -Provides: tex(shortvrb.sty) = %{tl_version} -Provides: tex(showidx.sty) = %{tl_version} -Provides: tex(size10.clo) = %{tl_version} -Provides: tex(size11.clo) = %{tl_version} -Provides: tex(size12.clo) = %{tl_version} -Provides: tex(slides.cls) = %{tl_version} -Provides: tex(slides.def) = %{tl_version} -Provides: tex(slides.sty) = %{tl_version} -Provides: tex(small2e.tex) = %{tl_version} -Provides: tex(syntonly.sty) = %{tl_version} -Provides: tex(t1cmdh.fd) = %{tl_version} -Provides: tex(t1cmfib.fd) = %{tl_version} -Provides: tex(t1cmfr.fd) = %{tl_version} -Provides: tex(t1cmr.fd) = %{tl_version} -Provides: tex(t1cmss.fd) = %{tl_version} -Provides: tex(t1cmtt.fd) = %{tl_version} -Provides: tex(t1cmvtt.fd) = %{tl_version} -Provides: tex(t1enc.def) = %{tl_version} -Provides: tex(t1enc.dfu) = %{tl_version} -Provides: tex(t1enc.sty) = %{tl_version} -Provides: tex(t1lcmss.fd) = %{tl_version} -Provides: tex(t1lcmtt.fd) = %{tl_version} -Provides: tex(t2aenc.dfu) = %{tl_version} -Provides: tex(t2benc.dfu) = %{tl_version} -Provides: tex(t2cenc.dfu) = %{tl_version} -Provides: tex(testpage.tex) = %{tl_version} -Provides: tex(texsys.cfg) = %{tl_version} -Provides: tex(textcomp.sty) = %{tl_version} -Provides: tex(tracefnt.sty) = %{tl_version} -Provides: tex(ts1cmr.fd) = %{tl_version} -Provides: tex(ts1cmss.fd) = %{tl_version} -Provides: tex(ts1cmtt.fd) = %{tl_version} -Provides: tex(ts1cmvtt.fd) = %{tl_version} -Provides: tex(ts1enc.def) = %{tl_version} -Provides: tex(ts1enc.dfu) = %{tl_version} -Provides: tex(tuenc.def) = %{tl_version} -Provides: tex(tulmdh.fd) = %{tl_version} -Provides: tex(tulmr.fd) = %{tl_version} -Provides: tex(tulmss.fd) = %{tl_version} -Provides: tex(tulmssq.fd) = %{tl_version} -Provides: tex(tulmtt.fd) = %{tl_version} -Provides: tex(tulmvtt.fd) = %{tl_version} -Provides: tex(ucmr.fd) = %{tl_version} -Provides: tex(ucmss.fd) = %{tl_version} -Provides: tex(ucmtt.fd) = %{tl_version} -Provides: tex(ulasy.fd) = %{tl_version} -Provides: tex(ullasy.fd) = %{tl_version} -Provides: tex(utf8-2018.def) = %{tl_version} -Provides: tex(utf8.def) = %{tl_version} -Provides: tex(utf8enc.dfu) = %{tl_version} -Provides: tex(x2enc.dfu) = %{tl_version} - -%description latex-base-dev -This package provides a testing release for upcoming LaTeX2e -kernel changes. Testing by the LaTeX team itself suggests that -the code is stable and usable, but wider use by knowledgeable -users is required by adding these changes to the release LaTeX -kernel. Typically, the code here will be used by a TeX system -to create dedicated formats, for example pdflatex-dev, which -can then be used explicitly for testing. - -%package latex-bin-dev -Summary: LaTeX pre-release executables and formats -Version: svn51839 -License: Public Domain -Requires: texlive-luatex -Requires: texlive-pdftex -Requires: texlive-latexconfig -Requires: texlive-latex-fonts -Requires: texlive-latex-base-dev -Requires: texlive-latex-graphics-dev -Requires: texlive-babel -Requires: texlive-cm -Requires: texlive-hyphen-base -Requires: texlive-tex-ini-files -Requires: texlive-dehyph -Requires: texlive-unicode-data -Requires: texlive-base texlive-kpathsea - -# NOTE: There are binaries that this package wants to depend on -# latex-bin-dev.ARCH - -%description latex-bin-dev -See the latex-base-dev package for information. - -%package latexcolors -Summary: Use color definitions from latexcolor.com -Version: svn49888 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(latexcolors.sty) = %{tl_version} - -%description latexcolors -Built on top of the xcolor package, the latexcolors package -defines the set of colors shown on latexcolor.com for use in -documents typeset with LaTeX & friends. - -%package latex-graphics-dev -Summary: Development pre-release of the LaTeX graphics bundle -Version: svn51730 -License: LPPL -Requires: texlive-base texlive-kpathsea -Requires: texlive-graphics-cfg -Provides: tex(color.sty) = %{tl_version} -Provides: tex(dvipdf.def) = %{tl_version} -Provides: tex(dvipsnam.def) = %{tl_version} -Provides: tex(dvipsone.def) = %{tl_version} -Provides: tex(dviwin.def) = %{tl_version} -Provides: tex(emtex.def) = %{tl_version} -Provides: tex(epsfig.sty) = %{tl_version} -Provides: tex(graphics-2017-06-25.sty) = %{tl_version} -Provides: tex(graphics.sty) = %{tl_version} -Provides: tex(graphicx.sty) = %{tl_version} -Provides: tex(keyval.sty) = %{tl_version} -Provides: tex(lscape.sty) = %{tl_version} -Provides: tex(pctex32.def) = %{tl_version} -Provides: tex(pctexhp.def) = %{tl_version} -Provides: tex(pctexps.def) = %{tl_version} -Provides: tex(pctexwin.def) = %{tl_version} -Provides: tex(rotating.sty) = %{tl_version} -Provides: tex(tcidvi.def) = %{tl_version} -Provides: tex(trig.sty) = %{tl_version} -Provides: tex(truetex.def) = %{tl_version} - -%description latex-graphics-dev -This is a pre-release version of the standard LaTeX graphics -bundle. It accompanies the pre-testing kernel code -(latex-base-dev), and is intended for testing by knowledgeable -users. - -%package latex-uni8 -Summary: Universal inputenc, fontenc, and babel for pdfLaTeX and LuaLaTeX -Version: svn49729 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(uni8.sty) = %{tl_version} - -%description latex-uni8 -This package provides a LaTeX style file which makes it easy to -use input encoding (UTF-8 by default, can be changed), -fontspec.sty (optional), font encoding (T1 if fontspec.sty is -not used), babel (English language by default), hyphenation, -underline (with soul.sty), default text and math fonts -(Computer Modern or Times), and paper sizes correctly with both -pdfLaTeX and LuaLaTeX. - -%package lectures -Summary: Lectures - A document class for quickly drafting nice looking lecture notes -Version: svn49863 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(lectures.cls) = %{tl_version} - -%description lectures -This LaTeX documentclass provides a number of gimmicks to draft -nice looking lecture notes, such as a number of theorem -environments, automatic spacing and alignment of figures and -much more. More information is available in the package readme. - -%package libertinus-fonts -Summary: The Libertinus font family -Version: svn51614 -License: OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(LibertinusKeyboard-Regular.otf) = %{tl_version} -Provides: tex(LibertinusMath-Regular.otf) = %{tl_version} -Provides: tex(LibertinusMono-Regular.otf) = %{tl_version} -Provides: tex(LibertinusSans-Bold.otf) = %{tl_version} -Provides: tex(LibertinusSans-Italic.otf) = %{tl_version} -Provides: tex(LibertinusSans-Regular.otf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold.otf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic.otf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic.otf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular.otf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold.otf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic.otf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular.otf) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular.otf) = %{tl_version} - -%description libertinus-fonts -This is a fork of the Linux Libertine and Linux Biolinum fonts -that started as an OpenType math companion of the Libertine -font family, but grown as a full fork to address some of the -bugs in the fonts. The family consists of: Libertinus Serif: -forked from Linux Libertine. Libertinus Sans: forked from Linux -Biolinum. Libertinus Mono: forked from Linux Libertine Mono. -Libertinus Math: an OpenType math font for use in OpenType -math-capable applications like LuaTeX, XeTeX or MS Word 2007+. - -%package libertinus-type1 -Summary: Support for using Libertinus fonts with LaTeX/pdfLaTeX -Version: svn51261 -License: GPLv2 and LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(lbts_2knsmf.enc) = %{tl_version} -Provides: tex(lbts_2kou35.enc) = %{tl_version} -Provides: tex(lbts_2lyulq.enc) = %{tl_version} -Provides: tex(lbts_2ojay3.enc) = %{tl_version} -Provides: tex(lbts_2y652m.enc) = %{tl_version} -Provides: tex(lbts_332eyj.enc) = %{tl_version} -Provides: tex(lbts_35favc.enc) = %{tl_version} -Provides: tex(lbts_37i5h5.enc) = %{tl_version} -Provides: tex(lbts_3j5xjf.enc) = %{tl_version} -Provides: tex(lbts_3ko7s4.enc) = %{tl_version} -Provides: tex(lbts_3m644f.enc) = %{tl_version} -Provides: tex(lbts_3qta4x.enc) = %{tl_version} -Provides: tex(lbts_3ssu23.enc) = %{tl_version} -Provides: tex(lbts_3vcjod.enc) = %{tl_version} -Provides: tex(lbts_3vqmyw.enc) = %{tl_version} -Provides: tex(lbts_3yrfnt.enc) = %{tl_version} -Provides: tex(lbts_424hef.enc) = %{tl_version} -Provides: tex(lbts_42zev6.enc) = %{tl_version} -Provides: tex(lbts_4crdwc.enc) = %{tl_version} -Provides: tex(lbts_4d42wm.enc) = %{tl_version} -Provides: tex(lbts_4gaomz.enc) = %{tl_version} -Provides: tex(lbts_4hcz3c.enc) = %{tl_version} -Provides: tex(lbts_4kuzsb.enc) = %{tl_version} -Provides: tex(lbts_4q6kep.enc) = %{tl_version} -Provides: tex(lbts_4rsjdc.enc) = %{tl_version} -Provides: tex(lbts_4sdcjk.enc) = %{tl_version} -Provides: tex(lbts_4uwsiq.enc) = %{tl_version} -Provides: tex(lbts_4xoyfg.enc) = %{tl_version} -Provides: tex(lbts_4yzvqq.enc) = %{tl_version} -Provides: tex(lbts_4zqa2g.enc) = %{tl_version} -Provides: tex(lbts_54yd2w.enc) = %{tl_version} -Provides: tex(lbts_556w2i.enc) = %{tl_version} -Provides: tex(lbts_57bjkg.enc) = %{tl_version} -Provides: tex(lbts_5acxeg.enc) = %{tl_version} -Provides: tex(lbts_5ebvgw.enc) = %{tl_version} -Provides: tex(lbts_5h7qbk.enc) = %{tl_version} -Provides: tex(lbts_5iqp7j.enc) = %{tl_version} -Provides: tex(lbts_5jnf2k.enc) = %{tl_version} -Provides: tex(lbts_5trx76.enc) = %{tl_version} -Provides: tex(lbts_62mk6u.enc) = %{tl_version} -Provides: tex(lbts_66vson.enc) = %{tl_version} -Provides: tex(lbts_674lrv.enc) = %{tl_version} -Provides: tex(lbts_6caxtj.enc) = %{tl_version} -Provides: tex(lbts_6djcwk.enc) = %{tl_version} -Provides: tex(lbts_6dyxfu.enc) = %{tl_version} -Provides: tex(lbts_6ewxxu.enc) = %{tl_version} -Provides: tex(lbts_6gletg.enc) = %{tl_version} -Provides: tex(lbts_6hdezz.enc) = %{tl_version} -Provides: tex(lbts_6koghc.enc) = %{tl_version} -Provides: tex(lbts_6l4fbc.enc) = %{tl_version} -Provides: tex(lbts_6lk76t.enc) = %{tl_version} -Provides: tex(lbts_6m7wg2.enc) = %{tl_version} -Provides: tex(lbts_6nvrj3.enc) = %{tl_version} -Provides: tex(lbts_6wmeer.enc) = %{tl_version} -Provides: tex(lbts_6yr4k2.enc) = %{tl_version} -Provides: tex(lbts_6z2xzc.enc) = %{tl_version} -Provides: tex(lbts_72youc.enc) = %{tl_version} -Provides: tex(lbts_75t36g.enc) = %{tl_version} -Provides: tex(lbts_76xdns.enc) = %{tl_version} -Provides: tex(lbts_77t54r.enc) = %{tl_version} -Provides: tex(lbts_7d2mhk.enc) = %{tl_version} -Provides: tex(lbts_7gkjl4.enc) = %{tl_version} -Provides: tex(lbts_7hmj2z.enc) = %{tl_version} -Provides: tex(lbts_7kjq24.enc) = %{tl_version} -Provides: tex(lbts_7lwjes.enc) = %{tl_version} -Provides: tex(lbts_7mm7zy.enc) = %{tl_version} -Provides: tex(lbts_7nrml3.enc) = %{tl_version} -Provides: tex(lbts_7oodvn.enc) = %{tl_version} -Provides: tex(lbts_7tjgh7.enc) = %{tl_version} -Provides: tex(lbts_7vr6be.enc) = %{tl_version} -Provides: tex(lbts_7vsebg.enc) = %{tl_version} -Provides: tex(lbts_7yclm6.enc) = %{tl_version} -Provides: tex(lbts_a7bgh4.enc) = %{tl_version} -Provides: tex(lbts_adayd5.enc) = %{tl_version} -Provides: tex(lbts_aqrw4b.enc) = %{tl_version} -Provides: tex(lbts_arfinu.enc) = %{tl_version} -Provides: tex(lbts_at32ur.enc) = %{tl_version} -Provides: tex(lbts_avlujb.enc) = %{tl_version} -Provides: tex(lbts_avlydd.enc) = %{tl_version} -Provides: tex(lbts_ayzaac.enc) = %{tl_version} -Provides: tex(lbts_b4oezt.enc) = %{tl_version} -Provides: tex(lbts_b54rl4.enc) = %{tl_version} -Provides: tex(lbts_b5fzbp.enc) = %{tl_version} -Provides: tex(lbts_b6pjtl.enc) = %{tl_version} -Provides: tex(lbts_beoton.enc) = %{tl_version} -Provides: tex(lbts_bjbyqz.enc) = %{tl_version} -Provides: tex(lbts_bxwrog.enc) = %{tl_version} -Provides: tex(lbts_bzqg7w.enc) = %{tl_version} -Provides: tex(lbts_c3bv3f.enc) = %{tl_version} -Provides: tex(lbts_c4i7ev.enc) = %{tl_version} -Provides: tex(lbts_c4nx3a.enc) = %{tl_version} -Provides: tex(lbts_c6ebdh.enc) = %{tl_version} -Provides: tex(lbts_c6vmpn.enc) = %{tl_version} -Provides: tex(lbts_c7grr2.enc) = %{tl_version} -Provides: tex(lbts_calslh.enc) = %{tl_version} -Provides: tex(lbts_cb34qf.enc) = %{tl_version} -Provides: tex(lbts_cclupu.enc) = %{tl_version} -Provides: tex(lbts_cefqwa.enc) = %{tl_version} -Provides: tex(lbts_cfnhbt.enc) = %{tl_version} -Provides: tex(lbts_ckbdgg.enc) = %{tl_version} -Provides: tex(lbts_ckp7lr.enc) = %{tl_version} -Provides: tex(lbts_cpt6av.enc) = %{tl_version} -Provides: tex(lbts_cslza4.enc) = %{tl_version} -Provides: tex(lbts_cwyhfi.enc) = %{tl_version} -Provides: tex(lbts_cykel7.enc) = %{tl_version} -Provides: tex(lbts_czzxfr.enc) = %{tl_version} -Provides: tex(lbts_d2pxsd.enc) = %{tl_version} -Provides: tex(lbts_d46nkk.enc) = %{tl_version} -Provides: tex(lbts_dn22no.enc) = %{tl_version} -Provides: tex(lbts_dprick.enc) = %{tl_version} -Provides: tex(lbts_dsfsze.enc) = %{tl_version} -Provides: tex(lbts_dzyoth.enc) = %{tl_version} -Provides: tex(lbts_e35iwk.enc) = %{tl_version} -Provides: tex(lbts_e5lu6a.enc) = %{tl_version} -Provides: tex(lbts_eejjqw.enc) = %{tl_version} -Provides: tex(lbts_ep5pfz.enc) = %{tl_version} -Provides: tex(lbts_epdddg.enc) = %{tl_version} -Provides: tex(lbts_ercrba.enc) = %{tl_version} -Provides: tex(lbts_erpw25.enc) = %{tl_version} -Provides: tex(lbts_erzymz.enc) = %{tl_version} -Provides: tex(lbts_essi25.enc) = %{tl_version} -Provides: tex(lbts_et5tau.enc) = %{tl_version} -Provides: tex(lbts_f2r76x.enc) = %{tl_version} -Provides: tex(lbts_f3pcwn.enc) = %{tl_version} -Provides: tex(lbts_f5inuz.enc) = %{tl_version} -Provides: tex(lbts_f77aa2.enc) = %{tl_version} -Provides: tex(lbts_fili27.enc) = %{tl_version} -Provides: tex(lbts_fmdp7p.enc) = %{tl_version} -Provides: tex(lbts_fmriqv.enc) = %{tl_version} -Provides: tex(lbts_fn4r2c.enc) = %{tl_version} -Provides: tex(lbts_frnenp.enc) = %{tl_version} -Provides: tex(lbts_fszxp3.enc) = %{tl_version} -Provides: tex(lbts_fujx3h.enc) = %{tl_version} -Provides: tex(lbts_fy3had.enc) = %{tl_version} -Provides: tex(lbts_fzsrwh.enc) = %{tl_version} -Provides: tex(lbts_g3dkmi.enc) = %{tl_version} -Provides: tex(lbts_g5nwsd.enc) = %{tl_version} -Provides: tex(lbts_gb2a2a.enc) = %{tl_version} -Provides: tex(lbts_gc5t3w.enc) = %{tl_version} -Provides: tex(lbts_gh4gmp.enc) = %{tl_version} -Provides: tex(lbts_gjlait.enc) = %{tl_version} -Provides: tex(lbts_gq67ga.enc) = %{tl_version} -Provides: tex(lbts_gr4hit.enc) = %{tl_version} -Provides: tex(lbts_gugo42.enc) = %{tl_version} -Provides: tex(lbts_gwykud.enc) = %{tl_version} -Provides: tex(lbts_gz554e.enc) = %{tl_version} -Provides: tex(lbts_gz7arp.enc) = %{tl_version} -Provides: tex(lbts_hahfqq.enc) = %{tl_version} -Provides: tex(lbts_hbqgo2.enc) = %{tl_version} -Provides: tex(lbts_hej6xm.enc) = %{tl_version} -Provides: tex(lbts_hh5cao.enc) = %{tl_version} -Provides: tex(lbts_hhbt6z.enc) = %{tl_version} -Provides: tex(lbts_hhmpft.enc) = %{tl_version} -Provides: tex(lbts_hjeuwr.enc) = %{tl_version} -Provides: tex(lbts_hq2zn3.enc) = %{tl_version} -Provides: tex(lbts_htqssu.enc) = %{tl_version} -Provides: tex(lbts_hvvyjb.enc) = %{tl_version} -Provides: tex(lbts_hw4l6j.enc) = %{tl_version} -Provides: tex(lbts_hzrlgj.enc) = %{tl_version} -Provides: tex(lbts_i2nbjz.enc) = %{tl_version} -Provides: tex(lbts_iadd5v.enc) = %{tl_version} -Provides: tex(lbts_icmtyb.enc) = %{tl_version} -Provides: tex(lbts_ie56ak.enc) = %{tl_version} -Provides: tex(lbts_igmfoi.enc) = %{tl_version} -Provides: tex(lbts_ihsp6n.enc) = %{tl_version} -Provides: tex(lbts_iknsvo.enc) = %{tl_version} -Provides: tex(lbts_ipn6fb.enc) = %{tl_version} -Provides: tex(lbts_j6sgbi.enc) = %{tl_version} -Provides: tex(lbts_jdjwkh.enc) = %{tl_version} -Provides: tex(lbts_jfamas.enc) = %{tl_version} -Provides: tex(lbts_jn5w5h.enc) = %{tl_version} -Provides: tex(lbts_jrenuz.enc) = %{tl_version} -Provides: tex(lbts_js3lmv.enc) = %{tl_version} -Provides: tex(lbts_k62zaj.enc) = %{tl_version} -Provides: tex(lbts_kbhblx.enc) = %{tl_version} -Provides: tex(lbts_kedob6.enc) = %{tl_version} -Provides: tex(lbts_kehxxc.enc) = %{tl_version} -Provides: tex(lbts_koaj57.enc) = %{tl_version} -Provides: tex(lbts_komy7m.enc) = %{tl_version} -Provides: tex(lbts_kpsi5k.enc) = %{tl_version} -Provides: tex(lbts_kq3xmd.enc) = %{tl_version} -Provides: tex(lbts_kwkowq.enc) = %{tl_version} -Provides: tex(lbts_l5raak.enc) = %{tl_version} -Provides: tex(lbts_l5ujiv.enc) = %{tl_version} -Provides: tex(lbts_l5vej2.enc) = %{tl_version} -Provides: tex(lbts_l74upk.enc) = %{tl_version} -Provides: tex(lbts_laenbp.enc) = %{tl_version} -Provides: tex(lbts_llns2d.enc) = %{tl_version} -Provides: tex(lbts_llzec3.enc) = %{tl_version} -Provides: tex(lbts_lsubum.enc) = %{tl_version} -Provides: tex(lbts_lw3g3t.enc) = %{tl_version} -Provides: tex(lbts_lwiywm.enc) = %{tl_version} -Provides: tex(lbts_lwzthx.enc) = %{tl_version} -Provides: tex(lbts_lzae2z.enc) = %{tl_version} -Provides: tex(lbts_lzywtf.enc) = %{tl_version} -Provides: tex(lbts_m254rf.enc) = %{tl_version} -Provides: tex(lbts_m3l6fs.enc) = %{tl_version} -Provides: tex(lbts_m5c6xi.enc) = %{tl_version} -Provides: tex(lbts_m7sqdm.enc) = %{tl_version} -Provides: tex(lbts_mbfmc4.enc) = %{tl_version} -Provides: tex(lbts_mfadfl.enc) = %{tl_version} -Provides: tex(lbts_mfqkre.enc) = %{tl_version} -Provides: tex(lbts_mi54ls.enc) = %{tl_version} -Provides: tex(lbts_mlwm27.enc) = %{tl_version} -Provides: tex(lbts_mmgovh.enc) = %{tl_version} -Provides: tex(lbts_mrbizy.enc) = %{tl_version} -Provides: tex(lbts_mtpndz.enc) = %{tl_version} -Provides: tex(lbts_mtyjzx.enc) = %{tl_version} -Provides: tex(lbts_my4iyi.enc) = %{tl_version} -Provides: tex(lbts_mzxlpf.enc) = %{tl_version} -Provides: tex(lbts_n2o22i.enc) = %{tl_version} -Provides: tex(lbts_n3cifc.enc) = %{tl_version} -Provides: tex(lbts_n3lv2g.enc) = %{tl_version} -Provides: tex(lbts_n4gj6t.enc) = %{tl_version} -Provides: tex(lbts_nfez7q.enc) = %{tl_version} -Provides: tex(lbts_nhp4gq.enc) = %{tl_version} -Provides: tex(lbts_nl47lc.enc) = %{tl_version} -Provides: tex(lbts_nufysp.enc) = %{tl_version} -Provides: tex(lbts_nv3oiw.enc) = %{tl_version} -Provides: tex(lbts_nyx55v.enc) = %{tl_version} -Provides: tex(lbts_o4ojh2.enc) = %{tl_version} -Provides: tex(lbts_o7mh5o.enc) = %{tl_version} -Provides: tex(lbts_oaaihm.enc) = %{tl_version} -Provides: tex(lbts_obzz72.enc) = %{tl_version} -Provides: tex(lbts_odbssz.enc) = %{tl_version} -Provides: tex(lbts_odxs5a.enc) = %{tl_version} -Provides: tex(lbts_oeoa22.enc) = %{tl_version} -Provides: tex(lbts_of47id.enc) = %{tl_version} -Provides: tex(lbts_olw3tj.enc) = %{tl_version} -Provides: tex(lbts_opzo24.enc) = %{tl_version} -Provides: tex(lbts_ork5hb.enc) = %{tl_version} -Provides: tex(lbts_osdvzf.enc) = %{tl_version} -Provides: tex(lbts_ow32bs.enc) = %{tl_version} -Provides: tex(lbts_owgtkb.enc) = %{tl_version} -Provides: tex(lbts_oxyghs.enc) = %{tl_version} -Provides: tex(lbts_p5b3to.enc) = %{tl_version} -Provides: tex(lbts_p7snj6.enc) = %{tl_version} -Provides: tex(lbts_pa7fun.enc) = %{tl_version} -Provides: tex(lbts_pag3gg.enc) = %{tl_version} -Provides: tex(lbts_pkzsom.enc) = %{tl_version} -Provides: tex(lbts_poicuj.enc) = %{tl_version} -Provides: tex(lbts_ponsko.enc) = %{tl_version} -Provides: tex(lbts_ppmlvs.enc) = %{tl_version} -Provides: tex(lbts_ptnx64.enc) = %{tl_version} -Provides: tex(lbts_pzyt2d.enc) = %{tl_version} -Provides: tex(lbts_q2cvbs.enc) = %{tl_version} -Provides: tex(lbts_q2ibpc.enc) = %{tl_version} -Provides: tex(lbts_q2ow67.enc) = %{tl_version} -Provides: tex(lbts_q4imkx.enc) = %{tl_version} -Provides: tex(lbts_q4q2yp.enc) = %{tl_version} -Provides: tex(lbts_qcfvgl.enc) = %{tl_version} -Provides: tex(lbts_qe2yqv.enc) = %{tl_version} -Provides: tex(lbts_qn6cha.enc) = %{tl_version} -Provides: tex(lbts_qpph5c.enc) = %{tl_version} -Provides: tex(lbts_qu7bnb.enc) = %{tl_version} -Provides: tex(lbts_quwwcn.enc) = %{tl_version} -Provides: tex(lbts_qylzkl.enc) = %{tl_version} -Provides: tex(lbts_r2luo5.enc) = %{tl_version} -Provides: tex(lbts_r37ntu.enc) = %{tl_version} -Provides: tex(lbts_r4goj2.enc) = %{tl_version} -Provides: tex(lbts_rfuadt.enc) = %{tl_version} -Provides: tex(lbts_ridgvo.enc) = %{tl_version} -Provides: tex(lbts_rpeiua.enc) = %{tl_version} -Provides: tex(lbts_rqhkdi.enc) = %{tl_version} -Provides: tex(lbts_rrioga.enc) = %{tl_version} -Provides: tex(lbts_rscyuo.enc) = %{tl_version} -Provides: tex(lbts_rtitj6.enc) = %{tl_version} -Provides: tex(lbts_sceraq.enc) = %{tl_version} -Provides: tex(lbts_sewfus.enc) = %{tl_version} -Provides: tex(lbts_sfissr.enc) = %{tl_version} -Provides: tex(lbts_sgh26q.enc) = %{tl_version} -Provides: tex(lbts_sihybe.enc) = %{tl_version} -Provides: tex(lbts_srwzhm.enc) = %{tl_version} -Provides: tex(lbts_st5lk5.enc) = %{tl_version} -Provides: tex(lbts_sut3w7.enc) = %{tl_version} -Provides: tex(lbts_svglzc.enc) = %{tl_version} -Provides: tex(lbts_szn4yf.enc) = %{tl_version} -Provides: tex(lbts_szwnvb.enc) = %{tl_version} -Provides: tex(lbts_tb5odg.enc) = %{tl_version} -Provides: tex(lbts_tek236.enc) = %{tl_version} -Provides: tex(lbts_tevnlg.enc) = %{tl_version} -Provides: tex(lbts_thylxs.enc) = %{tl_version} -Provides: tex(lbts_trmgk4.enc) = %{tl_version} -Provides: tex(lbts_trxlme.enc) = %{tl_version} -Provides: tex(lbts_tubcvd.enc) = %{tl_version} -Provides: tex(lbts_u2zr7g.enc) = %{tl_version} -Provides: tex(lbts_u7nqae.enc) = %{tl_version} -Provides: tex(lbts_ucc7ky.enc) = %{tl_version} -Provides: tex(lbts_ucipzb.enc) = %{tl_version} -Provides: tex(lbts_ugujza.enc) = %{tl_version} -Provides: tex(lbts_uhqgc3.enc) = %{tl_version} -Provides: tex(lbts_uhwxqu.enc) = %{tl_version} -Provides: tex(lbts_usfuuy.enc) = %{tl_version} -Provides: tex(lbts_usz5ut.enc) = %{tl_version} -Provides: tex(lbts_uxbjn5.enc) = %{tl_version} -Provides: tex(lbts_v5eacd.enc) = %{tl_version} -Provides: tex(lbts_vary2v.enc) = %{tl_version} -Provides: tex(lbts_vcrloh.enc) = %{tl_version} -Provides: tex(lbts_vd63j7.enc) = %{tl_version} -Provides: tex(lbts_vdg3rg.enc) = %{tl_version} -Provides: tex(lbts_vftr22.enc) = %{tl_version} -Provides: tex(lbts_vgeuwy.enc) = %{tl_version} -Provides: tex(lbts_vhmker.enc) = %{tl_version} -Provides: tex(lbts_vizicw.enc) = %{tl_version} -Provides: tex(lbts_vkm6ln.enc) = %{tl_version} -Provides: tex(lbts_vmjjgq.enc) = %{tl_version} -Provides: tex(lbts_vpqjf7.enc) = %{tl_version} -Provides: tex(lbts_vs4z6e.enc) = %{tl_version} -Provides: tex(lbts_vtz4pu.enc) = %{tl_version} -Provides: tex(lbts_vvzoei.enc) = %{tl_version} -Provides: tex(lbts_w5ro75.enc) = %{tl_version} -Provides: tex(lbts_waqoej.enc) = %{tl_version} -Provides: tex(lbts_wccfai.enc) = %{tl_version} -Provides: tex(lbts_wm6att.enc) = %{tl_version} -Provides: tex(lbts_wogi6j.enc) = %{tl_version} -Provides: tex(lbts_wozmdw.enc) = %{tl_version} -Provides: tex(lbts_wpqmwa.enc) = %{tl_version} -Provides: tex(lbts_wrg6fm.enc) = %{tl_version} -Provides: tex(lbts_wx2biw.enc) = %{tl_version} -Provides: tex(lbts_wyusil.enc) = %{tl_version} -Provides: tex(lbts_x7beke.enc) = %{tl_version} -Provides: tex(lbts_xaezkf.enc) = %{tl_version} -Provides: tex(lbts_xcwn4v.enc) = %{tl_version} -Provides: tex(lbts_xfy7gm.enc) = %{tl_version} -Provides: tex(lbts_xjb3td.enc) = %{tl_version} -Provides: tex(lbts_xpehld.enc) = %{tl_version} -Provides: tex(lbts_xt3ev3.enc) = %{tl_version} -Provides: tex(lbts_yaf6wf.enc) = %{tl_version} -Provides: tex(lbts_yevedv.enc) = %{tl_version} -Provides: tex(lbts_ygr64v.enc) = %{tl_version} -Provides: tex(lbts_yhtabh.enc) = %{tl_version} -Provides: tex(lbts_yjs35n.enc) = %{tl_version} -Provides: tex(lbts_ynfuvy.enc) = %{tl_version} -Provides: tex(lbts_ysaokq.enc) = %{tl_version} -Provides: tex(lbts_yspm5c.enc) = %{tl_version} -Provides: tex(lbts_yt5vb5.enc) = %{tl_version} -Provides: tex(lbts_yxkos3.enc) = %{tl_version} -Provides: tex(lbts_yzuq4p.enc) = %{tl_version} -Provides: tex(lbts_z6ew44.enc) = %{tl_version} -Provides: tex(lbts_z6nnva.enc) = %{tl_version} -Provides: tex(lbts_z7wzvv.enc) = %{tl_version} -Provides: tex(lbts_zh5q6t.enc) = %{tl_version} -Provides: tex(lbts_zhi743.enc) = %{tl_version} -Provides: tex(lbts_zjhiql.enc) = %{tl_version} -Provides: tex(lbts_zpq4t3.enc) = %{tl_version} -Provides: tex(lbts_zpwads.enc) = %{tl_version} -Provides: tex(lbts_zwkuce.enc) = %{tl_version} -Provides: tex(libertinus.map) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-t2a.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-t2b.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-t2c.tfm) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibertinusMono-Bold.pfb) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique.pfb) = %{tl_version} -Provides: tex(LibertinusMono-Oblique.pfb) = %{tl_version} -Provides: tex(LibertinusMono-Regular.pfb) = %{tl_version} -Provides: tex(LibertinusSans-Bold.pfb) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique.pfb) = %{tl_version} -Provides: tex(LibertinusSans-Italic.pfb) = %{tl_version} -Provides: tex(LibertinusSans-Regular.pfb) = %{tl_version} -Provides: tex(LibertinusSerif-Bold.pfb) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic.pfb) = %{tl_version} -Provides: tex(LibertinusSerif-Italic.pfb) = %{tl_version} -Provides: tex(LibertinusSerif-Regular.pfb) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold.pfb) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic.pfb) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular.pfb) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular.pfb) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-BoldOblique-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Oblique-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusMono-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-BoldOblique-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSans-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-BoldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Italic-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-Semibold-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-ot1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-sc-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerif-SemiboldItalic-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerifDisplay-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(LibertinusSerifInitials-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(LGRLibertinusSans-LF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSans-OsF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSans-Sup.fd) = %{tl_version} -Provides: tex(LGRLibertinusSans-TLF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSans-TOsF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerif-LF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerif-OsF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerif-Sup.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerif-TLF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerif-TOsF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerifDisplay-LF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerifDisplay-OsF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerifDisplay-Sup.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerifDisplay-TLF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerifDisplay-TOsF.fd) = %{tl_version} -Provides: tex(LGRLibertinusSerifInitials-TLF.fd) = %{tl_version} -Provides: tex(LY1LibertinusMono-Sup.fd) = %{tl_version} -Provides: tex(LY1LibertinusMono-TLF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSans-LF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSans-OsF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSans-Sup.fd) = %{tl_version} -Provides: tex(LY1LibertinusSans-TLF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSans-TOsF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerif-LF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerif-OsF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerif-Sup.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerif-TLF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerif-TOsF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerifDisplay-LF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerifDisplay-OsF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerifDisplay-Sup.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerifDisplay-TLF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerifDisplay-TOsF.fd) = %{tl_version} -Provides: tex(LY1LibertinusSerifInitials-TLF.fd) = %{tl_version} -Provides: tex(OT1LibertinusMono-Sup.fd) = %{tl_version} -Provides: tex(OT1LibertinusMono-TLF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSans-LF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSans-OsF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSans-Sup.fd) = %{tl_version} -Provides: tex(OT1LibertinusSans-TLF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSans-TOsF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerif-LF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerif-OsF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerif-Sup.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerif-TLF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerif-TOsF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerifDisplay-LF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerifDisplay-OsF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerifDisplay-Sup.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerifDisplay-TLF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerifDisplay-TOsF.fd) = %{tl_version} -Provides: tex(OT1LibertinusSerifInitials-TLF.fd) = %{tl_version} -Provides: tex(T1LibertinusMono-Sup.fd) = %{tl_version} -Provides: tex(T1LibertinusMono-TLF.fd) = %{tl_version} -Provides: tex(T1LibertinusSans-LF.fd) = %{tl_version} -Provides: tex(T1LibertinusSans-OsF.fd) = %{tl_version} -Provides: tex(T1LibertinusSans-Sup.fd) = %{tl_version} -Provides: tex(T1LibertinusSans-TLF.fd) = %{tl_version} -Provides: tex(T1LibertinusSans-TOsF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerif-LF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerif-OsF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerif-Sup.fd) = %{tl_version} -Provides: tex(T1LibertinusSerif-TLF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerif-TOsF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerifDisplay-LF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerifDisplay-OsF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerifDisplay-Sup.fd) = %{tl_version} -Provides: tex(T1LibertinusSerifDisplay-TLF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerifDisplay-TOsF.fd) = %{tl_version} -Provides: tex(T1LibertinusSerifInitials-TLF.fd) = %{tl_version} -Provides: tex(T2ALibertinusMono-Sup.fd) = %{tl_version} -Provides: tex(T2ALibertinusMono-TLF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSans-LF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSans-OsF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSans-Sup.fd) = %{tl_version} -Provides: tex(T2ALibertinusSans-TLF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSans-TOsF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerif-LF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerif-OsF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerif-Sup.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerif-TLF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerif-TOsF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerifDisplay-LF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerifDisplay-OsF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerifDisplay-Sup.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerifDisplay-TLF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerifDisplay-TOsF.fd) = %{tl_version} -Provides: tex(T2ALibertinusSerifInitials-TLF.fd) = %{tl_version} -Provides: tex(T2BLibertinusMono-Sup.fd) = %{tl_version} -Provides: tex(T2BLibertinusMono-TLF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSans-LF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSans-OsF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSans-Sup.fd) = %{tl_version} -Provides: tex(T2BLibertinusSans-TLF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSans-TOsF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerif-LF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerif-OsF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerif-Sup.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerif-TLF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerif-TOsF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerifDisplay-LF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerifDisplay-OsF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerifDisplay-Sup.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerifDisplay-TLF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerifDisplay-TOsF.fd) = %{tl_version} -Provides: tex(T2BLibertinusSerifInitials-TLF.fd) = %{tl_version} -Provides: tex(T2CLibertinusMono-Sup.fd) = %{tl_version} -Provides: tex(T2CLibertinusMono-TLF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSans-LF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSans-OsF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSans-Sup.fd) = %{tl_version} -Provides: tex(T2CLibertinusSans-TLF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSans-TOsF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerif-LF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerif-OsF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerif-Sup.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerif-TLF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerif-TOsF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerifDisplay-LF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerifDisplay-OsF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerifDisplay-Sup.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerifDisplay-TLF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerifDisplay-TOsF.fd) = %{tl_version} -Provides: tex(T2CLibertinusSerifInitials-TLF.fd) = %{tl_version} -Provides: tex(TS1LibertinusMono-TLF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSans-LF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSans-OsF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSans-TLF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSans-TOsF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerif-LF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerif-OsF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerif-TLF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerif-TOsF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerifDisplay-LF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerifDisplay-OsF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerifDisplay-TLF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerifDisplay-TOsF.fd) = %{tl_version} -Provides: tex(TS1LibertinusSerifInitials-TLF.fd) = %{tl_version} -Provides: tex(libertinus-type1.sty) = %{tl_version} - -%description libertinus-type1 -This package provides support for use of Libertinus fonts with -traditional processing engines (LaTeX with dvips or dvipdfmx, -or pdfLaTeX). - -%package librefranklin -Summary: LaTeX support for the Libre-Franklin family of fonts -Version: svn51100 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(lbfr_5xld5w.enc) = %{tl_version} -Provides: tex(lbfr_f6scsm.enc) = %{tl_version} -Provides: tex(lbfr_hau3x5.enc) = %{tl_version} -Provides: tex(lbfr_kctjno.enc) = %{tl_version} -Provides: tex(lbfr_ljoz2a.enc) = %{tl_version} -Provides: tex(lbfr_wpyws4.enc) = %{tl_version} -Provides: tex(lbfr_yhzmyq.enc) = %{tl_version} -Provides: tex(LibreFranklin.map) = %{tl_version} -Provides: tex(LibreFranklin-Black.otf) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic.otf) = %{tl_version} -Provides: tex(LibreFranklin-Bold.otf) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic.otf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold.otf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic.otf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight.otf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic.otf) = %{tl_version} -Provides: tex(LibreFranklin-Italic.otf) = %{tl_version} -Provides: tex(LibreFranklin-Light.otf) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic.otf) = %{tl_version} -Provides: tex(LibreFranklin-Medium.otf) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic.otf) = %{tl_version} -Provides: tex(LibreFranklin-Regular.otf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold.otf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic.otf) = %{tl_version} -Provides: tex(LibreFranklin-Thin.otf) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic.otf) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-lgr--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-lgr.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-ly1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-ly1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-ot1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-t1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-ts1.tfm) = %{tl_version} -Provides: tex(LibreFranklin-Black.pfb) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-Bold.pfb) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold.pfb) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight.pfb) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-Italic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-Light.pfb) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-Medium.pfb) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-Regular.pfb) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold.pfb) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-Thin.pfb) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic.pfb) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Black-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Black-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BlackItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Bold-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-BoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLight-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ExtraLightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Italic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Italic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Light-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Light-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-LightItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Medium-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Medium-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-MediumItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBold-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-SemiBoldItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Thin-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-Thin-tlf-ts1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-sup-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-lgr.vf) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-ly1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-t1.vf) = %{tl_version} -Provides: tex(LibreFranklin-ThinItalic-tlf-ts1.vf) = %{tl_version} -Provides: tex(LY1LibreFranklin-Sup.fd) = %{tl_version} -Provides: tex(LY1LibreFranklin-TLF.fd) = %{tl_version} -Provides: tex(OT1LibreFranklin-Sup.fd) = %{tl_version} -Provides: tex(OT1LibreFranklin-TLF.fd) = %{tl_version} -Provides: tex(T1LibreFranklin-Sup.fd) = %{tl_version} -Provides: tex(T1LibreFranklin-TLF.fd) = %{tl_version} -Provides: tex(TS1LibreFranklin-TLF.fd) = %{tl_version} -Provides: tex(librefranklin.sty) = %{tl_version} - -%description librefranklin -Libre Franklin is an interpretation and expansion based on the -1912 Morris Fuller Benton's classic, designed by Pablo -Impallari, Rodrigo Fuenzalida and Nhung Nguyen. - -%package linguisticspro -Summary: LinguisticsPro fonts with LaTeX support -Version: svn51457 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(lnpr_2dchsz.enc) = %{tl_version} -Provides: tex(lnpr_2io6ub.enc) = %{tl_version} -Provides: tex(lnpr_2mzpfv.enc) = %{tl_version} -Provides: tex(lnpr_2xdvfx.enc) = %{tl_version} -Provides: tex(lnpr_37i25u.enc) = %{tl_version} -Provides: tex(lnpr_4slpb2.enc) = %{tl_version} -Provides: tex(lnpr_5g7sdz.enc) = %{tl_version} -Provides: tex(lnpr_6eapwe.enc) = %{tl_version} -Provides: tex(lnpr_6ld6ag.enc) = %{tl_version} -Provides: tex(lnpr_6mbqnk.enc) = %{tl_version} -Provides: tex(lnpr_7s35zn.enc) = %{tl_version} -Provides: tex(lnpr_a2z3ef.enc) = %{tl_version} -Provides: tex(lnpr_bklg6o.enc) = %{tl_version} -Provides: tex(lnpr_c3wdkv.enc) = %{tl_version} -Provides: tex(lnpr_c4erun.enc) = %{tl_version} -Provides: tex(lnpr_c5y55d.enc) = %{tl_version} -Provides: tex(lnpr_clyilc.enc) = %{tl_version} -Provides: tex(lnpr_dwnhrk.enc) = %{tl_version} -Provides: tex(lnpr_ehss4d.enc) = %{tl_version} -Provides: tex(lnpr_elz76p.enc) = %{tl_version} -Provides: tex(lnpr_eqqq5c.enc) = %{tl_version} -Provides: tex(lnpr_evnqbr.enc) = %{tl_version} -Provides: tex(lnpr_fxbwbp.enc) = %{tl_version} -Provides: tex(lnpr_j3dqtl.enc) = %{tl_version} -Provides: tex(lnpr_jlizdj.enc) = %{tl_version} -Provides: tex(lnpr_klqkbd.enc) = %{tl_version} -Provides: tex(lnpr_lc5lef.enc) = %{tl_version} -Provides: tex(lnpr_lf4b4x.enc) = %{tl_version} -Provides: tex(lnpr_ljqiml.enc) = %{tl_version} -Provides: tex(lnpr_mptstw.enc) = %{tl_version} -Provides: tex(lnpr_n7rfoz.enc) = %{tl_version} -Provides: tex(lnpr_o6z2fv.enc) = %{tl_version} -Provides: tex(lnpr_olwjlf.enc) = %{tl_version} -Provides: tex(lnpr_p6qnqd.enc) = %{tl_version} -Provides: tex(lnpr_pcxklf.enc) = %{tl_version} -Provides: tex(lnpr_pq5q4e.enc) = %{tl_version} -Provides: tex(lnpr_q4n4m4.enc) = %{tl_version} -Provides: tex(lnpr_qfqupj.enc) = %{tl_version} -Provides: tex(lnpr_rqjpbq.enc) = %{tl_version} -Provides: tex(lnpr_rwq5kg.enc) = %{tl_version} -Provides: tex(lnpr_syddkj.enc) = %{tl_version} -Provides: tex(lnpr_t2hwm2.enc) = %{tl_version} -Provides: tex(lnpr_tdl523.enc) = %{tl_version} -Provides: tex(lnpr_usrmsl.enc) = %{tl_version} -Provides: tex(lnpr_vycqam.enc) = %{tl_version} -Provides: tex(lnpr_wah5oe.enc) = %{tl_version} -Provides: tex(lnpr_waxsla.enc) = %{tl_version} -Provides: tex(lnpr_whgjeg.enc) = %{tl_version} -Provides: tex(lnpr_whn5dx.enc) = %{tl_version} -Provides: tex(lnpr_wsw7yh.enc) = %{tl_version} -Provides: tex(lnpr_xbq2sz.enc) = %{tl_version} -Provides: tex(lnpr_xr332d.enc) = %{tl_version} -Provides: tex(lnpr_xv6zbl.enc) = %{tl_version} -Provides: tex(lnpr_ydj4q2.enc) = %{tl_version} -Provides: tex(lnpr_yinvwd.enc) = %{tl_version} -Provides: tex(LinguisticsPro.map) = %{tl_version} -Provides: tex(LinguisticsPro-Bold.otf) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic.otf) = %{tl_version} -Provides: tex(LinguisticsPro-Italic.otf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular.otf) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-ts1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-ts1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-ts1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-ts1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-ts1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-lgr.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-ly1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-ot1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t2a.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t2b.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t2c.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t3--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-ts1--base.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-ts1.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-ts3.tfm) = %{tl_version} -Provides: tex(LinguisticsPro-Bold.pfb) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic.pfb) = %{tl_version} -Provides: tex(LinguisticsPro-Italic.pfb) = %{tl_version} -Provides: tex(LinguisticsPro-Regular.pfb) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Bold-osf-ts1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-lf-ts1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-BoldItalic-osf-ts1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-lf-ts1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Italic-osf-ts1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-sc-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-ly1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-ot1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-sc-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t1.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-t3.vf) = %{tl_version} -Provides: tex(LinguisticsPro-Regular-osf-ts1.vf) = %{tl_version} -Provides: tex(LGRLinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(LGRLinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(LY1LinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(LY1LinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(OT1LinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(OT1LinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(T1LinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(T1LinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(T2ALinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(T2ALinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(T2BLinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(T2BLinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(T2CLinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(T2CLinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(T3LinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(T3LinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(TS1LinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(TS1LinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(TS3LinguisticsPro-LF.fd) = %{tl_version} -Provides: tex(TS3LinguisticsPro-OsF.fd) = %{tl_version} -Provides: tex(linguisticspro.sty) = %{tl_version} - -%description linguisticspro -The package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -support for the LinguisticsPro family of fonts. This family is -derived from the Utopia Nova font family, by Andreas Nolda. - -%package lstfiracode -Summary: Use Fira Code font for listings -Version: svn49503 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(lstfiracode.sty) = %{tl_version} - -%description lstfiracode -The lstfiracode package defines FiraCodeStyle for the use with -the listings package. This style contains almost all ligatures -in Nikita Prokopov's Fira Code family of fonts. - -%package ltxguidex -Summary: An extended ltxguide class -Version: svn50992 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(ltxguidex.cls) = %{tl_version} - -%description ltxguidex -The ltxguidex document class extends ltxguide with a set of -environments and commands that make writing beautiful LaTeX -documentation easier and more natural. - -%package luaimageembed -Summary: Embed images as base64-encoded strings -Version: svn50788 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(luaimageembed.sty) = %{tl_version} - -%description luaimageembed -This package allows to embed images directly as base64-encoded -strings into an LuaLaTeX document. This can be useful, e. g. to -package a document with images into a single TeX file, or with -automatically generated graphics. - -%package luarandom -Summary: Create lists of random numbers -Version: svn49419 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(luarandom.sty) = %{tl_version} - -%description luarandom -This package can create lists of random numbers for any given -interval [a;b]. It is possible to get lists with or without -multiple numbers. The random generator will be initialized by -the system time. The package can only be used with LuaLaTeX! - -%package makecookbook -Summary: Make a Cookbook -Version: svn49311 -License: LPPL -Requires: texlive-base texlive-kpathsea - -%description makecookbook -The makecookbook bundle contains the files needed to create a -nice quality family cookbook in a form ready to submit to most -print-on-demand companies. Modifiable choices have been made -regarding standard book features such as trim size, margins, -headers/footers, chapter heading formatting, front matter -(copyright page, table of contents, etc.) and back matter -(index). Commands and environments have been created to format -the food stories and recipes. The user will need to: supply -their own food stories and recipes(!), and install the needed -fonts. We assume a LuaTeX compile. Please note that no new -document class or package is included here. Rather, we provide -a modifiable preamble and a small number of other files that, -together, fully support creation of all of the internal pages -of a cookbook (i.e., everything except the cover art). - -%package mathcommand -Summary: \newcommand-like commands for defining math macros -Version: svn51542 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(mathcommand.sty) = %{tl_version} - -%description mathcommand -This package provides functionalities for defining macros that -have different behaviors depending on whether in math or text -mode, that absorb Primes, Indices and Exponents (PIE) as extra -parameters usable in the code; and it offers some iteration -facilities for defining macros with similar code. The primary -objective of this package is to be used together with the -knowledge package for a proper handling of mathematical -notations. - -%package memorygraphs -Summary: TikZ styles to typeset graphs of program memory -Version: svn49631 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(memorygraphs.sty) = %{tl_version} - -%description memorygraphs -This package defines some TikZ styles and adds anchors to -existing styles that ease the declaration of "memory graphs". -It is intended for graphs that represent the memory of a -computer program during its execution. - -%package metalogox -Summary: Adjust TeX logos, with font detection -Version: svn49774 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(metalogox.sty) = %{tl_version} - -%description metalogox -This package extends the metalogo package to automatically -adjust the appearance of the logos TeX, LaTeX, LaTeX2e, -XeLaTeX, and LuaLaTeX, depending on the font detected or the -option given to metalogox. Most of the serif and sans fonts -listed at The LaTeX Font Catalogue are supported. The package -depends on metalogo, xparse, and etoolbox. - -%package metapost-colorbrewer -Summary: An implementation of the colorbrewer2.org colours for MetaPost -Version: svn48753 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea -Provides: tex(colorbrewer-cmyk.mp) = %{tl_version} -Provides: tex(colorbrewer-rgb.mp) = %{tl_version} - -%description metapost-colorbrewer -This package provides two MetaPost include files that define -all the colorbrewer2.org colours: colorbrewer-cmyk.mp -colorbrewer-rgb.mp The first defines all the colours as CMYK, -the second as RGB. Use whichever one you prefer. For an example -of what you can do, and a list of all the names, have a look at -colorbrewer-sampler.mp. You can also see the names on -http://colorbrewer2.org. The package also includes the Python -script used to generate the MP source from the colorbrewer -project. - -%package mismath -Summary: Miscellaneous mathematical macros -Version: svn51436 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(mismath.sty) = %{tl_version} - -%description mismath -The package provides some mathematical macros to typeset: -mathematical constants e, i, pi in upright shape -(automatically) as recommended by ISO 80000-2, vectors with -beautiful arrows and adjusted norm, some standard operator -names, improved spacings in mathematical formulas, systems of -equations and small matrices, displaymath in double columns for -long calculations. - -%package mi-solns -Summary: Extract solutions from exercises and quizzes -Version: svn49651 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(mi-solns.sty) = %{tl_version} - -%description mi-solns -This package is designed to mark a solution environment of an -exercise or quiz and insert it into the same or a different -document. Solutions are ones created by either the exerquiz or -eqexam package. All PDF creators are supported. - -%package mlacls -Summary: LaTeX class for MLA papers -Version: svn51157 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(mla.cls) = %{tl_version} - -%description mlacls -In the United States, secondary and undergraduate students are -generally expected to adhere to the format prescribed by the -Modern Language Association (MLA) for typewritten essays, -research papers and writings. This package provides a simple, -straightforward LaTeX class for composing papers almost -perfectly adherent to the MLA style guide. - -%package multicolrule -Summary: Decorative rules between columns -Version: svn49579 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(multicolrule.sty) = %{tl_version} - -%description multicolrule -This package lets you customize the appearance of the vertical -rule that appears between columns of multicolumn text. It is -primarily intended to work with the multicol package, hence its -name, but also supports the twocolumn option and \twocolumn -macro provided by the standard classes (and related classes -such as the KOMA-Script equivalents). The package depends on -expl3 and xparse. - -%package nanicolle -Summary: Herbarium specimen labels in Chinese -Version: svn50930 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(nanicolle.cls) = %{tl_version} - -%description nanicolle -This package provides a LaTeX class nanicolle.cls for -typesetting labels of collection and of identification in -Chinese for plant herbarium specimens. So far, documents using -this class can only be compiled with XeLaTeX. Note: The name of -the package is a compound of the Japanese "nani" (meaning -"what") and a truncated form of the English "collect", thus -expressing the ideas of identification/classification -(taxonomy) and collection. - -%package njurepo -Summary: Reports for Nanjing University -Version: svn50492 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(njurepo.cls) = %{tl_version} - -%description njurepo -This LaTeX document class provides a thesis template for -Nanjing University in order to make it easy to write experiment -reports and homework for the bachelor's curriculum. NJUrepo -stands for Nanjing University versatile Report. - -%package numberpt -Summary: Counters spelled out in Portuguese -Version: svn51640 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(numberpt.sty) = %{tl_version} - -%description numberpt -This packages defines commands to display counters spelled out -in Portuguese. The styles are \numberpt for "all lowercase" -\Numberpt for "First word capitalized" \NumberPt for "All -Capitalized" \NUMBERPT for "ALL UPPERCASE" For example, -\renewcommand{\thechapter}{\NumberPt{chapter}} makes chapter -titles to be rendered as "Capitulo Um", "Capitulo Dois" etc. -Options are offered to select variations in the spelling of -"14", or Brazilian vs. European Portuguese forms in the -spelling of "16", "17", and "19". The package requires expl3 -and xparse. - -%package pgf-cmykshadings -Summary: Support for CMYK and grayscale shadings in PGF/TikZ -Version: svn48982 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pgf-cmykshadings.sty) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-common-postscript.def) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-dvipdfm.def) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-dvipdfmx.def) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-dvips.def) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-luatex.def) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-pdftex.def) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-textures.def) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-vtex.def) = %{tl_version} -Provides: tex(pgfsys-cmykshadings-xetex.def) = %{tl_version} - -%description pgf-cmykshadings -This package provides support for CMYK and grayscale shadings -for the pgf package. By default pgf only supports RGB shadings. -The package attempts to produce shadings consistent with the -currently selected xcolor colour model. The rgb, cmyk, and gray -colour models from the xcolor package are supported. - -%package pgfmorepages -Summary: Assemble multiple logical pages onto a physical page -Version: svn51051 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pgfmorepages.sty) = %{tl_version} - -%description pgfmorepages -This package replaces and extends the pgfpages sub-package of -the PGF system. It provides the capability to arrange multiple -"logical" pages on multiple "physical" pages, for example as -for arranging pages to make booklets. - -%package plautopatch -Summary: Automated patches for pLaTeX/upLaTeX -Version: svn51331 -License: BSD -Requires: texlive-base texlive-kpathsea -Provides: tex(plarydshln.sty) = %{tl_version} -Provides: tex(plautopatch.sty) = %{tl_version} -Provides: tex(pldocverb.sty) = %{tl_version} -Provides: tex(plextarydshln.sty) = %{tl_version} -Provides: tex(plextcolortbl.sty) = %{tl_version} -Provides: tex(plsiunitx.sty) = %{tl_version} -Provides: tex(pxpdfpages.sty) = %{tl_version} -Provides: tex(pxpgfrcs.sty) = %{tl_version} - -%description plautopatch -Japanese pLaTeX/upLaTeX formats and packages often conflict -with other LaTeX packages which are unaware of pLaTeX/upLaTeX. -In the worst case, such packages throw a fatal error or end up -with a wrong output. The goal of this package is that there -should be no need to worry about such incompatibilities, -because specific patches are loaded automatically whenever -necessary. This helps not only to simplify source files, but -also to make the appearance of working pLaTeX/upLaTeX sources -similar to those of ordinary LaTeX ones. - -%package poiretone -Summary: poiretone fonts with LaTeX support -Version: svn51396 -License: OFL and LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(prtn_2rdbwn.enc) = %{tl_version} -Provides: tex(prtn_bjsotj.enc) = %{tl_version} -Provides: tex(prtn_nt5tbh.enc) = %{tl_version} -Provides: tex(prtn_opucty.enc) = %{tl_version} -Provides: tex(PoiretOne.map) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-ly1.tfm) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-ot1.tfm) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-t1--base.tfm) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-t1.tfm) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-ts1.tfm) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(PoiretOne-Bold.ttf) = %{tl_version} -Provides: tex(PoiretOne-Regular.ttf) = %{tl_version} -Provides: tex(PoiretOne-Bold.pfb) = %{tl_version} -Provides: tex(PoiretOne-Regular.pfb) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-ly1.vf) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-t1.vf) = %{tl_version} -Provides: tex(PoiretOne-Bold-lf-ts1.vf) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-ly1.vf) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(PoiretOne-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(LY1PoiretOne-LF.fd) = %{tl_version} -Provides: tex(OT1PoiretOne-LF.fd) = %{tl_version} -Provides: tex(PoiretOne.sty) = %{tl_version} -Provides: tex(T1PoiretOne-LF.fd) = %{tl_version} -Provides: tex(TS1PoiretOne-LF.fd) = %{tl_version} - -%description poiretone -This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -support for the PoiretOne family of fonts, designed by Denis -Masharov. PoiretOne is a decorative geometric grotesque with a -hint of Art Deco and constructivism. There is currently just a -regular weight and an artificially emboldened bold. - -%package poormanlog -Summary: Logarithms and powers with (almost) 9 digits -Version: svn50052 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(poormanlog.sty) = %{tl_version} -Provides: tex(poormanlog.tex) = %{tl_version} - -%description poormanlog -This small package (usable with Plain TeX, LaTeX, or others) -provides macros for computing logarithms in base 10 and -fractional powers of 10, achieving a bit less than 9 digits of -precision. The package has no dependencies and can be used on -its own, but becomes more user-friendly in the presence of the -xintexpr package, as it then provides log10() and pow10() -functions and optionally patches the ** or ^ power operators to -use those. This usage will become obsolete if and when xintexpr -will natively implement log10() and pow10() functions in -arbitrary precision. The documentation is included in the -README. - -%package proof-at-the-end -Summary: A package to move proofs to appendix -Version: svn51194 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(proof-at-the-end.sty) = %{tl_version} - -%description proof-at-the-end -This package aims to provide a way to easily move proofs to the -appendix. You can (among other things) move proofs to different -places/sections, create links from theorems to proofs, restate -theorems, add comments in appendix... - -%package prtec -Summary: A template for PRTEC conference papers -Version: svn50915 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(prtec.bst) = %{tl_version} -Provides: tex(prtec.cls) = %{tl_version} - -%description prtec -This package provides a LaTeX class, a BibTeX style, and a -LaTeX template to format conference papers for the Pacific Rim -Thermal Engineering Conference (PRTEC). The .tex and .cls files -are commented and should be self-explanatory. The package -depends on newtx. - -%package pseudo -Summary: Straightforward pseudocode -Version: svn51641 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(pseudo.sty) = %{tl_version} - -%description pseudo -The package permits writing pseudocode without much fuss and -with quite a bit of configurability. Its main environment -combines aspects of enumeration, tabbing and tabular for -nonintrusive line numbering, indentation and highlighting, and -there is functionality for typesetting common syntactic -elements such as keywords, identifiers, and comments. The -package relies on aliascnt, array, colortbl, expl3, l3keys2e, -xcolor, and xparse. - -%package pst-feyn -Summary: Draw graphical elements for Feynman diagrams -Version: svn48781 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-feyn.pro) = %{tl_version} -Provides: tex(pst-feyn.tex) = %{tl_version} -Provides: tex(pst-feyn.sty) = %{tl_version} - -%description pst-feyn -pst-feyn is a set of drawing graphical elements which are used -for Feynman diagrams. The package is based on the macros of the -old package axodraw but uses the capabilities of PSTricks. - -%package pst-lsystem -Summary: Create images based on a L-system -Version: svn49556 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-lsystem.pro) = %{tl_version} -Provides: tex(pst-lsystem.tex) = %{tl_version} -Provides: tex(pst-lsystem.sty) = %{tl_version} - -%description pst-lsystem -pst-lsystem is a PSTricks based package for creating images -based on a L-system. A L-system (Lindenmayer system) is a set -of rules which can be used to model the morphology of a variety -of organisms or fractals like the Kochflake or Hilbert curve. - -%package pst-marble -Summary: A PSTricks package to draw marble-like patterns -Version: svn50925 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-marble.pro) = %{tl_version} -Provides: tex(pst-marble.tex) = %{tl_version} -Provides: tex(pst-marble.sty) = %{tl_version} - -%description pst-marble -This is a PSTricks package to draw marble-like patterns. - -%package pst-moire -Summary: A PSTricks package to draw moire patterns -Version: svn49223 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-moire.pro) = %{tl_version} -Provides: tex(pst-moire.tex) = %{tl_version} -Provides: tex(pst-moire.sty) = %{tl_version} - -%description pst-moire -This is a PSTricks package to draw moire patterns. - -%package pst-venn -Summary: A PSTricks package for drawing Venn sets -Version: svn49316 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(pst-venn.sty) = %{tl_version} - -%description pst-venn -This is a PSTricks related package for drawing Venn diagrams -with three circles. - -%package ptex-manual -Summary: Japanese pTeX manual -Version: svn50733 -License: BSD -Requires: texlive-base texlive-kpathsea - -%description ptex-manual -This package contains the Japanese pTeX manual. Feedback is -welcome! - -%package ptolemaicastronomy -Summary: Diagrams of sphere models for variably strict conditionals (Lewis counterfactuals) -Version: svn50810 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(ptolemaicastronomy.sty) = %{tl_version} - -%description ptolemaicastronomy -David K. Lewis (Counterfactuals, Blackwell 1973) introduced a -sphere semantics for counterfactual conditionals. He jokingly -referred to the diagrams depicting such sphere models as -Ptolemaic astronomy, hence the name of this package. The macros -provided in this package aid in the construction of sphere -model diagrams in the style of Lewis. The macros all make use -of TikZ. - -%package pxjodel -Summary: Help change metrics of fonts from japanese-otf -Version: svn51379 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(jodhgothb-hq.tfm) = %{tl_version} -Provides: tex(jodhgotheb-hq.tfm) = %{tl_version} -Provides: tex(jodhgothr-hq.tfm) = %{tl_version} -Provides: tex(jodhmgothe-hq.tfm) = %{tl_version} -Provides: tex(jodhminb-hq.tfm) = %{tl_version} -Provides: tex(jodhminl-hq.tfm) = %{tl_version} -Provides: tex(jodhminr-hq.tfm) = %{tl_version} -Provides: tex(zu-jodhgothb-hq.tfm) = %{tl_version} -Provides: tex(zu-jodhgotheb-hq.tfm) = %{tl_version} -Provides: tex(zu-jodhgothr-hq.tfm) = %{tl_version} -Provides: tex(zu-jodhmgothe-hq.tfm) = %{tl_version} -Provides: tex(zu-jodhminb-hq.tfm) = %{tl_version} -Provides: tex(zu-jodhminl-hq.tfm) = %{tl_version} -Provides: tex(zu-jodhminr-hq.tfm) = %{tl_version} -Provides: tex(jodhgothb-hq.vf) = %{tl_version} -Provides: tex(jodhgotheb-hq.vf) = %{tl_version} -Provides: tex(jodhgothr-hq.vf) = %{tl_version} -Provides: tex(jodhmgothe-hq.vf) = %{tl_version} -Provides: tex(jodhminb-hq.vf) = %{tl_version} -Provides: tex(jodhminl-hq.vf) = %{tl_version} -Provides: tex(jodhminr-hq.vf) = %{tl_version} -Provides: tex(zu-jodhgothb-hq.vf) = %{tl_version} -Provides: tex(zu-jodhgotheb-hq.vf) = %{tl_version} -Provides: tex(zu-jodhgothr-hq.vf) = %{tl_version} -Provides: tex(zu-jodhmgothe-hq.vf) = %{tl_version} -Provides: tex(zu-jodhminb-hq.vf) = %{tl_version} -Provides: tex(zu-jodhminl-hq.vf) = %{tl_version} -Provides: tex(zu-jodhminr-hq.vf) = %{tl_version} -Provides: tex(pxjodel.sty) = %{tl_version} - -%description pxjodel -This package changes the setup of the japanese-otf package so -that the TFMs for direct input are all replaced by new ones -with prefixed names; for exmaple, nmlminr-h will be replaced by -foo--nmlminr-h, where foo is a prefix specified by the user. -This function will assist users who want to use the -japanese-otf package together with tailored TFMs of Japanese -fonts. The "jodel" part of the package name stands for -"japanese-otf deluxe". Here "deluxe" is the name of -japanese-otf's option for employing multi-weight Japanese font -families. This option is probably the most likely reason for -using japanese-otf. So pxjodel is really about japanese-otf's -"deluxe" option, hence the name. It is not related to yodel -singing, although some sense of word-play is intended. - -%package qsharp -Summary: Syntax highlighting for the Q# language -Version: svn49722 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(qsharp.sty) = %{tl_version} - -%description qsharp -The package provides syntax highlighting for the Q# language, a -domain-specific language for quantum programming. - -%package quantikz -Summary: Draw quantum circuit diagrams -Version: svn50934 -License: CC-BY -Requires: texlive-base texlive-kpathsea -Provides: tex(tikzlibraryquantikz.code.tex) = %{tl_version} - -%description quantikz -The purpose of this package is to extend TikZ with the -functionality for drawing quantum circuit diagrams. - -%package quran-de -Summary: German translations to the quran package -Version: svn50979 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(quran-de.sty) = %{tl_version} -Provides: tex(qurantext-deii.translation.def) = %{tl_version} -Provides: tex(qurantext-deiii.translation.def) = %{tl_version} -Provides: tex(qurantext-deiv.translation.def) = %{tl_version} - -%description quran-de -The package is prepared for typesetting some German -translations of the Holy Quran. It adds three more German -translations to the quran package. - -%package quran-ur -Summary: Urdu translations to the quran package -Version: svn51013 -License: LPPL -Requires: texlive-base texlive-kpathsea - -%description quran-ur -The package is prepared for typesetting some Urdu translations -of the Holy Quran. It adds eight more Urdu translations to the -quran package. - -%package ragged2e -Summary: Alternative versions of "ragged"-type commands -Version: svn51780 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(ragged2e.sty) = %{tl_version} - -%description ragged2e -The package defines new commands \Centering, \RaggedLeft, and -\RaggedRight and new environments Center, FlushLeft, and -FlushRight, which set ragged text and are easily configurable -to allow hyphenation (the corresponding commands in LaTeX, all -of whose names are lower-case, prevent hyphenation altogether). - -%package rank-2-roots -Summary: Draw (mathematical) rank 2 root systems -Version: svn48515 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(rank-2-roots.sty) = %{tl_version} - -%description rank-2-roots -This package concerns mathematical drawings arising in -representation theory. The purpose of this package is to ease -drawing of rank 2 root systems, with Weyl chambers, weight -lattices, and parabolic subgroups. Required packages are tikz, -etoolbox, expl3, pgfkeys, pgfopts, xparse, and xstring. - -%package realhats -Summary: Put real hats on symbols instead of ^ -Version: svn51004 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(realhats-beret.png) = %{tl_version} -Provides: tex(realhats-cowboy.png) = %{tl_version} -Provides: tex(realhats-crown.png) = %{tl_version} -Provides: tex(realhats-fez.png) = %{tl_version} -Provides: tex(realhats-makelatexgreatagain.png) = %{tl_version} -Provides: tex(realhats-santa.png) = %{tl_version} -Provides: tex(realhats-scottish.png) = %{tl_version} -Provides: tex(realhats-sombrero.png) = %{tl_version} -Provides: tex(realhats-tophat.png) = %{tl_version} -Provides: tex(realhats-witch.png) = %{tl_version} -Provides: tex(realhats.sty) = %{tl_version} - -%description realhats -This LaTeX package makes \hat put real hats on symbols. The -package depends on amsmath, calc, graphicx, ifthen, lcg, and -stackengine. - -%package rulerbox -Summary: Draw rulers around a box -Version: svn50984 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(rulerbox.sty) = %{tl_version} - -%description rulerbox -This is a LaTeX package for drawing rulers around a box. This -might be useful when showing the absolute size of something in -electronic documents, or designating the relative scale in -printed materials. - -%package ryersonsgsthesis -Summary: Ryerson School of Graduate Studies thesis template -Version: svn50119 -License: ASL 2.0 -Requires: texlive-base texlive-kpathsea -Provides: tex(ryersonSGSThesis.cls) = %{tl_version} - -%description ryersonsgsthesis -This package provides a LaTeX class and template files for -Ryerson School of Graduate Studies (SGS) theses. - -%package schedule -Summary: Weekly schedules -Version: svn51805 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(schedule.sty) = %{tl_version} - -%description schedule -Automatically format weekly schedules using LaTeX's picture -environment. It requires the packages calc and color. Its main -feature is the accuracy with which appointments are -represented: boxes drawn to represent a particular appointment -are accurate to the minute -- i.e., a 31-minute appointment -will have a box 1/30th longer than a 30-minute appointment. A -number of features are included to allow the user to customize -the output. - -%package scontents -Summary: Store and reuse code sequences -Version: svn51779 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(scontents.sty) = %{tl_version} - -%description scontents -This package stores valid LaTeX code in sequences using the -l3seq module of expl3. The stored content (including verbatim) -can be used as many times as desired in the document, -additionally can be written to external files if desired. - -%package scratch3 -Summary: Draw programs like "scratch" -Version: svn51537 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(scratch3.sty) = %{tl_version} - -%description scratch3 -This package permits to draw program charts in the style of the -scatch project (scratch.mit.edu). It depends on the other LaTeX -packages TikZ and simplekv. - -%package soulpos -Summary: A fancy means of underlining -Version: svn51479 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(soulpos.sty) = %{tl_version} - -%description soulpos -The package combines the use of soul with the savepos mechanism -of current pdfTeX so that the user can create (almost) -arbitrary underlining and similar "decorations", including -rules, leaders and even pictures (pgf, pstricks, etc.). Unlike -soul underlines, which are built by repeating small elements, -here each chunk of text to be underlined is a single element. - -%package spacingtricks -Summary: Dealing with some spacing issues -Version: svn51495 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(spacingtricks.sty) = %{tl_version} - -%description spacingtricks -The spacingtricks package provides macros for dealing with some -spacing issues e.g. centering a single line, making a variable -strut, indenting a block, typesetting a compact list, placing -two boxes side by side with vertical adjustment. - -%package srdp-mathematik -Summary: Typeset Austrian SRDP in mathematics -Version: svn51600 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(srdp-mathematik.sty) = %{tl_version} - -%description srdp-mathematik -This package provides basic commands for the defined formats of -the Austrian sRDP (Standardisierte Reife- und Diplomprufung) in -mathematics. Furthermore, it includes ways to implement answers -in the tex file which can optionally be displayed in the pdf -file, and it offers a way to vary the answers in order to -create different groups (e. g. for tests) easily. - -%package subdocs -Summary: Multifile documents -Version: svn51480 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(subdocs.sty) = %{tl_version} - -%description subdocs -This is an experimental package aiming to provide a different -approach for multidocument works (mainly, books with a document -per chapter). Unlike the \include mechanism, every subdocument -is a complete normal LaTeX document and may be typeset -separately. What the package does is sharing the .aux files. -The present release is an alpha version, and no attempt has yet -been made to allow it to work with, say, hyperref. - -%package subtext -Summary: Easy text-style subscripts in math mode -Version: svn51273 -License: GPLv3 -Requires: texlive-base texlive-kpathsea -Provides: tex(subtext.sty) = %{tl_version} - -%description subtext -This LaTeX package gives easy access to text-style subscripts -in math mode by providing an optional argument to _. This is -implemented by using the \text{} command from the amstext -package. - -%package technion-thesis-template -Summary: Template for theses on the Technion graduate school -Version: svn49889 -License: CC-BY -Requires: texlive-base texlive-kpathsea -Provides: tex(technionThesis.cls) = %{tl_version} -Provides: tex(technionThesisSetup.sty) = %{tl_version} - -%description technion-thesis-template -This is a template for writing a thesis according to the -Technion specifications. - -%package tensind -Summary: Typeset tensors -Version: svn51481 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(tensind.sty) = %{tl_version} - -%description tensind -Typesets tensors with dots filling gaps and fine tuning of -index placement. - -%package tex-locale -Summary: Localisation support for TeX and LaTeX documents -Version: svn48500 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tex-locale.tex) = %{tl_version} -Provides: tex(tex-locale-encodings.def) = %{tl_version} -Provides: tex(tex-locale-scripts-enc.def) = %{tl_version} -Provides: tex(tex-locale-support.def) = %{tl_version} -Provides: tex(tex-locale.sty) = %{tl_version} - -%description tex-locale -This package uses both tracklang and texosquery to look up the -locale information from the operating system and provide -commands that can access locale-dependent information, such as -the currency symbol and decimal separator. The file -tex-locale.tex provides generic TeX code. The LaTeX package -tex-locale.sty can additionally load babel or polyglossia with -the locale's language setting, as well as various other -packages such as fontspec (XeLaTeX/LuaLaTeX) or fontenc + -inputenc (pdfLaTeX). - -%package texonly -Summary: A sample document in Plain TeX -Version: svn50985 -License: LPPL -Requires: texlive-base texlive-kpathsea - -%description texonly -A file written with TeX, not using any packgages or sty-files, -to be compiled with TeX or pdfTeX only, not with LaTeX et al. - -%package theanodidot -Summary: TheanoDidot fonts with LaTeX support -Version: svn51695 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(thdid_alkcdl.enc) = %{tl_version} -Provides: tex(thdid_ertqq3.enc) = %{tl_version} -Provides: tex(thdid_f66p55.enc) = %{tl_version} -Provides: tex(thdid_izaajv.enc) = %{tl_version} -Provides: tex(thdid_k6ngqv.enc) = %{tl_version} -Provides: tex(thdid_lqxlns.enc) = %{tl_version} -Provides: tex(thdid_oiucyb.enc) = %{tl_version} -Provides: tex(thdid_whuz6y.enc) = %{tl_version} -Provides: tex(thdid_xgfkyc.enc) = %{tl_version} -Provides: tex(thdid_zj2gif.enc) = %{tl_version} -Provides: tex(TheanoDidot.map) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoDidot-Bold.ttf) = %{tl_version} -Provides: tex(TheanoDidot-Regular.ttf) = %{tl_version} -Provides: tex(TheanoDidot-Bold.pfb) = %{tl_version} -Provides: tex(TheanoDidot-Regular.pfb) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(TheanoDidot-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(TheanoDidot-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(LGRTheanoDidot-TLF.fd) = %{tl_version} -Provides: tex(LGRTheanoDidot-TOsF.fd) = %{tl_version} -Provides: tex(LY1TheanoDidot-TLF.fd) = %{tl_version} -Provides: tex(LY1TheanoDidot-TOsF.fd) = %{tl_version} -Provides: tex(OT1TheanoDidot-TLF.fd) = %{tl_version} -Provides: tex(OT1TheanoDidot-TOsF.fd) = %{tl_version} -Provides: tex(T1TheanoDidot-TLF.fd) = %{tl_version} -Provides: tex(T1TheanoDidot-TOsF.fd) = %{tl_version} -Provides: tex(TS1TheanoDidot-TLF.fd) = %{tl_version} -Provides: tex(TS1TheanoDidot-TOsF.fd) = %{tl_version} -Provides: tex(TheanoDidot.sty) = %{tl_version} - -%description theanodidot -This package provides the TheanoDidot font designed by Alexey -Kryukov, in both TrueType and Type1 formats, with support for -both traditional and modern LaTeX processors. An -artificially-emboldened variant has been provided but there are -no italic variants. The package is named after Theano, a famous -Ancient Greek woman philosopher, who was first a student of -Pythagoras, and supposedly became his wife. The Didot family -were active as designers for about 100 years in the 18th and -19th centuries. They were printers, publishers, typeface -designers, inventors and intellectuals. Around 1800 the Didot -family owned the most important print shop and font foundry in -France. Pierre Didot, the printer, published a document with -the typefaces of his brother, Firmin Didot, the typeface -designer. The strong clear forms of this alphabet display -objective, rational characteristics and are representative of -the time and philosophy of the Enlightenment. - -%package theanomodern -Summary: Theano Modern fonts with LaTeX support -Version: svn51759 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(thedid_alkcdl.enc) = %{tl_version} -Provides: tex(thedid_ertqq3.enc) = %{tl_version} -Provides: tex(thedid_f66p55.enc) = %{tl_version} -Provides: tex(thedid_izaajv.enc) = %{tl_version} -Provides: tex(thedid_k6ngqv.enc) = %{tl_version} -Provides: tex(thedid_lqxlns.enc) = %{tl_version} -Provides: tex(thedid_oiucyb.enc) = %{tl_version} -Provides: tex(thedid_whuz6y.enc) = %{tl_version} -Provides: tex(thedid_xgfkyc.enc) = %{tl_version} -Provides: tex(thedid_zj2gif.enc) = %{tl_version} -Provides: tex(TheanoModern.map) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoModern-Bold.ttf) = %{tl_version} -Provides: tex(TheanoModern-Regular.ttf) = %{tl_version} -Provides: tex(TheanoModern-Bold.pfb) = %{tl_version} -Provides: tex(TheanoModern-Regular.pfb) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(TheanoModern-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(TheanoModern-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(TheanoModern-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(TheanoModern-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(LGRTheanoModern-TLF.fd) = %{tl_version} -Provides: tex(LGRTheanoModern-TOsF.fd) = %{tl_version} -Provides: tex(LY1TheanoModern-TLF.fd) = %{tl_version} -Provides: tex(LY1TheanoModern-TOsF.fd) = %{tl_version} -Provides: tex(OT1TheanoModern-TLF.fd) = %{tl_version} -Provides: tex(OT1TheanoModern-TOsF.fd) = %{tl_version} -Provides: tex(T1TheanoModern-TLF.fd) = %{tl_version} -Provides: tex(T1TheanoModern-TOsF.fd) = %{tl_version} -Provides: tex(TS1TheanoModern-TLF.fd) = %{tl_version} -Provides: tex(TS1TheanoModern-TOsF.fd) = %{tl_version} -Provides: tex(TheanoModern.sty) = %{tl_version} - -%description theanomodern -This package provides the TheanoModern font designed by Alexey -Kryukov, in both TrueType and Type1 formats, with support for -both traditional and modern LaTeX processors. An -artificially-emboldened variant has been provided but there are -no italic variants. The package is named after Theano, a famous -Ancient Greek woman philosopher, who was first a student of -Pythagoras, and supposedly became his wife. - -%package theanooldstyle -Summary: Theano OldStyle fonts with LaTeX support -Version: svn51767 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(thost_alkcdl.enc) = %{tl_version} -Provides: tex(thost_ertqq3.enc) = %{tl_version} -Provides: tex(thost_f66p55.enc) = %{tl_version} -Provides: tex(thost_izaajv.enc) = %{tl_version} -Provides: tex(thost_ogssaz.enc) = %{tl_version} -Provides: tex(thost_oiucyb.enc) = %{tl_version} -Provides: tex(thost_whuz6y.enc) = %{tl_version} -Provides: tex(thost_xf32t5.enc) = %{tl_version} -Provides: tex(thost_xgfkyc.enc) = %{tl_version} -Provides: tex(thost_zj2gif.enc) = %{tl_version} -Provides: tex(TheanoOldStyle.map) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-t1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-t1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-t1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-lgr.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-ly1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-ot1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-t1--base.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-t1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-ts1--base.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-ts1.tfm) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold.ttf) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular.ttf) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold.pfb) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular.pfb) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-t1.vf) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tlf-ts1.vf) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-t1.vf) = %{tl_version} -Provides: tex(TheanoOldStyle-Bold-tosf-ts1.vf) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-t1.vf) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tlf-ts1.vf) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-t1.vf) = %{tl_version} -Provides: tex(TheanoOldStyle-Regular-tosf-ts1.vf) = %{tl_version} -Provides: tex(LGRTheanoOldStyle-TLF.fd) = %{tl_version} -Provides: tex(LGRTheanoOldStyle-TOsF.fd) = %{tl_version} -Provides: tex(LY1TheanoOldStyle-TLF.fd) = %{tl_version} -Provides: tex(LY1TheanoOldStyle-TOsF.fd) = %{tl_version} -Provides: tex(OT1TheanoOldStyle-TLF.fd) = %{tl_version} -Provides: tex(OT1TheanoOldStyle-TOsF.fd) = %{tl_version} -Provides: tex(T1TheanoOldStyle-TLF.fd) = %{tl_version} -Provides: tex(T1TheanoOldStyle-TOsF.fd) = %{tl_version} -Provides: tex(TS1TheanoOldStyle-TLF.fd) = %{tl_version} -Provides: tex(TS1TheanoOldStyle-TOsF.fd) = %{tl_version} -Provides: tex(TheanoOldStyle.sty) = %{tl_version} - -%description theanooldstyle -This package provides the Theano OldStyle font designed by -Alexey Kryukov, in both TrueType and Type1 formats, with -support for both traditional and modern LaTeX processors. An -artificially-emboldened variant has been provided but there are -no italic variants. The package is named after Theano, a famous -Ancient Greek woman philosopher, who was first a student of -Pythagoras, and supposedly became his wife. - -%package thesis-qom -Summary: Thesis style of the University of Qom, Iran -Version: svn49124 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(thesis-qom.cls) = %{tl_version} - -%description thesis-qom -This package provides a class file for writing theses and -dissertations according to the University of Qom Graduate -Schools's guidelines for the electronic submission of master -theses and PhD dissertations. The class should meet all the -current requirements and is updated whenever the university -guidelines change. The class needs XeLaTeX in conjunction with -the following fonts: XB Niloofar, IranNastaliq, IRlotus, XB -Zar, XB Titre, and Yas. - -%package thuaslogos -Summary: Logos for The Hague University of Applied Sciences (THUAS) -Version: svn51347 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(thuaslogos.sty) = %{tl_version} - -%description thuaslogos -This package contains some logos of The Hague University of -Applied Sciences (THUAS). These Logos are available in English -and in Dutch. They are rendered via PGF. - -%package tikz-feynhand -Summary: Feynman diagrams with TikZ -Version: svn46502 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea -Provides: tex(tikz-feynhand.sty) = %{tl_version} -Provides: tex(tikzfeynhand.keys.code.tex) = %{tl_version} -Provides: tex(tikzlibraryfeynhand.code.tex) = %{tl_version} - -%description tikz-feynhand -This package lets you draw Feynman diagrams using TikZ. It is a -low-end modification of the TikZ-Feynman package, one of whose -principal advantages is the automatic generation of diagrams, -for which it needs LuaTex. TikZ-FeynHand only provides the -manual mode and hence runs in LaTeX without any reference to -LuaTeX. In addition it provides some new styles for vertices -and propagators, alternative shorter keywords in addition to -TikZ-Feynman's longer ones, some shortcut commands for quickly -customizing the diagrams' look, and the new feature of putting -one propagator "on top" of another. It also includes a quick -user guide for getting started, with many examples and a -5-minute introduction to TikZ. - -%package tikz-imagelabels -Summary: Put labels on images using TikZ -Version: svn51490 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tikz-imagelabels.sty) = %{tl_version} - -%description tikz-imagelabels -This package allows to add label texts to an existing image -with the aid of TikZ. This may be used to label certain -features in an image. - -%package tikzlings -Summary: A collection of cute little animals and similar creatures -Version: svn50841 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(tikzlings-addons.sty) = %{tl_version} -Provides: tex(tikzlings-bears.sty) = %{tl_version} -Provides: tex(tikzlings-cats.sty) = %{tl_version} -Provides: tex(tikzlings-coatis.sty) = %{tl_version} -Provides: tex(tikzlings-hippos.sty) = %{tl_version} -Provides: tex(tikzlings-koalas.sty) = %{tl_version} -Provides: tex(tikzlings-marmots.sty) = %{tl_version} -Provides: tex(tikzlings-mice.sty) = %{tl_version} -Provides: tex(tikzlings-moles.sty) = %{tl_version} -Provides: tex(tikzlings-owls.sty) = %{tl_version} -Provides: tex(tikzlings-pandas.sty) = %{tl_version} -Provides: tex(tikzlings-penguins.sty) = %{tl_version} -Provides: tex(tikzlings-pigs.sty) = %{tl_version} -Provides: tex(tikzlings-rhinos.sty) = %{tl_version} -Provides: tex(tikzlings-sloths.sty) = %{tl_version} -Provides: tex(tikzlings-snowmans.sty) = %{tl_version} -Provides: tex(tikzlings.sty) = %{tl_version} - -%description tikzlings -A collection of LaTeX packages for drawing cute little animals -and similar creatures using TikZ. Currently, the following -TikZlings are included: bear cat coati hippo koala marmot moles -mouse owl panda penguin pig rhino sloth snowman These little -drawings can be customized in many ways. - -%package tikz-truchet -Summary: Draw Truchet tiles -Version: svn50020 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(tikz-truchet.sty) = %{tl_version} - -%description tikz-truchet -This is a package for LaTeX that draws Truchet tiles, as used -in Colin Beveridge's article Too good to be Truchet in issue 08 -of Chalkdust. - -%package topiclongtable -Summary: Extend longtable with cells that merge hierarchically -Version: svn51601 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(topiclongtable.sty) = %{tl_version} - -%description topiclongtable -This LaTeX package extends longtable implementing cells that: -merge with the one above if it has the same content, do not -merge with the one above unless the ones on the left are -merged, are well behaved with respect to longtable chunking on -page breaks, and automatically draw the correct separation -lines. The typical use case is a table spanning multiple pages -that contains a list of hierarchically organized topics (hence -the package name). The package depends on array, expl3, -longtable, multirow, xparse, and zref-abspage. - -%package tuda-ci -Summary: LaTeX templates of Technische Universitat Darmstadt -Version: svn51822 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(beamercolorthemeTUDa.sty) = %{tl_version} -Provides: tex(beamerfontthemeTUDa.sty) = %{tl_version} -Provides: tex(beamerinnerthemeTUDa.sty) = %{tl_version} -Provides: tex(beamerouterthemeTUDa.sty) = %{tl_version} -Provides: tex(beamerthemeTUDa.sty) = %{tl_version} -Provides: tex(tudabeamer.cls) = %{tl_version} -Provides: tex(tudacolors.def) = %{tl_version} -Provides: tex(tudacolors.sty) = %{tl_version} -Provides: tex(tudafonts.sty) = %{tl_version} -Provides: tex(tudaletter.cls) = %{tl_version} -Provides: tex(tudalettersize10pt.clo) = %{tl_version} -Provides: tex(tudaposter.cls) = %{tl_version} -Provides: tex(tudapub.cls) = %{tl_version} -Provides: tex(tudarules.sty) = %{tl_version} -Provides: tex(tudasciposter.cls) = %{tl_version} -Provides: tex(tudasize9pt.clo) = %{tl_version} -Provides: tex(tudathesis.cfg) = %{tl_version} - -%description tuda-ci -The TUDa-CI-Bundle provides a possibility to use the Corporate -Design of TU Darmstadt in LaTeX. It contains documentclasses as -well as some helper packages and config files together with -some templates for user documentation, which currently are only -available in German. - -%package ucalgmthesis -Summary: LaTeX thesis class for University of Calgary Faculty of Graduate Studies -Version: svn50705 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(ucalgmthesis.cls) = %{tl_version} - -%description ucalgmthesis -ucalgmthesis.cls is a LaTeX class file that produces documents -according to the thesis guidelines of the University of Calgary -Faculty of Graduate Studies. It uses the memoir class, which -provides very powerful and flexible mechanisms for book design -and layout. All memoir commands for changing chapter and -section headings, page layout, fancy foot- and endnotes, -typesetting poems, etc., can be used. (Memoir is meant as a -replacement for the standard LaTeX classes, so all standard -LaTeX commands such as \chapter, \section, etc., still work.) -Likewise, any of memoir's class options can be passed as -options to ucalgmthesis, in particular 12pt to select 12 point -type (11 point is the default). - -%package unam-thesis -Summary: Create documents according to the UNAM guidelines -Version: svn51207 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea -Provides: tex(unam-thesis.cls) = %{tl_version} - -%description unam-thesis -This is a class for creating dissertation documents according -to the National Autonomous University of Mexico (UNAM) -guidelines. - -%package unicode-alphabets -Summary: Macros for using characters from Unicode's Private Use Area -Version: svn51712 -License: CC-BY-SA -Requires: texlive-base texlive-kpathsea -Provides: tex(unicode-alphabets.agl.csv) = %{tl_version} -Provides: tex(unicode-alphabets.cyfi.csv) = %{tl_version} -Provides: tex(unicode-alphabets.mufi.csv) = %{tl_version} -Provides: tex(unicode-alphabets.sil.csv) = %{tl_version} -Provides: tex(unicode-alphabets.sty) = %{tl_version} -Provides: tex(unicode-alphabets.titus.csv) = %{tl_version} -Provides: tex(unicode-alphabets.ucsur.csv) = %{tl_version} -Provides: tex(unicode-alphabets.unz.csv) = %{tl_version} - -%description unicode-alphabets -While Unicode supports the vast majority of use cases, there -are certain specialized niches which require characters and -glyphs not (yet) represented in the standard. Thus the Private -Use Area (PUA) at code points E000-F8FF, which enables third -parties to define arbitrary character sets. This package allows -configuring a number of macros for using various PUA character -sets in LaTeX (AGL, CYFI, MUFI, SIL, TITUS, UCSUR, UNZ), to -enable transcription and display of medieval and other -documents. - -%package vtable -Summary: Vertical alignement of table cells -Version: svn51126 -License: MIT -Requires: texlive-base texlive-kpathsea -Provides: tex(vtable.sty) = %{tl_version} - -%description vtable -The package allows vertical alignement of table cell by -providing: Z, L, C, R, J and I column types \nextRow and \lb -commands \setMultiColRow, \setMultiColumn, \setMultiRow and -\tableFormatedCell commands for tabular and similar -environment. - -%package widows-and-orphans -Summary: Identify (typographic) widows and orphans -Version: svn49194 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(widows-and-orphans.sty) = %{tl_version} - -%description widows-and-orphans -This package identifies all widows and orphans in a document to -help a user to get rid of them. The act of resolving still -needs to be done manually: By rewriting text, running some -paragraph long or short or or explicitly breaking in some -strategic place. It will also identify and warn about words -broken across columns or pages and display formulas separated -from their introductory paragraph. - -%package windycity -Summary: A Chicago style for BibLaTeX -Version: svn51668 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(american-windycity.lbx) = %{tl_version} -Provides: tex(windycity.bbx) = %{tl_version} -Provides: tex(windycity.cbx) = %{tl_version} -Provides: tex(windycity.dbx) = %{tl_version} -Provides: tex(windycity.sty) = %{tl_version} - -%description windycity -Windy City is a style for BibLaTeX that formats notes, -bibliographies, parenthetical citations, and reference lists -according to the 17th edition of The Chicago Manual of Style. - -%package worksheet -Summary: Easy creation of worksheets -Version: svn48423 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(worksheet.sty) = %{tl_version} - -%description worksheet -This package provides macros and an environment for easy -worksheet creation: Use the exercise environment for formating -exercises in a simple, efficient design; typeset customized and -automatically numbered worksheet titles in the same way as -standard LaTeX titles (using \maketitle); provide course and -author information with a scrlayer-scrpage based automated -header; conforming to different babel languages. (Currently -English, French, and German are supported.) - -%package xbmks -Summary: Create a cross-document bookmark tree -Version: svn48138 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(xbmks-pdfmark.def) = %{tl_version} -Provides: tex(xbmks-pdftex.def) = %{tl_version} -Provides: tex(xbmks-xetex.def) = %{tl_version} -Provides: tex(xbmks.sty) = %{tl_version} - -%description xbmks -The package defines the concept of a document bundle, which is -a collection of documents that are to be built separately, but -have a common bookmark tree. The only options are driver -options, these are dvips (Acrobat Distiller or ps2pdf these can -be used as the PDF creator), pdfLaTeX (and LuaLaTeX, which is -treated the same as pdfLaTeX), and XeLaTeX. The package -auto-detects pdfLaTeX and XeLaTeX, and dvips is the default, so -there is actually no need to pass the driver option. - -%package xcpdftips -Summary: Natbib citations with PDF tooltips -Version: svn50449 -License: GPLv3+ -Requires: texlive-base texlive-kpathsea -Provides: tex(xcpdftips.sty) = %{tl_version} - -%description xcpdftips -This LaTeX package uses pdfcomment and bibentry to surround -natbib citations with PDF tooltips. - -%package zootaxa-bst -Summary: A BibTeX style for the journal Zootaxa -Version: svn50619 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(zootaxa.bst) = %{tl_version} - -%description zootaxa-bst -This package provides a .bst reference style file for the -journal Zootaxa that publishes contributions in zoology and -classification. This is a fork of apa.bst as provided by TeX -Live since this style file resembled the most Zootaxa's own -style. Further modifications were made to the code in order to -generate in-text citations and bibliography sections -appropriately. - -%package dehyph -Summary: German hyphenation patterns for traditional orthography -Version: svn48599 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(dehyphn.tex) = %{tl_version} -Provides: tex(dehypht.tex) = %{tl_version} -Provides: tex(dehyphtex.tex) = %{tl_version} - -%description dehyph -The package provides older hyphenation patterns for the German -language. Please note that by default only pdfLaTeX uses these -patterns (mainly for backwards compatibility). The older -packages ghyphen and gnhyph are now bundled together with -dehyph, and are no longer be updated. Both XeLaTeX and LuaLaTeX -use the current German hyphenation patterns taken from -Hyphenation patterns in UTF-8, and using the Experimental -hyphenation patterns for the German language package it is -possible to make pdfLaTeX use the new German patterns as well. - -%package l3backend -Summary: LaTeX3 backend drivers -Version: svn52343 -License: LPPL -Requires: texlive-base texlive-kpathsea -Provides: tex(l3backend-dvipdfmx.def) = %{tl_version} -Provides: tex(l3backend-dvips.def) = %{tl_version} -Provides: tex(l3backend-dvisvgm.def) = %{tl_version} -Provides: tex(l3backend-pdfmode.def) = %{tl_version} -Provides: tex(l3backend-xdvipdfmx.def) = %{tl_version} - -%description l3backend -This package forms parts of expl3, and contains the code used -to interface with backends (drivers) across the expl3 codebase. -The functions here are defined differently depending on the -engine in use. As such, these are distributed separately from -l3kernel to allow this code to be updated on an independent -schedule. - -%package marcellus -Summary: Marcellus fonts with LaTeX support -Version: svn52367 -License: LPPL and OFL -Requires: texlive-base texlive-kpathsea -Provides: tex(mrcl_5az7w7.enc) = %{tl_version} -Provides: tex(mrcl_rfafok.enc) = %{tl_version} -Provides: tex(mrcl_pp6sje.enc) = %{tl_version} -Provides: tex(mrcl_mqz6jr.enc) = %{tl_version} -Provides: tex(mrcl_dfyae6.enc) = %{tl_version} -Provides: tex(mrcl_tzgqbn.enc) = %{tl_version} -Provides: tex(mrcl_l63c5y.enc) = %{tl_version} -Provides: tex(mrcl_rwr7kk.enc) = %{tl_version} -Provides: tex(mrcl_5ago63.enc) = %{tl_version} -Provides: tex(mrcl_lo2l42.enc) = %{tl_version} -Provides: tex(mrcl_cvodtw.enc) = %{tl_version} -Provides: tex(mrcl_oyecj6.enc) = %{tl_version} -Provides: tex(mrcl_4cvize.enc) = %{tl_version} -Provides: tex(mrcl_hxcgcn.enc) = %{tl_version} -Provides: tex(marcellus.map) = %{tl_version} -Provides: tex(Marcellus-Regular.pfb) = %{tl_version} -Provides: tex(MarcellusSmallCaps.pfb) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-t1.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-ts1--base.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-ly1.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-t1.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-sup-t1.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-ly1--base.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-t1--base.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ts1.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-sup-ly1.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-sup-ly1--base.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ot1--base.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-ts1.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-ot1.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-t1--base.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-sup-t1--base.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-ly1.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-sup-ot1.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ot1.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ts1--base.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-t1--base.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-ot1.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-t1.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ly1--base.tfm) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ly1.tfm) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-ly1.vf) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ot1.vf) = %{tl_version} -Provides: tex(Marcellus-Regular-sup-ly1.vf) = %{tl_version} -Provides: tex(Marcellus-Regular-sup-t1.vf) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-t1.vf) = %{tl_version} -Provides: tex(Marcellus-Regular-lf-ts1.vf) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-t1.vf) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-t1.vf) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ly1.vf) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-ly1.vf) = %{tl_version} -Provides: tex(MarcellusSmallCaps-sup-sc-ot1.vf) = %{tl_version} -Provides: tex(MarcellusSmallCaps-lf-sc-ts1.vf) = %{tl_version} -Provides: tex(Marcellus-Regular.ttf) = %{tl_version} -Provides: tex(MarcellusSmallCaps.ttf) = %{tl_version} -Provides: tex(marcellus.sty) = %{tl_version} -Provides: tex(LY1Marcellus-Sup.fd) = %{tl_version} -Provides: tex(OT1Marcellus-Sup.fd) = %{tl_version} -Provides: tex(LY1Marcellus-LF.fd) = %{tl_version} -Provides: tex(TS1Marcellus-LF.fd) = %{tl_version} -Provides: tex(T1Marcellus-Sup.fd) = %{tl_version} -Provides: tex(T1Marcellus-LF.fd) = %{tl_version} -Provides: tex(OT1Marcellus-LF.fd) = %{tl_version} - -%description marcellus -This package provides LaTeX, pdfLaTeX, XeLaTeX and LuaLaTeX -support for the Marcellus family of fonts, designed by Brian J. -Bonislawsky. Marcellus is a flared-serif family, inspired by -classic Roman inscription letterforms. There is currently just -a regular weight and small-caps. The regular weight will be -silently substituted for bold. - - %prep %setup -q -c -T -a 3 cp %{SOURCE7597} . @@ -198771,19 +171236,973 @@ mkdir -p %{buildroot}%{_texdir}/texmf-config/web2c mkdir -p %{buildroot}%{_texmf_var} mkdir -p %{buildroot}%{_texdir}/texmf-dist mkdir -p %{buildroot}%{_texdir}/texmf-local - -for i in %{sources}; do - # find our special snowflakes - if [ "$i" != "%{_sourcedir}/texlive-licenses.tar.xz" ] && [ "$i" != "%{_sourcedir}/yfonts-t1-license-email.pdf" ]; then - if [ "$i" = "%{_sourcedir}/texlive-msg-translations.tar.xz" ] || [ "$i" = "%{_sourcedir}/xecyr.tar.xz" ] || [ "$i" = "%{_sourcedir}/xecyr.doc.tar.xz" ] || [ "$i" = "%{_sourcedir}/platex.tar.xz" ] || [ "$i" = "%{_sourcedir}/platex.doc.tar.xz" ] || [ "$i" = "%{_sourcedir}/texworks.doc.tar.xz" ] || [ "$i" = "%{_sourcedir}/uplatex.tar.xz" ] || [ "$i" == "%{_sourcedir}/texlive-docindex.tar.xz" ] || [ "$i" == "%{_sourcedir}/texlive-docindex.doc.tar.xz" ]; then - OUTDIR="%{buildroot}%{_texdir}" - else - OUTDIR="%{buildroot}%{_texdir}/texmf-dist" - fi - xz -dc $i | tar x -C $OUTDIR - fi -done - +# pushd %%{buildroot}%%{_texdir}/texmf-local +# ln -s ../../texmf texmf-compat +# popd +xz -dc %{SOURCE100} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE101} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE103} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE104} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE105} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE106} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE109} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE110} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE111} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE112} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE113} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE114} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE116} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE117} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE118} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE119} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE121} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE122} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE123} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE124} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE125} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE126} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE128} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE129} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE130} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE131} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE132} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE133} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE136} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE137} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE139} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE140} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE142} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE143} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE145} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE146} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE148} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE149} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE150} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE151} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE153} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE154} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE155} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE156} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE158} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE159} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE161} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE162} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE163} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE164} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE168} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE169} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE171} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE172} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE174} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE175} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE176} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE178} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE179} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE180} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE181} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE182} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE183} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE184} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE185} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE189} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE190} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE192} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE193} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE194} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE195} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE196} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE197} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE199} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE200} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE201} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE202} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE203} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE204} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE205} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE206} | tar x -C %{buildroot}%{_texdir}/texmf-dist + +# add reference to support old texmf tree +# is this still needed? (spot, 2018-02-23) +# sed -i 's|TEXMFLOCAL = $SELFAUTOPARENT/../texmf-local|TEXMFLOCAL = $SELFAUTOPARENT/../texmf|g' %{buildroot}%{_texdir}/texmf-dist/web2c/texmf.cnf + +xz -dc %{SOURCE219} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE220} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE221} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE222} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE223} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE224} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE225} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE227} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE228} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE229} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE230} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE231} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE232} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE234} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE235} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE237} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE238} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE240} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE241} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE242} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE243} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE245} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE246} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE247} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE248} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE250} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE251} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE252} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE253} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE254} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE255} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE257} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE258} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE260} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE261} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE263} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE264} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE265} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE266} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE267} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE268} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE270} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE271} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE277} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE278} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE279} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE281} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE282} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE283} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE284} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE286} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE287} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE289} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE290} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE291} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE292} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE294} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE295} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE296} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE297} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE298} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE299} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE300} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE301} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE302} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE303} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE304} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE306} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE307} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE309} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE310} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE312} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE313} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE315} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE316} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE318} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE319} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE320} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE321} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE322} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE323} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE324} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE325} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE326} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE328} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE329} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE330} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE332} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE333} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE334} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE335} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE336} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE337} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE339} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE340} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE344} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE345} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE347} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE348} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE350} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE351} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE353} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE354} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE355} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE356} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE357} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE358} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE359} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE360} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE361} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE363} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE364} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE365} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE366} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE368} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE369} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE371} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE372} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE373} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE374} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE375} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE376} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE377} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE378} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE379} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE381} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE382} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE383} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE384} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE385} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE386} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE387} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE388} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE389} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE390} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE391} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE392} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE394} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE395} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE397} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE398} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE400} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE401} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE402} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE403} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE405} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE406} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE407} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE408} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE411} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE412} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE413} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE414} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE415} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE416} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE418} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE419} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE421} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE422} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE424} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE425} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE426} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE428} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE429} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE431} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE432} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE434} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE435} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE437} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE438} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE440} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE441} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE442} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE443} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE445} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE446} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE448} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE449} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE451} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE452} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE454} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE455} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE457} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE458} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE460} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE461} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE463} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE464} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE466} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE467} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE469} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE470} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE472} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE473} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE475} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE476} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE478} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE479} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE481} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE482} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE484} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE485} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE487} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE488} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE489} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE490} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE492} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE493} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE495} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE496} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE498} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE499} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE500} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE501} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE503} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE504} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE506} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE507} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE509} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE510} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE512} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE513} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE515} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE516} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE518} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE519} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE521} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE522} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE524} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE525} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE527} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE528} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE530} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE531} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE533} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE534} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE536} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE537} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE539} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE540} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE542} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE543} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE545} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE546} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE548} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE549} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE551} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE552} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE554} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE555} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE557} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE558} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE560} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE561} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE563} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE564} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE565} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE566} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE568} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE569} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE571} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE572} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE574} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE575} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE577} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE578} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE580} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE581} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE583} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE585} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE586} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE588} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE589} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE591} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE592} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE594} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE595} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE596} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE597} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE599} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE600} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE601} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE602} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE603} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE604} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE606} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE607} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE608} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE609} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE610} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE611} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE612} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE613} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE614} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE615} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE617} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE618} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE620} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE621} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE622} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE623} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE625} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE626} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE628} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE629} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE630} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE631} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE633} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE634} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE636} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE637} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE638} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE639} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE641} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE642} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE643} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE644} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE645} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE646} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE647} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE648} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE649} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE650} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE651} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE652} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE653} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE654} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE655} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE656} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE657} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE659} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE660} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE661} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE662} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE663} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE664} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE665} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE666} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE667} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE668} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE669} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE671} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE672} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE674} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE675} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE677} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE678} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE679} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE680} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE682} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE683} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE684} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE685} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE687} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE688} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE690} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE691} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE692} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE693} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE694} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE695} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE696} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE697} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE698} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE699} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE701} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE702} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE704} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE705} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE707} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE708} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE709} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE710} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE711} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE712} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE714} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE715} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE717} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE718} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE720} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE721} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE726} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE727} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE728} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE729} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE730} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE731} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE732} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE733} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE734} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE735} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE736} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE737} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE738} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE739} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE740} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE741} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE742} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE743} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE744} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE745} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE746} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE747} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE748} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE749} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE750} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE751} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE752} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE753} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE755} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE758} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE759} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE760} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE761} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE762} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE763} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE764} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE765} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE766} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE767} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE768} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE769} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE770} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE771} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE772} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE773} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE775} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE776} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE777} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE778} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE779} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE780} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE781} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE782} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE783} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE784} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE785} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE786} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE787} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE789} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE790} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE791} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE792} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE793} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE794} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE795} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE796} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE798} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE799} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE800} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE801} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE803} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE804} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE806} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE807} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE808} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE809} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE811} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE812} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE819} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE820} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE822} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE823} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE825} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE826} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE828} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE829} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE830} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE831} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE832} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE833} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE834} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE835} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE836} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE837} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE838} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE839} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE840} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE841} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE843} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE844} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE846} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE847} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE848} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE849} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE851} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE852} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE853} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE854} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE856} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE857} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE859} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE860} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE862} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE863} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE865} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE866} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE867} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE868} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE870} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE871} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE872} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE873} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE874} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE875} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %%{SOURCE876} | tar x -C %%{buildroot}%%{_texdir}/texmf-dist +# xz -dc %%{SOURCE877} | tar x -C %%{buildroot}%%{_texdir}/texmf-dist +xz -dc %{SOURCE879} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE880} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE882} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE883} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE885} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE886} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE887} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE888} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE889} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE890} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE891} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE892} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE894} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE895} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE896} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE897} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE898} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE899} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE901} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE902} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE903} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE904} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE906} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE907} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE908} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE909} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE910} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE911} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE913} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE914} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE916} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE917} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE918} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE919} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE920} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE922} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE923} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE925} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE926} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE927} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE928} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE930} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE931} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE932} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE933} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE935} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE936} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE938} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE939} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE940} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE941} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE943} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE944} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE946} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE947} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE948} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE949} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE950} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE951} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE953} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE954} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE955} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE956} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE957} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE958} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE960} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE961} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE963} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE964} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE966} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE967} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE968} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE969} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE971} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE972} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE973} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE974} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE978} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE979} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE981} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE982} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE983} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE984} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE985} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE986} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE987} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE988} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE989} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE990} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE991} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE992} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE994} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE995} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE996} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE997} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE999} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1000} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1002} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1003} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1006} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1007} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1008} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1009} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1011} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1012} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1013} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1014} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1016} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1017} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1019} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1020} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1021} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1022} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1023} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1024} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1025} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1026} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1028} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1029} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1030} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1031} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1032} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1033} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1035} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1036} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1038} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1039} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1041} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1042} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1043} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1044} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1046} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1047} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1049} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1050} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1052} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1053} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1054} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1055} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1056} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1057} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1058} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1059} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1060} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1061} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1062} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1063} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1065} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1066} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1068} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1069} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1071} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1072} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1073} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1074} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1075} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1076} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1078} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1079} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1080} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1081} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1083} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1084} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1086} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1087} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1089} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1090} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1092} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1093} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1094} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1095} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1097} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1098} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1100} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1101} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1103} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1104} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1105} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1106} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1107} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1108} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1110} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1111} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1112} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1113} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1114} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1115} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1117} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1118} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1120} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1121} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1122} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1123} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1125} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1126} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1128} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1129} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1131} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1132} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1134} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1135} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1136} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1137} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1143} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1144} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1146} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1147} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1149} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1150} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1152} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1153} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1154} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1155} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1156} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1157} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1158} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1159} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1160} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1161} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1162} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1163} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1164} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1165} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1166} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1167} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1168} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1170} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1171} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1173} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1174} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1175} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1176} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1178} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1179} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1181} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1182} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1184} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1185} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1186} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1187} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1188} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1189} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1191} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1192} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1193} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1194} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1195} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1197} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1198} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1201} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1202} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1204} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1205} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1206} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1207} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1208} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1209} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1210} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1211} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1213} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1214} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1215} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1216} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1218} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1219} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1220} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1221} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1222} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1223} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1224} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1225} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1228} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1229} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1230} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1231} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1233} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1234} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1236} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1237} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1238} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1240} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1241} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1243} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1245} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1246} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1247} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1248} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1251} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1252} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1253} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1254} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1255} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1256} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1258} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1259} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1260} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1261} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1262} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1263} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1265} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1266} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1268} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1269} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1270} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1271} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1272} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1273} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1275} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1276} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1277} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1278} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1279} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1280} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1281} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1282} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1283} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1284} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1286} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1287} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1288} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1289} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1290} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1291} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1292} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1293} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1294} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1296} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1297} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1298} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1299} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1300} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1301} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1302} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1303} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1304} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1305} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1306} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1307} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1308} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1309} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1310} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1311} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1312} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1313} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1314} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1315} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1316} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1317} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1318} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1319} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1320} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1321} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1323} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1324} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1326} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1327} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1329} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1330} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1332} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1333} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7023} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1343} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1344} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1345} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1346} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1347} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1348} | tar x -C %{buildroot}%{_texdir}/texmf-dist # patch etex pushd %{buildroot}%{_texdir}/texmf-dist/tex/plain/etex/ @@ -198791,17 +172210,4903 @@ patch -p0 < %{_sourcedir}/etex-addlanguage-fix-bz1215257.patch # %%patch101 -p0 popd +xz -dc %{SOURCE1351} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1352} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1354} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1355} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1356} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1358} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1359} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1361} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1362} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1363} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1364} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1369} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1370} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1378} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1381} | tar x -C %{buildroot}%{_texdir} +xz -dc %{SOURCE7035} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7036} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1386} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1387} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1389} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1390} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1391} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1392} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1394} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1395} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1397} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1398} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1400} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1401} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1405} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1406} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1407} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1411} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1412} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1417} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1419} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1420} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1422} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1423} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1425} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1426} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1428} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1429} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1430} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1431} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1433} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1436} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1437} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1439} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1440} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1441} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1442} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1444} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1445} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1447} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1448} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1449} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1450} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1451} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1452} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1453} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1455} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1456} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1457} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1458} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1460} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1461} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1463} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1464} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1465} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1466} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1467} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1468} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1469} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1470} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1471} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1472} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1473} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1474} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1475} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1476} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1478} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1482} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1483} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1484} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1485} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1487} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1488} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1493} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1494} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1495} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1496} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1497} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1499} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1500} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1502} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1503} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1504} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1505} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1506} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1507} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1508} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1510} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1511} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1512} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1513} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1514} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1515} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1517} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1518} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1519} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1520} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1521} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1522} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1526} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1527} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1529} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1530} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1531} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1532} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7043} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1534} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1570} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1571} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7101} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1664} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1665} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1666} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1668} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1669} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1670} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1671} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1672} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1673} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1674} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1676} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1677} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1678} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1679} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1680} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1681} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1682} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1683} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1684} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1685} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1686} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1687} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1688} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1689} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1690} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1691} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1692} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1693} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1694} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1695} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1696} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1697} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE1698} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1699} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1700} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1701} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1702} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE1703} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE1704} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1705} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1706} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1707} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1708} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1709} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1710} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1711} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1712} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1713} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1714} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1715} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1716} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE1717} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE1718} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1719} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1720} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1721} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1722} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1723} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1724} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1725} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1726} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1727} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1728} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1729} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1730} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1731} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1732} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1733} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1734} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1735} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1736} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1737} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1738} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1739} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1740} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1741} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1742} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7105} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1744} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1745} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1747} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1748} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1749} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1750} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1751} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1752} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1755} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1758} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1759} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1760} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1761} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1762} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1763} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1764} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1765} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1766} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1767} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1768} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1769} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1770} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1771} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1772} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1774} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1775} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1776} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1777} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1779} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1780} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1782} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1783} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1785} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1786} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1787} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1789} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1790} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1791} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1792} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1793} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1794} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1795} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1796} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1797} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1798} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1799} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1800} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1802} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1803} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1804} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1805} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1807} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1808} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1810} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1811} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1812} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1813} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1814} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1815} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1817} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1818} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1819} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1820} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1822} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1823} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1824} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1825} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1827} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1828} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1830} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1831} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1832} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1833} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1834} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1836} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1837} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1839} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1840} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1842} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1843} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1845} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1846} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1847} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1848} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1849} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1850} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1851} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1852} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1853} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1854} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1855} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1856} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1857} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1858} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1860} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1861} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1862} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1863} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1864} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1865} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1866} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1867} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1869} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1870} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1871} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1872} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1873} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1874} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1875} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1876} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1877} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1878} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1879} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1880} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1881} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1882} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1883} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1884} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1885} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1886} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1888} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1889} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1891} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1892} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1893} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1894} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1895} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1896} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1897} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1898} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1899} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1900} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1901} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1902} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1903} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1905} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1906} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1907} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1908} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1909} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1910} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1911} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1912} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1913} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1914} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1915} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1916} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1917} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1918} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1919} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1920} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1921} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1922} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE1923} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1924} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1925} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1926} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1927} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1928} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1929} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1931} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1932} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1933} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1934} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1935} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1936} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1937} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1938} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1939} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1940} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1942} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1943} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1945} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1946} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1947} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1948} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1950} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1951} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1952} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1953} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1954} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1955} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1956} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1957} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1958} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1959} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1960} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1961} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1963} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1964} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1965} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1966} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1967} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1968} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1970} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1971} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1972} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1973} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1974} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1975} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1976} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1977} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1978} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1979} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1981} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1982} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1983} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1984} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1985} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1986} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1987} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1988} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1990} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1991} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1992} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1993} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1995} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1996} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1997} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE1998} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2000} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2001} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2003} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2004} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2005} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2006} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2007} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2008} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2010} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2011} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2012} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2013} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2015} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2016} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2017} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2018} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2019} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2020} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2021} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2022} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2023} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2024} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2025} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2026} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2027} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2028} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2029} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2030} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2031} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2032} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2033} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2034} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2035} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2036} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2037} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2038} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2039} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2040} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2041} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2042} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2044} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2045} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2046} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2047} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2048} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2049} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2050} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2051} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2052} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2054} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2055} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2056} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2057} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2058} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2060} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2061} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2062} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2063} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2064} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2065} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2066} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2067} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2068} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2069} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2071} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2072} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2074} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2075} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2076} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2077} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2078} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2079} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2081} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2082} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2084} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2085} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2087} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2088} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2090} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2091} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2093} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2094} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2095} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2096} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2097} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2099} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2100} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2101} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2102} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2103} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2104} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2106} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2107} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2108} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2109} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2110} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2111} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2113} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2114} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2118} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2119} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7106} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2120} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2121} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2122} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2123} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2124} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2126} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2127} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2128} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2129} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2131} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2132} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2133} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2135} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2136} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2138} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2139} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2140} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2141} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2142} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2143} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2144} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2145} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2146} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2147} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2148} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2149} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2150} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2151} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2152} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2153} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2154} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2155} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2156} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2157} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2158} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2159} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2160} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2161} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2163} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2164} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7107} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2178} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7118} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2188} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2189} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2198} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2199} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2201} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2202} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7123} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2206} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2207} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2209} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2210} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2212} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2213} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2214} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2215} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2217} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2218} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2220} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2221} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2222} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2224} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2225} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2226} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2227} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2229} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2230} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2231} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2232} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2233} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2234} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2235} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2236} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2237} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2238} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2239} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2240} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2241} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2245} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2246} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2248} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2249} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2250} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2251} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2252} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2253} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2255} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2256} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2258} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2259} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2260} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2261} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7125} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2263} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2264} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2265} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2266} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2267} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2268} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2269} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2271} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2272} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2273} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2274} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2276} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2277} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2278} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2279} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2280} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2281} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2282} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2283} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2285} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2286} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2287} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2288} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2289} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2290} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2292} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2293} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2294} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2295} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2296} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2297} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2298} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2299} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2301} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2302} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2303} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2304} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2305} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2306} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2308} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2309} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2310} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2311} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2312} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2313} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2314} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2315} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2316} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2317} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2318} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2319} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2321} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2322} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2324} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2325} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2326} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2327} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2328} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2329} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2330} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2332} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2333} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2335} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2336} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2337} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2338} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2339} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2340} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2342} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2343} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7126} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2344} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2345} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2346} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2347} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2348} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2349} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2350} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2352} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2353} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2355} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2356} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2357} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2358} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2359} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2360} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7127} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2364} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2369} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7131} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2370} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2371} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2374} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2375} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2377} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2378} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2380} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2381} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2382} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2383} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2385} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2386} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2387} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2388} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2390} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2391} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2393} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2394} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2396} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2397} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2398} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2399} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2400} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2401} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2402} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2403} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2405} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2406} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2408} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2409} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2410} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2411} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2413} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2414} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2416} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2417} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2419} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2420} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2421} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2422} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2423} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2424} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2425} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2426} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2428} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2429} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2431} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2432} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2434} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2435} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2437} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2438} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2439} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2440} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2442} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2443} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2445} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2446} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2448} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2449} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2451} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2452} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2453} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2454} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2455} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2456} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2458} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2459} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2461} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2462} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2463} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2464} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2466} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2467} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2468} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2469} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2470} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2471} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2472} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2473} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2475} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2476} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2478} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2479} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2480} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2481} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2483} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2484} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7133} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2485} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2486} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2488} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2489} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2490} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2491} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2492} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7134} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2493} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2494} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2495} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2496} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2497} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2498} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2499} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2500} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2501} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2502} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2503} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2504} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2505} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2506} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2507} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7135} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7136} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2508} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2509} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2510} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2512} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2513} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2514} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2515} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2517} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2518} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2519} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2520} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2521} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2522} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2523} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2524} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2525} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2526} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2528} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2529} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2531} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2532} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2534} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2535} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7137} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2541} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2542} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2543} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2545} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2546} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2548} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2549} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2550} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2551} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2553} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2554} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2555} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2556} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2558} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2559} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2560} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2561} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2562} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2563} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2565} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2566} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2568} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2570} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2571} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2572} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2573} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2574} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2575} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2577} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2578} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2579} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2580} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2581} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2582} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2583} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2584} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2585} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2586} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2587} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2588} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2589} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2590} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2591} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2592} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7139} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2593} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2594} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2595} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2599} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2600} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2601} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2604} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2605} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2606} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7143} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2607} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2608} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2609} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2610} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2611} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2612} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2613} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2614} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2615} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2616} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2617} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2618} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2619} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2620} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2621} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2623} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2624} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2625} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2626} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2627} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2628} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2629} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2630} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2631} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2632} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2633} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2634} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2635} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2636} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2638} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2639} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2640} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2641} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2642} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2643} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2644} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2646} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2647} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2648} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2649} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE2650} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2651} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2652} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2653} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2654} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2655} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2656} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2657} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2658} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2659} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2660} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2661} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2662} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE2663} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2664} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2665} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7144} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2666} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2667} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2668} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2670} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2671} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2672} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2673} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2674} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2675} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2676} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2677} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2678} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2679} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2680} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2681} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2682} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2683} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2684} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2685} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2686} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2687} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2688} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2689} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2690} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2691} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2692} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2693} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2694} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2695} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2696} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2697} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2698} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2699} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2700} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2701} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2703} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2704} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2705} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2706} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7145} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2708} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2709} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2710} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2711} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2712} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2713} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2714} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2716} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2717} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2718} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2719} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2720} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2721} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2722} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2724} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2725} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2726} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2727} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2728} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2729} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2731} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2732} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2734} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2735} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2736} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2737} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2738} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2739} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2740} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7146} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2741} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2742} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2743} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2744} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2745} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2747} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2748} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2749} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2750} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2752} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2753} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2758} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2759} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2760} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2761} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2763} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2764} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2765} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2766} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2767} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2768} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2769} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2770} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2771} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2772} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2773} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2774} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE2775} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2776} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2777} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2778} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2779} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2780} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2781} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2782} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2783} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2784} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2785} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2786} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2787} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2789} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2790} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2791} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2793} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2794} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2796} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7147} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2797} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2798} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2799} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2800} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2801} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2802} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2803} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2804} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2805} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2806} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2808} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2809} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2810} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2811} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2812} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2813} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2814} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2816} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2817} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2818} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2819} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2820} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2821} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2822} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2823} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2826} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2827} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2829} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2830} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2832} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2833} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7149} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2837} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2838} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2839} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2840} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2842} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2843} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2846} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2847} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2848} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2849} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2850} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2851} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7152} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2853} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2854} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2855} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2857} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2858} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2860} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2861} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2862} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2864} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2865} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2866} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2867} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2869} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2870} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2871} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7153} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2874} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2875} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE2876} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE2877} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2879} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2880} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2882} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2883} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2888} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2889} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2891} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2892} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2893} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2900} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2901} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2902} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2903} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2904} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2905} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2906} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2907} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2908} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2909} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2914} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2915} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2916} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2917} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7159} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2918} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2919} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2920} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2921} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2923} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2924} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2925} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2926} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2929} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2930} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2931} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7161} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2932} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2933} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2935} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2936} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2937} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2938} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2939} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2940} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2941} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2942} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2943} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2944} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2945} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2946} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2947} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7162} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2949} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2950} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2951} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2952} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2953} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2957} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2958} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2959} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2960} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2962} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2963} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2965} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2966} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2967} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2968} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2969} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2970} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2971} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2972} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2973} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2974} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7164} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2975} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2976} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2977} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2978} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2979} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2980} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2981} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2982} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2984} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7165} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2985} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2986} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2987} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2988} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2989} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2990} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2991} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2992} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2993} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2994} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2995} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7166} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7167} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2996} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2997} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE2999} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3000} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3002} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3003} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3005} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3006} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3008} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3009} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3011} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3012} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3013} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3014} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3015} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3016} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3018} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3019} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3021} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3022} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3024} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3025} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3027} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3028} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3030} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3031} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3033} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3034} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3035} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3036} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3038} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3039} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3040} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3041} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3042} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3044} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3045} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3047} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3048} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3050} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3051} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3053} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3054} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3056} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3057} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3059} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3060} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3062} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3063} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3065} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3066} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3068} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3069} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3070} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3071} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3073} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3074} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3076} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3077} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3079} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3080} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE3082} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE3083} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3085} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3086} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3087} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3088} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3089} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3090} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3091} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3092} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3093} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3094} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3095} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3096} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3098} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3099} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3103} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3104} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3106} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3107} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7169} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3108} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3109} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3111} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3112} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3114} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3115} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3117} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3118} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3120} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3121} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3122} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3123} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3124} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3125} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3126} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3128} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3129} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3130} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3131} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3132} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3133} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3134} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3135} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3136} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3137} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3140} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3141} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3142} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3143} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3145} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3146} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3149} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3150} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3152} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3153} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3155} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3156} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3158} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3159} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3162} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3163} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3165} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3166} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3168} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3169} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3171} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3172} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3173} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3174} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3176} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3177} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3178} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3179} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3180} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3181} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3183} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3184} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3186} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3187} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3188} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3189} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3190} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3191} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3192} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3193} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3194} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3195} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3197} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3198} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3199} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3200} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3204} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3205} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3208} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3209} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3210} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3211} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3212} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3213} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3214} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3215} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3218} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3219} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3221} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3222} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3223} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3224} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3225} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3226} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3227} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3228} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3230} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3231} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3232} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3233} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3235} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3236} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3238} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3239} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3241} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3242} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3243} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3244} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3246} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3247} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3248} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3249} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3250} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3251} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3252} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3253} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3254} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3255} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3256} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3258} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3259} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3260} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3261} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3262} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3263} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3265} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3266} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3268} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3269} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3271} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3272} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3273} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3274} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3276} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3277} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3278} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3279} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3280} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3281} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3282} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3283} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3285} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3286} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3288} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3289} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3290} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3291} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3292} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3293} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3294} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3295} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3296} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3297} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3298} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3299} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3300} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3301} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3302} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3303} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3304} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3305} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3306} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3307} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3308} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3309} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3310} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3311} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3312} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3313} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3314} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3316} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3317} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3319} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3320} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3322} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3323} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3325} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3326} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3327} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3328} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3330} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3331} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3333} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3334} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3336} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3337} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3339} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3340} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3342} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3343} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3344} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3345} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3347} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3348} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3349} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3350} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3351} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3352} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3353} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3354} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3355} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3356} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3357} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3358} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3359} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3360} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3361} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3362} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3363} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3364} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3365} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3366} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3367} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3368} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3369} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3370} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3371} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3372} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3373} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3375} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3376} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3378} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3379} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3381} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3382} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3383} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3384} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3386} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3387} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3389} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3390} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3391} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3392} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3394} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3395} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3397} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3398} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3400} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3401} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3403} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3404} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3406} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3407} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3408} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3409} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3410} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3411} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3412} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3413} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3415} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3416} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3418} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3419} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3420} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3421} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3422} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3423} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3425} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3426} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3427} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3428} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3430} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3431} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3432} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3433} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3434} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3435} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3436} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3437} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3439} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3440} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3442} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3443} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3445} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3446} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3448} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3449} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3451} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3452} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3454} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3455} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3457} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3458} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3460} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3461} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3463} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3464} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3466} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3467} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3469} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3470} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3471} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3472} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3473} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3474} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3476} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3477} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3478} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3479} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3480} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3481} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3483} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3484} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3486} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3487} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3488} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3489} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3491} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3492} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3493} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3494} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3495} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3496} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3498} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3499} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3501} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3502} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3504} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3505} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3507} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3508} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3509} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3510} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3511} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3512} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3513} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3514} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3516} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3517} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3519} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3520} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3522} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3523} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3525} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3526} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3527} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3528} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3530} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3531} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3533} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3534} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3536} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3537} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3539} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3540} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3542} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3543} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3545} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3546} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3548} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3549} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3551} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3552} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3554} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3555} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3557} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3558} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3560} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3561} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3563} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3564} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3566} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3567} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3569} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3570} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3572} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3573} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3575} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3576} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3578} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3579} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3581} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3582} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3584} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3585} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3587} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3588} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3590} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3591} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3593} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3594} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3596} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3597} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3599} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3600} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3602} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3603} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3605} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3606} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3608} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3609} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3611} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3612} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3614} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3615} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3617} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3618} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3620} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3621} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3623} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3624} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3626} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3627} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3629} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3630} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3632} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3633} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3635} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3636} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3638} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3639} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3641} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3642} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3644} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3645} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3647} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3648} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3650} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3651} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3653} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3654} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3656} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3657} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3659} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3660} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3662} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3663} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3665} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3666} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3668} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3669} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3671} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3672} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3673} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3674} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3676} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3677} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3679} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3680} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3682} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3683} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3685} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3686} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3690} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3691} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3693} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3694} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3695} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3696} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3698} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3699} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3700} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3701} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3703} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3704} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3705} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3706} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3708} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3709} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3710} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3711} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3713} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3714} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3716} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3717} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3719} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3720} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3722} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3723} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3725} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3726} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3728} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3729} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3730} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3731} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3733} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3734} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3736} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3737} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3739} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3740} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3742} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3743} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3744} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3745} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3747} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3748} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3750} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3751} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3753} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3758} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3760} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3761} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3762} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3763} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3764} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3765} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3766} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3767} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3768} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3769} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3770} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3771} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3773} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3774} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3775} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3776} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3778} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3779} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3781} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3782} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3784} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3785} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3787} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3790} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3791} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3793} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3794} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3796} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3797} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3799} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3800} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3802} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3803} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3804} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3805} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3807} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3808} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3810} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3811} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3813} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3814} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3815} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3816} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3818} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3819} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3821} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3822} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3824} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3825} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3826} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3827} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3829} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3830} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3831} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3832} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3834} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3835} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3837} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3838} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3839} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3840} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3842} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3843} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3845} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3846} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3847} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3848} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3849} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3850} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3852} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3853} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3854} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3855} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3857} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3858} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3860} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3861} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3863} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3864} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3868} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3869} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3870} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3871} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3873} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3874} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3875} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3877} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3878} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3880} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3881} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3882} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3883} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3885} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3886} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3888} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3889} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3890} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3891} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3893} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3894} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3896} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3897} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3899} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3900} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3901} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3902} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3904} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3905} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3906} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3907} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3908} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3909} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3911} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3912} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3914} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3915} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3916} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3917} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3919} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3920} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3922} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3923} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3924} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3927} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3928} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3929} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3930} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3932} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3933} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3935} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3936} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3938} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3939} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3941} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3942} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3943} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3944} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3946} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3947} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3949} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3950} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3952} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3953} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3955} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3956} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3958} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3959} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3961} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3962} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3964} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3965} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3966} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3967} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3969} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3970} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3972} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3973} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3975} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3976} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3978} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3979} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3980} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3981} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3983} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3984} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3986} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3987} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3989} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3990} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3992} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3993} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3994} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3995} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3997} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE3998} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4000} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4001} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4003} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4004} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4005} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4006} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4008} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4009} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4011} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4012} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4013} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4014} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4016} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4017} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4018} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4019} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4021} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4022} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4024} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4025} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4026} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4027} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4028} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4029} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4031} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4032} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4034} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4035} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4037} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4038} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4040} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4041} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4043} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4044} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4046} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4047} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4048} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4049} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4051} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4052} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4053} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4054} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4055} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4056} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4057} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4058} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4059} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4060} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4062} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4063} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4065} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4066} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4068} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4069} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4071} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4072} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4074} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4075} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4076} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4077} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4079} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4080} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4082} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4083} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4085} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4086} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4088} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4089} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4091} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4092} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4093} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4094} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4096} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4097} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4098} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4099} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4100} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4101} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4102} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4103} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4105} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4106} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4107} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4108} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4109} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4110} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4112} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4113} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4115} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4116} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4118} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4119} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4120} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4121} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4123} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4124} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4125} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4127} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4128} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4129} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4130} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4132} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4133} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4134} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4135} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4136} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4137} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4139} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4140} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4142} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4143} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4145} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4146} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4147} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4148} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4150} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4151} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4152} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4153} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4154} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4155} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4159} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4160} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4162} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4163} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4165} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4166} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4168} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4169} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4171} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4172} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4174} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4175} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4177} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4178} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4180} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4181} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4183} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4184} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4186} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4187} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4189} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4190} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4192} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4193} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4195} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4196} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4197} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4198} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4200} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4201} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4202} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4203} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4204} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4205} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4206} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4207} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4209} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4210} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4212} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4213} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4215} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4216} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4217} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4218} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4220} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4221} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4222} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4223} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4225} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4226} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4228} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4229} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4231} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4232} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4233} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4234} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4235} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4236} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4238} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4239} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4241} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4242} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4243} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4244} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4245} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4246} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4248} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4249} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4250} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4251} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4253} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4254} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4256} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4257} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4258} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4259} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4260} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4261} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4263} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4264} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4266} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4267} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4268} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4269} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4270} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4271} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4273} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4274} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4275} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4276} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4277} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4279} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4280} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4282} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4283} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4284} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4285} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4287} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4288} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4289} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4290} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4292} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4293} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4295} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4296} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4298} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4299} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4300} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4301} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4303} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4304} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4305} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4306} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4308} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4309} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4310} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4311} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4312} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4313} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4315} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4316} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4318} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4319} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4321} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4322} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4323} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4324} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4326} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4327} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4329} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4330} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4331} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4332} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4334} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4335} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4337} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4338} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4340} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4341} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4343} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4344} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4345} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4346} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4348} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4349} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4351} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4352} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4354} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4355} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4356} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4357} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4358} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4359} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4360} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4361} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4362} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4363} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4365} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4366} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4368} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4369} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4371} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4372} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4374} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4375} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4376} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4377} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4378} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4379} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4380} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4381} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4382} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4383} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4384} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4385} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4386} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4387} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4389} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4390} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4395} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4396} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4401} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4402} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4404} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4405} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4407} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4408} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4410} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4411} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4413} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4414} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4416} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4417} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4418} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4419} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4421} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4422} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4424} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4425} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4427} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4428} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4430} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4431} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4433} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4434} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4436} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4437} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4438} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4439} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4441} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4442} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4443} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4444} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4446} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4447} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4449} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4451} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4452} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4454} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4455} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4457} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4458} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4459} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4460} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4461} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4462} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4464} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4465} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4467} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4468} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4470} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4471} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4472} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4473} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4475} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4476} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4478} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4479} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4481} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4482} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4484} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4485} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4486} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4487} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4489} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4490} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4492} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4493} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4495} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4496} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4497} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4498} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4499} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4500} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4502} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4503} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4504} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4505} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4506} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4507} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4508} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4509} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4510} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4511} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4513} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4514} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4515} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4516} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4518} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4519} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4520} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4521} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4523} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4524} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4525} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4526} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4528} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4529} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4531} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4532} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4533} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4534} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4536} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4537} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4539} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4540} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4541} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4542} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4547} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4548} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4549} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4550} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4552} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4554} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4555} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4557} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4558} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4560} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4561} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4563} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4564} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4565} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4566} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4568} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4569} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4571} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4572} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4573} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4574} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4575} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4576} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4578} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4579} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4580} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4581} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4583} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4584} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4585} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4586} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4588} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4589} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4591} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4592} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4593} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4594} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4596} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4597} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4598} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4599} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4601} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4602} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4604} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4605} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4607} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4608} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4610} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4611} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4613} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4614} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4616} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4617} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4619} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4620} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4621} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4622} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4624} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4625} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4627} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4628} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4630} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4631} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4632} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4633} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4634} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4635} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4637} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4638} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4640} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4641} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4642} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4643} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4645} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4646} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4647} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4648} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4650} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4651} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4652} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4653} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4655} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4656} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4658} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4659} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4661} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4662} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4664} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4665} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4666} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4667} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4669} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4670} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4672} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4673} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4675} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4676} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4678} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4679} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE4681} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE4682} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4683} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4684} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4686} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4687} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4688} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4689} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4691} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4692} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4693} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4694} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4696} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4697} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4698} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4699} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4701} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4702} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4704} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4705} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4707} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4708} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4710} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4711} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4713} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4714} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4715} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4716} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4718} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4719} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4721} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4722} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4723} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4724} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4726} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4727} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4729} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4730} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4732} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4733} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4735} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4736} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4738} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4739} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4740} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4741} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4743} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4744} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4745} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4746} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4747} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4748} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4750} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4751} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4753} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4759} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4760} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4762} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4763} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4765} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4766} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4767} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4768} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4769} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4771} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4772} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4774} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4775} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4777} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4778} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4779} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4780} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4781} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4782} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4783} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4784} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4786} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4787} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4789} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4791} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4792} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4794} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4795} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4797} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4798} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4800} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4801} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4802} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4803} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4805} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4806} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4807} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4808} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4810} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4811} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4812} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4813} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4815} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4816} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4817} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4818} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4819} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4820} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4822} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4823} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4824} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4825} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4827} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4828} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4829} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4830} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4831} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4832} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4834} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4835} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4837} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4838} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4840} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4841} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4843} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4844} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4845} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4846} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4847} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4848} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4849} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4850} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4851} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4852} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4853} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4854} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4856} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4857} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4859} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4860} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4862} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4863} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4864} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4865} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4867} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4868} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4870} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4871} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4873} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4874} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4876} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4877} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4879} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4880} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4882} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4883} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4885} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4886} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4887} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4888} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4890} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4891} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4892} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4893} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4894} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4895} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4896} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4897} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4899} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4900} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4902} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4903} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4908} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4909} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4911} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4912} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4914} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4915} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4917} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4918} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4919} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4920} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4922} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4923} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4924} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4925} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4926} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4927} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4928} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4929} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4930} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4931} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4932} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4933} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4934} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4935} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4937} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4938} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4942} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4943} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4945} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4946} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4947} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4948} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4949} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4950} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4952} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4953} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4954} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4955} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4956} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4957} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4958} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4959} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4960} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4961} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4963} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4964} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4966} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4967} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4969} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4970} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4972} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4973} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4974} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4975} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4976} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4977} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4979} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4980} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4982} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4983} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4985} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4986} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4988} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4989} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4990} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4991} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4993} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4994} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4995} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4996} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4997} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4998} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE4999} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5000} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5002} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5003} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5004} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5005} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5006} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5007} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5008} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5009} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5011} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5012} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5017} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5018} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5020} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5021} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5023} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5024} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5025} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5026} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5028} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5029} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5031} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5032} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5034} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5035} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5037} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5038} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5040} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5041} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5043} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5044} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5046} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5047} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5048} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5049} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5051} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5052} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5054} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5055} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5057} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5058} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5059} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5060} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5062} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5063} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5064} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5065} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5066} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5067} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5069} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5070} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5071} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5072} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5073} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5074} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5075} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5076} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5078} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5079} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5081} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5082} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5084} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5085} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5087} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5088} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5090} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5091} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5093} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5094} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5096} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5097} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5099} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5100} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5101} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5102} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5103} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5104} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5106} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5107} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5109} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5110} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5111} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5112} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5113} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5114} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5116} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5117} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5118} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5119} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5121} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5122} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5124} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5125} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5126} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5127} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5129} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5130} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5132} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5133} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5134} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5135} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5136} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5137} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5138} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5139} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5141} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5142} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5144} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5145} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5146} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5147} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5149} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5150} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5151} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5153} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5154} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5156} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5157} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5159} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5160} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5161} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5162} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5163} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5164} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5165} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5166} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5167} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5168} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5169} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5170} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5172} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5173} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5175} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5176} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5177} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5178} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5180} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5181} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5183} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5184} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5186} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5187} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5188} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5189} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5191} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5192} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5194} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5195} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5197} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5198} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5199} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5200} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5201} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5202} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5203} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5204} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5205} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5206} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5207} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5209} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5210} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5211} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5212} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5214} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5215} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5217} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5218} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5220} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5221} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5222} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5223} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5225} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5226} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5228} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5229} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5231} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5232} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5234} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5235} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5237} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5238} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5240} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5241} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5243} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5244} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5246} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5247} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5249} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5250} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5252} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5253} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5255} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5256} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5257} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5258} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5259} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5260} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5262} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5263} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5265} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5266} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5267} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5268} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5269} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5270} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5272} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5273} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5274} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5275} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5277} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5278} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5279} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5280} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5284} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5285} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5287} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5288} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5289} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5290} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5291} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5292} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5294} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5295} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5296} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5297} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5299} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5300} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5302} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5303} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5304} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5306} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5307} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5308} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5309} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5311} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5312} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5314} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5315} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5317} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5318} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5320} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5321} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5323} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5324} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5326} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5327} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5328} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5329} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5331} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5332} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5334} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5335} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5336} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5337} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5339} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5340} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5342} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5343} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5345} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5346} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5347} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5348} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5350} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5351} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5353} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5354} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5356} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5357} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5358} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5359} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5360} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5361} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5363} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5364} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5366} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5367} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5368} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5369} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5374} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5375} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5377} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5378} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5379} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5380} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5382} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5383} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5385} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5386} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5388} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5389} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5390} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5391} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5393} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5394} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5396} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5397} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5399} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5400} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5402} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5403} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5404} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5405} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5406} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5407} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5408} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5409} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5411} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5412} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5414} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5415} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5416} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5417} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5419} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5420} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5422} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5423} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5424} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5425} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5426} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5427} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5429} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5430} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5431} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5432} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5433} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5434} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5436} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5437} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5438} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5439} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5440} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5441} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5442} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5443} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5445} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5446} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5448} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5449} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5451} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5452} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5454} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5455} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5457} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5458} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5460} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5461} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5462} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5464} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5465} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5467} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5468} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5470} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5471} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5473} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5474} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5476} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5477} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5479} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5480} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5482} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5483} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5485} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5486} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5487} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5488} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5489} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5490} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5492} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5493} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5495} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5496} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5497} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5498} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5499} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5500} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5502} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5503} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5505} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5506} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5507} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5508} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5509} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5510} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5511} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5512} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5513} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5514} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5515} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5516} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5517} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5518} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5519} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5521} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5522} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5524} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5525} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5527} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5528} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5530} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5531} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5533} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5534} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5536} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5537} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5538} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5539} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5541} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5542} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5543} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5544} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5546} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5547} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5549} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5550} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5551} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5552} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5554} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5555} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5557} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5558} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5560} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5561} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5563} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5564} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5565} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5566} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5568} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5569} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5570} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5571} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5572} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5573} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5575} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5576} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5578} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5579} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5581} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5582} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5584} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5585} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5587} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5588} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5589} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5590} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5591} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5592} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5593} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5594} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5596} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5597} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5599} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5600} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5601} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5602} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5604} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5605} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5607} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5608} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5610} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5611} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5612} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5613} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5615} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5616} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5618} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5619} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5621} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5622} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5624} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5625} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5626} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5627} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5628} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5629} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5630} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5631} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5632} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5633} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5634} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5635} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5636} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5637} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5638} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5639} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5640} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5641} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5642} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5643} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5644} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5645} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5647} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5648} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5650} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5651} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5653} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5654} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5655} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5656} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5658} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5659} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5663} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5664} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5665} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5666} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5668} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5669} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5670} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5671} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5672} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5673} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5675} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5676} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5678} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5679} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5681} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5682} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5683} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5684} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5685} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5686} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5688} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5689} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5690} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5691} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5693} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5694} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5696} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5697} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5698} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5699} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5701} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5702} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5704} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5705} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5706} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5707} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5709} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5710} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5712} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5713} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5714} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5715} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5716} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5717} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5719} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5720} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5722} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5723} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5724} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5725} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5727} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5728} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5729} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5730} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5732} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5733} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5734} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5735} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5736} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5737} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5739} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5740} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5742} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5743} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5747} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5748} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5749} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5750} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5751} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5752} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5753} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7184} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5755} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5758} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5759} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5760} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5761} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5762} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5765} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5766} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5768} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5769} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5770} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5771} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5773} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5774} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5776} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5777} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5779} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5780} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5782} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5783} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5785} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5786} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5789} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5794} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5795} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5797} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5798} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5800} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5801} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5802} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5803} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5805} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5806} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5808} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5809} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5810} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5811} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5812} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5813} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5815} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5816} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5817} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5818} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5819} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5820} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5821} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5822} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7187} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5824} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5825} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5826} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5827} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5829} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5830} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5831} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5832} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5834} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5835} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5836} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5837} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5839} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5840} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5841} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5842} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5844} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5845} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5847} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5848} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5850} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5851} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5852} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5853} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5855} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5856} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5857} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5858} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5860} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5861} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5862} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5863} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5865} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5866} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5868} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5869} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5871} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5872} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5873} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5874} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5876} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5877} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5878} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5879} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5880} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5881} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5882} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5883} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5884} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5885} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5886} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5887} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5888} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5889} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5891} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5892} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5893} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5894} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5895} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5896} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5898} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5899} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5901} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5902} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5904} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5905} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5907} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5908} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5909} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5910} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5911} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5912} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5913} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5914} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5915} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5916} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5917} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5918} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5920} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5921} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5922} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5923} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5924} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5925} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5927} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5928} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5929} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5930} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5932} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5933} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5935} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5936} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5938} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5939} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5940} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5941} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5943} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5944} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7188} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5946} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5947} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5948} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5949} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5950} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5951} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5953} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5954} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5955} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5956} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5958} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5959} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5960} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5961} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5962} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5963} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5965} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5966} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5968} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5969} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5970} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5971} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5973} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5974} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5975} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5976} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5977} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5978} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5979} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5980} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5981} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5982} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5983} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5984} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5985} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5986} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5988} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5989} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5991} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5992} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5993} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5994} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5996} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5997} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5998} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE5999} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6001} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6002} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6003} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6004} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6005} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6007} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6008} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6010} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6011} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6013} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6014} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6015} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6016} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6018} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6019} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6020} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6021} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6022} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6023} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7189} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6024} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6025} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6026} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6027} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6028} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6029} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6030} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6031} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6033} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6034} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6035} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6036} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6037} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6038} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6044} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6045} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6049} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6050} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6053} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6054} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6059} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6060} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6062} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6063} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6065} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6066} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7196} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6068} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6069} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6072} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6073} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7198} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6075} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6076} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6077} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6078} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6079} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6080} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6081} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6082} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6083} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6084} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6085} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6086} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6087} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6088} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6089} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6091} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6092} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6093} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6094} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6095} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6096} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6097} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6098} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6099} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6100} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6101} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6102} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6103} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6104} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6105} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6106} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6107} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6108} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6109} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6110} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6111} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6112} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6113} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6114} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6115} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6116} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6117} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6118} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7199} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6119} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6120} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6121} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6122} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6124} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6125} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6126} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6127} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6130} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6131} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6132} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6133} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6134} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6135} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6137} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6138} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6139} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6140} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6142} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6143} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6145} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6146} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6147} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6148} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6150} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6151} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6152} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6153} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6155} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6156} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6158} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6159} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6160} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6161} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6162} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6163} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6164} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6165} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6166} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6167} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6168} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6169} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6171} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6172} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6174} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6175} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6177} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6178} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6180} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6181} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6182} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6183} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6184} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6185} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6187} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6188} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6190} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6191} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6193} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6194} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6195} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6196} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6198} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6199} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6200} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6201} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6202} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6203} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6204} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6205} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6206} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6207} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6209} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6210} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6211} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6212} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6213} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6214} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6215} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6216} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6218} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6219} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6220} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6221} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6222} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6223} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6224} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6225} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6226} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6227} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6229} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6230} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6232} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6233} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6235} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6236} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6237} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6238} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6239} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6240} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6241} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6242} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6244} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6245} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6246} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6247} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6249} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6250} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6252} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6253} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6254} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6255} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6256} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6257} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6259} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6260} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6262} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6263} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6264} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6265} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6267} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6268} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6269} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6270} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6271} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6272} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6274} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6275} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6276} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6277} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6279} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6280} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6281} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6282} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6284} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6285} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6287} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6288} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6289} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6290} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6292} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6293} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6294} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6295} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6296} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6297} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6298} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6299} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6300} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6302} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6303} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6305} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6306} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6307} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6308} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6310} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6311} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6313} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6314} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6316} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6317} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6318} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6319} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6320} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6321} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6325} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6326} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6327} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6328} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6329} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6330} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6331} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6333} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6334} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6335} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6336} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7202} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6337} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6338} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6340} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6341} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6342} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6343} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6345} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6346} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6348} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6349} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6350} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6351} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6352} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6353} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6355} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6356} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6358} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6359} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6361} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6362} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6364} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6365} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6367} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6368} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6370} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6371} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6373} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6374} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6376} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6377} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6379} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6380} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6381} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6382} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6384} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6385} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6387} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6388} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6389} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6390} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6391} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6392} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6394} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6395} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6397} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6398} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6399} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6400} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6401} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6402} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6404} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6405} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6406} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6407} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6409} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6410} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6411} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6412} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6414} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6415} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6417} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6418} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6419} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6420} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6422} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6423} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6425} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6426} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6428} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6429} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6431} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6432} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6434} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6435} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6437} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6438} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6440} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6441} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6442} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6443} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6444} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6445} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6447} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6448} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6450} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6451} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6452} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6453} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6454} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6455} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6457} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6458} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6459} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6460} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6461} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6462} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6464} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6465} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6467} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6468} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6469} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6470} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6471} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6472} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6474} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6475} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6477} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6478} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6479} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6480} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6481} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6482} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6484} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6485} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6486} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6487} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6489} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6490} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6491} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6492} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6493} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6494} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6496} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6497} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6499} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6500} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6502} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6503} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6505} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6506} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6508} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6509} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6511} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6512} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6513} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6514} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6516} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6517} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6519} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6520} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6522} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6523} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6525} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6526} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6527} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6528} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6529} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6530} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6531} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6532} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6534} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6535} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6537} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6538} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6540} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6541} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6542} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6543} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6544} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6545} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6546} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6547} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6549} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6550} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6552} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6553} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6555} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6556} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6558} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6559} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6561} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6562} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6564} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6565} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6566} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6567} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6568} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6569} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6570} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6571} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6576} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6577} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6578} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6579} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6580} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6581} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6583} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6584} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6585} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6586} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6587} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6588} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6590} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6591} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6593} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6594} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6596} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6597} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6598} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6599} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6600} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6601} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6602} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6603} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6604} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6605} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6606} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6608} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6609} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6610} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6611} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6612} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6613} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6614} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6615} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6616} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6617} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6618} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6619} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6620} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6621} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6622} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6623} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6625} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6626} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6628} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6629} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6631} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6632} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7203} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6634} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6635} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6637} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6638} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6640} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6641} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6642} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6643} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6645} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6646} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6647} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6648} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6649} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6650} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6651} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6652} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6654} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6655} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6656} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6657} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6658} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6659} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6660} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6661} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6663} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6664} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6666} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6667} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6669} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6670} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6671} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6672} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6673} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6674} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6675} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6676} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6677} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6678} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6679} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6680} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6681} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6682} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6683} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6684} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6685} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6686} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6687} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6688} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6689} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6690} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6692} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6693} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6695} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6696} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6697} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6698} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6700} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6701} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6702} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6703} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6704} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6705} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6707} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6708} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6709} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6710} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6713} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6714} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6715} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6716} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6717} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6718} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6720} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6721} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6722} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6723} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6725} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6726} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6728} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6729} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6731} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6732} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6733} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6734} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6735} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6736} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6741} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6742} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6744} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6745} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6747} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6748} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7206} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6750} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6751} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6753} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6758} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6759} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6760} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6761} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6762} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6763} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6765} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6766} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6768} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6769} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6770} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6771} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6772} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6773} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6775} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6776} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6777} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6778} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6779} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6780} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6781} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6782} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6784} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6785} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6786} | tar x -C %{buildroot}%{_texdir} +xz -dc %{SOURCE6787} | tar x -C %{buildroot}%{_texdir} +xz -dc %{SOURCE6788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6789} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6790} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6791} | tar x -C %{buildroot}%{_texdir}/texmf-dist # fixed mangling shebang, inconsistent use of tabs and spaces and python syntax pushd %{buildroot}%{_texdir}/texmf-dist/ patch -p0 < %{_sourcedir}/texlive-2017-xepersian-python.patch -patch -p0 < %{_sourcedir}/texlive-2019-py3-and-pep8.patch -popd - -# Patch tabu -pushd %{buildroot}%{_texdir}/texmf-dist/tex/latex/tabu/ -patch -p0 < %{_sourcedir}/tabu-update-to-git-930bc77.patch -# %%patch110 -p0 popd +xz -dc %{SOURCE6793} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6794} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6795} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6796} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6799} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6800} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6801} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6802} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6803} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6804} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6805} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6806} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6807} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6808} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6809} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6810} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6811} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6812} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6814} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6815} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7207} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7208} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7209} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7210} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7211} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7212} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7213} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7214} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7215} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7216} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7217} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7219} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7220} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7221} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7223} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7224} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7225} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7226} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7227} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7229} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7230} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7232} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7233} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7235} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7236} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7238} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7239} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7241} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7242} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7243} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7245} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7246} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7247} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7248} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7249} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7250} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7252} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7253} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7254} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7255} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7256} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7257} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7258} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7259} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7260} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7261} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7262} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7263} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %%{SOURCE7264} | tar x -C %%{buildroot}%%{_texdir}/texmf-dist +xz -dc %{SOURCE7265} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7267} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7268} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7270} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7271} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7272} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7273} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7274} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7275} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7276} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7277} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7278} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7279} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7280} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7281} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7282} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7283} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7285} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7286} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7287} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7288} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7290} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7291} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7292} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7293} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7294} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7295} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7296} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7297} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7299} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7300} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7302} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7303} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7304} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7305} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7307} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7308} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7309} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7310} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7315} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7316} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7318} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7319} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7320} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7321} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7322} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7323} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7324} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7326} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7327} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7329} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7330} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7332} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7333} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7334} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7335} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7337} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7338} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7340} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7341} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7342} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7343} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7345} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7346} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7347} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7348} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7349} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7351} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7352} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7353} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7354} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7356} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7357} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7359} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7360} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7362} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7363} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7364} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7365} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7366} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7367} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7371} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7372} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7375} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7376} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7379} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7380} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7381} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7385} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7386} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7387} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7389} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7390} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7391} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7392} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7393} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7394} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7396} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7397} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7398} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7399} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7400} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7401} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7402} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7404} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7405} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7406} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7407} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7408} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7409} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7410} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7411} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7412} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7413} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7414} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7415} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7416} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7417} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7419} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7420} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7422} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7423} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7425} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7426} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7428} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7429} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7431} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7432} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7437} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7438} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7440} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7441} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7443} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7444} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7445} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7446} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7448} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7449} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7451} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7452} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7453} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7454} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7455} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7456} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7458} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7459} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7460} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7461} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7463} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7464} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7466} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7467} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7468} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7469} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7470} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7471} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7473} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7474} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7478} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7479} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7480} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7481} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7482} | tar x -C %{buildroot}%{_texdir} +xz -dc %{SOURCE7483} | tar x -C %{buildroot}%{_texdir} +# xz -dc %{SOURCE7486} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7487} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7489} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7490} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7491} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7492} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7493} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7494} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7496} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7497} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7498} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7499} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7500} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7501} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7502} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7503} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7505} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7506} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7508} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7509} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7510} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7511} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7515} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7516} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7518} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7519} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7521} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7522} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7523} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7524} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7525} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7527} | tar x -C %{buildroot}%{_texdir} +xz -dc %{SOURCE7528} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7529} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7530} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7531} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7532} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7534} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7535} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7537} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7538} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7539} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7540} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7541} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7542} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7543} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7544} | tar x -C %{buildroot}%{_texdir} +# xz -dc %%{SOURCE7548} | tar x -C %%{buildroot}%%{_texdir}/texmf-dist +# xz -dc %%{SOURCE7549} | tar x -C %%{buildroot}%%{_texdir}/texmf-dist +xz -dc %{SOURCE7550} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7551} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7554} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7555} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7556} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7557} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7558} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7559} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7561} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7562} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7567} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7568} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7570} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7571} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7572} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7573} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7574} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7575} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7576} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7577} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7578} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7579} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7580} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7581} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7582} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7583} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7584} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7585} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7586} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7587} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7588} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7589} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7591} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# xz -dc %{SOURCE7592} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7596} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE6816} | tar x -C %{buildroot}%{_texdir} +xz -dc %{SOURCE6817} | tar x -C %{buildroot}%{_texdir} +xz -dc %{SOURCE7598} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7599} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7600} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7601} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7602} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7603} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7604} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7605} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7606} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7607} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7608} | tar x -C %{buildroot}%{_texdir}/texmf-dist +# 2017 +xz -dc %{SOURCE7609} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7610} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7611} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7612} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7613} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7614} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7615} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7616} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7617} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7618} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7619} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7620} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7621} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7622} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7623} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7624} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7625} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7626} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7627} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7628} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7629} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7630} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7631} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7632} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7633} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7634} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7635} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7636} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7637} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7638} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7639} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7640} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7641} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7642} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7643} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7644} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7645} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7646} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7647} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7648} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7649} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7650} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7651} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7652} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7653} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7654} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7655} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7658} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7659} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7660} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7661} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7662} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7663} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7664} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7665} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7666} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7667} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7668} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7669} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7670} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7671} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7672} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7673} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7674} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7675} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7676} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7677} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7678} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7679} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7680} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7681} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7682} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7683} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7684} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7685} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7686} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7687} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7688} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7689} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7690} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7691} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7692} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7693} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7694} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7695} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7696} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7697} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7698} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7699} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7700} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7701} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7702} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7703} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7704} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7705} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7706} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7707} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7708} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7709} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7710} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7711} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7712} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7713} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7714} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7715} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7716} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7717} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7718} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7719} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7720} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7721} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7722} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7723} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7724} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7725} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7726} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7729} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7730} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7731} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7732} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7735} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7736} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7737} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7738} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7739} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7740} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7741} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7742} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7743} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7744} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7745} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7746} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7747} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7748} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7749} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7750} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7751} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7752} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7753} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7754} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7756} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7757} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7758} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7759} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7760} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7761} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7762} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7763} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7764} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7765} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7766} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7767} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7768} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7769} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7770} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7771} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7772} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7773} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7774} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7775} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7776} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7777} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7778} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7779} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7780} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7781} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7782} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7783} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7784} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7785} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7786} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7787} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7788} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7789} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7790} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7791} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7792} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7793} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7794} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7795} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7798} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7799} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7800} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7801} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7802} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7803} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7804} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7805} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7806} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7807} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7808} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7809} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7810} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7813} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7816} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7817} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7818} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7819} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7820} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7821} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7824} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7825} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7826} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7827} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7828} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7829} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7830} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7831} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7832} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7833} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7834} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7835} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7836} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7837} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7838} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7839} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7842} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7843} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7844} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7845} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7846} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7847} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7848} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7849} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7850} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7851} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7852} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7853} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7854} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7855} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7856} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7857} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7858} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7859} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7860} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7861} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7862} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7863} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7864} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7865} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7866} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7867} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7868} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7869} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7870} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7871} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7872} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7873} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7874} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7875} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7876} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7877} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7878} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7879} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7880} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7881} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7882} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7883} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7884} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7885} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7886} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7887} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7888} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7889} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7892} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7893} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7894} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7895} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7896} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7897} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7898} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7899} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7900} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7901} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7902} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7903} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7904} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7905} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7906} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7907} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7908} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7909} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7910} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7911} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7912} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7913} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7914} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7915} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7916} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7917} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7918} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7919} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7920} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7921} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7922} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7923} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7924} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7925} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7926} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7927} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7928} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7931} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7932} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7933} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7934} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7935} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7936} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7937} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7938} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7939} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7940} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7941} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7942} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7943} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7944} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7945} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7946} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7947} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7948} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7949} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7950} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7951} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7952} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7953} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7954} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7955} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7956} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7957} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7958} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7959} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7960} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7961} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7962} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7963} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7964} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7967} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7968} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7969} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7970} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7971} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7972} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7973} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7974} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7975} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7976} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7977} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7978} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7979} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7984} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7985} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7986} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7987} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7988} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7989} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7990} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7991} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7993} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7994} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7995} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7996} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7997} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7998} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE7999} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8000} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8001} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8002} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8003} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8004} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8005} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8008} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8009} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8012} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8013} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8014} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8015} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8016} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8017} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8018} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8019} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8020} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8021} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8022} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8023} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8024} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8025} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8026} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8027} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8028} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8029} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8030} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8031} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8032} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8033} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8034} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8035} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8036} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8037} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8038} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8039} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8040} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8041} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8042} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8043} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8044} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8045} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8046} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8047} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8048} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8049} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8050} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8051} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8052} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8053} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8054} | tar x -C %{buildroot}%{_texdir}/texmf-dist +xz -dc %{SOURCE8055} | tar x -C %{buildroot}%{_texdir}/texmf-dist # nuke useless tlmgr packaging stuff and doc droppings rm -rf %{buildroot}%{_texdir}/tlpkg/gpg/ @@ -198812,8 +177117,6 @@ 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 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 @@ -198827,6 +177130,11 @@ pushd %{buildroot}%{_texdir}/texmf-dist patch -p0 < %{_sourcedir}/texlive-bz#1442706-python-path.patch popd +#patch geometry to resolve bz1575363 +pushd %{buildroot}%{_texdir}/texmf-dist +patch -p0 < %{_sourcedir}/texlive-bz#1575363-geometry-5.7.patch +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. @@ -198858,7 +177166,7 @@ for i in adobe/sourcecodepro adobe/sourcesanspro adobe/sourceserifpro \ public/tex-gyre public/tex-gyre-math public/umtypewriter public/xcharter \ public/xits rozynski/comicneue ; do j=`echo $i | cut -d / -f 2` - ln -s ../texlive/texmf-dist/fonts/opentype/$i $j + ln -s %{_texdir}/texmf-dist/fonts/opentype/$i $j done popd @@ -198878,9 +177186,7 @@ rm -rf %{buildroot}%{_texdir}/texmf-dist/tlpkg/tlpobj/ mkdir -p %{buildroot}%{_sysconfdir}/texlive/tex/generic/config mv %{buildroot}%{_texdir}/texmf-dist/tex/generic/config/language.dat %{buildroot}%{_sysconfdir}/texlive/tex/generic/config/ -pushd %{buildroot}%{_texdir}/texmf-dist/tex/generic/config/ -ln -s ../../../../../../..%{_sysconfdir}/texlive/tex/generic/config/language.dat language.dat -popd +ln -s %{_sysconfdir}/texlive/tex/generic/config/language.dat %{buildroot}%{_texdir}/texmf-dist/tex/generic/config/language.dat %files @@ -199236,7 +177542,7 @@ popd %{_texdir}/texmf-dist/fonts/vf/huerta/alegreya/ %{_texdir}/texmf-dist/fonts/enc/dvips/alegreya/ %{_texdir}/texmf-dist/fonts/type1/huerta/alegreya/ -%{_texdir}/texmf-dist/fonts/opentype/huerta/alegreya/ +%{_texdir}/texmf-dist/fonts/truetype/huerta/alegreya/ %files alegreya-doc %license ofl.txt @@ -199257,9 +177563,7 @@ popd %files plain %license knuth.txt %{_texdir}/texmf-dist/makeindex/plain/ -%dir %{_texdir}/texmf-dist/tex/plain/ -%{_texdir}/texmf-dist/tex/plain/base/ -%{_texdir}/texmf-dist/tex/plain/config/ +%{_texdir}/texmf-dist/tex/plain/ %files lambda %{_texdir}/texmf-dist/tex/lambda/ @@ -199378,11 +177682,10 @@ popd %license lppl1.3.txt %{_texdir}/texmf-dist/bibtex/bst/amscls/ %{_texdir}/texmf-dist/tex/latex/amscls/ -%doc %{_texdir}/texmf-dist/doc/latex/amscls/ %files amscls-doc %license lppl1.3.txt -%doc %{_texdir}/texmf-dist/doc/latex/amscls-doc/ +%{_texdir}/texmf-dist/doc/latex/amscls/ %files amsfonts %license ofl.txt @@ -199392,7 +177695,6 @@ popd %{_texdir}/texmf-dist/fonts/tfm/public/amsfonts/ %{_texdir}/texmf-dist/fonts/type1/public/amsfonts/ %{_texdir}/texmf-dist/tex/latex/amsfonts/ -%{_texdir}/texmf-dist/tex/plain/amsfonts/ %files amsfonts-doc %license ofl.txt @@ -200880,6 +179182,14 @@ popd %license lppl1.3.txt %{_texdir}/texmf-dist/doc/latex/bez123/ +%files bezos +%license lppl1.txt +%{_texdir}/texmf-dist/tex/latex/bezos/ + +%files bezos-doc +%license lppl1.txt +%{_texdir}/texmf-dist/doc/latex/bezos/ + %files bgreek %license lppl1.txt %{_texdir}/texmf-dist/fonts/tfm/public/bgreek/ @@ -201970,12 +180280,12 @@ popd %files cantarell %license lppl1.3.txt +%{_texdir}/texmf-dist/fonts/afm/public/cantarell/ %{_texdir}/texmf-dist/fonts/enc/dvips/cantarell/ %{_texdir}/texmf-dist/fonts/map/dvips/cantarell/ -%{_texdir}/texmf-dist/fonts/opentype/gnome/cantarell/ -%{_texdir}/texmf-dist/fonts/tfm/gnome/cantarell/ -%{_texdir}/texmf-dist/fonts/type1/gnome/cantarell/ -%{_texdir}/texmf-dist/fonts/vf/gnome/cantarell/ +%{_texdir}/texmf-dist/fonts/tfm/public/cantarell/ +%{_texdir}/texmf-dist/fonts/type1/public/cantarell/ +%{_texdir}/texmf-dist/fonts/vf/public/cantarell/ %{_texdir}/texmf-dist/tex/latex/cantarell/ %files cantarell-doc @@ -202668,7 +180978,6 @@ popd %{_texdir}/texmf-dist/fonts/afm/public/fonts-tlwg/ %{_texdir}/texmf-dist/fonts/enc/dvips/fonts-tlwg/ %{_texdir}/texmf-dist/fonts/map/dvips/fonts-tlwg/ -%{_texdir}/texmf-dist/fonts/opentype/public/fonts-tlwg/ %{_texdir}/texmf-dist/fonts/tfm/public/fonts-tlwg/ %{_texdir}/texmf-dist/fonts/type1/public/fonts-tlwg/ %{_texdir}/texmf-dist/fonts/vf/public/fonts-tlwg/ @@ -203072,8 +181381,6 @@ popd %{_texdir}/texmf-dist/doc/latex/etex-pkg/ %files hyph-utf8 -%dir %{_texdir}/texmf-dist/tex/generic/hyph-utf8 -%dir %{_texdir}/texmf-dist/tex/generic/hyph-utf8/conversions %{_texdir}/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il2.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-il3.tex @@ -203083,7 +181390,6 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-qx.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t2a.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/conversions/conv-utf8-t8m.tex -%dir %{_texdir}/texmf-dist/tex/luatex/hyph-utf8 %{_texdir}/texmf-dist/tex/luatex/hyph-utf8/etex.src %{_texdir}/texmf-dist/tex/luatex/hyph-utf8/luatex-hyphen.lua @@ -203092,7 +181398,6 @@ popd %{_texdir}/texmf-dist/doc/luatex/hyph-utf8/ %files hyphen-base -%dir %{_texdir}/texmf-dist/tex/generic/hyphen %{_texdir}/texmf-dist/tex/generic/hyphen/dumyhyph.tex %{_texdir}/texmf-dist/tex/generic/hyphen/hyphen.tex %{_texdir}/texmf-dist/tex/generic/hyphen/hypht1.tex @@ -203156,17 +181461,17 @@ popd %files texlive-common-doc %{_texdir}/texmf-dist/doc/texlive/index.html -%{_texdir}/texmf-dist/doc/texlive/texlive-common/advanced-lnx.png -%{_texdir}/texmf-dist/doc/texlive/texlive-common/basic-w32.png %{_texdir}/texmf-dist/doc/texlive/texlive-common/examples/ex5.tex %{_texdir}/texmf-dist/doc/texlive/texlive-common/examples/ex6.tex %{_texdir}/texmf-dist/doc/texlive/texlive-common/examples/ex6a.tex %{_texdir}/texmf-dist/doc/texlive/texlive-common/examples/ex6b.tex %{_texdir}/texmf-dist/doc/texlive/texlive-common/examples/ex6c.tex +%{_texdir}/texmf-dist/doc/texlive/texlive-common/install-lnx-main.png %{_texdir}/texmf-dist/doc/texlive/texlive-common/nsis_installer.png %{_texdir}/texmf-dist/doc/texlive/texlive-common/psview.png %{_texdir}/texmf-dist/doc/texlive/texlive-common/stdcoll.png %{_texdir}/texmf-dist/doc/texlive/texlive-common/tray-menu.png +%{_texdir}/texmf-dist/doc/texlive/texlive-common/wizard-w32.png %files texlive-msg-translations %{_texdir}/tlpkg/translations/ @@ -203934,12 +182239,13 @@ popd %files comfortaa %license lppl1.3.txt +%{_texdir}/texmf-dist/fonts/afm/public/comfortaa/ %{_texdir}/texmf-dist/fonts/enc/dvips/comfortaa/ %{_texdir}/texmf-dist/fonts/map/dvips/comfortaa/ -%{_texdir}/texmf-dist/fonts/tfm/aajohan/comfortaa/ -%{_texdir}/texmf-dist/fonts/truetype/aajohan/comfortaa/ -%{_texdir}/texmf-dist/fonts/type1/aajohan/comfortaa/ -%{_texdir}/texmf-dist/fonts/vf/aajohan/comfortaa/ +%{_texdir}/texmf-dist/fonts/tfm/public/comfortaa/ +%{_texdir}/texmf-dist/fonts/truetype/public/comfortaa/ +%{_texdir}/texmf-dist/fonts/type1/public/comfortaa/ +%{_texdir}/texmf-dist/fonts/vf/public/comfortaa/ %{_texdir}/texmf-dist/tex/latex/comfortaa/ %files comfortaa-doc @@ -203982,10 +182288,10 @@ popd %files countriesofeurope %license lppl1.txt +%{_texdir}/texmf-dist/dvips/countriesofeurope/ %{_texdir}/texmf-dist/fonts/afm/public/countriesofeurope/ %{_texdir}/texmf-dist/fonts/enc/dvips/countriesofeurope/ %{_texdir}/texmf-dist/fonts/map/dvips/countriesofeurope/ -%{_texdir}/texmf-dist/fonts/opentype/public/countriesofeurope/ %{_texdir}/texmf-dist/fonts/tfm/public/countriesofeurope/ %{_texdir}/texmf-dist/fonts/type1/public/countriesofeurope/ %{_texdir}/texmf-dist/tex/latex/countriesofeurope/ @@ -204133,12 +182439,13 @@ popd %files droid %license lppl1.3.txt +%{_texdir}/texmf-dist/fonts/afm/public/droid/ %{_texdir}/texmf-dist/fonts/enc/dvips/droid/ %{_texdir}/texmf-dist/fonts/map/dvips/droid/ -%{_texdir}/texmf-dist/fonts/tfm/ascender/droid/ -%{_texdir}/texmf-dist/fonts/truetype/ascender/droid/ -%{_texdir}/texmf-dist/fonts/type1/ascender/droid/ -%{_texdir}/texmf-dist/fonts/vf/ascender/droid/ +%{_texdir}/texmf-dist/fonts/tfm/public/droid/ +%{_texdir}/texmf-dist/fonts/truetype/public/droid/ +%{_texdir}/texmf-dist/fonts/type1/public/droid/ +%{_texdir}/texmf-dist/fonts/vf/public/droid/ %{_texdir}/texmf-dist/tex/latex/droid/ %files droid-doc @@ -204789,7 +183096,6 @@ popd %files ipaex-type1 %license other-free.txt -%{_texdir}/texmf-dist/fonts/enc/dvips/ipaex-type1/ %{_texdir}/texmf-dist/fonts/map/dvips/ipaex-type1/ %{_texdir}/texmf-dist/fonts/tfm/public/ipaex-type1/ %{_texdir}/texmf-dist/fonts/type1/public/ipaex-type1/ @@ -204850,8 +183156,11 @@ popd %files kpfonts %license gpl.txt +%{_texdir}/texmf-dist/fonts/afm/public/kpfonts/ %{_texdir}/texmf-dist/fonts/enc/dvips/kpfonts/ +%{_texdir}/texmf-dist/fonts/enc/pdftex/kpfonts/ %{_texdir}/texmf-dist/fonts/map/dvips/kpfonts/ +%{_texdir}/texmf-dist/fonts/source/public/kpfonts/ %{_texdir}/texmf-dist/fonts/tfm/public/kpfonts/ %{_texdir}/texmf-dist/fonts/type1/public/kpfonts/ %{_texdir}/texmf-dist/fonts/vf/public/kpfonts/ @@ -205257,7 +183566,6 @@ popd %{_texdir}/texmf-dist/fonts/enc/dvips/oldstandard/ %{_texdir}/texmf-dist/fonts/map/dvips/oldstandard/ %{_texdir}/texmf-dist/fonts/tfm/public/oldstandard/ -%{_texdir}/texmf-dist/fonts/type1/public/oldstandard/ %{_texdir}/texmf-dist/fonts/vf/public/oldstandard/ %{_texdir}/texmf-dist/tex/latex/oldstandard/ @@ -205266,12 +183574,13 @@ popd %files opensans %license lppl1.3.txt +%{_texdir}/texmf-dist/fonts/afm/public/opensans/ %{_texdir}/texmf-dist/fonts/enc/dvips/opensans/ %{_texdir}/texmf-dist/fonts/map/dvips/opensans/ -%{_texdir}/texmf-dist/fonts/tfm/ascender/opensans/ -%{_texdir}/texmf-dist/fonts/truetype/ascender/opensans/ -%{_texdir}/texmf-dist/fonts/type1/ascender/opensans/ -%{_texdir}/texmf-dist/fonts/vf/ascender/opensans/ +%{_texdir}/texmf-dist/fonts/tfm/public/opensans/ +%{_texdir}/texmf-dist/fonts/truetype/public/opensans/ +%{_texdir}/texmf-dist/fonts/type1/public/opensans/ +%{_texdir}/texmf-dist/fonts/vf/public/opensans/ %{_texdir}/texmf-dist/tex/latex/opensans/ %files opensans-doc @@ -205484,7 +183793,7 @@ popd %{_texdir}/texmf-dist/fonts/enc/dvips/roboto/ %{_texdir}/texmf-dist/fonts/map/dvips/roboto/ %{_texdir}/texmf-dist/fonts/tfm/google/roboto/ -%{_texdir}/texmf-dist/fonts/opentype/google/roboto/ +%{_texdir}/texmf-dist/fonts/truetype/google/roboto/ %{_texdir}/texmf-dist/fonts/type1/google/roboto/ %{_texdir}/texmf-dist/fonts/vf/google/roboto/ %{_texdir}/texmf-dist/tex/latex/roboto/ @@ -205659,6 +183968,7 @@ popd %{_texdir}/texmf-dist/fonts/enc/dvips/stix/ %{_texdir}/texmf-dist/fonts/map/dvips/stix/ %{_texdir}/texmf-dist/fonts/opentype/public/stix/ +%{_texdir}/texmf-dist/fonts/source/public/stix/ %{_texdir}/texmf-dist/fonts/tfm/public/stix/ %{_texdir}/texmf-dist/fonts/type1/public/stix/ %{_texdir}/texmf-dist/fonts/vf/public/stix/ @@ -207125,6 +185435,9 @@ popd %files hyphen-ethiopic %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-mul-ethi.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-mul-ethi.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mul-ethi.pat.txt %files collection-langarabic @@ -207153,10 +185466,8 @@ popd %{_texdir}/texmf-dist/doc/latex/ghab/ %files hyphen-arabic -%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ar.tex %files hyphen-farsi -%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fa.tex %files imsproc %license lppl1.3.txt @@ -207244,7 +185555,11 @@ popd %files hyphen-chinese %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-zh-latn-pinyin.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-zh-latn-pinyin.ec.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-zh-latn-pinyin.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-zh-latn-pinyin.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-zh-latn-pinyin.pat.txt %files impatient-cn-doc @@ -207340,6 +185655,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-bg.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-bg.t2a.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bg.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bg.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bg.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bg.pat.txt %files hyphen-mongolian @@ -207349,13 +185667,18 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-mn-cyrl.t2a.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl-x-lmc.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-mn-cyrl.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mn-cyrl.pat.txt %files hyphen-russian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ru.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-ru.t2a.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ru.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ru.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ru.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ru.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ru.pat.txt %files ruhyphen @@ -207371,11 +185694,17 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sh-cyrl.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sh-latn.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sr-cyrl.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sh-cyrl.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sh-latn.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sr-cyrl.pat.txt %files hyphen-ukrainian @@ -207383,6 +185712,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-uk.t2a.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-uk.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-uk.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-uk.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-uk.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-uk.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-uk.pat.txt %files ukrhyph @@ -207531,14 +185863,18 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-cs.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-cs.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-cs.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cs.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cs.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cs.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cs.pat.txt %files hyphen-slovak %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sk.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-sk.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sk.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sk.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sk.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sk.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sk.pat.txt %files lshort-czech-doc @@ -207559,9 +185895,13 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-en-us.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-en-gb.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-en-us.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-en-gb.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-en-us.pat.txt %files FAQ-en-doc @@ -207783,6 +186123,9 @@ popd %files hyphen-armenian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hy.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-hy.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hy.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hy.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hy.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hy.pat.txt %files hyphen-croatian @@ -207790,6 +186133,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hr.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-hr.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-hr.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hr.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hr.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hr.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hr.pat.txt %files hyphen-danish @@ -207797,19 +186143,27 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-da.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-da.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-da.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-da.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-da.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-da.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-da.pat.txt %files hyphen-dutch %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-nl.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-nl.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-nl.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nl.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nl.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nl.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nl.pat.txt %files hyphen-estonian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-et.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-et.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-et.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-et.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-et.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-et.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-et.pat.txt %files hyphen-finnish @@ -207817,6 +186171,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-fi.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-fi.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fi.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fi.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fi.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fi.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fi.pat.txt %files hyphen-friulan @@ -207824,6 +186181,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-fur.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-fur.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fur.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fur.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fur.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fur.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fur.pat.txt %files hyphen-hungarian @@ -207831,6 +186191,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hu.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-hu.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-hu.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hu.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hu.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hu.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hu.pat.txt %files hyphen-hungarian-doc @@ -207842,19 +186205,27 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-is.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-is.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-is.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-is.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-is.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-is.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-is.pat.txt %files hyphen-irish %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ga.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-ga.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ga.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ga.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ga.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ga.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ga.pat.txt %files hyphen-kurmanji %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-kmr.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-kmr.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-kmr.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-kmr.pat.txt %files hyphen-latin @@ -207867,20 +186238,35 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-classic.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-la-x-liturgic.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-la.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-classic.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-liturgic.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-liturgic.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-liturgic.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la-x-liturgic.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-la.pat.txt %files hyphen-latvian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-lv.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-lv.l7x.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-lv.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-lv.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-lv.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-lv.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-lv.pat.txt %files hyphen-lithuanian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-lt.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-lt.l7x.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-lt.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-lt.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-lt.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-lt.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-lt.pat.txt %files hyphen-norwegian @@ -207891,58 +186277,85 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-nb.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-nn.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-no.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nb.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nb.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nb.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nb.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nn.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nn.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nn.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-nn.pat.txt %files hyphen-piedmontese %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pms.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-pms.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-pms.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pms.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pms.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pms.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pms.pat.txt %files hyphen-romanian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ro.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-ro.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ro.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ro.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ro.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ro.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ro.pat.txt %files hyphen-romansh %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-rm.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-rm.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-rm.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-rm.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-rm.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-rm.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-rm.pat.txt %files hyphen-slovenian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sl.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-sl.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sl.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sl.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sl.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sl.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sl.pat.txt %files hyphen-swedish %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sv.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-sv.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sv.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sv.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sv.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sv.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sv.pat.txt %files hyphen-turkish %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-tr.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-tr.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-tr.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-tr.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-tr.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-tr.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-tr.pat.txt %files hyphen-uppersorbian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-hsb.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-hsb.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-hsb.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hsb.pat.txt %files hyphen-welsh %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-cy.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-cy.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-cy.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cy.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cy.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cy.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cy.pat.txt %files lithuanian @@ -208037,6 +186450,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-eu.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-eu.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-eu.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-eu.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-eu.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-eu.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-eu.pat.txt %files hyphen-french @@ -208044,6 +186460,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-fr.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-fr.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-fr.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fr.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fr.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fr.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-fr.pat.txt %files impatient-fr-doc @@ -208205,9 +186624,22 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-de-1901.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-de-1996.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-de-ch-1901.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-1901.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-1996.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-de-ch-1901.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyphen/dehyphn.tex +%{_texdir}/texmf-dist/tex/generic/hyphen/dehypht.tex +%{_texdir}/texmf-dist/tex/generic/hyphen/dehyphtex.tex +%{_texdir}/texmf-dist/tex/generic/hyphen/ghyphen.README %files koma-script-examples-doc %license lppl1.txt @@ -208393,7 +186825,13 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-el-polyton.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-el-monoton.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-el-polyton.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-el-monoton.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-el-polyton.pat.txt %{_texdir}/texmf-dist/tex/generic/hyphen/grmhyph5.tex %{_texdir}/texmf-dist/tex/generic/hyphen/grphyph5.tex @@ -208404,7 +186842,9 @@ popd %files hyphen-ancientgreek %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-grc.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-grc.tex -%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-grc-x-ibycus.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-grc.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-grc.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-grc.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-grc.pat.txt %{_texdir}/texmf-dist/tex/generic/hyphen/grahyph5.tex %{_texdir}/texmf-dist/tex/generic/hyphen/ibyhyph.tex @@ -208437,7 +186877,7 @@ popd %{_texdir}/texmf-dist/fonts/enc/dvips/kerkis/ %{_texdir}/texmf-dist/fonts/map/dvips/kerkis/ %{_texdir}/texmf-dist/fonts/tfm/public/kerkis/ -%{_texdir}/texmf-dist/fonts/type1/public/kerkis/ +%{_texdir}/texmf-dist/fonts/type1/public/ %{_texdir}/texmf-dist/fonts/vf/public/kerkis/ %{_texdir}/texmf-dist/tex/latex/kerkis/ @@ -208498,7 +186938,6 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-mr.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-or.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pa.tex -%{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pi.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ta.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-te.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-as.tex @@ -208510,25 +186949,59 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-mr.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-or.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-pa.tex -%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-pi.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ta.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-te.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-as.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-as.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-as.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-as.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bn.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bn.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bn.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-bn.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-gu.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-gu.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-gu.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-gu.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hi.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hi.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hi.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-hi.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-kn.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-kn.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-kn.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-kn.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ml.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ml.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ml.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ml.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mr.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mr.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mr.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-mr.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-or.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-or.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-or.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-or.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pa.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pa.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pa.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pa.pat.txt -%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pi.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ta.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ta.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ta.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ta.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-te.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-te.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-te.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-te.pat.txt %files hyphen-sanskrit %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-sa.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-sa.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sa.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sa.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sa.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-sa.pat.txt %files sanskrit @@ -208602,6 +187075,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-it.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-it.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-it.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-it.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-it.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-it.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-it.pat.txt %files itnumpar @@ -208659,6 +187135,7 @@ popd %files japanese-otf-uptex %license bsd.txt +%{_texdir}/texmf-dist/fonts/ovp/public/japanese-otf-uptex/ %{_texdir}/texmf-dist/fonts/tfm/public/japanese-otf-uptex/ %{_texdir}/texmf-dist/fonts/vf/public/japanese-otf-uptex/ %{_texdir}/texmf-dist/tex/platex/japanese-otf-uptex/ @@ -208699,7 +187176,7 @@ popd %license bsd.txt %{_texdir}/texmf-dist/fonts/source/ptex-fonts/ %{_texdir}/texmf-dist/fonts/tfm/ptex-fonts/ -# %%{_texdir}/texmf-dist/fonts/type1/ptex-fonts/ +%{_texdir}/texmf-dist/fonts/type1/ptex-fonts/ %{_texdir}/texmf-dist/fonts/vf/ptex-fonts/ %files ptex-fonts-doc @@ -208750,7 +187227,6 @@ popd %files uptex-fonts %license bsd.txt %{_texdir}/texmf-dist/fonts/cmap/uptex-fonts/ -%{_texdir}/texmf-dist/fonts/source/uptex-fonts/ %{_texdir}/texmf-dist/fonts/tfm/uptex-fonts/ %{_texdir}/texmf-dist/fonts/vf/uptex-fonts/ @@ -208851,49 +187327,70 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-af.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-af.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-af.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-af.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-af.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-af.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-af.pat.txt %files hyphen-coptic %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-cop.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex-8bit/copthyph.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-cop.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cop.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cop.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cop.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cop.pat.txt %files hyphen-esperanto %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-eo.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-eo.il3.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-eo.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-eo.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-eo.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-eo.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-eo.pat.txt %files hyphen-georgian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ka.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-ka.t8m.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ka.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ka.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ka.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ka.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ka.pat.txt %files hyphen-indonesian %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-id.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-id.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-id.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-id.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-id.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-id.pat.txt %files hyphen-interlingua %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ia.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ia.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ia.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ia.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ia.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ia.pat.txt %files hyphen-thai %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-th.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-th.lth.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-th.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-th.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-th.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-th.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-th.pat.txt %files hyphen-turkmen %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-tk.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-tk.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-tk.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-tk.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-tk.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-tk.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-tk.pat.txt %files lshort-thai-doc @@ -208941,7 +187438,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pl.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-pl.qx.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-pl.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pl.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pl.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pl.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pl.pat.txt %files lshort-polish-doc @@ -209035,7 +187534,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-pt.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-pt.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-pt.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pt.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pt.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pt.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-pt.pat.txt %files latexcheat-ptbr-doc @@ -209068,13 +187569,18 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-ca.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-ca.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-ca.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ca.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ca.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ca.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-ca.pat.txt %files hyphen-galician %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-gl.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-gl.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-gl.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-gl.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-gl.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-gl.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-gl.pat.txt %files hyphen-spanish @@ -209082,6 +187588,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-es.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-es.ec.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-es.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-es.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-es.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-es.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-es.pat.txt %files l2tabu-spanish-doc @@ -211717,7 +190226,6 @@ popd %license lppl1.txt %{_texdir}/texmf-dist/fonts/map/dvips/epiolmec/ %{_texdir}/texmf-dist/fonts/tfm/public/epiolmec/ -%{_texdir}/texmf-dist/fonts/type1/public/epiolmec/ %{_texdir}/texmf-dist/tex/latex/epiolmec/ %files epiolmec-doc @@ -212943,6 +191451,9 @@ popd %license gpl.txt %{_texdir}/texmf-dist/doc/latex/hypernat/ +%files hyperref-docsrc-doc +%{_texdir}/texmf-dist/doc/latex/hyperref-docsrc/ + %files hyperxmp %license lppl1.3.txt %{_texdir}/texmf-dist/tex/latex/hyperxmp/ @@ -213779,13 +192290,13 @@ popd %license lppl1.txt %{_texdir}/texmf-dist/doc/latex/marginnote/ -%files mathalpha +%files mathalfa %license lppl1.3.txt -%{_texdir}/texmf-dist/tex/latex/mathalpha/ +%{_texdir}/texmf-dist/tex/latex/mathalfa/ -%files mathalpha-doc +%files mathalfa-doc %license lppl1.3.txt -%{_texdir}/texmf-dist/doc/latex/mathalpha/ +%{_texdir}/texmf-dist/doc/latex/mathalfa/ %files mathastext %license lppl1.3.txt @@ -213811,6 +192322,14 @@ popd %license lppl1.txt %{_texdir}/texmf-dist/doc/latex/maybemath/ +%files mbenotes +%license lppl1.2.txt +%{_texdir}/texmf-dist/tex/latex/mbenotes/ + +%files mbenotes-doc +%license lppl1.2.txt +%{_texdir}/texmf-dist/doc/latex/mbenotes/ + %files mcaption %license lppl1.txt %{_texdir}/texmf-dist/tex/latex/mcaption/ @@ -216023,7 +194542,6 @@ popd %files standalone %license lppl1.3.txt %{_texdir}/texmf-dist/tex/latex/standalone/ -%{_texdir}/texmf-dist/tex/plain/standalone/ %files standalone-doc %license lppl1.3.txt @@ -219832,6 +198350,15 @@ popd %license lppl1.txt %{_texdir}/texmf-dist/doc/latex/ptptex/ +%files psu-thesis +%license lppl1.txt +%{_texdir}/texmf-dist/bibtex/bst/psu-thesis/ +%{_texdir}/texmf-dist/tex/latex/psu-thesis/ + +%files psu-thesis-doc +%license lppl1.txt +%{_texdir}/texmf-dist/doc/latex/psu-thesis/ + %files resphilosophica %license lppl1.3.txt %{_texdir}/texmf-dist/bibtex/bst/resphilosophica/ @@ -219986,12 +198513,10 @@ popd %files tabriz-thesis %license lppl1.3.txt %{_texdir}/texmf-dist/tex/latex/tabriz-thesis/ -%{_texdir}/texmf-dist/tex/xelatex/tabriz-thesis/ %files tabriz-thesis-doc %license lppl1.3.txt -%doc %{_texdir}/texmf-dist/doc/latex/tabriz-thesis/ -%doc %{_texdir}/texmf-dist/doc/xelatex/tabriz-thesis/ +%{_texdir}/texmf-dist/doc/latex/tabriz-thesis/ %files texilikechaps %license lppl1.txt @@ -220865,11 +199390,11 @@ popd %files xltxtra %license lppl1.txt -%{_texdir}/texmf-dist/tex/xelatex/xltxtra/ +%{_texdir}/texmf-dist/tex/latex/xltxtra/ %files xltxtra-doc %license lppl1.txt -%{_texdir}/texmf-dist/doc/xelatex/xltxtra/ +%{_texdir}/texmf-dist/doc/latex/xltxtra/ %files xunicode %license lppl1.3.txt @@ -221331,6 +199856,10 @@ popd %license lppl1.3.txt %{_texdir}/texmf-dist/tex/latex/footnotehyper/ +%files formation-latex-ul-doc +%license other-free.txt +%{_texdir}/texmf-dist/doc/latex/formation-latex-ul/ + %files getitems-doc %license lppl1.3.txt %{_texdir}/texmf-dist/doc/latex/getitems/ @@ -221405,8 +199934,15 @@ popd %license gpl3.txt %{_texdir}/texmf-dist/tex/latex/h2020proposal/ +%files hyphen-bulgarian-doc +%license lppl.txt +%{_texdir}/texmf-dist/doc/generic/hyph-utf8/bg/azbukaExtended.pdf +%{_texdir}/texmf-dist/doc/generic/hyph-utf8/bg/azbukaExtended.tex + %files hyphen-churchslavonic %license other-free.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cu.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cu.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cu.hyp.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-cu.pat.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-cu.tex @@ -221415,19 +199951,22 @@ popd %files hyphen-occitan %license other-free.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-oc.ec.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-oc.chr.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-oc.pat.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-oc.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-oc.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-oc.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-oc.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/loadhyph/loadhyph-oc.tex %files hyphen-sanskrit-doc %license lppl.txt -%{_texdir}/texmf-dist/doc/generic/hyph-utf8/languages/sa/hyphenmin.txt +%{_texdir}/texmf-dist/doc/generic/hyph-utf8/sa/hyphenmin.txt %files hyphen-spanish-doc %license lppl.txt -%{_texdir}/texmf-dist/doc/generic/hyph-utf8/languages/es/README -%{_texdir}/texmf-dist/doc/generic/hyph-utf8/languages/es/division.pdf +%{_texdir}/texmf-dist/doc/generic/hyph-utf8/es/README +%{_texdir}/texmf-dist/doc/generic/hyph-utf8/es/division.pdf %files ietfbibs-doc %license other-free.txt @@ -221486,6 +200025,7 @@ popd %files langsci %license lppl1.3.txt %{_texdir}/texmf-dist/tex/xelatex/langsci/ +%{_texdir}/texmf-dist/bibtex/bst/langsci/ %files latex2e-help-texinfo-fr-doc %license lppl.txt @@ -221531,7 +200071,7 @@ popd %files libertinus %license ofl.txt -%{_texdir}/texmf-dist/tex/latex/libertinus/ +%{_texdir}/texmf-dist/fonts/opentype/public/libertinus/ %files librebodoni-doc %license ofl.txt @@ -221611,7 +200151,6 @@ popd %{_texdir}/texmf-dist/tex/latex/markdown/ %{_texdir}/texmf-dist/tex/luatex/markdown/ %{_texdir}/texmf-dist/tex/context/third/markdown/ -%{_texdir}/texmf-dist/scripts/markdown/markdown-cli.lua %files mathpartir-doc %license gpl2.txt @@ -221784,7 +200323,6 @@ popd %files platex %license bsd.txt %{_texdir}/texmf-dist/tex/platex/ -%{_mandir}/man1/platex.* %files prooftrees-doc %license lppl1.3.txt @@ -221885,7 +200423,6 @@ popd %{_texdir}/texmf-dist/fonts/map/dvips/svrsymbols/ %{_texdir}/texmf-dist/fonts/tfm/public/svrsymbols/ %{_texdir}/texmf-dist/fonts/afm/public/svrsymbols/ -%{_texdir}/texmf-dist/fonts/opentype/public/svrsymbols/ %{_texdir}/texmf-dist/fonts/type1/public/svrsymbols/ %files tempora-doc @@ -222391,8 +200928,8 @@ popd %doc %{_texdir}/texmf-dist/doc/fonts/cormorantgaramond/ %{_texdir}/texmf-dist/fonts/enc/dvips/cormorantgaramond/ %{_texdir}/texmf-dist/fonts/map/dvips/cormorantgaramond/ +%{_texdir}/texmf-dist/fonts/opentype/catharsis/cormorantgaramond/ %{_texdir}/texmf-dist/fonts/tfm/catharsis/cormorantgaramond/ -%{_texdir}/texmf-dist/fonts/truetype/catharsis/cormorantgaramond/ %{_texdir}/texmf-dist/fonts/type1/catharsis/cormorantgaramond/ %{_texdir}/texmf-dist/fonts/vf/catharsis/cormorantgaramond/ %{_texdir}/texmf-dist/tex/latex/cormorantgaramond/ @@ -222485,6 +201022,11 @@ popd %doc %{_texdir}/texmf-dist/doc/generic/fixjfm/ %{_texdir}/texmf-dist/tex/generic/fixjfm/ +%files fontloader-luaotfload +%license lppl1.3.txt +%doc %{_texdir}/texmf-dist/doc/luatex/fontloader-luaotfload/ +%{_texdir}/texmf-dist/tex/luatex/fontloader-luaotfload/ + %files footmisx %license lppl1.3.txt %doc %{_texdir}/texmf-dist/doc/latex/footmisx/ @@ -222567,6 +201109,9 @@ popd %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/ptex/hyph-be.t2a.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/quote/hyph-quote-be.tex %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/tex/hyph-be.tex +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-be.chr.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-be.hyp.txt +%{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-be.lic.txt %{_texdir}/texmf-dist/tex/generic/hyph-utf8/patterns/txt/hyph-be.pat.txt %files ifptex @@ -222718,7 +201263,7 @@ popd %{_texdir}/texmf-dist/tex/latex/mcexam/ %files mendex-doc -%doc %{_texdir}/texmf-dist/doc/support/mendex-doc/ +%doc %{_texdir}/texmf-dist/doc/support/mendex/ %files milog %license lppl.txt @@ -223214,1837 +201759,7 @@ popd %{_texdir}/texmf-dist/tex/latex/algobox/ %doc %{_texdir}/texmf-dist/doc/latex/algobox/ -%files adigraph -%{_texdir}/texmf-dist/tex/latex/adigraph -%doc %{_texdir}/texmf-dist/doc/latex/adigraph/ - -%files aligned-overset -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/aligned-overset/ -%doc %{_texdir}/texmf-dist/doc/latex/aligned-overset/ - -%files apxproof -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/apxproof/ -%doc %{_texdir}/texmf-dist/doc/latex/apxproof/ - -%files ascmac -%license bsd.txt -%{_texdir}/texmf-dist/fonts/source/public/ascmac/ -%{_texdir}/texmf-dist/fonts/tfm/public/ascmac/ -%{_texdir}/texmf-dist/fonts/type1/public/ascmac/ -%{_texdir}/texmf-dist/tex/latex/ascmac/ -%doc %{_texdir}/texmf-dist/doc/latex/ascmac/ - -%files authorarchive -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/authorarchive/ -%doc %{_texdir}/texmf-dist/doc/latex/authorarchive/ - -%files autobreak -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/autobreak/ -%doc %{_texdir}/texmf-dist/doc/latex/autobreak/ - -%files auto-pst-pdf-lua -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/auto-pst-pdf-lua/ -%doc %{_texdir}/texmf-dist/doc/latex/auto-pst-pdf-lua/ - -%files babel-japanese -%license lppl.txt -%{_texdir}/texmf-dist/tex/generic/babel-japanese/ -%doc %{_texdir}/texmf-dist/doc/generic/babel-japanese/ - -%files bath-bst -%license lppl.txt -%{_texdir}/texmf-dist/bibtex/bst/bath-bst/ -%doc %{_texdir}/texmf-dist/doc/bibtex/bath-bst/ - -%files beamertheme-cuerna -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/beamertheme-cuerna/ -%doc %{_texdir}/texmf-dist/doc/latex/beamertheme-cuerna/ - -%files beamertheme-focus -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/beamertheme-focus/ -%doc %{_texdir}/texmf-dist/doc/latex/beamertheme-focus/ - -%files beamertheme-saintpetersburg -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/beamertheme-saintpetersburg/ -%doc %{_texdir}/texmf-dist/doc/latex/beamertheme-saintpetersburg/ - -%files bezierplot -%license lppl.txt -%{_texdir}/texmf-dist/tex/lualatex/bezierplot/ -%doc %{_texdir}/texmf-dist/doc/lualatex/bezierplot/ - -%files biblatex-archaeology -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/biblatex-archaeology/ -%doc %{_texdir}/texmf-dist/doc/latex/biblatex-archaeology/ - -%files biblatex-arthistory-bonn -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/biblatex-arthistory-bonn/ -%doc %{_texdir}/texmf-dist/doc/latex/biblatex-arthistory-bonn/ - -%files biblatex-socialscienceshuberlin -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/biblatex-socialscienceshuberlin/ -%doc %{_texdir}/texmf-dist/doc/latex/biblatex-socialscienceshuberlin/ - -%files cascade -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/cascade/ -%doc %{_texdir}/texmf-dist/doc/latex/cascade/ - -%files cellprops -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/cellprops/ -%doc %{_texdir}/texmf-dist/doc/latex/cellprops/ - -%files chemsec -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/chemsec/ -%doc %{_texdir}/texmf-dist/doc/latex/chemsec/ - -%files citeref -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/citeref/ -%doc %{_texdir}/texmf-dist/doc/latex/citeref/ - -%files clrdblpg -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/clrdblpg/ -%doc %{_texdir}/texmf-dist/doc/latex/clrdblpg/ - -%files clrstrip -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/clrstrip/ -%doc %{_texdir}/texmf-dist/doc/latex/clrstrip/ - -%files cm-mf-extra-bold -%license gpl.txt -%{_texdir}/texmf-dist/fonts/source/public/cm-mf-extra-bold/ -%{_texdir}/texmf-dist/fonts/tfm/public/cm-mf-extra-bold/ - -%files cmsrb -%license gpl.txt -%{_texdir}/texmf-dist/fonts/afm/public/cmsrb/ -%{_texdir}/texmf-dist/fonts/enc/dvips/cmsrb/ -%{_texdir}/texmf-dist/fonts/map/dvips/cmsrb/ -%{_texdir}/texmf-dist/fonts/tfm/public/cmsrb/ -%{_texdir}/texmf-dist/fonts/type1/public/cmsrb/ -%{_texdir}/texmf-dist/fonts/vf/public/cmsrb/ -%{_texdir}/texmf-dist/tex/latex/cmsrb/ -%doc %{_texdir}/texmf-dist/doc/fonts/cmsrb/ - -%files competences -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/competences/ -%doc %{_texdir}/texmf-dist/doc/latex/competences/ - -%files context-handlecsv -%license gpl3.txt -%{_texdir}/texmf-dist/tex/context/third/handlecsv/ -%doc %{_texdir}/texmf-dist/doc/context/third/handlecsv/ - -%files correctmathalign -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/correctmathalign/ -%doc %{_texdir}/texmf-dist/doc/latex/correctmathalign/ - -%files cqubeamer -%{_texdir}/texmf-dist/tex/xelatex/cqubeamer/ -%doc %{_texdir}/texmf-dist/doc/xelatex/cqubeamer/ - -%files dejavu-otf -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/dejavu-otf/ -%doc %{_texdir}/texmf-dist/doc/fonts/dejavu-otf/ - -%files delimset -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/delimset/ -%doc %{_texdir}/texmf-dist/doc/latex/delimset/ - -%files diffcoeff -%license gpl2.txt -%{_texdir}/texmf-dist/tex/latex/diffcoeff/ -%doc %{_texdir}/texmf-dist/doc/latex/diffcoeff/ - -%files dijkstra -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/dijkstra/ -%doc %{_texdir}/texmf-dist/doc/latex/dijkstra/ - -%files dsserif -%license ofl.txt lppl.txt -%{_texdir}/texmf-dist/fonts/afm/public/dsserif/ -%{_texdir}/texmf-dist/fonts/map/dvips/dsserif/ -%{_texdir}/texmf-dist/fonts/tfm/public/dsserif/ -%{_texdir}/texmf-dist/fonts/type1/public/dsserif/ -%{_texdir}/texmf-dist/tex/latex/dsserif/ -%doc %{_texdir}/texmf-dist/doc/fonts/dsserif/ - -%files emf -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/emf/ -%doc %{_texdir}/texmf-dist/doc/latex/emf/ - -%files endnotesj -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/endnotesj/ -%doc %{_texdir}/texmf-dist/doc/latex/endnotesj/ - -%files eqnnumwarn -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/eqnnumwarn/ -%doc %{_texdir}/texmf-dist/doc/latex/eqnnumwarn/ - -%files erw-l3 -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/erw-l3/ -%doc %{_texdir}/texmf-dist/doc/latex/erw-l3/ - -%files etsvthor -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/etsvthor/ -%doc %{_texdir}/texmf-dist/doc/latex/etsvthor/ - -%files euro-ce -%license bsd.txt -%{_texdir}/texmf-dist/fonts/source/public/euro-ce/ -%{_texdir}/texmf-dist/fonts/tfm/public/euro-ce/ -%doc %{_texdir}/texmf-dist/doc/fonts/euro-ce/ - -%files exercisebank -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/exercisebank/ -%doc %{_texdir}/texmf-dist/doc/latex/exercisebank/ - -%files fduthesis -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/fduthesis/ -%doc %{_texdir}/texmf-dist/doc/latex/fduthesis/ - -%files fnspe -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/fnspe/ -%doc %{_texdir}/texmf-dist/doc/latex/fnspe/ - -%files fontawesome5 -%license ofl.txt lppl.txt -%{_texdir}/texmf-dist/fonts/enc/dvips/fontawesome5/ -%{_texdir}/texmf-dist/fonts/map/dvips/fontawesome5/ -%{_texdir}/texmf-dist/fonts/opentype/public/fontawesome5/ -%{_texdir}/texmf-dist/fonts/tfm/public/fontawesome5/ -%{_texdir}/texmf-dist/fonts/type1/public/fontawesome5/ -%{_texdir}/texmf-dist/tex/latex/fontawesome5/ -%doc %{_texdir}/texmf-dist/doc/fonts/fontawesome5/ - -%files formation-latex-ul -%doc %{_texdir}/texmf-dist/doc/latex/formation-latex-ul/ - -%files gatherenum -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/gatherenum/ -%doc %{_texdir}/texmf-dist/doc/latex/gatherenum/ - -%files gbt7714 -%license lppl.txt -%{_texdir}/texmf-dist/bibtex/bst/gbt7714/ -%{_texdir}/texmf-dist/tex/latex/gbt7714/ -%doc %{_texdir}/texmf-dist/doc/bibtex/gbt7714/ - -%files gentombow -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/gentombow/ -%doc %{_texdir}/texmf-dist/doc/latex/gentombow/ - -%files gfsneohellenicmath -%license ofl.txt -%{_texdir}/texmf-dist/fonts/opentype/public/gfsneohellenicmath/ -%{_texdir}/texmf-dist/tex/latex/gfsneohellenicmath/ -%doc %{_texdir}/texmf-dist/doc/fonts/gfsneohellenicmath/ - -%files glossaries-finnish -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/glossaries-finnish/ -%doc %{_texdir}/texmf-dist/doc/latex/glossaries-finnish/ - -%files gotoh -%{_texdir}/texmf-dist/tex/latex/gotoh/ -%doc %{_texdir}/texmf-dist/doc/latex/gotoh/ - -%files graph35 -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/graph35/ -%doc %{_texdir}/texmf-dist/doc/latex/graph35/ - -%files graphicxpsd -%{_texdir}/texmf-dist/tex/latex/graphicxpsd/ -%doc %{_texdir}/texmf-dist/doc/latex/graphicxpsd/ - -%files hagenberg-thesis -%{_texdir}/texmf-dist/tex/latex/hagenberg-thesis/ -%doc %{_texdir}/texmf-dist/doc/latex/hagenberg-thesis/ - -%files handin -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/handin/ -%doc %{_texdir}/texmf-dist/doc/latex/handin/ - -%files hulipsum -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/hulipsum/ -%doc %{_texdir}/texmf-dist/doc/latex/hulipsum/ - -%files hyperbar -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/hyperbar/ -%doc %{_texdir}/texmf-dist/doc/latex/hyperbar/ - -%files includernw -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/includernw/ -%doc %{_texdir}/texmf-dist/doc/latex/includernw/ - -%files intopdf -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/intopdf/ -%doc %{_texdir}/texmf-dist/doc/latex/intopdf/ - -%files jnuexam -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/jnuexam/ -%doc %{_texdir}/texmf-dist/doc/latex/jnuexam/ - -%files kanaparser -%license bsd.txt -%{_texdir}/texmf-dist/tex/luatex/kanaparser/ -%doc %{_texdir}/texmf-dist/doc/luatex/kanaparser/ - -%files karnaugh-map -%{_texdir}/texmf-dist/tex/latex/karnaugh-map/ -%doc %{_texdir}/texmf-dist/doc/latex/karnaugh-map/ - -%files kurdishlipsum -%license lppl.txt -%{_texdir}/texmf-dist/tex/xelatex/kurdishlipsum/ -%doc %{_texdir}/texmf-dist/doc/xelatex/kurdishlipsum/ - -%files labelschanged -%{_texdir}/texmf-dist/tex/latex/labelschanged/ -%doc %{_texdir}/texmf-dist/doc/latex/labelschanged/ - -%files latex-via-exemplos -%license gpl2.txt -%doc %{_texdir}/texmf-dist/doc/latex/latex-via-exemplos/ - -%files lccaps -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/lccaps/ -%doc %{_texdir}/texmf-dist/doc/latex/lccaps/ - -%files libertinus-otf -%license lppl.txt ofl.txt -%{_texdir}/texmf-dist/fonts/opentype/public/libertinus-otf/ -%{_texdir}/texmf-dist/tex/latex/libertinus-otf/ -%doc %{_texdir}/texmf-dist/doc/fonts/libertinus-otf/ - -%files llncsconf -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/llncsconf/ -%doc %{_texdir}/texmf-dist/doc/latex/llncsconf/ - -%files longdivision -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/longdivision/ -%doc %{_texdir}/texmf-dist/doc/latex/longdivision/ - -%files lualatex-truncate -%license lppl.txt -%{_texdir}/texmf-dist/tex/lualatex/lualatex-truncate/ -%doc %{_texdir}/texmf-dist/doc/lualatex/lualatex-truncate/ - -%files luavlna -%license lppl.txt -%{_texdir}/texmf-dist/tex/luatex/luavlna/ -%doc %{_texdir}/texmf-dist/doc/luatex/luavlna/ - -%files manyind -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/manyind/ -%doc %{_texdir}/texmf-dist/doc/latex/manyind/ - -%files mathfam256 -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/mathfam256/ -%doc %{_texdir}/texmf-dist/doc/latex/mathfam256/ - -%files mathfixs -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/mathfixs/ -%doc %{_texdir}/texmf-dist/doc/latex/mathfixs/ - -%files mathfont -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/mathfont/ -%doc %{_texdir}/texmf-dist/doc/latex/mathfont/ - -%files mathpunctspace -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/mathpunctspace/ -%doc %{_texdir}/texmf-dist/doc/latex/mathpunctspace/ - -%files mgltex -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/mgltex/ -%doc %{_texdir}/texmf-dist/doc/latex/mgltex/ - -%files milsymb -%{_texdir}/texmf-dist/tex/latex/milsymb/ -%doc %{_texdir}/texmf-dist/doc/latex/milsymb/ - -%files minidocument -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/minidocument/ -%doc %{_texdir}/texmf-dist/doc/latex/minidocument/ - -%files modernposter -%{_texdir}/texmf-dist/tex/latex/modernposter/ -%doc %{_texdir}/texmf-dist/doc/latex/modernposter/ - -%files morisawa -%license bsd.txt -%{_texdir}/texmf-dist/fonts/map/dvipdfmx/morisawa/ -%{_texdir}/texmf-dist/fonts/tfm/public/morisawa/ -%{_texdir}/texmf-dist/fonts/vf/public/morisawa/ -%{_texdir}/texmf-dist/tex/latex/morisawa/ -%doc %{_texdir}/texmf-dist/doc/fonts/morisawa/ - -%files mptrees -%license lppl.txt -%{_texdir}/texmf-dist/metapost/mptrees/ -%doc %{_texdir}/texmf-dist/doc/metapost/mptrees/ - -%files musikui -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/musikui/ -%doc %{_texdir}/texmf-dist/doc/latex/musikui/ - -%files nicematrix -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/nicematrix/ -%doc %{_texdir}/texmf-dist/doc/latex/nicematrix/ - -%files nidanfloat -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/nidanfloat/ -%doc %{_texdir}/texmf-dist/doc/latex/nidanfloat/ - -%files notex-bst -%{_texdir}/texmf-dist/bibtex/bst/notex-bst/ - -%files onedown -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/onedown/ -%doc %{_texdir}/texmf-dist/doc/latex/onedown/ - -%files oplotsymbl -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/oplotsymbl/ -%doc %{_texdir}/texmf-dist/doc/latex/oplotsymbl/ - -%files outlining -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/outlining/ -%doc %{_texdir}/texmf-dist/doc/latex/outlining/ - -%files overlays -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/overlays/ -%doc %{_texdir}/texmf-dist/doc/latex/overlays/ - -%files padcount -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/padcount/ -%doc %{_texdir}/texmf-dist/doc/latex/padcount/ - -%files pdfoverlay -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/pdfoverlay/ -%doc %{_texdir}/texmf-dist/doc/latex/pdfoverlay/ - -%files pdfpc-movie -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/pdfpc-movie/ -%doc %{_texdir}/texmf-dist/doc/latex/pdfpc-movie/ - -%files pdfprivacy -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/pdfprivacy/ -%doc %{_texdir}/texmf-dist/doc/latex/pdfprivacy/ - -%files penrose -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/penrose/ -%doc %{_texdir}/texmf-dist/doc/latex/penrose/ - -%files pgfornament-han -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/pgfornament-han/ -%doc %{_texdir}/texmf-dist/doc/latex/pgfornament-han/ - -%files pixelart -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/pixelart/ -%doc %{_texdir}/texmf-dist/doc/latex/pixelart/ - -%files plantuml -%license lppl.txt -%{_texdir}/texmf-dist/tex/lualatex/plantuml/ -%doc %{_texdir}/texmf-dist/doc/lualatex/plantuml/ - -%files plex -%license ofl.txt -%{_texdir}/texmf-dist/fonts/enc/dvips/plex/ -%{_texdir}/texmf-dist/fonts/map/dvips/plex/ -%{_texdir}/texmf-dist/fonts/opentype/ibm/plex/ -%{_texdir}/texmf-dist/fonts/tfm/ibm/plex/ -%{_texdir}/texmf-dist/fonts/type1/ibm/plex/ -%{_texdir}/texmf-dist/fonts/vf/ibm/plex/ -%{_texdir}/texmf-dist/tex/latex/plex/ -%doc %{_texdir}/texmf-dist/doc/fonts/plex/ - -%files plex-otf -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/plex-otf/ -%doc %{_texdir}/texmf-dist/doc/fonts/plex-otf/ - -%files pm-isomath -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/pm-isomath/ -%doc %{_texdir}/texmf-dist/doc/latex/pm-isomath/ - -%files polexpr -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/polexpr/ -%doc %{_texdir}/texmf-dist/doc/latex/polexpr/ - -%files postage -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/postage/ -%doc %{_texdir}/texmf-dist/doc/latex/postage/ - -%files powerdot-tuliplab -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/powerdot-tuliplab/ -%doc %{_texdir}/texmf-dist/doc/latex/powerdot-tuliplab/ - -%files pst-antiprism -%license lppl.txt -%{_texdir}/texmf-dist/dvips/pst-antiprism/ -%{_texdir}/texmf-dist/tex/generic/pst-antiprism/ -%{_texdir}/texmf-dist/tex/latex/pst-antiprism/ -%doc %{_texdir}/texmf-dist/doc/generic/pst-antiprism/ - -%files pst-calculate -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/pst-calculate/ -%doc %{_texdir}/texmf-dist/doc/generic/pst-calculate/ - -%files pst-contourplot -%license lppl.txt -%{_texdir}/texmf-dist/tex/generic/pst-contourplot/ -%{_texdir}/texmf-dist/tex/latex/pst-contourplot/ -%doc %{_texdir}/texmf-dist/doc/generic/pst-contourplot/ - -%files pst-dart -%license lppl.txt -%{_texdir}/texmf-dist/tex/generic/pst-dart/ -%{_texdir}/texmf-dist/tex/latex/pst-dart/ -%doc %{_texdir}/texmf-dist/doc/generic/pst-dart/ - -%files pst-spinner -%license lppl.txt -%{_texdir}/texmf-dist/dvips/pst-spinner/ -%{_texdir}/texmf-dist/tex/generic/pst-spinner/ -%{_texdir}/texmf-dist/tex/latex/pst-spinner/ -%doc %{_texdir}/texmf-dist/doc/generic/pst-spinner/ - -%files pythonhighlight -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/pythonhighlight/ -%doc %{_texdir}/texmf-dist/doc/latex/pythonhighlight/ - -%files revquantum -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/revquantum/ -%doc %{_texdir}/texmf-dist/doc/latex/revquantum/ - -%files scientific-thesis-cover -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/scientific-thesis-cover/ -%doc %{_texdir}/texmf-dist/doc/latex/scientific-thesis-cover/ - -%files scratchx -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/scratchx/ -%doc %{_texdir}/texmf-dist/doc/latex/scratchx/ - -%files sectionbreak -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/sectionbreak/ -%doc %{_texdir}/texmf-dist/doc/latex/sectionbreak/ - -%files semantic-markup -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/semantic-markup/ -%doc %{_texdir}/texmf-dist/doc/latex/semantic-markup/ - -%files sexam -%license lppl.txt -%{_texdir}/texmf-dist/tex/xelatex/sexam/ -%doc %{_texdir}/texmf-dist/doc/xelatex/sexam/ - -%files short-math-guide -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/short-math-guide/ - -%files simpleinvoice -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/simpleinvoice/ -%doc %{_texdir}/texmf-dist/doc/latex/simpleinvoice/ - -%files spalign -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/spalign/ -%doc %{_texdir}/texmf-dist/doc/latex/spalign/ - -%files stanli -%license lppl.txt gpl.txt -%{_texdir}/texmf-dist/tex/latex/stanli/ -%doc %{_texdir}/texmf-dist/doc/latex/stanli/ - -%files statistics -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/statistics/ -%doc %{_texdir}/texmf-dist/doc/latex/statistics/ - -%files statmath -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/statmath/ -%doc %{_texdir}/texmf-dist/doc/latex/statmath/ - -%files stealcaps -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/stealcaps/ -%doc %{_texdir}/texmf-dist/doc/latex/stealcaps/ - -%files stickstoo -%license ofl.txt lppl.txt -%{_texdir}/texmf-dist/fonts/afm/public/stickstoo/ -%{_texdir}/texmf-dist/fonts/enc/dvips/stickstoo/ -%{_texdir}/texmf-dist/fonts/map/dvips/stickstoo/ -%{_texdir}/texmf-dist/fonts/tfm/public/stickstoo/ -%{_texdir}/texmf-dist/fonts/type1/public/stickstoo/ -%{_texdir}/texmf-dist/fonts/vf/public/stickstoo/ -%{_texdir}/texmf-dist/tex/latex/stickstoo/ -%doc %{_texdir}/texmf-dist/doc/fonts/stickstoo/ - -%files stix2-otf -%license ofl.txt -%{_texdir}/texmf-dist/fonts/opentype/public/stix2-otf/ -%doc %{_texdir}/texmf-dist/doc/fonts/stix2-otf/ - -%files stix2-type1 -%license ofl.txt lppl.txt -%{_texdir}/texmf-dist/fonts/enc/dvips/stix2/ -%{_texdir}/texmf-dist/fonts/map/dvips/stix2/ -%{_texdir}/texmf-dist/fonts/source/public/stix2/ -%{_texdir}/texmf-dist/fonts/tfm/public/stix2/ -%{_texdir}/texmf-dist/fonts/type1/public/stix2/ -%{_texdir}/texmf-dist/tex/latex/stix2/ -%doc %{_texdir}/texmf-dist/doc/latex/stix2/ - -%files structmech -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/structmech/ - -%files tagpdf -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/tagpdf/ -%doc %{_texdir}/texmf-dist/doc/latex/tagpdf/ - -%files texdate -%license lppl.txt -%{_texdir}/texmf-dist/tex/generic/texdate/ -%doc %{_texdir}/texmf-dist/doc/generic/texdate/ - -%files textualicomma -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/textualicomma/ -%doc %{_texdir}/texmf-dist/doc/latex/textualicomma/ - -%files thaispec -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/thaispec/ -%doc %{_texdir}/texmf-dist/doc/latex/thaispec/ - -%files thesis-gwu -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/thesis-gwu/ -%doc %{_texdir}/texmf-dist/doc/latex/thesis-gwu/ - -%files thucoursework -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/thucoursework/ -%doc %{_texdir}/texmf-dist/doc/latex/thucoursework/ - -%files tikz-karnaugh -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/tikz-karnaugh/ -%doc %{_texdir}/texmf-dist/doc/latex/tikz-karnaugh/ - -%files tikz-ladder -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/tikz-ladder/ -%doc %{_texdir}/texmf-dist/doc/latex/tikz-ladder/ - -%files tikz-layers -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/tikz-layers/ -%doc %{_texdir}/texmf-dist/doc/latex/tikz-layers/ - -%files tikzmarmots -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/tikzmarmots/ -%doc %{_texdir}/texmf-dist/doc/latex/tikzmarmots/ - -%files tikz-nef -%{_texdir}/texmf-dist/tex/latex/tikz-nef/ -%doc %{_texdir}/texmf-dist/doc/latex/tikz-nef/ - -%files tikz-network -%license gpl3.txt -%{_texdir}/texmf-dist/tex/latex/tikz-network/ -%doc %{_texdir}/texmf-dist/doc/latex/tikz-network/ - -%files tikz-relay -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/tikz-relay/ -%{_texdir}/texmf-dist/tex/latex/tikz-relay/ - -%files tikz-sfc -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/tikz-sfc/ -%doc %{_texdir}/texmf-dist/doc/latex/tikz-sfc/ - -%files timbreicmc -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/timbreicmc/ -%doc %{_texdir}/texmf-dist/doc/latex/timbreicmc/ - -%files tinos -%license apache2.txt -%{_texdir}/texmf-dist/fonts/enc/dvips/tinos/ -%{_texdir}/texmf-dist/fonts/map/dvips/tinos/ -%{_texdir}/texmf-dist/fonts/tfm/google/tinos/ -%{_texdir}/texmf-dist/fonts/truetype/google/tinos/ -%{_texdir}/texmf-dist/fonts/type1/google/tinos/ -%{_texdir}/texmf-dist/fonts/vf/google/tinos/ -%{_texdir}/texmf-dist/tex/latex/tinos/ -%doc %{_texdir}/texmf-dist/doc/fonts/tinos/ - -%files tlc-article -%license bsd.txt -%{_texdir}/texmf-dist/tex/latex/tlc-article/ -%doc %{_texdir}/texmf-dist/doc/latex/tlc-article/ - -%files topletter -%license apache2.txt -%{_texdir}/texmf-dist/tex/latex/topletter/ -%doc %{_texdir}/texmf-dist/doc/latex/topletter/ - -%files typewriter -%license lppl.txt -%{_texdir}/texmf-dist/tex/lualatex/typewriter/ -%doc %{_texdir}/texmf-dist/doc/lualatex/typewriter/ - -%files ucsmonograph -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/ucsmonograph/ -%doc %{_texdir}/texmf-dist/doc/latex/ucsmonograph/ - -%files univie-ling -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/univie-ling/ -%doc %{_texdir}/texmf-dist/doc/latex/univie-ling/ - -%files uppunctlm -%license lppl.txt -%{_texdir}/texmf-dist/fonts/tfm/public/uppunctlm/ -%{_texdir}/texmf-dist/fonts/vf/public/uppunctlm/ -%{_texdir}/texmf-dist/tex/latex/uppunctlm/ -%doc %{_texdir}/texmf-dist/doc/fonts/uppunctlm/ - -%files witharrows -%license lppl.txt -%{_texdir}/texmf-dist/tex/generic/witharrows/ -%doc %{_texdir}/texmf-dist/doc/generic/witharrows/ - -%files xfakebold -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/xfakebold/ -%doc %{_texdir}/texmf-dist/doc/latex/xfakebold/ - -%files xtuthesis -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/xtuthesis/ -%doc %{_texdir}/texmf-dist/doc/latex/xtuthesis/ - -%files xurl -%license lppl.txt -%{_texdir}/texmf-dist/tex/latex/xurl/ -%doc %{_texdir}/texmf-dist/doc/latex/xurl/ - -# TL2019 - -%files accents -%{_texdir}/texmf-dist/tex/latex/accents/ -%doc %{_texdir}/texmf-dist/doc/latex/accents/ - -%files addliga -%{_texdir}/texmf-dist/tex/lualatex/addliga/ -%doc %{_texdir}/texmf-dist/doc/lualatex/addliga/ - -%files almendra -%license ofl.txt lppl.txt -%{_texdir}/texmf-dist/fonts/enc/dvips/almendra/ -%{_texdir}/texmf-dist/fonts/map/dvips/almendra/ -%{_texdir}/texmf-dist/fonts/tfm/public/almendra/ -%{_texdir}/texmf-dist/fonts/truetype/public/almendra/ -%{_texdir}/texmf-dist/fonts/type1/public/almendra/ -%{_texdir}/texmf-dist/fonts/vf/public/almendra/ -%{_texdir}/texmf-dist/tex/latex/almendra/ -%doc %{_texdir}/texmf-dist/doc/fonts/almendra/ - -%files alpha-persian -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/bibtex/alpha-persian/ -%{_texdir}/texmf-dist/bibtex/bst/alpha-persian - -%files amscdx -%doc %{_texdir}/texmf-dist/doc/latex/amscdx -%{_texdir}/texmf-dist/tex/latex/amscdx - -%files apprendre-a-programmer-en-tex -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/plain/apprendre-a-programmer-en-tex - -%files arabicfront -%doc %{_texdir}/texmf-dist/doc/latex/arabicfront -%{_texdir}/texmf-dist/tex/latex/arabicfront - -%files arraycols -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/arraycols -%{_texdir}/texmf-dist/tex/latex/arraycols - -%files asmeconf -%doc %{_texdir}/texmf-dist/doc/latex/asmeconf -%{_texdir}/texmf-dist/bibtex/bst/asmeconf -%{_texdir}/texmf-dist/tex/latex/asmeconf - -%files asmejour -%doc %{_texdir}/texmf-dist/doc/latex/asmejour -%{_texdir}/texmf-dist/bibtex/bst/asmejour -%{_texdir}/texmf-dist/tex/latex/asmejour - -%files beamerauxtheme -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/beamerauxtheme -%{_texdir}/texmf-dist/tex/latex/beamerauxtheme - -%files beamer-rl -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/lualatex/beamer-rl -%{_texdir}/texmf-dist/tex/lualatex/beamer-rl - -%files beamertheme-light -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/beamertheme-light -%{_texdir}/texmf-dist/tex/latex/beamertheme-light - -%files beamertheme-npbt -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/beamertheme-npbt -%{_texdir}/texmf-dist/tex/latex/beamertheme-npbt - -%files biblatex-bath -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/biblatex-bath -%{_texdir}/texmf-dist/tex/latex/biblatex-bath - -%files biblatex-ext -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/biblatex-ext -%{_texdir}/texmf-dist/tex/latex/biblatex-ext - -%files bitter -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/bitter -%{_texdir}/texmf-dist/fonts/enc/dvips/bitter -%{_texdir}/texmf-dist/fonts/map/dvips/bitter -%{_texdir}/texmf-dist/fonts/tfm/huerta/bitter -%{_texdir}/texmf-dist/fonts/truetype/huerta/bitter -%{_texdir}/texmf-dist/fonts/type1/huerta/bitter -%{_texdir}/texmf-dist/fonts/vf/huerta/bitter -%{_texdir}/texmf-dist/tex/latex/bitter - -%files brandeis-problemset -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/brandeis-problemset -%{_texdir}/texmf-dist/tex/latex/brandeis-problemset - -%files businesscard-qrcode -%license lgpl.txt -%doc %{_texdir}/texmf-dist/doc/xelatex/businesscard-qrcode -%{_texdir}/texmf-dist/tex/xelatex/businesscard-qrcode - -%files bussproofs-extra -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/bussproofs-extra -%{_texdir}/texmf-dist/tex/latex/bussproofs-extra - -%files bxjaholiday -%doc %{_texdir}/texmf-dist/doc/latex/bxjaholiday -%{_texdir}/texmf-dist/tex/latex/bxjaholiday - -%files bxtexlogo -%doc %{_texdir}/texmf-dist/doc/latex/bxtexlogo -%{_texdir}/texmf-dist/tex/latex/bxtexlogo - -%files bxwareki -%doc %{_texdir}/texmf-dist/doc/latex/bxwareki -%{_texdir}/texmf-dist/tex/latex/bxwareki - -%files centeredline -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/centeredline -%{_texdir}/texmf-dist/tex/latex/centeredline - -%files changelog -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/changelog -%{_texdir}/texmf-dist/tex/latex/changelog - -%files checkend -%doc %{_texdir}/texmf-dist/doc/latex/checkend -%{_texdir}/texmf-dist/tex/latex/checkend - -%files chordbars -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/chordbars -%{_texdir}/texmf-dist/tex/latex/chordbars - -%files chordbox -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/chordbox -%{_texdir}/texmf-dist/tex/latex/chordbox - -%files chs-physics-report -%doc %{_texdir}/texmf-dist/doc/latex/chs-physics-report -%{_texdir}/texmf-dist/tex/latex/chs-physics-report - -%files codeanatomy -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/codeanatomy -%{_texdir}/texmf-dist/tex/latex/codeanatomy - -%files coelacanth -%license ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/coelacanth -%{_texdir}/texmf-dist/fonts/enc/dvips/coelacanth -%{_texdir}/texmf-dist/fonts/map/dvips/coelacanth -%{_texdir}/texmf-dist/fonts/opentype/public/coelacanth -%{_texdir}/texmf-dist/fonts/tfm/public/coelacanth -%{_texdir}/texmf-dist/fonts/type1/public/coelacanth -%{_texdir}/texmf-dist/fonts/vf/public/coelacanth -%{_texdir}/texmf-dist/tex/latex/coelacanth - -%files colophon -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/colophon -%{_texdir}/texmf-dist/tex/latex/colophon - -%files colorprofiles -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/generic/colorprofiles -%{_texdir}/texmf-dist/tex/generic/colorprofiles - -%files commedit -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/commedit -%{_texdir}/texmf-dist/tex/latex/commedit - -%files crimsonpro -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/crimsonpro -%{_texdir}/texmf-dist/fonts/enc/dvips/crimsonpro -%{_texdir}/texmf-dist/fonts/map/dvips/crimsonpro -%{_texdir}/texmf-dist/fonts/tfm/public/crimsonpro -%{_texdir}/texmf-dist/fonts/truetype/public/crimsonpro -%{_texdir}/texmf-dist/fonts/type1/public/crimsonpro -%{_texdir}/texmf-dist/fonts/vf/public/crimsonpro -%{_texdir}/texmf-dist/tex/latex/crimsonpro - -%files cuprum -%license ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/cuprum -%{_texdir}/texmf-dist/fonts/map/dvips/cuprum -%{_texdir}/texmf-dist/fonts/tfm/public/cuprum -%{_texdir}/texmf-dist/fonts/truetype/public/cuprum -%{_texdir}/texmf-dist/tex/latex/cuprum - -%files cweb-old -%{_texdir}/texmf-dist/tex/plain/cweb-old - -%files derivative -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/derivative -%{_texdir}/texmf-dist/tex/latex/derivative - -%files dotlessi -%doc %{_texdir}/texmf-dist/doc/latex/dotlessi -%{_texdir}/texmf-dist/tex/latex/dotlessi - -%files duckuments -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/duckuments -%{_texdir}/texmf-dist/tex/latex/duckuments - -%files ecothesis -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/ecothesis - -%files ehhline -%doc %{_texdir}/texmf-dist/doc/latex/ehhline -%{_texdir}/texmf-dist/tex/latex/ehhline - -%files elegantbook -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/elegantbook -%{_texdir}/texmf-dist/tex/latex/elegantbook - -%files elegantnote -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/elegantnote -%{_texdir}/texmf-dist/tex/latex/elegantnote - -%files elegantpaper -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/elegantpaper -%{_texdir}/texmf-dist/tex/latex/elegantpaper - -%files els-cas-templates -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/els-cas-templates -%{_texdir}/texmf-dist/bibtex/bst/els-cas-templates -%{_texdir}/texmf-dist/tex/latex/els-cas-templates - -%files eqexpl -%doc %{_texdir}/texmf-dist/doc/latex/eqexpl -%{_texdir}/texmf-dist/tex/latex/eqexpl - -%files euflag -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/euflag -%{_texdir}/texmf-dist/tex/latex/euflag - -%files exam-randomizechoices -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/exam-randomizechoices -%{_texdir}/texmf-dist/tex/latex/exam-randomizechoices - -%files exercisepoints -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/exercisepoints -%{_texdir}/texmf-dist/tex/latex/exercisepoints - -%files exframe -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/exframe -%{_texdir}/texmf-dist/tex/latex/exframe - -%files facture-belge-simple-sans-tva -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/xelatex/facture-belge-simple-sans-tva -%{_texdir}/texmf-dist/tex/xelatex/facture-belge-simple-sans-tva - -%files fancyhandout -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/fancyhandout -%{_texdir}/texmf-dist/tex/latex/fancyhandout - -%files fascicules -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/fascicules -%{_texdir}/texmf-dist/tex/latex/fascicules - -%files fbox -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/fbox -%{_texdir}/texmf-dist/tex/latex/fbox - -%files firamath -%license ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/firamath -%{_texdir}/texmf-dist/fonts/opentype/public/firamath - -%files firamath-otf -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/firamath-otf/ -%{_texdir}/texmf-dist/tex/latex/firamath-otf - -%files fiziko -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/metapost/fiziko -%{_texdir}/texmf-dist/metapost/fiziko - -%files forum -%license ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/forum -%{_texdir}/texmf-dist/fonts/enc/dvips/forum -%{_texdir}/texmf-dist/fonts/map/dvips/forum -%{_texdir}/texmf-dist/fonts/tfm/public/forum -%{_texdir}/texmf-dist/fonts/truetype/public/forum -%{_texdir}/texmf-dist/fonts/type1/public/forum -%{_texdir}/texmf-dist/fonts/vf/public/forum -%{_texdir}/texmf-dist/tex/latex/forum - -%files ftc-notebook -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/ftc-notebook -%{_texdir}/texmf-dist/tex/latex/ftc-notebook - -%files gammas -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/gammas -%{_texdir}/texmf-dist/bibtex/bst/gammas -%{_texdir}/texmf-dist/tex/latex/gammas - -%files garamond-libre -%doc %{_texdir}/texmf-dist/doc/fonts/garamond-libre -%{_texdir}/texmf-dist/fonts/opentype/public/garamond-libre - -%files garamond-math -%license ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/garamond-math -%{_texdir}/texmf-dist/fonts/opentype/public/garamond-math - -%files gitver -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/gitver -%{_texdir}/texmf-dist/tex/latex/gitver - -%files globalvals -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/globalvals -%{_texdir}/texmf-dist/tex/latex/globalvals - -%files glosmathtools -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/glosmathtools -%{_texdir}/texmf-dist/tex/latex/glosmathtools - -%files glossaries-estonian -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/glossaries-estonian -%{_texdir}/texmf-dist/tex/latex/glossaries-estonian - -%files glossaries-slovene -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/glossaries-slovene -%{_texdir}/texmf-dist/tex/latex/glossaries-slovene - -%files grabbox -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/grabbox -%{_texdir}/texmf-dist/tex/latex/grabbox - -%files gridslides -%license lppl.txt gpl2.txt -%doc %{_texdir}/texmf-dist/doc/latex/gridslides -%{_texdir}/texmf-dist/tex/latex/gridslides - -%files guitartabs -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/guitartabs -%{_texdir}/texmf-dist/tex/latex/guitartabs - -%files hu-berlin-bundle -%license lppl.txt gpl2.txt bsd.txt -%doc %{_texdir}/texmf-dist/doc/latex/hu-berlin-bundle -%{_texdir}/texmf-dist/tex/latex/hu-berlin-bundle - -%files icite -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/icite -%{_texdir}/texmf-dist/tex/latex/icite - -%files identkey -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/identkey -%{_texdir}/texmf-dist/tex/latex/identkey - -%files inkpaper -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/inkpaper -%{_texdir}/texmf-dist/tex/latex/inkpaper - -%files inline-images -%license lgpl.txt -%doc %{_texdir}/texmf-dist/doc/latex/inline-images -%{_texdir}/texmf-dist/tex/latex/inline-images - -%files inriafonts -%license ofl.txt lppl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/inriafonts -%{_texdir}/texmf-dist/fonts/enc/dvips/inriafonts -%{_texdir}/texmf-dist/fonts/map/dvips/inriafonts -%{_texdir}/texmf-dist/fonts/opentype/public/inriafonts -%{_texdir}/texmf-dist/fonts/tfm/public/inriafonts -%{_texdir}/texmf-dist/fonts/truetype/public/inriafonts -%{_texdir}/texmf-dist/fonts/type1/public/inriafonts -%{_texdir}/texmf-dist/fonts/vf/public/inriafonts -%{_texdir}/texmf-dist/tex/latex/inriafonts - -%files invoice-class -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/invoice-class -%{_texdir}/texmf-dist/tex/latex/invoice-class - -%files iodhbwm -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/iodhbwm -%{_texdir}/texmf-dist/tex/latex/iodhbwm - -%files jigsaw -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/jigsaw -%{_texdir}/texmf-dist/tex/latex/jigsaw - -%files jkmath -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/jkmath -%{_texdir}/texmf-dist/tex/latex/jkmath - -%files kalendarium -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/kalendarium -%{_texdir}/texmf-dist/tex/latex/kalendarium - -%files ketcindy -%license gpl3.txt -%doc %{_texdir}/texmf-dist/texmf-dist/doc/support/ketcindy -%{_texdir}/texmf-dist/texmf-dist/scripts/ketcindy -%{_texdir}/texmf-dist/texmf-dist/tex/latex/ketcindy - -%files kvmap -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/kvmap -%{_texdir}/texmf-dist/tex/latex/kvmap - -%files labels4easylist -%doc %{_texdir}/texmf-dist/doc/latex/labels4easylist -%{_texdir}/texmf-dist/tex/latex/labels4easylist - -%files latex4musicians -%license fdl.txt -%doc %{_texdir}/texmf-dist/doc/latex/latex4musicians - -%files latex-base-dev -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex-dev/base -%{_texdir}/texmf-dist/tex/latex-dev/base - -%files latex-bin-dev -%doc %{_texdir}/texmf-dist/texmf-dist/doc/man/man1/latex-dev.* - -%files latexcolors -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/latexcolors -%{_texdir}/texmf-dist/tex/latex/latexcolors - -%files latex-graphics-dev -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex-dev/graphics -%{_texdir}/texmf-dist/tex/latex-dev/graphics - -%files latex-uni8 -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/latex-uni8 -%{_texdir}/texmf-dist/tex/latex/latex-uni8 - -%files lectures -%doc %{_texdir}/texmf-dist/doc/latex/lectures -%{_texdir}/texmf-dist/tex/latex/lectures - -%files libertinus-fonts -%license ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/libertinus-fonts -%{_texdir}/texmf-dist/fonts/opentype/public/libertinus-fonts - -%files libertinus-type1 -%license gpl2.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/libertinus-type1 -%{_texdir}/texmf-dist/fonts/enc/dvips/libertinus-type1 -%{_texdir}/texmf-dist/fonts/map/dvips/libertinus-type1 -%{_texdir}/texmf-dist/fonts/tfm/public/libertinus-type1 -%{_texdir}/texmf-dist/fonts/type1/public/libertinus-type1 -%{_texdir}/texmf-dist/fonts/vf/public/libertinus-type1 -%{_texdir}/texmf-dist/tex/latex/libertinus-type1 - -%files librefranklin -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/librefranklin -%{_texdir}/texmf-dist/fonts/enc/dvips/librefranklin -%{_texdir}/texmf-dist/fonts/map/dvips/librefranklin -%{_texdir}/texmf-dist/fonts/opentype/impallari/librefranklin -%{_texdir}/texmf-dist/fonts/tfm/impallari/librefranklin -%{_texdir}/texmf-dist/fonts/type1/impallari/librefranklin -%{_texdir}/texmf-dist/fonts/vf/impallari/librefranklin -%{_texdir}/texmf-dist/tex/latex/librefranklin - -%files linguisticspro -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/linguisticspro -%{_texdir}/texmf-dist/fonts/enc/dvips/linguisticspro -%{_texdir}/texmf-dist/fonts/map/dvips/linguisticspro -%{_texdir}/texmf-dist/fonts/opentype/public/linguisticspro -%{_texdir}/texmf-dist/fonts/tfm/public/linguisticspro -%{_texdir}/texmf-dist/fonts/type1/public/linguisticspro -%{_texdir}/texmf-dist/fonts/vf/public/linguisticspro -%{_texdir}/texmf-dist/tex/latex/linguisticspro - -%files lstfiracode -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/lstfiracode -%{_texdir}/texmf-dist/tex/latex/lstfiracode - -%files ltxguidex -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/ltxguidex -%{_texdir}/texmf-dist/tex/latex/ltxguidex - -%files luaimageembed -%doc %{_texdir}/texmf-dist/doc/lualatex/luaimageembed -%{_texdir}/texmf-dist/tex/lualatex/luaimageembed - -%files luarandom -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/lualatex/luarandom -%{_texdir}/texmf-dist/tex/lualatex/luarandom - -%files makecookbook -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/lualatex/makecookbook - -%files mathcommand -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/mathcommand -%{_texdir}/texmf-dist/tex/latex/mathcommand - -%files memorygraphs -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/memorygraphs -%{_texdir}/texmf-dist/tex/latex/memorygraphs - -%files metalogox -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/metalogox -%{_texdir}/texmf-dist/tex/latex/metalogox - -%files metapost-colorbrewer -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/metapost/metapost-colorbrewer -%{_texdir}/texmf-dist/metapost/metapost-colorbrewer - -%files mismath -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/mismath -%{_texdir}/texmf-dist/tex/latex/mismath - -%files mi-solns -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/mi-solns -%{_texdir}/texmf-dist/tex/latex/mi-solns - -%files mlacls -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/mlacls -%{_texdir}/texmf-dist/tex/latex/mlacls - -%files multicolrule -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/multicolrule -%{_texdir}/texmf-dist/tex/latex/multicolrule - -%files nanicolle -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/xelatex/nanicolle -%{_texdir}/texmf-dist/tex/xelatex/nanicolle - -%files njurepo -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/njurepo -%{_texdir}/texmf-dist/tex/latex/njurepo - -%files numberpt -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/numberpt -%{_texdir}/texmf-dist/tex/latex/numberpt - -%files pgf-cmykshadings -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/pgf-cmykshadings -%{_texdir}/texmf-dist/tex/latex/pgf-cmykshadings - -%files pgfmorepages -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/pgfmorepages -%{_texdir}/texmf-dist/tex/latex/pgfmorepages - -%files plautopatch -%license bsd.txt -%doc %{_texdir}/texmf-dist/doc/latex/plautopatch -%{_texdir}/texmf-dist/tex/latex/plautopatch - -%files poiretone -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/poiretone -%{_texdir}/texmf-dist/fonts/enc/dvips/poiretone -%{_texdir}/texmf-dist/fonts/map/dvips/poiretone -%{_texdir}/texmf-dist/fonts/tfm/public/poiretone -%{_texdir}/texmf-dist/fonts/truetype/public/poiretone -%{_texdir}/texmf-dist/fonts/type1/public/poiretone -%{_texdir}/texmf-dist/fonts/vf/public/poiretone -%{_texdir}/texmf-dist/tex/latex/poiretone - -%files poormanlog -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/generic/poormanlog -%{_texdir}/texmf-dist/tex/generic/poormanlog - -%files proof-at-the-end -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/proof-at-the-end -%{_texdir}/texmf-dist/tex/latex/proof-at-the-end - -%files prtec -%doc %{_texdir}/texmf-dist/doc/latex/prtec -%{_texdir}/texmf-dist/bibtex/bst/prtec -%{_texdir}/texmf-dist/tex/latex/prtec - -%files pseudo -%doc %{_texdir}/texmf-dist/doc/latex/pseudo -%{_texdir}/texmf-dist/tex/latex/pseudo - -%files pst-feyn -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/generic/pst-feyn -%{_texdir}/texmf-dist/dvips/pst-feyn -%{_texdir}/texmf-dist/tex/generic/pst-feyn -%{_texdir}/texmf-dist/tex/latex/pst-feyn - -%files pst-lsystem -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/generic/pst-lsystem -%{_texdir}/texmf-dist/dvips/pst-lsystem -%{_texdir}/texmf-dist/tex/generic/pst-lsystem -%{_texdir}/texmf-dist/tex/latex/pst-lsystem - -%files pst-marble -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/generic/pst-marble -%{_texdir}/texmf-dist/dvips/pst-marble -%{_texdir}/texmf-dist/tex/generic/pst-marble -%{_texdir}/texmf-dist/tex/latex/pst-marble - -%files pst-moire -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/generic/pst-moire -%{_texdir}/texmf-dist/dvips/pst-moire -%{_texdir}/texmf-dist/tex/generic/pst-moire -%{_texdir}/texmf-dist/tex/latex/pst-moire - -%files pst-venn -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/generic/pst-venn -%{_texdir}/texmf-dist/tex/latex/pst-venn - -%files ptex-manual -%license bsd.txt -%doc %{_texdir}/texmf-dist/doc/ptex/ptex-manual - -%files ptolemaicastronomy -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/ptolemaicastronomy -%{_texdir}/texmf-dist/tex/latex/ptolemaicastronomy - -%files pxjodel -%doc %{_texdir}/texmf-dist/doc/latex/pxjodel -%{_texdir}/texmf-dist/fonts/tfm/public/pxjodel -%{_texdir}/texmf-dist/fonts/vf/public/pxjodel -%{_texdir}/texmf-dist/tex/latex/pxjodel - -%files qsharp -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/qsharp -%{_texdir}/texmf-dist/tex/latex/qsharp - -%files quantikz -%doc %{_texdir}/texmf-dist/doc/latex/quantikz -%{_texdir}/texmf-dist/tex/latex/quantikz - -%files quran-de -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/xelatex/quran-de -%{_texdir}/texmf-dist/tex/xelatex/quran-de - -%files quran-ur -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/xelatex/quran-ur - -%files ragged2e -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/ragged2e -%{_texdir}/texmf-dist/tex/latex/ragged2e - -%files rank-2-roots -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/rank-2-roots -%{_texdir}/texmf-dist/tex/latex/rank-2-roots - -%files realhats -%doc %{_texdir}/texmf-dist/doc/latex/realhats -%{_texdir}/texmf-dist/tex/latex/realhats - -%files rulerbox -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/rulerbox -%{_texdir}/texmf-dist/tex/latex/rulerbox - -%files ryersonsgsthesis -%license apache2.txt -%doc %{_texdir}/texmf-dist/doc/latex/ryersonsgsthesis -%{_texdir}/texmf-dist/tex/latex/ryersonsgsthesis - -%files schedule -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/schedule -%{_texdir}/texmf-dist/tex/latex/schedule - -%files scontents -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/scontents -%{_texdir}/texmf-dist/tex/latex/scontents - -%files scratch3 -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/scratch3 -%{_texdir}/texmf-dist/tex/latex/scratch3 - -%files soulpos -%doc %{_texdir}/texmf-dist/doc/latex/soulpos -%{_texdir}/texmf-dist/tex/latex/soulpos - -%files spacingtricks -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/spacingtricks -%{_texdir}/texmf-dist/tex/latex/spacingtricks - -%files srdp-mathematik -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/srdp-mathematik -%{_texdir}/texmf-dist/tex/latex/srdp-mathematik - -%files subdocs -%doc %{_texdir}/texmf-dist/doc/latex/subdocs -%{_texdir}/texmf-dist/tex/latex/subdocs - -%files subtext -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/subtext -%{_texdir}/texmf-dist/tex/latex/subtext - -%files technion-thesis-template -%doc %{_texdir}/texmf-dist/doc/xelatex/technion-thesis-template -%{_texdir}/texmf-dist/tex/xelatex/technion-thesis-template - -%files tensind -%doc %{_texdir}/texmf-dist/doc/latex/tensind -%{_texdir}/texmf-dist/tex/latex/tensind - -%files tex-locale -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/generic/tex-locale -%{_texdir}/texmf-dist/tex/generic/tex-locale -%{_texdir}/texmf-dist/tex/latex/tex-locale - -%files texonly -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/plain/texonly - -%files theanodidot -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/theanodidot -%{_texdir}/texmf-dist/fonts/enc/dvips/theanodidot -%{_texdir}/texmf-dist/fonts/map/dvips/theanodidot -%{_texdir}/texmf-dist/fonts/tfm/public/theanodidot -%{_texdir}/texmf-dist/fonts/truetype/public/theanodidot -%{_texdir}/texmf-dist/fonts/type1/public/theanodidot -%{_texdir}/texmf-dist/fonts/vf/public/theanodidot -%{_texdir}/texmf-dist/tex/latex/theanodidot - -%files theanomodern -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/theanomodern -%{_texdir}/texmf-dist/fonts/enc/dvips/theanomodern -%{_texdir}/texmf-dist/fonts/map/dvips/theanomodern -%{_texdir}/texmf-dist/fonts/tfm/public/theanomodern -%{_texdir}/texmf-dist/fonts/truetype/public/theanomodern -%{_texdir}/texmf-dist/fonts/type1/public/theanomodern -%{_texdir}/texmf-dist/fonts/vf/public/theanomodern -%{_texdir}/texmf-dist/tex/latex/theanomodern - -%files theanooldstyle -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/theanooldstyle -%{_texdir}/texmf-dist/fonts/enc/dvips/theanooldstyle -%{_texdir}/texmf-dist/fonts/map/dvips/theanooldstyle -%{_texdir}/texmf-dist/fonts/tfm/public/theanooldstyle -%{_texdir}/texmf-dist/fonts/truetype/public/theanooldstyle -%{_texdir}/texmf-dist/fonts/type1/public/theanooldstyle -%{_texdir}/texmf-dist/fonts/vf/public/theanooldstyle -%{_texdir}/texmf-dist/tex/latex/theanooldstyle - -%files thesis-qom -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/xelatex/thesis-qom -%{_texdir}/texmf-dist/tex/xelatex/thesis-qom - -%files thuaslogos -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/thuaslogos -%{_texdir}/texmf-dist/tex/latex/thuaslogos - -%files tikz-feynhand -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/tikz-feynhand -%{_texdir}/texmf-dist/tex/latex/tikz-feynhand - -%files tikz-imagelabels -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/tikz-imagelabels -%{_texdir}/texmf-dist/tex/latex/tikz-imagelabels - -%files tikzlings -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/tikzlings -%{_texdir}/texmf-dist/tex/latex/tikzlings - -%files tikz-truchet -%doc %{_texdir}/texmf-dist/doc/latex/tikz-truchet -%{_texdir}/texmf-dist/tex/latex/tikz-truchet - -%files topiclongtable -%doc %{_texdir}/texmf-dist/doc/latex/topiclongtable -%{_texdir}/texmf-dist/tex/latex/topiclongtable - -%files tuda-ci -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/tuda-ci -%{_texdir}/texmf-dist/tex/latex/tuda-ci - -%files ucalgmthesis -%doc %{_texdir}/texmf-dist/doc/latex/ucalgmthesis -%{_texdir}/texmf-dist/tex/latex/ucalgmthesis - -%files unam-thesis -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/unam-thesis -%{_texdir}/texmf-dist/tex/latex/unam-thesis - -%files unicode-alphabets -%doc %{_texdir}/texmf-dist/doc/latex/unicode-alphabets -%{_texdir}/texmf-dist/tex/latex/unicode-alphabets - -%files vtable -%doc %{_texdir}/texmf-dist/doc/latex/vtable -%{_texdir}/texmf-dist/tex/latex/vtable - -%files widows-and-orphans -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/widows-and-orphans -%{_texdir}/texmf-dist/tex/latex/widows-and-orphans - -%files windycity -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/windycity -%{_texdir}/texmf-dist/tex/latex/windycity - -%files worksheet -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/worksheet -%{_texdir}/texmf-dist/tex/latex/worksheet - -%files xbmks -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/xbmks -%{_texdir}/texmf-dist/tex/latex/xbmks - -%files xcpdftips -%license gpl3.txt -%doc %{_texdir}/texmf-dist/doc/latex/xcpdftips -%{_texdir}/texmf-dist/tex/latex/xcpdftips - -%files zootaxa-bst -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/bibtex/zootaxa-bst -%{_texdir}/texmf-dist/bibtex/bst/zootaxa-bst - -%files dehyph -%license lppl.txt -%{_texdir}/texmf-dist/tex/generic/dehyph/ - -%files l3backend -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/l3backend/ -%{_texdir}/texmf-dist/tex/latex/l3backend/ - -%files blowup -%license lppl.txt -%doc %{_texdir}/texmf-dist/doc/latex/blowup/ -%{_texdir}/texmf-dist/tex/latex/blowup/ - -%files marcellus -%license lppl.txt ofl.txt -%doc %{_texdir}/texmf-dist/doc/fonts/marcellus -%{_texdir}/texmf-dist/fonts/enc/dvips/marcellus -%{_texdir}/texmf-dist/fonts/map/dvips/marcellus -%{_texdir}/texmf-dist/fonts/tfm/public/marcellus -%{_texdir}/texmf-dist/fonts/truetype/public/marcellus -%{_texdir}/texmf-dist/fonts/type1/public/marcellus -%{_texdir}/texmf-dist/fonts/vf/public/marcellus -%{_texdir}/texmf-dist/tex/latex/marcellus/ - %changelog -* Fri Mar 13 2020 Tom Callaway <spot@fedoraproject.org> - 9:2019-19 -- bump and rebuild - -* Sat Feb 1 2020 Tom Callaway <spot@fedoraproject.org> - 9:2019-18 -- update newtx to latest upstream from CTAN to resolve naming issue with ntxsups_T1.enc - -* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 9:2019-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Tue Jan 14 2020 Tom Callaway <spot@fedoraproject.org> - 9:2019-15 -- fix texlive-kerkis to only include the type1 kerkis fonts, not all of the type1 fonts in texlive - (bz1790867) -- properly package up the type1 fonts which were previously only in texlive-kerkis - -* Mon Jan 13 2020 Tom Callaway <spot@fedoraproject.org> - 9:2019-14 -- update noto to resolve issue with missing .enc file -- update noto provides to reflect current state - -* Tue Jan 7 2020 Tom Callaway <spot@fedoraproject.org> - 9:2019-13 -- add Requires: texlive-platex to texlive-platex-tools (bz1785793) - -* Mon Jan 6 2020 Tom Callaway <spot@fedoraproject.org> - 9:2019-12 -- fix dependencies for texlive-acmart (bz1787181) - -* Wed Dec 11 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-11 -- patch tabu to latest git code to fix doxygen issues - -* Mon Dec 9 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-10 -- add versioned Requires on biber for texlive-biblatex -- add packager notes around biblatex - -* Mon Dec 2 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-9 -- bump and rebuild - -* Mon Dec 2 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-8 -- update acro to fix bug (bz1777339) - -* Mon Dec 2 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-7 -- update updmap-map to svn52454, to fix issue with xcharter (bz1775955) -- fix xcharter provides - -* Fri Nov 15 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-6 -- add dependency on texlive-psutils to texlive-collection-fontutils -- fixup dehyph-exptl and its scriptlets to point to the latest files - -* Wed Nov 6 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-5 -- add missing packages: texlive-blowup, texlive-marcellus - -* Mon Nov 4 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-4 -- fix typos preventing texlive-collection-publishers from installing - -* Fri Oct 18 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-3 -- dir ownership cleanups - -* Thu Oct 17 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-2 -- add missing l3backend package -- add Requires: l3backend to l3kernel - -* Mon Aug 5 2019 Tom Callaway <spot@fedoraproject.org> - 9:2019-1 -- the great update begins -- the following packages no longer exist: bezos, fontloader-luaotfload, mbenotes, psu-thesis -- mathalfa was renamed to mathalpha - -* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8:2018-27 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Fri Jun 21 2019 Tom Callaway <spot@fedoraproject.org> - 8:2018-26 -- update lualibs to svn51167 (rest of updates coming later) - -* Fri Feb 8 2019 Tom Callaway <spot@fedoraproject.org> - 8:2018-25 -- add dependency on translations.sty to texlive-xsim (bz1637642) -- handle upgrades for uantwerpendocs (bz1644398) - -* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 8:2018-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Dec 14 2018 Tom Callaway <spot@fedoraproject.org> - 8:2018-23 -- add missing Provide to texlive-ocgx2, and add Requires on that provide to texlive-media9 - Fun fact: This makes them completely circular dependencies. - -* Tue Nov 13 2018 Edgar Hoch <edgar.hoch@ims.uni-stuttgart.de> - 8:2018-22 -- fix #1649084 - replace 2014-05-21 with 2018-03-31 in dehyph-exptl subpackage - -* Wed Oct 31 2018 Than Ngo <than@redhat.com> - 8:2018-21 -- fixed #1643664 - texlive-scheme-full installation failure - -* Fri Oct 5 2018 Tom Callaway <spot@fedoraproject.org> - 8:2018-20 -- artificial release bump to work around bug in koji (https://pagure.io/koji/issue/1119) - -* Mon Oct 1 2018 Tom Callaway <spot@fedoraproject.org> - 8:2018-2 -- fix collection-texworks to depend on texlive-texworks-doc (texworks is windows only) (bz1634313) - -* Fri Sep 21 2018 Tom Callaway <spot@fedoraproject.org> - 8:2018-1 -- update ALL THE THINGS -- bump epoch -- use a mirror that isn't broken/evil -- use %%sources macro to make things nicer in the spec file -- hopefully fix all broken dependencies - * Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 7:2017-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild